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