src/Tools/isac/Knowledge/EqSystem.thy
author wenzelm
Wed, 26 May 2021 16:24:05 +0200
changeset 60286 31efa1b39a20
parent 60278 343efa173023
child 60289 a7b88fc19a92
permissions -rw-r--r--
command 'setup_rule' semantic equivalent for KEStore_Elems.add_rlss;
neuper@37906
     1
(* equational systems, minimal -- for use in Biegelinie
neuper@37906
     2
   author: Walther Neuper
neuper@37906
     3
   050826,
neuper@37906
     4
   (c) due to copyright terms
neuper@37906
     5
*)
neuper@37906
     6
neuper@37997
     7
theory EqSystem imports Integrate Rational Root begin
neuper@37906
     8
neuper@37906
     9
consts
neuper@37906
    10
walther@60278
    11
  occur_exactly_in :: 
neuper@37998
    12
   "[real list, real list, 'a] => bool" ("_ from _ occur'_exactly'_in _")
neuper@37906
    13
neuper@37906
    14
  (*descriptions in the related problems*)
neuper@37997
    15
  solveForVars       :: "real list => toreall"
neuper@37997
    16
  solution           :: "bool list => toreall"
neuper@37906
    17
neuper@37906
    18
  (*the CAS-command, eg. "solveSystem [x+y=1,y=2] [x,y]"*)
neuper@37906
    19
  solveSystem        :: "[bool list, real list] => bool list"
neuper@37906
    20
neuper@52148
    21
axiomatization where
neuper@37906
    22
(*stated as axioms, todo: prove as theorems
neuper@37906
    23
  'bdv' is a constant handled on the meta-level 
neuper@37906
    24
   specifically as a 'bound variable'            *)
neuper@37906
    25
neuper@52148
    26
  commute_0_equality:  "(0 = a) = (a = 0)" and
neuper@37906
    27
neuper@37906
    28
  (*WN0510 see simliar rules 'isolate_' 'separate_' (by RL)
neuper@37906
    29
    [bdv_1,bdv_2,bdv_3,bdv_4] work also for 2 and 3 bdvs, ugly !*)
neuper@37983
    30
  separate_bdvs_add:   
neuper@37998
    31
    "[| [] from [bdv_1,bdv_2,bdv_3,bdv_4] occur_exactly_in a |] 
neuper@52148
    32
		      			     ==> (a + b = c) = (b = c + -1*a)" and
neuper@37983
    33
  separate_bdvs0:
neuper@37954
    34
    "[| some_of [bdv_1,bdv_2,bdv_3,bdv_4] occur_in b; Not (b=!=0)  |] 
neuper@52148
    35
		      			     ==> (a = b) = (a + -1*b = 0)" and
neuper@37983
    36
  separate_bdvs_add1:  
neuper@37954
    37
    "[| some_of [bdv_1,bdv_2,bdv_3,bdv_4] occur_in c |] 
neuper@52148
    38
		      			     ==> (a = b + c) = (a + -1*c = b)" and
neuper@37983
    39
  separate_bdvs_add2:
neuper@37954
    40
    "[| Not (some_of [bdv_1,bdv_2,bdv_3,bdv_4] occur_in a) |] 
neuper@52148
    41
		      			     ==> (a + b = c) = (b = -1*a + c)" and
neuper@37983
    42
  separate_bdvs_mult:  
neuper@37998
    43
    "[| [] from [bdv_1,bdv_2,bdv_3,bdv_4] occur_exactly_in a; Not (a=!=0) |] 
t@42197
    44
		      			     ==>(a * b = c) = (b = c / a)" 
neuper@55276
    45
axiomatization where (*..if replaced by "and" we get an error in 
wneuper@59370
    46
  ---  rewrite in [EqSystem,normalise,2x2] --- step "--- 3---";*)
t@42197
    47
  order_system_NxN:     "[a,b] = [b,a]"
neuper@37906
    48
  (*requires rew_ord for termination, eg. ord_simplify_Integral;
neuper@37906
    49
    works for lists of any length, interestingly !?!*)
neuper@37906
    50
wneuper@59472
    51
ML \<open>
neuper@37972
    52
val thy = @{theory};
neuper@37972
    53
neuper@37954
    54
(** eval functions **)
neuper@37954
    55
neuper@37954
    56
(*certain variables of a given list occur _all_ in a term
neuper@37954
    57
  args: all: ..variables, which are under consideration (eg. the bound vars)
neuper@37954
    58
        vs:  variables which must be in t, 
neuper@37954
    59
             and none of the others in all must be in t
neuper@37954
    60
        t: the term under consideration
neuper@37954
    61
 *)
neuper@37954
    62
fun occur_exactly_in vs all t =
walther@59603
    63
    let fun occurs_in' a b = Prog_Expr.occurs_in b a
neuper@37954
    64
    in foldl and_ (true, map (occurs_in' t) vs)
neuper@37954
    65
       andalso not (foldl or_ (false, map (occurs_in' t) 
neuper@37954
    66
                                          (subtract op = vs all)))
neuper@37954
    67
    end;
neuper@37954
    68
walther@60278
    69
(*("occur_exactly_in", ("EqSystem.occur_exactly_in", 
neuper@37954
    70
			eval_occur_exactly_in "#eval_occur_exactly_in_"))*)
walther@60278
    71
fun eval_occur_exactly_in _ "EqSystem.occur_exactly_in"
walther@60278
    72
			  (p as (Const ("EqSystem.occur_exactly_in",_) 
neuper@37954
    73
				       $ vs $ all $ t)) _ =
wneuper@59389
    74
    if occur_exactly_in (TermC.isalist2list vs) (TermC.isalist2list all) t
walther@59868
    75
    then SOME ((UnparseC.term p) ^ " = True",
wneuper@59390
    76
	       HOLogic.Trueprop $ (TermC.mk_equality (p, @{term True})))
walther@59868
    77
    else SOME ((UnparseC.term p) ^ " = False",
wneuper@59390
    78
	       HOLogic.Trueprop $ (TermC.mk_equality (p, @{term False})))
neuper@37954
    79
  | eval_occur_exactly_in _ _ _ _ = NONE;
wneuper@59472
    80
\<close>
wneuper@59472
    81
setup \<open>KEStore_Elems.add_calcs
s1210629013@52145
    82
  [("occur_exactly_in",
walther@60278
    83
	    ("EqSystem.occur_exactly_in",
wneuper@59472
    84
	      eval_occur_exactly_in "#eval_occur_exactly_in_"))]\<close>
wneuper@59472
    85
ML \<open>
neuper@37954
    86
(** rewrite order 'ord_simplify_System' **)
neuper@37954
    87
walther@59997
    88
(* order wrt. several linear (i.e. without exponents) variables "c", "c_2",..
neuper@37954
    89
   which leaves the monomials containing c, c_2,... at the end of an Integral
neuper@37954
    90
   and puts the c, c_2,... rightmost within a monomial.
neuper@37954
    91
neuper@37954
    92
   WN050906 this is a quick and dirty adaption of ord_make_polynomial_in,
neuper@37954
    93
   which was most adequate, because it uses size_of_term*)
neuper@37954
    94
(**)
neuper@37954
    95
local (*. for simplify_System .*)
neuper@37954
    96
(**)
neuper@37954
    97
open Term;  (* for type order = EQUAL | LESS | GREATER *)
neuper@37954
    98
neuper@37954
    99
fun pr_ord EQUAL = "EQUAL"
neuper@37954
   100
  | pr_ord LESS  = "LESS"
neuper@37954
   101
  | pr_ord GREATER = "GREATER";
neuper@37954
   102
neuper@37954
   103
fun dest_hd' (Const (a, T)) = (((a, 0), T), 0)
neuper@37954
   104
  | dest_hd' (Free (ccc, T)) =
neuper@40836
   105
    (case Symbol.explode ccc of
neuper@37954
   106
	"c"::[] => ((("|||||||||||||||||||||", 0), T), 1)(*greatest string WN*)
neuper@37954
   107
      | "c"::"_"::_ => ((("|||||||||||||||||||||", 0), T), 1)
neuper@37954
   108
      | _ => (((ccc, 0), T), 1))
neuper@37954
   109
  | dest_hd' (Var v) = (v, 2)
neuper@37954
   110
  | dest_hd' (Bound i) = ((("", i), dummyT), 3)
walther@60269
   111
  | dest_hd' (Abs (_, T, _)) = ((("", 0), T), 4)
walther@60269
   112
  | dest_hd' _ = raise ERROR "dest_hd': uncovered case in fun.def.";
neuper@37954
   113
neuper@37954
   114
fun size_of_term' (Free (ccc, _)) =
neuper@40836
   115
    (case Symbol.explode ccc of (*WN0510 hack for the bound variables*)
neuper@37954
   116
	"c"::[] => 1000
wneuper@59390
   117
      | "c"::"_"::is => 1000 * ((TermC.int_of_str o implode) is)
neuper@37954
   118
      | _ => 1)
neuper@37954
   119
  | size_of_term' (Abs (_,_,body)) = 1 + size_of_term' body
neuper@37954
   120
  | size_of_term' (f$t) = size_of_term' f  +  size_of_term' t
neuper@37954
   121
  | size_of_term' _ = 1;
neuper@37954
   122
neuper@37997
   123
fun term_ord' pr thy (Abs (_, T, t), Abs(_, U, u)) =       (* ~ term.ML *)
neuper@52070
   124
    (case term_ord' pr thy (t, u) of EQUAL => Term_Ord.typ_ord (T, U) | ord => ord)
neuper@37997
   125
  | term_ord' pr thy (t, u) =
neuper@52070
   126
    (if pr
neuper@52070
   127
     then 
neuper@52070
   128
       let
neuper@52070
   129
         val (f, ts) = strip_comb t and (g, us) = strip_comb u;
walther@59870
   130
         val _ = tracing ("t= f@ts= \"" ^ UnparseC.term_in_thy thy f ^ "\" @ \"[" ^
walther@59870
   131
           commas (map (UnparseC.term_in_thy thy) ts) ^ "]\"");
walther@59870
   132
         val _ = tracing ("u= g@us= \"" ^ UnparseC.term_in_thy thy g ^ "\" @ \"[" ^
walther@59870
   133
           commas (map (UnparseC.term_in_thy thy) us) ^ "]\"");
neuper@52070
   134
         val _ = tracing ("size_of_term(t,u)= (" ^ string_of_int (size_of_term' t) ^ ", " ^
neuper@52070
   135
           string_of_int (size_of_term' u) ^ ")");
neuper@52070
   136
         val _ = tracing ("hd_ord(f,g)      = " ^ ((pr_ord o hd_ord) (f,g)));
neuper@52070
   137
         val _ = tracing ("terms_ord (ts,us) = " ^(pr_ord o terms_ord str false) (ts,us));
neuper@52070
   138
         val _=tracing("-------");
neuper@52070
   139
       in () end
neuper@52070
   140
     else ();
neuper@52070
   141
    case int_ord (size_of_term' t, size_of_term' u) of
neuper@52070
   142
      EQUAL =>
neuper@52070
   143
        let val (f, ts) = strip_comb t and (g, us) = strip_comb u 
neuper@52070
   144
        in (case hd_ord (f, g) of 
neuper@52070
   145
              EQUAL => (terms_ord str pr) (ts, us) 
neuper@52070
   146
            | ord => ord)
neuper@52070
   147
        end
neuper@37954
   148
	 | ord => ord)
neuper@37954
   149
and hd_ord (f, g) =                                        (* ~ term.ML *)
neuper@52070
   150
  prod_ord (prod_ord Term_Ord.indexname_ord Term_Ord.typ_ord) int_ord (dest_hd' f, dest_hd' g)
walther@60269
   151
and terms_ord _ pr (ts, us) = list_ord (term_ord' pr (ThyC.get_theory "Isac_Knowledge"))(ts, us);
neuper@37954
   152
(**)
neuper@37954
   153
in
neuper@37954
   154
(**)
neuper@37954
   155
(*WN0510 for preliminary use in eval_order_system, see case-study mat-eng.tex
neuper@37954
   156
fun ord_simplify_System_rev (pr:bool) thy subst tu = 
neuper@37954
   157
    (term_ord' pr thy (Library.swap tu) = LESS);*)
neuper@37954
   158
neuper@37954
   159
(*for the rls's*)
walther@60269
   160
fun ord_simplify_System (pr:bool) thy _(*subst*) tu = 
neuper@37954
   161
    (term_ord' pr thy tu = LESS);
neuper@37954
   162
(**)
neuper@37954
   163
end;
neuper@37954
   164
(**)
walther@59857
   165
Rewrite_Ord.rew_ord' := overwritel (! Rewrite_Ord.rew_ord',
neuper@37954
   166
[("ord_simplify_System", ord_simplify_System false thy)
neuper@37954
   167
 ]);
wneuper@59472
   168
\<close>
wneuper@59472
   169
ML \<open>
neuper@37954
   170
(** rulesets **)
neuper@37954
   171
neuper@37954
   172
(*.adapted from 'order_add_mult_in' by just replacing the rew_ord.*)
neuper@37954
   173
val order_add_mult_System = 
walther@59851
   174
  Rule_Def.Repeat{id = "order_add_mult_System", preconds = [], 
neuper@37954
   175
      rew_ord = ("ord_simplify_System",
bonzai@41919
   176
		 ord_simplify_System false @{theory "Integrate"}),
walther@59852
   177
      erls = Rule_Set.empty,srls = Rule_Set.Empty, calc = [], errpatts = [],
walther@59877
   178
      rules = [Rule.Thm ("mult.commute",ThmC.numerals_to_Free @{thm mult.commute}),
neuper@37954
   179
	       (* z * w = w * z *)
walther@59871
   180
	       Rule.Thm ("real_mult_left_commute",ThmC.numerals_to_Free @{thm real_mult_left_commute}),
neuper@37954
   181
	       (*z1.0 * (z2.0 * z3.0) = z2.0 * (z1.0 * z3.0)*)
walther@59877
   182
	       Rule.Thm ("mult.assoc",ThmC.numerals_to_Free @{thm mult.assoc}),		
neuper@37954
   183
	       (*z1.0 * z2.0 * z3.0 = z1.0 * (z2.0 * z3.0)*)
walther@59877
   184
	       Rule.Thm ("add.commute",ThmC.numerals_to_Free @{thm add.commute}),	
neuper@37954
   185
	       (*z + w = w + z*)
walther@59877
   186
	       Rule.Thm ("add.left_commute",ThmC.numerals_to_Free @{thm add.left_commute}),
neuper@37954
   187
	       (*x + (y + z) = y + (x + z)*)
walther@59877
   188
	       Rule.Thm ("add.assoc",ThmC.numerals_to_Free @{thm add.assoc})	               
neuper@37954
   189
	       (*z1.0 + z2.0 + z3.0 = z1.0 + (z2.0 + z3.0)*)
neuper@37954
   190
	       ], 
walther@59878
   191
      scr = Rule.Empty_Prog};
wneuper@59472
   192
\<close>
wneuper@59472
   193
ML \<open>
neuper@37954
   194
(*.adapted from 'norm_Rational' by
neuper@37954
   195
  #1 using 'ord_simplify_System' in 'order_add_mult_System'
neuper@37954
   196
  #2 NOT using common_nominator_p                          .*)
neuper@37954
   197
val norm_System_noadd_fractions = 
walther@59851
   198
  Rule_Def.Repeat {id = "norm_System_noadd_fractions", preconds = [], 
walther@59857
   199
       rew_ord = ("dummy_ord",Rewrite_Ord.dummy_ord), 
walther@59851
   200
       erls = norm_rat_erls, srls = Rule_Set.Empty, calc = [], errpatts = [],
neuper@37954
   201
       rules = [(*sequence given by operator precedence*)
wneuper@59416
   202
		Rule.Rls_ discard_minus,
wneuper@59416
   203
		Rule.Rls_ powers,
wneuper@59416
   204
		Rule.Rls_ rat_mult_divide,
wneuper@59416
   205
		Rule.Rls_ expand,
wneuper@59416
   206
		Rule.Rls_ reduce_0_1_2,
wneuper@59416
   207
		Rule.Rls_ (*order_add_mult #1*) order_add_mult_System,
wneuper@59416
   208
		Rule.Rls_ collect_numerals,
wneuper@59416
   209
		(*Rule.Rls_ add_fractions_p, #2*)
wneuper@59416
   210
		Rule.Rls_ cancel_p
neuper@37954
   211
		],
walther@59878
   212
       scr = Rule.Empty_Prog
wneuper@59406
   213
       };
wneuper@59472
   214
\<close>
wneuper@59472
   215
ML \<open>
neuper@37954
   216
(*.adapted from 'norm_Rational' by
neuper@37954
   217
  *1* using 'ord_simplify_System' in 'order_add_mult_System'.*)
neuper@37954
   218
val norm_System = 
walther@59851
   219
  Rule_Def.Repeat {id = "norm_System", preconds = [], 
walther@59857
   220
       rew_ord = ("dummy_ord",Rewrite_Ord.dummy_ord), 
walther@59851
   221
       erls = norm_rat_erls, srls = Rule_Set.Empty, calc = [], errpatts = [],
neuper@37954
   222
       rules = [(*sequence given by operator precedence*)
wneuper@59416
   223
		Rule.Rls_ discard_minus,
wneuper@59416
   224
		Rule.Rls_ powers,
wneuper@59416
   225
		Rule.Rls_ rat_mult_divide,
wneuper@59416
   226
		Rule.Rls_ expand,
wneuper@59416
   227
		Rule.Rls_ reduce_0_1_2,
wneuper@59416
   228
		Rule.Rls_ (*order_add_mult *1*) order_add_mult_System,
wneuper@59416
   229
		Rule.Rls_ collect_numerals,
wneuper@59416
   230
		Rule.Rls_ add_fractions_p,
wneuper@59416
   231
		Rule.Rls_ cancel_p
neuper@37954
   232
		],
walther@59878
   233
       scr = Rule.Empty_Prog
wneuper@59406
   234
       };
wneuper@59472
   235
\<close>
wneuper@59472
   236
ML \<open>
neuper@37954
   237
(*.simplify an equational system BEFORE solving it such that parentheses are
neuper@37954
   238
   ( ((u0*v0)*w0) + ( ((u1*v1)*w1) * c + ... +((u4*v4)*w4) * c_4 ) )
neuper@37954
   239
ATTENTION: works ONLY for bound variables c, c_1, c_2, c_3, c_4 :ATTENTION
neuper@37954
   240
   This is a copy from 'make_ratpoly_in' with respective reductions:
neuper@37954
   241
   *0* expand the term, ie. distribute * and / over +
neuper@37954
   242
   *1* ord_simplify_System instead of termlessI
neuper@37954
   243
   *2* no add_fractions_p (= common_nominator_p_rls !)
neuper@37954
   244
   *3* discard_parentheses only for (.*(.*.))
neuper@37954
   245
   analoguous to simplify_Integral                                       .*)
neuper@37954
   246
val simplify_System_parenthesized = 
walther@59878
   247
  Rule_Set.Sequence {id = "simplify_System_parenthesized", preconds = []:term list, 
walther@59857
   248
       rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59851
   249
      erls = Atools_erls, srls = Rule_Set.Empty, calc = [], errpatts = [],
walther@59871
   250
      rules = [Rule.Thm ("distrib_right",ThmC.numerals_to_Free @{thm distrib_right}),
neuper@37954
   251
 	       (*"(?z1.0 + ?z2.0) * ?w = ?z1.0 * ?w + ?z2.0 * ?w"*)
walther@59871
   252
	       Rule.Thm ("add_divide_distrib",ThmC.numerals_to_Free @{thm add_divide_distrib}),
neuper@37954
   253
 	       (*"(?x + ?y) / ?z = ?x / ?z + ?y / ?z"*)
neuper@37954
   254
	       (*^^^^^ *0* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*)
wneuper@59416
   255
	       Rule.Rls_ norm_Rational_noadd_fractions(**2**),
wneuper@59416
   256
	       Rule.Rls_ (*order_add_mult_in*) norm_System_noadd_fractions (**1**),
walther@59877
   257
	       Rule.Thm ("sym_mult.assoc",
walther@59871
   258
                     ThmC.numerals_to_Free (@{thm mult.assoc} RS @{thm sym}))
wneuper@59416
   259
	       (*Rule.Rls_ discard_parentheses *3**),
wneuper@59416
   260
	       Rule.Rls_ collect_bdv, (*from make_polynomial_in WN051031 welldone?*)
wneuper@59416
   261
	       Rule.Rls_ separate_bdv2,
walther@59878
   262
	       Rule.Eval ("Rings.divide_class.divide", Prog_Expr.eval_cancel "#divide_e")
neuper@37954
   263
	       ],
walther@59878
   264
      scr = Rule.Empty_Prog};      
wneuper@59472
   265
\<close>
wneuper@59472
   266
ML \<open>
neuper@37954
   267
(*.simplify an equational system AFTER solving it;
neuper@37954
   268
   This is a copy of 'make_ratpoly_in' with the differences
neuper@37954
   269
   *1* ord_simplify_System instead of termlessI           .*)
neuper@37954
   270
(*TODO.WN051031 ^^^^^^^^^^ should be in EACH rls contained *)
neuper@37954
   271
val simplify_System = 
walther@59878
   272
  Rule_Set.Sequence {id = "simplify_System", preconds = []:term list, 
walther@59857
   273
       rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59851
   274
      erls = Atools_erls, srls = Rule_Set.Empty, calc = [], errpatts = [],
wneuper@59416
   275
      rules = [Rule.Rls_ norm_Rational,
wneuper@59416
   276
	       Rule.Rls_ (*order_add_mult_in*) norm_System (**1**),
wneuper@59416
   277
	       Rule.Rls_ discard_parentheses,
wneuper@59416
   278
	       Rule.Rls_ collect_bdv, (*from make_polynomial_in WN051031 welldone?*)
wneuper@59416
   279
	       Rule.Rls_ separate_bdv2,
walther@59878
   280
	       Rule.Eval ("Rings.divide_class.divide", Prog_Expr.eval_cancel "#divide_e")
neuper@37954
   281
	       ],
walther@59878
   282
      scr = Rule.Empty_Prog};      
neuper@37906
   283
(*
neuper@37954
   284
val simplify_System = 
walther@59852
   285
    Rule_Set.append_rules "simplify_System" simplify_System_parenthesized
walther@59877
   286
	       [Rule.Thm ("sym_add.assoc",
walther@59871
   287
                      ThmC.numerals_to_Free (@{thm add.assoc} RS @{thm sym}))];
neuper@37954
   288
*)
wneuper@59472
   289
\<close>
wneuper@59472
   290
ML \<open>
neuper@37954
   291
val isolate_bdvs = 
walther@59851
   292
    Rule_Def.Repeat {id="isolate_bdvs", preconds = [], 
walther@59857
   293
	 rew_ord = ("e_rew_ord", Rewrite_Ord.e_rew_ord), 
walther@59852
   294
	 erls = Rule_Set.append_rules "erls_isolate_bdvs" Rule_Set.empty 
walther@60278
   295
			   [(Rule.Eval ("EqSystem.occur_exactly_in", 
neuper@37954
   296
				   eval_occur_exactly_in 
neuper@37954
   297
				       "#eval_occur_exactly_in_"))
neuper@37954
   298
			    ], 
walther@59851
   299
			   srls = Rule_Set.Empty, calc = [], errpatts = [],
neuper@37997
   300
	      rules = 
walther@59871
   301
             [Rule.Thm ("commute_0_equality", ThmC.numerals_to_Free @{thm commute_0_equality}),
walther@59871
   302
	      Rule.Thm ("separate_bdvs_add", ThmC.numerals_to_Free @{thm separate_bdvs_add}),
walther@59871
   303
	      Rule.Thm ("separate_bdvs_mult", ThmC.numerals_to_Free @{thm separate_bdvs_mult})],
walther@59878
   304
	      scr = Rule.Empty_Prog};
wneuper@59472
   305
\<close>
wneuper@59472
   306
ML \<open>
neuper@37954
   307
val isolate_bdvs_4x4 = 
walther@59851
   308
    Rule_Def.Repeat {id="isolate_bdvs_4x4", preconds = [], 
walther@59857
   309
	 rew_ord = ("e_rew_ord", Rewrite_Ord.e_rew_ord), 
walther@59852
   310
	 erls = Rule_Set.append_rules 
walther@59852
   311
		    "erls_isolate_bdvs_4x4" Rule_Set.empty 
walther@60278
   312
		    [Rule.Eval ("EqSystem.occur_exactly_in", 
neuper@37954
   313
			   eval_occur_exactly_in "#eval_occur_exactly_in_"),
walther@59878
   314
		     Rule.Eval ("Prog_Expr.ident", Prog_Expr.eval_ident "#ident_"),
walther@60278
   315
		     Rule.Eval ("Prog_Expr.some_occur_in", Prog_Expr.eval_some_occur_in "#some_occur_in_"),
walther@59871
   316
         Rule.Thm ("not_true",ThmC.numerals_to_Free @{thm not_true}),
walther@59871
   317
		     Rule.Thm ("not_false",ThmC.numerals_to_Free @{thm not_false})
neuper@37954
   318
			    ], 
walther@59851
   319
	 srls = Rule_Set.Empty, calc = [], errpatts = [],
walther@59871
   320
	 rules = [Rule.Thm ("commute_0_equality", ThmC.numerals_to_Free @{thm commute_0_equality}),
walther@59871
   321
		  Rule.Thm ("separate_bdvs0", ThmC.numerals_to_Free @{thm separate_bdvs0}),
walther@59871
   322
		  Rule.Thm ("separate_bdvs_add1", ThmC.numerals_to_Free @{thm separate_bdvs_add1}),
walther@59871
   323
		  Rule.Thm ("separate_bdvs_add1", ThmC.numerals_to_Free @{thm separate_bdvs_add2}),
walther@59871
   324
		  Rule.Thm ("separate_bdvs_mult", ThmC.numerals_to_Free @{thm separate_bdvs_mult})
walther@59878
   325
                 ], scr = Rule.Empty_Prog};
neuper@37954
   326
wneuper@59472
   327
\<close>
wneuper@59472
   328
ML \<open>
neuper@37997
   329
neuper@37954
   330
(*.order the equations in a system such, that a triangular system (if any)
neuper@37954
   331
   appears as [..c_4 = .., ..., ..., ..c_1 + ..c_2 + ..c_3 ..c_4 = ..].*)
neuper@37954
   332
val order_system = 
walther@59851
   333
    Rule_Def.Repeat {id="order_system", preconds = [], 
neuper@37954
   334
	 rew_ord = ("ord_simplify_System", 
neuper@37954
   335
		    ord_simplify_System false thy), 
walther@59851
   336
	 erls = Rule_Set.Empty, srls = Rule_Set.Empty, calc = [], errpatts = [],
walther@59871
   337
	 rules = [Rule.Thm ("order_system_NxN", ThmC.numerals_to_Free @{thm order_system_NxN})
neuper@37954
   338
		  ],
walther@59878
   339
	 scr = Rule.Empty_Prog};
neuper@37954
   340
neuper@37954
   341
val prls_triangular = 
walther@59851
   342
    Rule_Def.Repeat {id="prls_triangular", preconds = [], 
walther@59857
   343
	 rew_ord = ("e_rew_ord", Rewrite_Ord.e_rew_ord), 
walther@59851
   344
	 erls = Rule_Def.Repeat {id="erls_prls_triangular", preconds = [], 
walther@59857
   345
		     rew_ord = ("e_rew_ord", Rewrite_Ord.e_rew_ord), 
walther@59851
   346
		     erls = Rule_Set.Empty, srls = Rule_Set.Empty, calc = [], errpatts = [],
neuper@37997
   347
		     rules = [(*for precond NTH_CONS ...*)
walther@59878
   348
			      Rule.Eval ("Orderings.ord_class.less", Prog_Expr.eval_equ "#less_"),
walther@59878
   349
			      Rule.Eval ("Groups.plus_class.plus", (**)eval_binop "#add_")
neuper@37954
   350
			      (*immediately repeated rewrite pushes
neuper@37954
   351
					    '+' into precondition !*)
neuper@37954
   352
			      ],
walther@59878
   353
		     scr = Rule.Empty_Prog}, 
walther@59851
   354
	 srls = Rule_Set.Empty, calc = [], errpatts = [],
walther@59871
   355
	 rules = [Rule.Thm ("NTH_CONS",ThmC.numerals_to_Free @{thm NTH_CONS}),
walther@59878
   356
		  Rule.Eval ("Groups.plus_class.plus", (**)eval_binop "#add_"),
walther@59871
   357
		  Rule.Thm ("NTH_NIL",ThmC.numerals_to_Free @{thm NTH_NIL}),
walther@59871
   358
		  Rule.Thm ("tl_Cons",ThmC.numerals_to_Free @{thm tl_Cons}),
walther@59871
   359
		  Rule.Thm ("tl_Nil",ThmC.numerals_to_Free @{thm tl_Nil}),
walther@60278
   360
		  Rule.Eval ("EqSystem.occur_exactly_in", 
neuper@37954
   361
			eval_occur_exactly_in 
neuper@37954
   362
			    "#eval_occur_exactly_in_")
neuper@37954
   363
		  ],
walther@59878
   364
	 scr = Rule.Empty_Prog};
wneuper@59472
   365
\<close>
wneuper@59472
   366
ML \<open>
neuper@37954
   367
neuper@37954
   368
(*WN060914 quickly created for 4x4; 
neuper@37954
   369
 more similarity to prls_triangular desirable*)
neuper@37954
   370
val prls_triangular4 = 
walther@59851
   371
    Rule_Def.Repeat {id="prls_triangular4", preconds = [], 
walther@59857
   372
	 rew_ord = ("e_rew_ord", Rewrite_Ord.e_rew_ord), 
walther@59851
   373
	 erls = Rule_Def.Repeat {id="erls_prls_triangular4", preconds = [], 
walther@59857
   374
		     rew_ord = ("e_rew_ord", Rewrite_Ord.e_rew_ord), 
walther@59851
   375
		     erls = Rule_Set.Empty, srls = Rule_Set.Empty, calc = [], errpatts = [],
neuper@37997
   376
		     rules = [(*for precond NTH_CONS ...*)
walther@59878
   377
			      Rule.Eval ("Orderings.ord_class.less", Prog_Expr.eval_equ "#less_"),
walther@59878
   378
			      Rule.Eval ("Groups.plus_class.plus", (**)eval_binop "#add_")
neuper@37954
   379
			      (*immediately repeated rewrite pushes
neuper@37954
   380
					    '+' into precondition !*)
neuper@37954
   381
			      ],
walther@59878
   382
		     scr = Rule.Empty_Prog}, 
walther@59851
   383
	 srls = Rule_Set.Empty, calc = [], errpatts = [],
walther@59871
   384
	 rules = [Rule.Thm ("NTH_CONS",ThmC.numerals_to_Free @{thm NTH_CONS}),
walther@59878
   385
		  Rule.Eval ("Groups.plus_class.plus", (**)eval_binop "#add_"),
walther@59871
   386
		  Rule.Thm ("NTH_NIL",ThmC.numerals_to_Free @{thm NTH_NIL}),
walther@59871
   387
		  Rule.Thm ("tl_Cons",ThmC.numerals_to_Free @{thm tl_Cons}),
walther@59871
   388
		  Rule.Thm ("tl_Nil",ThmC.numerals_to_Free @{thm tl_Nil}),
walther@60278
   389
		  Rule.Eval ("EqSystem.occur_exactly_in", 
neuper@37954
   390
			eval_occur_exactly_in 
neuper@37954
   391
			    "#eval_occur_exactly_in_")
neuper@37954
   392
		  ],
walther@59878
   393
	 scr = Rule.Empty_Prog};
wneuper@59472
   394
\<close>
t@42197
   395
wenzelm@60286
   396
setup_rule
wenzelm@60286
   397
  simplify_System_parenthesized = \<open>prep_rls' simplify_System_parenthesized\<close> and
wenzelm@60286
   398
  simplify_System = \<open>prep_rls' simplify_System\<close> and
wenzelm@60286
   399
  isolate_bdvs = \<open>prep_rls' isolate_bdvs\<close> and
wenzelm@60286
   400
  isolate_bdvs_4x4 = \<open>prep_rls' isolate_bdvs_4x4\<close> and 
wenzelm@60286
   401
  order_system = \<open>prep_rls' order_system\<close> and 
wenzelm@60286
   402
  order_add_mult_System = \<open>prep_rls' order_add_mult_System\<close> and
wenzelm@60286
   403
  norm_System_noadd_fractions = \<open>prep_rls' norm_System_noadd_fractions\<close> and
wenzelm@60286
   404
  norm_System = \<open>prep_rls' norm_System\<close>
t@42197
   405
walther@60023
   406
walther@60023
   407
section \<open>Problems\<close>
walther@60023
   408
wneuper@59472
   409
setup \<open>KEStore_Elems.add_pbts
walther@59973
   410
  [(Problem.prep_input thy "pbl_equsys" [] Problem.id_empty
s1210629013@55339
   411
      (["system"],
s1210629013@55339
   412
        [("#Given" ,["equalities e_s", "solveForVars v_s"]),
s1210629013@55339
   413
          ("#Find"  ,["solution ss'''"](*''' is copy-named*))],
walther@59852
   414
        Rule_Set.append_rules "empty" Rule_Set.empty [(*for preds in where_*)], SOME "solveSystem e_s v_s", [])),
walther@59973
   415
    (Problem.prep_input thy "pbl_equsys_lin" [] Problem.id_empty
s1210629013@55339
   416
      (["LINEAR", "system"],
s1210629013@55339
   417
        [("#Given" ,["equalities e_s", "solveForVars v_s"]),
s1210629013@55339
   418
          (*TODO.WN050929 check linearity*)
s1210629013@55339
   419
          ("#Find"  ,["solution ss'''"])],
walther@59852
   420
        Rule_Set.append_rules "empty" Rule_Set.empty [(*for preds in where_*)], SOME "solveSystem e_s v_s", [])),
walther@59973
   421
    (Problem.prep_input thy "pbl_equsys_lin_2x2" [] Problem.id_empty
s1210629013@55339
   422
      (["2x2", "LINEAR", "system"],
s1210629013@55339
   423
      (*~~~~~~~~~~~~~~~~~~~~~~~~~*)
s1210629013@55339
   424
        [("#Given" ,["equalities e_s", "solveForVars v_s"]),
walther@60121
   425
          ("#Where"  ,["Length (e_s:: bool list) = 2", "Length v_s = 2"]),
s1210629013@55339
   426
          ("#Find"  ,["solution ss'''"])],
walther@59852
   427
        Rule_Set.append_rules "prls_2x2_linear_system" Rule_Set.empty 
walther@59871
   428
			    [Rule.Thm ("LENGTH_CONS",ThmC.numerals_to_Free @{thm LENGTH_CONS}),
walther@59871
   429
			      Rule.Thm ("LENGTH_NIL",ThmC.numerals_to_Free @{thm LENGTH_NIL}),
walther@59878
   430
			      Rule.Eval ("Groups.plus_class.plus", (**)eval_binop "#add_"),
walther@59878
   431
			      Rule.Eval ("HOL.eq", Prog_Expr.eval_equal "#equal_")], 
s1210629013@55339
   432
        SOME "solveSystem e_s v_s", [])),
walther@59973
   433
    (Problem.prep_input thy "pbl_equsys_lin_2x2_tri" [] Problem.id_empty
s1210629013@55339
   434
      (["triangular", "2x2", "LINEAR", "system"],
s1210629013@55339
   435
        [("#Given" ,["equalities e_s", "solveForVars v_s"]),
s1210629013@55339
   436
          ("#Where",
s1210629013@55339
   437
            ["(tl v_s) from v_s occur_exactly_in (NTH 1 (e_s::bool list))",
s1210629013@55339
   438
              "    v_s  from v_s occur_exactly_in (NTH 2 (e_s::bool list))"]),
s1210629013@55339
   439
          ("#Find"  ,["solution ss'''"])],
walther@59997
   440
        prls_triangular, SOME "solveSystem e_s v_s", [["EqSystem", "top_down_substitution", "2x2"]])),
walther@59973
   441
    (Problem.prep_input thy "pbl_equsys_lin_2x2_norm" [] Problem.id_empty
wneuper@59367
   442
      (["normalise", "2x2", "LINEAR", "system"],
s1210629013@55339
   443
        [("#Given" ,["equalities e_s", "solveForVars v_s"]),
s1210629013@55339
   444
          ("#Find"  ,["solution ss'''"])],
walther@59852
   445
      Rule_Set.append_rules "empty" Rule_Set.empty [(*for preds in where_*)], 
s1210629013@55339
   446
      SOME "solveSystem e_s v_s", 
walther@59997
   447
      [["EqSystem", "normalise", "2x2"]])),
walther@59973
   448
    (Problem.prep_input thy "pbl_equsys_lin_3x3" [] Problem.id_empty
s1210629013@55339
   449
      (["3x3", "LINEAR", "system"],
s1210629013@55339
   450
        (*~~~~~~~~~~~~~~~~~~~~~~~~~*)
s1210629013@55339
   451
        [("#Given" ,["equalities e_s", "solveForVars v_s"]),
walther@60121
   452
          ("#Where"  ,["Length (e_s:: bool list) = 3", "Length v_s = 3"]),
s1210629013@55339
   453
          ("#Find"  ,["solution ss'''"])],
walther@59852
   454
        Rule_Set.append_rules "prls_3x3_linear_system" Rule_Set.empty 
walther@59871
   455
			    [Rule.Thm ("LENGTH_CONS",ThmC.numerals_to_Free @{thm LENGTH_CONS}),
walther@59871
   456
			      Rule.Thm ("LENGTH_NIL",ThmC.numerals_to_Free @{thm LENGTH_NIL}),
walther@59878
   457
			      Rule.Eval ("Groups.plus_class.plus", (**)eval_binop "#add_"),
walther@59878
   458
			      Rule.Eval ("HOL.eq", Prog_Expr.eval_equal "#equal_")],
s1210629013@55339
   459
        SOME "solveSystem e_s v_s", [])),
walther@59973
   460
    (Problem.prep_input thy "pbl_equsys_lin_4x4" [] Problem.id_empty
s1210629013@55339
   461
      (["4x4", "LINEAR", "system"],
s1210629013@55339
   462
        (*~~~~~~~~~~~~~~~~~~~~~~~~~*)
s1210629013@55339
   463
        [("#Given" ,["equalities e_s", "solveForVars v_s"]),
walther@60121
   464
          ("#Where"  ,["Length (e_s:: bool list) = 4", "Length v_s = 4"]),
s1210629013@55339
   465
          ("#Find"  ,["solution ss'''"])],
walther@59852
   466
        Rule_Set.append_rules "prls_4x4_linear_system" Rule_Set.empty 
walther@59871
   467
			    [Rule.Thm ("LENGTH_CONS",ThmC.numerals_to_Free @{thm LENGTH_CONS}),
walther@59871
   468
			      Rule.Thm ("LENGTH_NIL",ThmC.numerals_to_Free @{thm LENGTH_NIL}),
walther@59878
   469
			      Rule.Eval ("Groups.plus_class.plus", (**)eval_binop "#add_"),
walther@59878
   470
			      Rule.Eval ("HOL.eq", Prog_Expr.eval_equal "#equal_")],
s1210629013@55339
   471
        SOME "solveSystem e_s v_s", [])),
walther@59973
   472
    (Problem.prep_input thy "pbl_equsys_lin_4x4_tri" [] Problem.id_empty
s1210629013@55339
   473
      (["triangular", "4x4", "LINEAR", "system"],
s1210629013@55339
   474
        [("#Given" ,["equalities e_s", "solveForVars v_s"]),
s1210629013@55339
   475
          ("#Where" , (*accepts missing variables up to diagional form*)
s1210629013@55339
   476
            ["(NTH 1 (v_s::real list)) occurs_in (NTH 1 (e_s::bool list))",
s1210629013@55339
   477
              "(NTH 2 (v_s::real list)) occurs_in (NTH 2 (e_s::bool list))",
s1210629013@55339
   478
              "(NTH 3 (v_s::real list)) occurs_in (NTH 3 (e_s::bool list))",
s1210629013@55339
   479
              "(NTH 4 (v_s::real list)) occurs_in (NTH 4 (e_s::bool list))"]),
s1210629013@55339
   480
          ("#Find"  ,["solution ss'''"])],
walther@59852
   481
      Rule_Set.append_rules "prls_tri_4x4_lin_sys" prls_triangular
walther@60278
   482
	      [Rule.Eval ("Prog_Expr.occurs_in", Prog_Expr.eval_occurs_in "")], 
s1210629013@55339
   483
      SOME "solveSystem e_s v_s", 
walther@59997
   484
      [["EqSystem", "top_down_substitution", "4x4"]])),
walther@59973
   485
    (Problem.prep_input thy "pbl_equsys_lin_4x4_norm" [] Problem.id_empty
wneuper@59367
   486
      (["normalise", "4x4", "LINEAR", "system"],
s1210629013@55339
   487
        [("#Given" ,["equalities e_s", "solveForVars v_s"]),
walther@60121
   488
          (*Length is checked 1 level above*)
s1210629013@55339
   489
          ("#Find"  ,["solution ss'''"])],
walther@59852
   490
        Rule_Set.append_rules "empty" Rule_Set.empty [(*for preds in where_*)], 
s1210629013@55339
   491
        SOME "solveSystem e_s v_s", 
walther@59997
   492
        [["EqSystem", "normalise", "4x4"]]))]\<close>
neuper@37954
   493
wneuper@59472
   494
ML \<open>
neuper@37997
   495
(*this is for NTH only*)
walther@59851
   496
val srls = Rule_Def.Repeat {id="srls_normalise_4x4", 
neuper@37954
   497
		preconds = [], 
neuper@37954
   498
		rew_ord = ("termlessI",termlessI), 
walther@59852
   499
		erls = Rule_Set.append_rules "erls_in_srls_IntegrierenUnd.." Rule_Set.empty
neuper@37997
   500
				  [(*for asm in NTH_CONS ...*)
walther@59878
   501
				   Rule.Eval ("Orderings.ord_class.less", Prog_Expr.eval_equ "#less_"),
neuper@37997
   502
				   (*2nd NTH_CONS pushes n+-1 into asms*)
walther@59878
   503
				   Rule.Eval("Groups.plus_class.plus", (**)eval_binop "#add_")
neuper@37954
   504
				   ], 
walther@59851
   505
		srls = Rule_Set.Empty, calc = [], errpatts = [],
walther@59871
   506
		rules = [Rule.Thm ("NTH_CONS",ThmC.numerals_to_Free @{thm NTH_CONS}),
walther@59878
   507
			 Rule.Eval("Groups.plus_class.plus", (**)eval_binop "#add_"),
walther@59871
   508
			 Rule.Thm ("NTH_NIL",ThmC.numerals_to_Free @{thm NTH_NIL})],
walther@59878
   509
		scr = Rule.Empty_Prog};
wneuper@59472
   510
\<close>
neuper@37954
   511
walther@60023
   512
section \<open>Methods\<close>
walther@60023
   513
wneuper@59472
   514
setup \<open>KEStore_Elems.add_mets
walther@60154
   515
    [MethodC.prep_input thy "met_eqsys" [] MethodC.id_empty
s1210629013@55373
   516
	    (["EqSystem"], [],
walther@59851
   517
	      {rew_ord'="tless_true", rls' = Rule_Set.Empty, calc = [], srls = Rule_Set.Empty, prls = Rule_Set.Empty, crls = Rule_Set.Empty,
walther@59851
   518
          errpats = [], nrls = Rule_Set.Empty},
wneuper@59545
   519
	      @{thm refl}),
walther@60154
   520
    MethodC.prep_input thy "met_eqsys_topdown" [] MethodC.id_empty
walther@59997
   521
      (["EqSystem", "top_down_substitution"], [],
walther@59851
   522
        {rew_ord'="tless_true", rls' = Rule_Set.Empty, calc = [], srls = Rule_Set.Empty, prls = Rule_Set.Empty, crls = Rule_Set.Empty,
walther@59851
   523
          errpats = [], nrls = Rule_Set.Empty},
wneuper@59545
   524
       @{thm refl})]
wneuper@59473
   525
\<close>
wneuper@59545
   526
wneuper@59504
   527
partial_function (tailrec) solve_system :: "bool list => real list => bool list"
wneuper@59504
   528
  where
walther@59635
   529
"solve_system e_s v_s = (
walther@59635
   530
  let
walther@59635
   531
    e_1 = Take (hd e_s);                                                         
walther@59635
   532
    e_1 = (
walther@59637
   533
      (Try (Rewrite_Set_Inst [(''bdv_1'', hd v_s), (''bdv_2'', hd (tl v_s))] ''isolate_bdvs'')) #>                   
walther@59635
   534
      (Try (Rewrite_Set_Inst [(''bdv_1'', hd v_s), (''bdv_2'', hd (tl v_s))] ''simplify_System''))
walther@59635
   535
      ) e_1;                 
walther@59635
   536
    e_2 = Take (hd (tl e_s));                                                    
walther@59635
   537
    e_2 = (
walther@59637
   538
      (Substitute [e_1]) #>                                                 
walther@59637
   539
      (Try (Rewrite_Set_Inst [(''bdv_1'', hd v_s), (''bdv_2'', hd (tl v_s))] ''simplify_System_parenthesized'' )) #>      
walther@59637
   540
      (Try (Rewrite_Set_Inst [(''bdv_1'', hd v_s), (''bdv_2'', hd (tl v_s))] ''isolate_bdvs'' )) #>                   
walther@59635
   541
      (Try (Rewrite_Set_Inst [(''bdv_1'', hd v_s), (''bdv_2'', hd (tl v_s))] ''simplify_System'' ))
walther@59635
   542
      ) e_2;                 
walther@59635
   543
    e__s = Take [e_1, e_2]                                                       
walther@59635
   544
  in
walther@59635
   545
    Try (Rewrite_Set ''order_system'' ) e__s)                              "
wneuper@59473
   546
setup \<open>KEStore_Elems.add_mets
walther@60154
   547
    [MethodC.prep_input thy "met_eqsys_topdown_2x2" [] MethodC.id_empty
s1210629013@55373
   548
      (["EqSystem", "top_down_substitution", "2x2"],
s1210629013@55373
   549
        [("#Given", ["equalities e_s", "solveForVars v_s"]),
s1210629013@55373
   550
          ("#Where",
s1210629013@55373
   551
            ["(tl v_s) from v_s occur_exactly_in (NTH 1 (e_s::bool list))",
s1210629013@55373
   552
              "    v_s  from v_s occur_exactly_in (NTH 2 (e_s::bool list))"]),
s1210629013@55373
   553
          ("#Find"  ,["solution ss'''"])],
walther@59851
   554
	      {rew_ord'="ord_simplify_System", rls' = Rule_Set.Empty, calc = [], 
walther@59852
   555
	        srls = Rule_Set.append_rules "srls_top_down_2x2" Rule_Set.empty
walther@59871
   556
				      [Rule.Thm ("hd_thm",ThmC.numerals_to_Free @{thm hd_thm}),
walther@59871
   557
				        Rule.Thm ("tl_Cons",ThmC.numerals_to_Free @{thm tl_Cons}),
walther@59871
   558
				        Rule.Thm ("tl_Nil",ThmC.numerals_to_Free @{thm tl_Nil})], 
walther@59851
   559
	        prls = prls_triangular, crls = Rule_Set.Empty, errpats = [], nrls = Rule_Set.Empty},
wneuper@59551
   560
	      @{thm solve_system.simps})]
wneuper@59473
   561
\<close>
wneuper@59473
   562
setup \<open>KEStore_Elems.add_mets
walther@60154
   563
    [MethodC.prep_input thy "met_eqsys_norm" [] MethodC.id_empty
wneuper@59367
   564
	    (["EqSystem", "normalise"], [],
walther@59851
   565
	      {rew_ord'="tless_true", rls' = Rule_Set.Empty, calc = [], srls = Rule_Set.Empty, prls = Rule_Set.Empty, crls = Rule_Set.Empty,
walther@59851
   566
          errpats = [], nrls = Rule_Set.Empty},
wneuper@59545
   567
	      @{thm refl})]
wneuper@59473
   568
\<close>
wneuper@59545
   569
wneuper@59504
   570
partial_function (tailrec) solve_system2 :: "bool list => real list => bool list"
wneuper@59504
   571
  where
walther@59635
   572
"solve_system2 e_s v_s = (
walther@59635
   573
  let
walther@59635
   574
    e__s = (
walther@59637
   575
      (Try (Rewrite_Set ''norm_Rational'' )) #>
walther@59637
   576
      (Try (Rewrite_Set_Inst [(''bdv_1'', hd v_s), (''bdv_2'', hd (tl v_s))] ''simplify_System_parenthesized'' )) #>
walther@59637
   577
      (Try (Rewrite_Set_Inst [(''bdv_1'', hd v_s), (''bdv_2'', hd (tl v_s))] ''isolate_bdvs'' )) #>
walther@59637
   578
      (Try (Rewrite_Set_Inst [(''bdv_1'', hd v_s), (''bdv_2'', hd (tl v_s))] ''simplify_System_parenthesized'' )) #>
walther@59635
   579
      (Try (Rewrite_Set ''order_system'' ))
walther@59635
   580
      ) e_s
walther@59635
   581
  in
walther@59635
   582
    SubProblem (''EqSystem'', [''LINEAR'', ''system''], [''no_met''])
walther@59635
   583
      [BOOL_LIST e__s, REAL_LIST v_s])"
wneuper@59473
   584
setup \<open>KEStore_Elems.add_mets
walther@60154
   585
    [MethodC.prep_input thy "met_eqsys_norm_2x2" [] MethodC.id_empty
walther@59997
   586
	    (["EqSystem", "normalise", "2x2"],
s1210629013@55373
   587
	      [("#Given" ,["equalities e_s", "solveForVars v_s"]),
s1210629013@55373
   588
		      ("#Find"  ,["solution ss'''"])],
walther@59851
   589
	      {rew_ord'="tless_true", rls' = Rule_Set.Empty, calc = [], 
walther@59852
   590
	        srls = Rule_Set.append_rules "srls_normalise_2x2" Rule_Set.empty
walther@59871
   591
				      [Rule.Thm ("hd_thm",ThmC.numerals_to_Free @{thm hd_thm}),
walther@59871
   592
				        Rule.Thm ("tl_Cons",ThmC.numerals_to_Free @{thm tl_Cons}),
walther@59871
   593
				        Rule.Thm ("tl_Nil",ThmC.numerals_to_Free @{thm tl_Nil})], 
walther@59851
   594
		      prls = Rule_Set.Empty, crls = Rule_Set.Empty, errpats = [], nrls = Rule_Set.Empty},
wneuper@59551
   595
		    @{thm solve_system2.simps})]
wneuper@59473
   596
\<close>
wneuper@59545
   597
wneuper@59504
   598
partial_function (tailrec) solve_system3 :: "bool list => real list => bool list"
wneuper@59504
   599
  where
walther@59635
   600
"solve_system3 e_s v_s = (
walther@59635
   601
  let
walther@59635
   602
    e__s = (
walther@59637
   603
      (Try (Rewrite_Set ''norm_Rational'' )) #>
walther@59637
   604
      (Repeat (Rewrite ''commute_0_equality'' )) #>
walther@59635
   605
      (Try (Rewrite_Set_Inst [(''bdv_1'', NTH 1 v_s), (''bdv_2'', NTH 2 v_s ),
walther@59637
   606
        (''bdv_3'', NTH 3 v_s), (''bdv_3'', NTH 4 v_s )] ''simplify_System_parenthesized'' )) #>
walther@59635
   607
      (Try (Rewrite_Set_Inst [(''bdv_1'', NTH 1 v_s), (''bdv_2'', NTH 2 v_s ),
walther@59637
   608
        (''bdv_3'', NTH 3 v_s), (''bdv_3'', NTH 4 v_s )] ''isolate_bdvs_4x4'' )) #>
walther@59635
   609
      (Try (Rewrite_Set_Inst [(''bdv_1'', NTH 1 v_s), (''bdv_2'', NTH 2 v_s ),
walther@59637
   610
        (''bdv_3'', NTH 3 v_s), (''bdv_3'', NTH 4 v_s )] ''simplify_System_parenthesized'' )) #>
walther@59635
   611
      (Try (Rewrite_Set ''order_system''))
walther@59635
   612
      )  e_s
walther@59635
   613
  in
walther@59635
   614
    SubProblem (''EqSystem'', [''LINEAR'', ''system''], [''no_met''])
walther@59635
   615
      [BOOL_LIST e__s, REAL_LIST v_s])"
wneuper@59473
   616
setup \<open>KEStore_Elems.add_mets
walther@60154
   617
    [MethodC.prep_input thy "met_eqsys_norm_4x4" [] MethodC.id_empty
walther@59997
   618
	      (["EqSystem", "normalise", "4x4"],
s1210629013@55373
   619
	       [("#Given" ,["equalities e_s", "solveForVars v_s"]),
s1210629013@55373
   620
	         ("#Find"  ,["solution ss'''"])],
walther@59851
   621
	       {rew_ord'="tless_true", rls' = Rule_Set.Empty, calc = [], 
walther@59852
   622
	         srls = Rule_Set.append_rules "srls_normalise_4x4" srls
walther@59871
   623
	             [Rule.Thm ("hd_thm",ThmC.numerals_to_Free @{thm hd_thm}),
walther@59871
   624
	               Rule.Thm ("tl_Cons",ThmC.numerals_to_Free @{thm tl_Cons}),
walther@59871
   625
	               Rule.Thm ("tl_Nil",ThmC.numerals_to_Free @{thm tl_Nil})], 
walther@59851
   626
		       prls = Rule_Set.Empty, crls = Rule_Set.Empty, errpats = [], nrls = Rule_Set.Empty},
walther@59997
   627
		     (*STOPPED.WN06? met ["EqSystem", "normalise", "4x4"] #>#>#>#>#>#>#>#>#>#>#>#>#>@*)
wneuper@59551
   628
		     @{thm solve_system3.simps})]
wneuper@59473
   629
\<close>
wneuper@59545
   630
wneuper@59504
   631
partial_function (tailrec) solve_system4 :: "bool list => real list => bool list"
wneuper@59504
   632
  where
walther@59635
   633
"solve_system4 e_s v_s = (
walther@59635
   634
  let
walther@59635
   635
    e_1 = NTH 1 e_s;
walther@59635
   636
    e_2 = Take (NTH 2 e_s);
walther@59635
   637
    e_2 = (
walther@59637
   638
      (Substitute [e_1]) #>
walther@59635
   639
      (Try (Rewrite_Set_Inst [(''bdv_1'',NTH 1 v_s), (''bdv_2'',NTH 2 v_s),
walther@59637
   640
        (''bdv_3'',NTH 3 v_s), (''bdv_4'',NTH 4 v_s)] ''simplify_System_parenthesized'' )) #>
walther@59635
   641
      (Try (Rewrite_Set_Inst [(''bdv_1'',NTH 1 v_s), (''bdv_2'',NTH 2 v_s),
walther@59637
   642
        (''bdv_3'',NTH 3 v_s), (''bdv_4'',NTH 4 v_s)] ''isolate_bdvs'' )) #>
walther@59635
   643
      (Try (Rewrite_Set_Inst [(''bdv_1'',NTH 1 v_s), (''bdv_2'',NTH 2 v_s),
walther@59635
   644
        (''bdv_3'',NTH 3 v_s), (''bdv_4'',NTH 4 v_s)] ''norm_Rational'' ))
walther@59635
   645
      ) e_2
walther@59635
   646
  in
walther@59635
   647
    [e_1, e_2, NTH 3 e_s, NTH 4 e_s])"
wneuper@59473
   648
setup \<open>KEStore_Elems.add_mets
walther@60154
   649
    [MethodC.prep_input thy "met_eqsys_topdown_4x4" [] MethodC.id_empty
walther@59997
   650
	    (["EqSystem", "top_down_substitution", "4x4"],
s1210629013@55373
   651
	      [("#Given" ,["equalities e_s", "solveForVars v_s"]),
s1210629013@55373
   652
	        ("#Where" , (*accepts missing variables up to diagonal form*)
s1210629013@55373
   653
            ["(NTH 1 (v_s::real list)) occurs_in (NTH 1 (e_s::bool list))",
s1210629013@55373
   654
              "(NTH 2 (v_s::real list)) occurs_in (NTH 2 (e_s::bool list))",
s1210629013@55373
   655
              "(NTH 3 (v_s::real list)) occurs_in (NTH 3 (e_s::bool list))",
s1210629013@55373
   656
              "(NTH 4 (v_s::real list)) occurs_in (NTH 4 (e_s::bool list))"]),
s1210629013@55373
   657
	        ("#Find", ["solution ss'''"])],
walther@59851
   658
	    {rew_ord'="ord_simplify_System", rls' = Rule_Set.Empty, calc = [], 
walther@59852
   659
	      srls = Rule_Set.append_rules "srls_top_down_4x4" srls [], 
walther@59852
   660
	      prls = Rule_Set.append_rules "prls_tri_4x4_lin_sys" prls_triangular
walther@60278
   661
			      [Rule.Eval ("Prog_Expr.occurs_in", Prog_Expr.eval_occurs_in "")], 
walther@59851
   662
	      crls = Rule_Set.Empty, errpats = [], nrls = Rule_Set.Empty},
walther@59637
   663
	    (*FIXXXXME.WN060916: this script works ONLY for exp 7.79 #>#>#>#>#>#>#>#>#>#>*)
wneuper@59551
   664
	    @{thm solve_system4.simps})]
walther@60278
   665
\<close> ML \<open>
walther@60278
   666
\<close> ML \<open>
walther@60278
   667
\<close> ML \<open>
wneuper@59472
   668
\<close>
walther@60278
   669
end