src/Tools/isac/Knowledge/Test.thy
author wenzelm
Sun, 20 Jun 2021 16:26:18 +0200
changeset 60306 51ec2e101e9f
parent 60303 815b0dc8b589
child 60309 70a1d102660d
permissions -rw-r--r--
Isar command 'problem' as combination of KEStore_Elems.add_pbts + Problem.prep_import, without change of semantics;
wneuper@59430
     1
(* Knowledge for tests, specifically simplified or bound to a fixed state
wneuper@59430
     2
   for the purpose of simplifying tests.
neuper@37954
     3
   Author: Walther Neuper 2003
neuper@37954
     4
   (c) due to copyright terms
wneuper@59432
     5
wneuper@59432
     6
Notes on cleanup:
wneuper@59432
     7
(0) revert import Test -- DiophantEq, this raises issues related to (1..4)
wneuper@59432
     8
(1) transfer methods to respective theories, if only test, then hierarchy at ["...", "Test"]:
wneuper@59432
     9
    differentiate, root equatioh, polynomial equation, diophantine equation
wneuper@59432
    10
(2) transfer problems accordingly
wneuper@59432
    11
(3) rearrange rls according to (1..2)
wneuper@59432
    12
(4) rearrange axiomatizations according to (3)
neuper@37954
    13
*) 
neuper@37906
    14
wneuper@59424
    15
theory Test imports Base_Tools Poly Rational Root Diff begin
neuper@37906
    16
 
wneuper@59551
    17
section \<open>consts for problems\<close>
wneuper@59430
    18
consts
walther@60278
    19
  "is_root_free"   :: "'a => bool"      ("is'_root'_free _" 10)
walther@60278
    20
  "contains_root"   :: "'a => bool"      ("contains'_root _" 10)
neuper@42008
    21
walther@60278
    22
  "precond_rootmet" :: "'a => bool"      ("precond'_rootmet _" 10)
walther@60278
    23
  "precond_rootpbl" :: "'a => bool"      ("precond'_rootpbl _" 10)
walther@60278
    24
  "precond_submet"  :: "'a => bool"      ("precond'_submet _" 10)
walther@60278
    25
  "precond_subpbl"  :: "'a => bool"      ("precond'_subpbl _" 10)
neuper@37906
    26
neuper@37906
    27
wneuper@59472
    28
section \<open>functions\<close>
wneuper@59472
    29
ML \<open>
wneuper@59430
    30
fun bin_o (Const (op_, (Type ("fun", [Type (s2, []), Type ("fun", [Type (s4, _),Type (s5, _)])]))))
wneuper@59430
    31
      = if s2 = s4 andalso s4 = s5 then [op_] else []
wneuper@59430
    32
    | bin_o _ = [];
neuper@37906
    33
wneuper@59430
    34
fun bin_op (t1 $ t2) = union op = (bin_op t1) (bin_op t2)
wneuper@59430
    35
  | bin_op t         =  bin_o t;
wneuper@59430
    36
fun is_bin_op t = (bin_op t <> []);
neuper@37906
    37
wneuper@59430
    38
fun bin_op_arg1 ((Const (_,
wneuper@59430
    39
    (Type ("fun", [Type (_, []), Type ("fun", [Type _, Type _])])))) $ arg1 $ _) = arg1
walther@59868
    40
  | bin_op_arg1 t = raise ERROR ("bin_op_arg1: t = " ^ UnparseC.term t);
wneuper@59430
    41
fun bin_op_arg2 ((Const (_,
wneuper@59430
    42
    (Type ("fun", [Type (_, []),Type ("fun", [Type _, Type _])]))))$ _ $ arg2) = arg2
walther@59868
    43
  | bin_op_arg2 t = raise ERROR ("bin_op_arg1: t = " ^ UnparseC.term t);
neuper@37906
    44
wneuper@59430
    45
exception NO_EQUATION_TERM;
wneuper@59430
    46
fun is_equation ((Const ("HOL.eq",
wneuper@59430
    47
    (Type ("fun", [Type (_, []), Type ("fun", [Type (_, []),Type ("bool",[])])])))) $ _ $ _) = true
wneuper@59430
    48
  | is_equation _ = false;
wneuper@59430
    49
fun equ_lhs ((Const ("HOL.eq",
wneuper@59430
    50
    (Type ("fun", [Type (_, []), Type ("fun", [Type (_, []),Type ("bool",[])])])))) $ l $ _) = l
wneuper@59430
    51
  | equ_lhs _ = raise NO_EQUATION_TERM;
wneuper@59430
    52
fun equ_rhs ((Const ("HOL.eq", (Type ("fun",
wneuper@59430
    53
		 [Type (_, []), Type ("fun", [Type (_, []), Type ("bool",[])])])))) $ _ $ r) = r
wneuper@59430
    54
  | equ_rhs _ = raise NO_EQUATION_TERM;
neuper@37906
    55
wneuper@59430
    56
fun atom (Const (_, Type (_,[]))) = true
wneuper@59430
    57
  | atom (Free (_, Type (_,[]))) = true
wneuper@59430
    58
  | atom (Var (_, Type (_,[]))) = true
wneuper@59430
    59
  | atom((Const ("Bin.integ_of_bin",_)) $ _) = true
wneuper@59430
    60
  | atom _ = false;
wneuper@59430
    61
wneuper@59430
    62
fun varids (Const (s, Type (_,[]))) = [strip_thy s]
wneuper@59430
    63
  | varids (Free (s, Type (_,[]))) = if TermC.is_num' s then [] else [strip_thy s]  
wneuper@59430
    64
  | varids (Var((s, _),Type (_,[]))) = [strip_thy s]
wneuper@59430
    65
(*| varids (_      (s,"?DUMMY"   )) =   ..ML-error *)
wneuper@59430
    66
  | varids((Const ("Bin.integ_of_bin",_)) $ _)= [](*8.01: superfluous?*)
wneuper@59430
    67
  | varids (Abs (a, _, t)) = union op = [a] (varids t)
wneuper@59430
    68
  | varids (t1 $ t2) = union op = (varids t1) (varids t2)
wneuper@59430
    69
  | varids _ = [];
wneuper@59430
    70
wneuper@59430
    71
fun bin_ops_only ((Const op_) $ t1 $ t2) =
wneuper@59430
    72
    if is_bin_op (Const op_) then bin_ops_only t1 andalso bin_ops_only t2 else false
wneuper@59430
    73
  | bin_ops_only t = if atom t then true else bin_ops_only t;
wneuper@59430
    74
wneuper@59430
    75
fun polynomial opl t _(* bdVar TODO *) =
wneuper@59430
    76
    subset op = (bin_op t, opl) andalso (bin_ops_only t);
wneuper@59430
    77
wneuper@59430
    78
fun poly_equ opl bdVar t = is_equation t (* bdVar TODO *) 
wneuper@59430
    79
    andalso polynomial opl (equ_lhs t) bdVar 
wneuper@59430
    80
    andalso polynomial opl (equ_rhs t) bdVar
wneuper@59430
    81
    andalso (subset op = (varids bdVar, varids (equ_lhs t)) orelse
wneuper@59430
    82
             subset op = (varids bdVar, varids (equ_lhs t)));
wneuper@59430
    83
wneuper@59430
    84
fun max (a,b) = if a < b then b else a;
wneuper@59430
    85
wneuper@59430
    86
fun degree addl mul bdVar t =
wneuper@59430
    87
let
wneuper@59430
    88
fun deg _ _ v (Const  (s, Type (_, []))) = if v=strip_thy s then 1 else 0
wneuper@59430
    89
  | deg _ _ v (Free   (s, Type (_, []))) = if v=strip_thy s then 1 else 0
wneuper@59430
    90
  | deg _ _ v (Var((s, _), Type (_, []))) = if v=strip_thy s then 1 else 0
wneuper@59430
    91
(*| deg _ _ v (_     (s,"?DUMMY"   ))          =   ..ML-error *) 
wneuper@59430
    92
  | deg _ _ _ ((Const ("Bin.integ_of_bin", _)) $ _ ) = 0 
wneuper@59430
    93
  | deg addl mul v (h $ t1 $ t2) =
wneuper@59430
    94
    if subset op = (bin_op h, addl)
wneuper@59430
    95
    then max (deg addl mul v t1  , deg addl mul v t2)
wneuper@59430
    96
    else (*mul!*)(deg addl mul v t1) + (deg addl mul v t2)
walther@59868
    97
  | deg _ _ _ t = raise ERROR ("deg: t = " ^ UnparseC.term t)
wneuper@59430
    98
in
wneuper@59430
    99
  if polynomial (addl @ [mul]) t bdVar
wneuper@59430
   100
  then SOME (deg addl mul (id_of bdVar) t)
wneuper@59430
   101
  else (NONE:int option)
wneuper@59430
   102
end;
wneuper@59430
   103
fun degree_ addl mul bdVar t = (* do not export *)
wneuper@59430
   104
let
wneuper@59430
   105
  fun opt (SOME i)= i
wneuper@59430
   106
	  | opt  NONE = 0
wneuper@59430
   107
in opt (degree addl mul bdVar t) end;
wneuper@59430
   108
wneuper@59430
   109
fun linear addl mul t bdVar = (degree_ addl mul bdVar t) < 2;
wneuper@59430
   110
wneuper@59430
   111
fun linear_equ addl mul bdVar t =
wneuper@59430
   112
  if is_equation t 
wneuper@59430
   113
  then
wneuper@59430
   114
    let
wneuper@59430
   115
      val degl = degree_ addl mul bdVar (equ_lhs t);
wneuper@59430
   116
	    val degr = degree_ addl mul bdVar (equ_rhs t)
wneuper@59430
   117
	  in if (degl>0 orelse degr>0)andalso max(degl,degr) < 2 then true else false end
wneuper@59430
   118
  else false;
wneuper@59430
   119
(* strip_thy op_  before *)
wneuper@59430
   120
fun is_div_op (dv, (Const (op_,
wneuper@59430
   121
    (Type ("fun", [Type (_, []), Type ("fun", [Type _, Type _])])))) ) = (dv = strip_thy op_)
wneuper@59430
   122
  | is_div_op _ = false;
wneuper@59430
   123
wneuper@59430
   124
fun is_denom bdVar div_op t =
walther@60269
   125
  let
walther@60269
   126
    fun is bool [v] _ (Const  (s,Type(_,[])))= bool andalso(if v = strip_thy s then true else false)
walther@60269
   127
  	  | is bool [v] _ (Free   (s,Type(_,[])))= bool andalso(if v = strip_thy s then true else false) 
walther@60269
   128
  	  | is bool [v] _ (Var((s,_),Type(_,[])))= bool andalso(if v = strip_thy s then true else false)
walther@60269
   129
  	  | is _ [_] _ ((Const ("Bin.integ_of_bin",_)) $ _) = false 
walther@60269
   130
  	  | is bool [v] dv (h$n$d) = 
walther@60269
   131
	      if is_div_op (dv, h) 
walther@60269
   132
	      then (is false [v] dv n) orelse(is true [v] dv d)
walther@60269
   133
	      else (is bool [v] dv n) orelse(is bool [v] dv d)
walther@60269
   134
  	  | is _ _ _ _ = raise ERROR "is_denom: uncovered case in fun.def."    
walther@60269
   135
  in is false (varids bdVar) (strip_thy div_op) t end;
wneuper@59430
   136
wneuper@59430
   137
wneuper@59430
   138
fun rational t div_op bdVar = 
wneuper@59430
   139
    is_denom bdVar div_op t andalso bin_ops_only t;
wneuper@59430
   140
wneuper@59472
   141
\<close>
wneuper@59430
   142
wneuper@59472
   143
section \<open>axiomatizations\<close>
neuper@52148
   144
axiomatization where (*TODO: prove as theorems*)
neuper@37906
   145
neuper@52148
   146
  radd_mult_distrib2:      "(k::real) * (m + n) = k * m + k * n" and
neuper@52148
   147
  rdistr_right_assoc:      "(k::real) + l * n + m * n = k + (l + m) * n" and
neuper@52148
   148
  rdistr_right_assoc_p:    "l * n + (m * n + (k::real)) = (l + m) * n + k" and
neuper@52148
   149
  rdistr_div_right:        "((k::real) + l) / n = k / n + l / n" and
neuper@37983
   150
  rcollect_right:
neuper@52148
   151
          "[| l is_const; m is_const |] ==> (l::real)*n + m*n = (l + m) * n" and
neuper@37983
   152
  rcollect_one_left:
neuper@52148
   153
          "m is_const ==> (n::real) + m * n = (1 + m) * n" and
neuper@37983
   154
  rcollect_one_left_assoc:
neuper@52148
   155
          "m is_const ==> (k::real) + n + m * n = k + (1 + m) * n" and
neuper@37983
   156
  rcollect_one_left_assoc_p:
neuper@52148
   157
          "m is_const ==> n + (m * n + (k::real)) = (1 + m) * n + k" and
neuper@37906
   158
neuper@52148
   159
  rtwo_of_the_same:        "a + a = 2 * a" and
neuper@52148
   160
  rtwo_of_the_same_assoc:  "(x + a) + a = x + 2 * a" and
neuper@52148
   161
  rtwo_of_the_same_assoc_p:"a + (a + x) = 2 * a + x" and
neuper@37906
   162
walther@60276
   163
  rcancel_den:             "a \<noteq> 0 ==> a * (b / a) = b" and
neuper@52148
   164
  rcancel_const:           "[| a is_const; b is_const |] ==> a*(x/b) = a/b*x" and
neuper@52148
   165
  rshift_nominator:        "(a::real) * b / c = a / c * b" and
neuper@37906
   166
walther@60242
   167
  exp_pow:                 "(a \<up> b) \<up> c = a \<up> (b * c)" and
walther@60242
   168
  rsqare:                  "(a::real) * a = a \<up> 2" and
walther@60242
   169
  power_1:                 "(a::real) \<up> 1 = a" and
walther@60242
   170
  rbinom_power_2:          "((a::real) + b) \<up>  2 = a \<up>  2 + 2*a*b + b \<up>  2" and
neuper@37906
   171
neuper@52148
   172
  rmult_1:                 "1 * k = (k::real)" and
neuper@52148
   173
  rmult_1_right:           "k * 1 = (k::real)" and
neuper@52148
   174
  rmult_0:                 "0 * k = (0::real)" and
neuper@52148
   175
  rmult_0_right:           "k * 0 = (0::real)" and
neuper@52148
   176
  radd_0:                  "0 + k = (k::real)" and
neuper@52148
   177
  radd_0_right:            "k + 0 = (k::real)" and
neuper@37906
   178
neuper@37983
   179
  radd_real_const_eq:
neuper@52148
   180
          "[| a is_const; c is_const; d is_const |] ==> a/d + c/d = (a+c)/(d::real)" and
neuper@37983
   181
  radd_real_const:
neuper@37906
   182
          "[| a is_const; b is_const; c is_const; d is_const |] ==> a/b + c/d = (a*d + b*c)/(b*(d::real))"  
neuper@52148
   183
   and
neuper@37906
   184
(*for AC-operators*)
neuper@52148
   185
  radd_commute:            "(m::real) + (n::real) = n + m" and
neuper@52148
   186
  radd_left_commute:       "(x::real) + (y + z) = y + (x + z)" and
neuper@52148
   187
  radd_assoc:              "(m::real) + n + k = m + (n + k)" and
neuper@52148
   188
  rmult_commute:           "(m::real) * n = n * m" and
neuper@52148
   189
  rmult_left_commute:      "(x::real) * (y * z) = y * (x * z)" and
neuper@52148
   190
  rmult_assoc:             "(m::real) * n * k = m * (n * k)" and
neuper@37906
   191
neuper@37906
   192
(*for equations: 'bdv' is a meta-constant*)
neuper@52148
   193
  risolate_bdv_add:       "((k::real) + bdv = m) = (bdv = m + (-1)*k)" and
neuper@52148
   194
  risolate_bdv_mult_add:  "((k::real) + n*bdv = m) = (n*bdv = m + (-1)*k)" and
neuper@52148
   195
  risolate_bdv_mult:      "((n::real) * bdv = m) = (bdv = m / n)" and
neuper@37906
   196
neuper@37983
   197
  rnorm_equation_add:
neuper@52148
   198
      "~(b =!= 0) ==> (a = b) = (a + (-1)*b = 0)" and
neuper@37906
   199
neuper@37906
   200
(*17.9.02 aus SqRoot.thy------------------------------vvv---*) 
walther@60262
   201
  root_ge0:            "0 <= a ==> 0 <= sqrt a = True" and
neuper@37906
   202
  (*should be dropped with better simplification in eval_rls ...*)
neuper@37983
   203
  root_add_ge0:
neuper@52148
   204
	"[| 0 <= a; 0 <= b |] ==> (0 <= sqrt a + sqrt b) = True" and
neuper@37983
   205
  root_ge0_1:
neuper@52148
   206
	"[| 0<=a; 0<=b; 0<=c |] ==> (0 <= a * sqrt b + sqrt c) = True" and
neuper@37983
   207
  root_ge0_2:
neuper@52148
   208
	"[| 0<=a; 0<=b; 0<=c |] ==> (0 <= sqrt a + b * sqrt c) = True" and
neuper@37906
   209
neuper@37906
   210
walther@60242
   211
  rroot_square_inv:         "(sqrt a) \<up>  2 = a" and
neuper@52148
   212
  rroot_times_root:         "sqrt a * sqrt b = sqrt(a*b)" and
neuper@52148
   213
  rroot_times_root_assoc:   "(a * sqrt b) * sqrt c = a * sqrt(b*c)" and
neuper@52148
   214
  rroot_times_root_assoc_p: "sqrt b * (sqrt c * a)= sqrt(b*c) * a" and
neuper@37906
   215
neuper@37906
   216
neuper@37906
   217
(*for root-equations*)
neuper@37983
   218
  square_equation_left:
walther@60242
   219
          "[| 0 <= a; 0 <= b |] ==> (((sqrt a)=b)=(a=(b \<up>  2)))" and
neuper@37983
   220
  square_equation_right:
walther@60242
   221
          "[| 0 <= a; 0 <= b |] ==> ((a=(sqrt b))=((a \<up>  2)=b))" and
neuper@37906
   222
  (*causes frequently non-termination:*)
neuper@37983
   223
  square_equation:  
walther@60242
   224
          "[| 0 <= a; 0 <= b |] ==> ((a=b)=((a \<up>  2)=b \<up>  2))" and
neuper@37906
   225
  
neuper@52148
   226
  risolate_root_add:        "(a+  sqrt c = d) = (  sqrt c = d + (-1)*a)" and
neuper@52148
   227
  risolate_root_mult:       "(a+b*sqrt c = d) = (b*sqrt c = d + (-1)*a)" and
neuper@52148
   228
  risolate_root_div:        "(a * sqrt c = d) = (  sqrt c = d / a)" and
neuper@37906
   229
neuper@37906
   230
(*for polynomial equations of degree 2; linear case in RatArith*)
walther@60242
   231
  mult_square:		"(a*bdv \<up> 2 = b) = (bdv \<up> 2 = b / a)" and
walther@60242
   232
  constant_square:       "(a + bdv \<up> 2 = b) = (bdv \<up> 2 = b + -1*a)" and
walther@60242
   233
  constant_mult_square:  "(a + b*bdv \<up> 2 = c) = (b*bdv \<up> 2 = c + -1*a)" and
neuper@37906
   234
neuper@37983
   235
  square_equality: 
walther@60242
   236
	     "0 <= a ==> (x \<up> 2 = a) = ((x=sqrt a) | (x=-1*sqrt a))" and
neuper@37983
   237
  square_equality_0:
walther@60242
   238
	     "(x \<up> 2 = 0) = (x = 0)" and
neuper@37906
   239
neuper@37906
   240
(*isolate root on the LEFT hand side of the equation
neuper@37906
   241
  otherwise shuffling from left to right would not terminate*)  
neuper@37906
   242
walther@60269
   243
(*Ambiguous input\<^here> produces 2 parse trees -----------------------------\\*)
walther@60269
   244
  rroot_to_lhs: "is_root_free a ==> (a = sqrt b) = (a + (-1)*sqrt b = 0)" and
walther@60269
   245
  rroot_to_lhs_mult: "is_root_free a ==> (a = c*sqrt b) = (a + (-1)*c*sqrt b = 0)" and
walther@60269
   246
  rroot_to_lhs_add_mult: "is_root_free a ==> (a = d+c*sqrt b) = (a + (-1)*c*sqrt b = d)"
walther@60269
   247
(*Ambiguous input\<^here> produces 2 parse trees -----------------------------//*)
neuper@37906
   248
wneuper@59472
   249
section \<open>eval functions\<close>
wneuper@59472
   250
ML \<open>
neuper@37954
   251
(** evaluation of numerals and predicates **)
neuper@37954
   252
neuper@37954
   253
(*does a term contain a root ?*)
neuper@37954
   254
fun eval_contains_root (thmid:string) _ 
walther@60278
   255
		       (t as (Const("Test.contains_root", _) $ arg)) thy = 
neuper@38053
   256
  if member op = (ids_of arg) "sqrt"
walther@59870
   257
  then SOME (TermC.mk_thmid thmid (UnparseC.term_in_thy thy arg)"",
wneuper@59390
   258
	       HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True})))
walther@59870
   259
  else SOME (TermC.mk_thmid thmid (UnparseC.term_in_thy thy arg)"",
wneuper@59390
   260
	       HOLogic.Trueprop $ (TermC.mk_equality (t, @{term False})))
neuper@38053
   261
| eval_contains_root _ _ _ _ = NONE; 
neuper@42008
   262
neuper@42008
   263
(*dummy precondition for root-met of x+1=2*)
walther@60278
   264
fun eval_precond_rootmet (thmid:string) _ (t as (Const ("Test.precond_rootmet", _) $ arg)) thy = 
walther@59870
   265
    SOME (TermC.mk_thmid thmid (UnparseC.term_in_thy thy arg)"",
wneuper@59390
   266
      HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True})))
neuper@52070
   267
  | eval_precond_rootmet _ _ _ _ = NONE; 
neuper@42008
   268
neuper@42008
   269
(*dummy precondition for root-pbl of x+1=2*)
walther@60278
   270
fun eval_precond_rootpbl (thmid:string) _ (t as (Const ("Test.precond_rootpbl", _) $ arg)) thy = 
walther@59870
   271
    SOME (TermC.mk_thmid thmid (UnparseC.term_in_thy thy arg) "",
wneuper@59390
   272
	    HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True})))
s1210629013@52159
   273
	| eval_precond_rootpbl _ _ _ _ = NONE;
wneuper@59472
   274
\<close>
wneuper@59472
   275
setup \<open>KEStore_Elems.add_calcs
walther@60278
   276
  [("contains_root", ("Test.contains_root", eval_contains_root"#contains_root_")),
walther@60278
   277
    ("Test.precond_rootmet", ("Test.precond_rootmet", eval_precond_rootmet"#Test.precond_rootmet_")),
walther@60278
   278
    ("Test.precond_rootpbl", ("Test.precond_rootpbl",
wneuper@59430
   279
        eval_precond_rootpbl"#Test.precond_rootpbl_"))]
wneuper@59472
   280
\<close>
wneuper@59472
   281
ML \<open>
wneuper@59430
   282
(*8.4.03  aus Poly.ML--------------------------------vvv---
wneuper@59430
   283
  make_polynomial  ---> make_poly
wneuper@59430
   284
  ^-- for user          ^-- for systest _ONLY_*)  
wneuper@59430
   285
wneuper@59430
   286
local (*. for make_polytest .*)
wneuper@59430
   287
wneuper@59430
   288
open Term;  (* for type order = EQUAL | LESS | GREATER *)
wneuper@59430
   289
wneuper@59430
   290
fun pr_ord EQUAL = "EQUAL"
wneuper@59430
   291
  | pr_ord LESS  = "LESS"
wneuper@59430
   292
  | pr_ord GREATER = "GREATER";
wneuper@59430
   293
wneuper@59430
   294
fun dest_hd' (Const (a, T)) =                          (* ~ term.ML *)
walther@60269
   295
    (case a of
walther@60275
   296
      "Transcendental.powr" => ((("|||||||||||||", 0), T), 0)           (*WN greatest *)
walther@60269
   297
  | _ => (((a, 0), T), 0))
wneuper@59430
   298
  | dest_hd' (Free (a, T)) = (((a, 0), T), 1)
wneuper@59430
   299
  | dest_hd' (Var v) = (v, 2)
wneuper@59430
   300
  | dest_hd' (Bound i) = ((("", i), dummyT), 3)
walther@60269
   301
  | dest_hd' (Abs (_, T, _)) = ((("", 0), T), 4)
walther@60269
   302
  | dest_hd' _ = raise ERROR "dest_hd': uncovered case in fun.def.";
walther@60269
   303
walther@60269
   304
\<^isac_test>\<open>
walther@60269
   305
fun get_order_pow (t $ (Free(order,_))) =
walther@59875
   306
    	(case TermC.int_opt_of_string order of
wneuper@59430
   307
	             SOME d => d
wneuper@59430
   308
		   | NONE   => 0)
wneuper@59430
   309
  | get_order_pow _ = 0;
walther@60269
   310
\<close>
wneuper@59430
   311
wneuper@59430
   312
fun size_of_term' (Const(str,_) $ t) =
walther@60275
   313
  if "Transcendental.powr"=str then 1000 + size_of_term' t else 1 + size_of_term' t(*WN*)
wneuper@59430
   314
  | size_of_term' (Abs (_,_,body)) = 1 + size_of_term' body
wneuper@59430
   315
  | size_of_term' (f$t) = size_of_term' f  +  size_of_term' t
wneuper@59430
   316
  | size_of_term' _ = 1;
wneuper@59430
   317
fun term_ord' pr thy (Abs (_, T, t), Abs(_, U, u)) =       (* ~ term.ML *)
wneuper@59430
   318
    (case term_ord' pr thy (t, u) of EQUAL => Term_Ord.typ_ord (T, U) 
wneuper@59430
   319
                                   | ord => ord)
walther@60269
   320
  | term_ord' pr _ (t, u) =
wneuper@59430
   321
    (if pr then 
wneuper@59430
   322
	 let val (f, ts) = strip_comb t and (g, us) = strip_comb u;
walther@59868
   323
	     val _ = tracing ("t= f@ts= \"" ^ UnparseC.term f ^ "\" @ \"[" ^
walther@59868
   324
	                      commas(map UnparseC.term ts) ^ "]\"")
walther@59868
   325
	     val _ = tracing ("u= g@us= \"" ^ UnparseC.term g ^"\" @ \"[" ^
walther@59868
   326
	                      commas(map UnparseC.term us) ^"]\"")
wneuper@59430
   327
	     val _ = tracing ("size_of_term(t,u)= (" ^
wneuper@59430
   328
	                      string_of_int (size_of_term' t) ^ ", " ^
wneuper@59430
   329
	                      string_of_int (size_of_term' u) ^ ")")
wneuper@59430
   330
	     val _ = tracing ("hd_ord(f,g)      = " ^ (pr_ord o hd_ord) (f,g))
wneuper@59430
   331
	     val _ = tracing ("terms_ord(ts,us) = " ^
wneuper@59430
   332
			      (pr_ord o terms_ord str false) (ts,us));
wneuper@59430
   333
	     val _ = tracing "-------"
wneuper@59430
   334
	 in () end
wneuper@59430
   335
       else ();
wneuper@59430
   336
	 case int_ord (size_of_term' t, size_of_term' u) of
wneuper@59430
   337
	   EQUAL =>
wneuper@59430
   338
	     let val (f, ts) = strip_comb t and (g, us) = strip_comb u in
wneuper@59430
   339
	       (case hd_ord (f, g) of EQUAL => (terms_ord str pr) (ts, us) 
wneuper@59430
   340
	     | ord => ord)
wneuper@59430
   341
	     end
wneuper@59430
   342
	 | ord => ord)
wneuper@59430
   343
and hd_ord (f, g) =                                        (* ~ term.ML *)
wneuper@59430
   344
  prod_ord (prod_ord Term_Ord.indexname_ord Term_Ord.typ_ord) int_ord (dest_hd' f, dest_hd' g)
walther@60269
   345
and terms_ord _ pr (ts, us) = 
walther@59881
   346
    list_ord (term_ord' pr (ThyC.get_theory "Isac_Knowledge"))(ts, us);
wneuper@59430
   347
in
wneuper@59430
   348
walther@59910
   349
fun ord_make_polytest (pr:bool) thy (_: subst) tu = 
wneuper@59430
   350
    (term_ord' pr thy(***) tu = LESS );
wneuper@59430
   351
wneuper@59430
   352
end;(*local*)
wneuper@59472
   353
\<close> 
wneuper@59430
   354
wneuper@59472
   355
section \<open>term order\<close>
wneuper@59472
   356
ML \<open>
walther@59910
   357
fun term_order (_: subst) tu = (term_ordI [] tu = LESS);
wneuper@59472
   358
\<close>
s1210629013@52145
   359
wneuper@59472
   360
section \<open>rulesets\<close>
wneuper@59472
   361
ML \<open>
neuper@37954
   362
val testerls = 
walther@59851
   363
  Rule_Def.Repeat {id = "testerls", preconds = [], rew_ord = ("termlessI",termlessI), 
walther@59852
   364
      erls = Rule_Set.empty, srls = Rule_Set.Empty, 
neuper@42451
   365
      calc = [], errpatts = [], 
wenzelm@60297
   366
      rules = [\<^rule_thm>\<open>refl\<close>,
wenzelm@60297
   367
	       \<^rule_thm>\<open>order_refl\<close>,
wenzelm@60297
   368
	       \<^rule_thm>\<open>radd_left_cancel_le\<close>,
wenzelm@60297
   369
	       \<^rule_thm>\<open>not_true\<close>,
wenzelm@60297
   370
	       \<^rule_thm>\<open>not_false\<close>,
wenzelm@60297
   371
	       \<^rule_thm>\<open>and_true\<close>,
wenzelm@60297
   372
	       \<^rule_thm>\<open>and_false\<close>,
wenzelm@60297
   373
	       \<^rule_thm>\<open>or_true\<close>,
wenzelm@60297
   374
	       \<^rule_thm>\<open>or_false\<close>,
wenzelm@60297
   375
	       \<^rule_thm>\<open>and_commute\<close>,
wenzelm@60297
   376
	       \<^rule_thm>\<open>or_commute\<close>,
neuper@37954
   377
wenzelm@60294
   378
	       \<^rule_eval>\<open>Prog_Expr.is_const\<close> (Prog_Expr.eval_const "#is_const_"),
wenzelm@60294
   379
	       \<^rule_eval>\<open>Prog_Expr.matches\<close> (Prog_Expr.eval_matches ""),
wenzelm@60294
   380
wenzelm@60294
   381
	       \<^rule_eval>\<open>plus\<close> (**)(eval_binop "#add_"),
wenzelm@60294
   382
	       \<^rule_eval>\<open>times\<close> (**)(eval_binop "#mult_"),
wenzelm@60294
   383
	       \<^rule_eval>\<open>powr\<close> (**)(eval_binop "#power_"),
wenzelm@60294
   384
wenzelm@60294
   385
	       \<^rule_eval>\<open>less\<close> (Prog_Expr.eval_equ "#less_"),
wenzelm@60294
   386
	       \<^rule_eval>\<open>less_eq\<close> (Prog_Expr.eval_equ "#less_equal_"),
wenzelm@60294
   387
wenzelm@60294
   388
	       \<^rule_eval>\<open>Prog_Expr.ident\<close> (Prog_Expr.eval_ident "#ident_")],
walther@59878
   389
      scr = Rule.Empty_Prog
wneuper@59406
   390
      };      
wneuper@59472
   391
\<close>
wneuper@59472
   392
ML \<open>
neuper@37954
   393
(*.for evaluation of conditions in rewrite rules.*)
neuper@37954
   394
(*FIXXXXXXME 10.8.02: handle like _simplify*)
neuper@37954
   395
val tval_rls =  
walther@59851
   396
  Rule_Def.Repeat{id = "tval_rls", preconds = [], 
wneuper@59397
   397
      rew_ord = ("sqrt_right",sqrt_right false @{theory "Pure"}), 
walther@59852
   398
      erls=testerls,srls = Rule_Set.empty, 
neuper@42451
   399
      calc=[], errpatts = [],
wenzelm@60297
   400
      rules = [\<^rule_thm>\<open>refl\<close>,
wenzelm@60297
   401
	       \<^rule_thm>\<open>order_refl\<close>,
wenzelm@60297
   402
	       \<^rule_thm>\<open>radd_left_cancel_le\<close>,
wenzelm@60297
   403
	       \<^rule_thm>\<open>not_true\<close>,
wenzelm@60297
   404
	       \<^rule_thm>\<open>not_false\<close>,
wenzelm@60297
   405
	       \<^rule_thm>\<open>and_true\<close>,
wenzelm@60297
   406
	       \<^rule_thm>\<open>and_false\<close>,
wenzelm@60297
   407
	       \<^rule_thm>\<open>or_true\<close>,
wenzelm@60297
   408
	       \<^rule_thm>\<open>or_false\<close>,
wenzelm@60297
   409
	       \<^rule_thm>\<open>and_commute\<close>,
wenzelm@60297
   410
	       \<^rule_thm>\<open>or_commute\<close>,
neuper@37954
   411
wenzelm@60297
   412
	       \<^rule_thm>\<open>real_diff_minus\<close>,
neuper@37954
   413
wenzelm@60297
   414
	       \<^rule_thm>\<open>root_ge0\<close>,
wenzelm@60297
   415
	       \<^rule_thm>\<open>root_add_ge0\<close>,
wenzelm@60297
   416
	       \<^rule_thm>\<open>root_ge0_1\<close>,
wenzelm@60297
   417
	       \<^rule_thm>\<open>root_ge0_2\<close>,
neuper@37954
   418
wenzelm@60294
   419
	       \<^rule_eval>\<open>Prog_Expr.is_const\<close> (Prog_Expr.eval_const "#is_const_"),
wenzelm@60294
   420
	       \<^rule_eval>\<open>contains_root\<close> (eval_contains_root "#eval_contains_root"),
wenzelm@60294
   421
	       \<^rule_eval>\<open>Prog_Expr.matches\<close> (Prog_Expr.eval_matches ""),
wenzelm@60294
   422
	       \<^rule_eval>\<open>contains_root\<close> (eval_contains_root"#contains_root_"),
wenzelm@60294
   423
wenzelm@60294
   424
	       \<^rule_eval>\<open>plus\<close> (**)(eval_binop "#add_"),
wenzelm@60294
   425
	       \<^rule_eval>\<open>times\<close> (**)(eval_binop "#mult_"),
wenzelm@60294
   426
	       \<^rule_eval>\<open>sqrt\<close> (eval_sqrt "#sqrt_"),
wenzelm@60294
   427
	       \<^rule_eval>\<open>powr\<close> (**)(eval_binop "#power_"),
wenzelm@60294
   428
wenzelm@60294
   429
	       \<^rule_eval>\<open>less\<close> (Prog_Expr.eval_equ "#less_"),
wenzelm@60294
   430
	       \<^rule_eval>\<open>less_eq\<close> (Prog_Expr.eval_equ "#less_equal_"),
wenzelm@60294
   431
wenzelm@60294
   432
	       \<^rule_eval>\<open>Prog_Expr.ident\<close> (Prog_Expr.eval_ident "#ident_")],
walther@59878
   433
      scr = Rule.Empty_Prog
wneuper@59406
   434
      };      
wneuper@59472
   435
\<close>
wenzelm@60289
   436
rule_set_knowledge testerls = \<open>prep_rls' testerls\<close>
neuper@52155
   437
wneuper@59472
   438
ML \<open>
neuper@37954
   439
(*make () dissappear*)   
neuper@37954
   440
val rearrange_assoc =
walther@59851
   441
  Rule_Def.Repeat{id = "rearrange_assoc", preconds = [], 
walther@59857
   442
      rew_ord = ("e_rew_ord",Rewrite_Ord.e_rew_ord), 
walther@59852
   443
      erls = Rule_Set.empty, srls = Rule_Set.empty, calc = [], errpatts = [],
wenzelm@60296
   444
      rules = [\<^rule_thm_sym>\<open>add.assoc\<close>, \<^rule_thm_sym>\<open>rmult_assoc\<close>],
walther@59878
   445
      scr = Rule.Empty_Prog
wneuper@59406
   446
      };      
neuper@37954
   447
neuper@37954
   448
val ac_plus_times =
walther@59851
   449
  Rule_Def.Repeat{id = "ac_plus_times", preconds = [], rew_ord = ("term_order",term_order),
walther@59852
   450
      erls = Rule_Set.empty, srls = Rule_Set.empty, calc = [], errpatts = [],
neuper@37954
   451
      rules = 
wenzelm@60297
   452
      [\<^rule_thm>\<open>radd_commute\<close>,
wenzelm@60297
   453
       \<^rule_thm>\<open>radd_left_commute\<close>,
wenzelm@60297
   454
       \<^rule_thm>\<open>add.assoc\<close>,
wenzelm@60297
   455
       \<^rule_thm>\<open>rmult_commute\<close>,
wenzelm@60297
   456
       \<^rule_thm>\<open>rmult_left_commute\<close>,
wenzelm@60297
   457
       \<^rule_thm>\<open>rmult_assoc\<close>],
walther@59878
   458
      scr = Rule.Empty_Prog
wneuper@59406
   459
      };      
neuper@37954
   460
walther@59871
   461
(*todo: replace by Rewrite("rnorm_equation_add",ThmC.numerals_to_Free @{thm rnorm_equation_add)*)
neuper@37954
   462
val norm_equation =
walther@59857
   463
  Rule_Def.Repeat{id = "norm_equation", preconds = [], rew_ord = ("e_rew_ord",Rewrite_Ord.e_rew_ord),
walther@59852
   464
      erls = tval_rls, srls = Rule_Set.empty, calc = [], errpatts = [],
wenzelm@60297
   465
      rules = [\<^rule_thm>\<open>rnorm_equation_add\<close>
neuper@37954
   466
	       ],
walther@59878
   467
      scr = Rule.Empty_Prog
wneuper@59406
   468
      };      
wneuper@59472
   469
\<close>
wneuper@59472
   470
ML \<open>
neuper@37954
   471
(* expects * distributed over + *)
neuper@37954
   472
val Test_simplify =
walther@59851
   473
  Rule_Def.Repeat{id = "Test_simplify", preconds = [], 
wneuper@59397
   474
      rew_ord = ("sqrt_right",sqrt_right false @{theory "Pure"}),
walther@59852
   475
      erls = tval_rls, srls = Rule_Set.empty, 
s1210629013@55444
   476
      calc=[(*since 040209 filled by prep_rls'*)], errpatts = [],
neuper@37954
   477
      rules = [
wenzelm@60297
   478
	       \<^rule_thm>\<open>real_diff_minus\<close>,
wenzelm@60297
   479
	       \<^rule_thm>\<open>radd_mult_distrib2\<close>,
wenzelm@60297
   480
	       \<^rule_thm>\<open>rdistr_right_assoc\<close>,
wenzelm@60297
   481
	       \<^rule_thm>\<open>rdistr_right_assoc_p\<close>,
wenzelm@60297
   482
	       \<^rule_thm>\<open>rdistr_div_right\<close>,
wenzelm@60297
   483
	       \<^rule_thm>\<open>rbinom_power_2\<close>,	       
neuper@37954
   484
wenzelm@60297
   485
               \<^rule_thm>\<open>radd_commute\<close>, 
wenzelm@60297
   486
	       \<^rule_thm>\<open>radd_left_commute\<close>,
wenzelm@60297
   487
	       \<^rule_thm>\<open>add.assoc\<close>,
wenzelm@60297
   488
	       \<^rule_thm>\<open>rmult_commute\<close>,
wenzelm@60297
   489
	       \<^rule_thm>\<open>rmult_left_commute\<close>,
wenzelm@60297
   490
	       \<^rule_thm>\<open>rmult_assoc\<close>,
neuper@37954
   491
wenzelm@60297
   492
	       \<^rule_thm>\<open>radd_real_const_eq\<close>,
wenzelm@60297
   493
	       \<^rule_thm>\<open>radd_real_const\<close>,
neuper@37954
   494
	       (* these 2 rules are invers to distr_div_right wrt. termination.
neuper@37954
   495
		  thus they MUST be done IMMEDIATELY before calc *)
wenzelm@60294
   496
	       \<^rule_eval>\<open>plus\<close> (**)(eval_binop "#add_"), 
wenzelm@60294
   497
	       \<^rule_eval>\<open>times\<close> (**)(eval_binop "#mult_"),
wenzelm@60294
   498
	       \<^rule_eval>\<open>divide\<close> (Prog_Expr.eval_cancel "#divide_e"),
wenzelm@60294
   499
	       \<^rule_eval>\<open>powr\<close> (**)(eval_binop "#power_"),
neuper@37954
   500
wenzelm@60297
   501
	       \<^rule_thm>\<open>rcollect_right\<close>,
wenzelm@60297
   502
	       \<^rule_thm>\<open>rcollect_one_left\<close>,
wenzelm@60297
   503
	       \<^rule_thm>\<open>rcollect_one_left_assoc\<close>,
wenzelm@60297
   504
	       \<^rule_thm>\<open>rcollect_one_left_assoc_p\<close>,
neuper@37954
   505
wenzelm@60297
   506
	       \<^rule_thm>\<open>rshift_nominator\<close>,
wenzelm@60297
   507
	       \<^rule_thm>\<open>rcancel_den\<close>,
wenzelm@60297
   508
	       \<^rule_thm>\<open>rroot_square_inv\<close>,
wenzelm@60297
   509
	       \<^rule_thm>\<open>rroot_times_root\<close>,
wenzelm@60297
   510
	       \<^rule_thm>\<open>rroot_times_root_assoc_p\<close>,
wenzelm@60297
   511
	       \<^rule_thm>\<open>rsqare\<close>,
wenzelm@60297
   512
	       \<^rule_thm>\<open>power_1\<close>,
wenzelm@60297
   513
	       \<^rule_thm>\<open>rtwo_of_the_same\<close>,
wenzelm@60297
   514
	       \<^rule_thm>\<open>rtwo_of_the_same_assoc_p\<close>,
neuper@37954
   515
wenzelm@60297
   516
	       \<^rule_thm>\<open>rmult_1\<close>,
wenzelm@60297
   517
	       \<^rule_thm>\<open>rmult_1_right\<close>,
wenzelm@60297
   518
	       \<^rule_thm>\<open>rmult_0\<close>,
wenzelm@60297
   519
	       \<^rule_thm>\<open>rmult_0_right\<close>,
wenzelm@60297
   520
	       \<^rule_thm>\<open>radd_0\<close>,
wenzelm@60297
   521
	       \<^rule_thm>\<open>radd_0_right\<close>
neuper@37954
   522
	       ],
walther@59878
   523
      scr = Rule.Empty_Prog
s1210629013@55444
   524
		    (*since 040209 filled by prep_rls': STest_simplify*)
wneuper@59406
   525
      };      
wneuper@59472
   526
\<close>
wneuper@59472
   527
ML \<open>
neuper@37954
   528
(*isolate the root in a root-equation*)
neuper@37954
   529
val isolate_root =
walther@59857
   530
  Rule_Def.Repeat{id = "isolate_root", preconds = [], rew_ord = ("e_rew_ord",Rewrite_Ord.e_rew_ord), 
walther@59852
   531
      erls=tval_rls,srls = Rule_Set.empty, calc=[], errpatts = [],
wenzelm@60297
   532
      rules = [\<^rule_thm>\<open>rroot_to_lhs\<close>,
wenzelm@60297
   533
	       \<^rule_thm>\<open>rroot_to_lhs_mult\<close>,
wenzelm@60297
   534
	       \<^rule_thm>\<open>rroot_to_lhs_add_mult\<close>,
wenzelm@60297
   535
	       \<^rule_thm>\<open>risolate_root_add\<close>,
wenzelm@60297
   536
	       \<^rule_thm>\<open>risolate_root_mult\<close>,
wenzelm@60297
   537
	       \<^rule_thm>\<open>risolate_root_div\<close>       ],
wenzelm@60291
   538
      scr = Rule.Prog ((Thm.term_of o the o (TermC.parse \<^theory>)) 
neuper@37954
   539
      "empty_script")
wneuper@59406
   540
      };
neuper@37954
   541
neuper@37954
   542
(*isolate the bound variable in an equation; 'bdv' is a meta-constant*)
neuper@37954
   543
val isolate_bdv =
walther@59857
   544
    Rule_Def.Repeat{id = "isolate_bdv", preconds = [], rew_ord = ("e_rew_ord",Rewrite_Ord.e_rew_ord),
walther@59852
   545
	erls=tval_rls,srls = Rule_Set.empty, calc= [], errpatts = [],
neuper@37954
   546
	rules = 
wenzelm@60297
   547
	[\<^rule_thm>\<open>risolate_bdv_add\<close>,
wenzelm@60297
   548
	 \<^rule_thm>\<open>risolate_bdv_mult_add\<close>,
wenzelm@60297
   549
	 \<^rule_thm>\<open>risolate_bdv_mult\<close>,
wenzelm@60297
   550
	 \<^rule_thm>\<open>mult_square\<close>,
wenzelm@60297
   551
	 \<^rule_thm>\<open>constant_square\<close>,
wenzelm@60297
   552
	 \<^rule_thm>\<open>constant_mult_square\<close>
neuper@37954
   553
	 ],
wenzelm@60291
   554
	scr = Rule.Prog ((Thm.term_of o the o (TermC.parse \<^theory>)) 
neuper@37954
   555
			  "empty_script")
wneuper@59406
   556
	};      
wneuper@59472
   557
\<close>
walther@59618
   558
ML \<open>val prep_rls' = Auto_Prog.prep_rls @{theory};\<close>
wenzelm@60289
   559
rule_set_knowledge
wenzelm@60286
   560
  Test_simplify = \<open>prep_rls' Test_simplify\<close> and
wenzelm@60286
   561
  tval_rls = \<open>prep_rls' tval_rls\<close> and
wenzelm@60286
   562
  isolate_root = \<open>prep_rls' isolate_root\<close> and
wenzelm@60286
   563
  isolate_bdv = \<open>prep_rls' isolate_bdv\<close> and
wenzelm@60286
   564
  matches = \<open>prep_rls'
wenzelm@60286
   565
    (Rule_Set.append_rules "matches" testerls
wenzelm@60294
   566
      [\<^rule_eval>\<open>Prog_Expr.matches\<close> (Prog_Expr.eval_matches "#matches_")])\<close>
wenzelm@60286
   567
neuper@37954
   568
wneuper@59472
   569
subsection \<open>problems\<close>
wenzelm@60306
   570
wenzelm@60306
   571
problem pbl_test : "test" = \<open>Rule_Set.empty\<close>
wenzelm@60306
   572
wenzelm@60306
   573
problem pbl_test_equ : "equation/test" =
wenzelm@60306
   574
  \<open>assoc_rls' @{theory} "matches"\<close>
wenzelm@60306
   575
  CAS: "solve (e_e::bool, v_v)"
wenzelm@60306
   576
  Given: "equality e_e" "solveFor v_v"
wenzelm@60306
   577
  Where: "matches (?a = ?b) e_e"
wenzelm@60306
   578
  Find: "solutions v_v'i'"
wenzelm@60306
   579
wenzelm@60306
   580
problem pbl_test_uni : "univariate/equation/test" =
wenzelm@60306
   581
  \<open>assoc_rls' @{theory} "matches"\<close>
wenzelm@60306
   582
  CAS: "solve (e_e::bool, v_v)"
wenzelm@60306
   583
  Given: "equality e_e" "solveFor v_v"
wenzelm@60306
   584
  Where: "matches (?a = ?b) e_e"
wenzelm@60306
   585
  Find: "solutions v_v'i'"
wenzelm@60306
   586
wenzelm@60306
   587
problem pbl_test_uni_lin : "LINEAR/univariate/equation/test" =
wenzelm@60306
   588
  \<open>assoc_rls' @{theory} "matches"\<close>
wenzelm@60306
   589
  Method: "Test/solve_linear"
wenzelm@60306
   590
  CAS: "solve (e_e::bool, v_v)"
wenzelm@60306
   591
  Given: "equality e_e" "solveFor v_v"
wenzelm@60306
   592
  Where:
wenzelm@60306
   593
    "(matches (   v_v = 0) e_e) | (matches (   ?b*v_v = 0) e_e) |
wenzelm@60306
   594
     (matches (?a+v_v = 0) e_e) | (matches (?a+?b*v_v = 0) e_e)"
wenzelm@60306
   595
  Find: "solutions v_v'i'"
wenzelm@60306
   596
wneuper@59472
   597
ML \<open>
walther@59857
   598
Rewrite_Ord.rew_ord' := overwritel (! Rewrite_Ord.rew_ord',
neuper@37954
   599
[("termlessI", termlessI),
wenzelm@60291
   600
 ("ord_make_polytest", ord_make_polytest false \<^theory>)
neuper@37954
   601
 ]);
neuper@37954
   602
neuper@37954
   603
val make_polytest =
walther@59851
   604
  Rule_Def.Repeat{id = "make_polytest", preconds = []:term list, 
neuper@52105
   605
      rew_ord = ("ord_make_polytest", ord_make_polytest false @{theory "Poly"}),
walther@59851
   606
      erls = testerls, srls = Rule_Set.Empty,
walther@59603
   607
      calc = [("PLUS"  , ("Groups.plus_class.plus", (**)eval_binop "#add_")), 
walther@59603
   608
	      ("TIMES" , ("Groups.times_class.times", (**)eval_binop "#mult_")),
walther@60275
   609
	      ("POWER", ("Transcendental.powr", (**)eval_binop "#power_"))
neuper@42451
   610
	      ], errpatts = [],
wenzelm@60297
   611
      rules = [\<^rule_thm>\<open>real_diff_minus\<close>,
neuper@37954
   612
	       (*"a - b = a + (-1) * b"*)
wenzelm@60297
   613
	       \<^rule_thm>\<open>distrib_right\<close>,
neuper@37954
   614
	       (*"(z1.0 + z2.0) * w = z1.0 * w + z2.0 * w"*)
wenzelm@60297
   615
	       \<^rule_thm>\<open>distrib_left\<close>,
neuper@37954
   616
	       (*"w * (z1.0 + z2.0) = w * z1.0 + w * z2.0"*)
wenzelm@60297
   617
	       \<^rule_thm>\<open>left_diff_distrib\<close>,
neuper@37954
   618
	       (*"(z1.0 - z2.0) * w = z1.0 * w - z2.0 * w"*)
wenzelm@60297
   619
	       \<^rule_thm>\<open>right_diff_distrib\<close>,
neuper@37954
   620
	       (*"w * (z1.0 - z2.0) = w * z1.0 - w * z2.0"*)
wenzelm@60297
   621
	       \<^rule_thm>\<open>mult_1_left\<close>,                 
neuper@37954
   622
	       (*"1 * z = z"*)
wenzelm@60297
   623
	       \<^rule_thm>\<open>mult_zero_left\<close>,        
neuper@37954
   624
	       (*"0 * z = 0"*)
wenzelm@60297
   625
	       \<^rule_thm>\<open>add_0_left\<close>,
neuper@37954
   626
	       (*"0 + z = z"*)
neuper@37954
   627
neuper@37954
   628
	       (*AC-rewriting*)
wenzelm@60297
   629
	       \<^rule_thm>\<open>mult.commute\<close>,
neuper@37954
   630
	       (* z * w = w * z *)
wenzelm@60297
   631
	       \<^rule_thm>\<open>real_mult_left_commute\<close>,
neuper@37954
   632
	       (*z1.0 * (z2.0 * z3.0) = z2.0 * (z1.0 * z3.0)*)
wenzelm@60297
   633
	       \<^rule_thm>\<open>mult.assoc\<close>,		
neuper@37954
   634
	       (*z1.0 * z2.0 * z3.0 = z1.0 * (z2.0 * z3.0)*)
wenzelm@60297
   635
	       \<^rule_thm>\<open>add.commute\<close>,	
neuper@37954
   636
	       (*z + w = w + z*)
wenzelm@60297
   637
	       \<^rule_thm>\<open>add.left_commute\<close>,
neuper@37954
   638
	       (*x + (y + z) = y + (x + z)*)
wenzelm@60297
   639
	       \<^rule_thm>\<open>add.assoc\<close>,	               
neuper@37954
   640
	       (*z1.0 + z2.0 + z3.0 = z1.0 + (z2.0 + z3.0)*)
neuper@37954
   641
wenzelm@60296
   642
	       \<^rule_thm_sym>\<open>realpow_twoI\<close>,	
walther@60242
   643
	       (*"r1 * r1 = r1 \<up> 2"*)
wenzelm@60297
   644
	       \<^rule_thm>\<open>realpow_plus_1\<close>,		
walther@60242
   645
	       (*"r * r \<up> n = r \<up> (n + 1)"*)
wenzelm@60296
   646
	       \<^rule_thm_sym>\<open>real_mult_2\<close>,	
neuper@37954
   647
	       (*"z1 + z1 = 2 * z1"*)
wenzelm@60297
   648
	       \<^rule_thm>\<open>real_mult_2_assoc\<close>,	
neuper@37954
   649
	       (*"z1 + (z1 + k) = 2 * z1 + k"*)
neuper@37954
   650
wenzelm@60297
   651
	       \<^rule_thm>\<open>real_num_collect\<close>, 
neuper@37954
   652
	       (*"[| l is_const; m is_const |]==>l * n + m * n = (l + m) * n"*)
wenzelm@60297
   653
	       \<^rule_thm>\<open>real_num_collect_assoc\<close>,
neuper@37954
   654
	       (*"[| l is_const; m is_const |] ==>  
neuper@37954
   655
				l * n + (m * n + k) =  (l + m) * n + k"*)
wenzelm@60297
   656
	       \<^rule_thm>\<open>real_one_collect\<close>,	
neuper@37954
   657
	       (*"m is_const ==> n + m * n = (1 + m) * n"*)
wenzelm@60297
   658
	       \<^rule_thm>\<open>real_one_collect_assoc\<close>, 
neuper@37954
   659
	       (*"m is_const ==> k + (n + m * n) = k + (1 + m) * n"*)
neuper@37954
   660
wenzelm@60294
   661
	       \<^rule_eval>\<open>plus\<close> (**)(eval_binop "#add_"), 
wenzelm@60294
   662
	       \<^rule_eval>\<open>times\<close> (**)(eval_binop "#mult_"),
wenzelm@60294
   663
	       \<^rule_eval>\<open>powr\<close> (**)(eval_binop "#power_")
neuper@37954
   664
	       ],
walther@59878
   665
      scr = Rule.Empty_Prog(*Rule.Prog ((Thm.term_of o the o (parse thy)) 
neuper@37954
   666
      scr_make_polytest)*)
wneuper@59406
   667
      }; 
neuper@37954
   668
neuper@37954
   669
val expand_binomtest =
walther@59851
   670
  Rule_Def.Repeat{id = "expand_binomtest", preconds = [], 
neuper@37954
   671
      rew_ord = ("termlessI",termlessI),
walther@59851
   672
      erls = testerls, srls = Rule_Set.Empty,
walther@59603
   673
      calc = [("PLUS"  , ("Groups.plus_class.plus", (**)eval_binop "#add_")), 
walther@59603
   674
	      ("TIMES" , ("Groups.times_class.times", (**)eval_binop "#mult_")),
walther@60275
   675
	      ("POWER", ("Transcendental.powr", (**)eval_binop "#power_"))
neuper@42451
   676
	      ], errpatts = [],
neuper@38001
   677
      rules = 
wenzelm@60297
   678
      [\<^rule_thm>\<open>real_plus_binom_pow2\<close>,     
walther@60242
   679
	       (*"(a + b) \<up> 2 = a \<up> 2 + 2 * a * b + b \<up> 2"*)
wenzelm@60297
   680
       \<^rule_thm>\<open>real_plus_binom_times\<close>,    
neuper@37954
   681
	      (*"(a + b)*(a + b) = ...*)
wenzelm@60297
   682
       \<^rule_thm>\<open>real_minus_binom_pow2\<close>,   
walther@60242
   683
       (*"(a - b) \<up> 2 = a \<up> 2 - 2 * a * b + b \<up> 2"*)
wenzelm@60297
   684
       \<^rule_thm>\<open>real_minus_binom_times\<close>,   
neuper@38001
   685
       (*"(a - b)*(a - b) = ...*)
wenzelm@60297
   686
       \<^rule_thm>\<open>real_plus_minus_binom1\<close>,   
walther@60242
   687
        (*"(a + b) * (a - b) = a \<up> 2 - b \<up> 2"*)
wenzelm@60297
   688
       \<^rule_thm>\<open>real_plus_minus_binom2\<close>,   
walther@60242
   689
        (*"(a - b) * (a + b) = a \<up> 2 - b \<up> 2"*)
neuper@38001
   690
       (*RL 020915*)
wenzelm@60297
   691
       \<^rule_thm>\<open>real_pp_binom_times\<close>, 
neuper@38001
   692
        (*(a + b)*(c + d) = a*c + a*d + b*c + b*d*)
wenzelm@60297
   693
       \<^rule_thm>\<open>real_pm_binom_times\<close>, 
neuper@38001
   694
        (*(a + b)*(c - d) = a*c - a*d + b*c - b*d*)
wenzelm@60297
   695
       \<^rule_thm>\<open>real_mp_binom_times\<close>, 
neuper@38001
   696
        (*(a - b)*(c p d) = a*c + a*d - b*c - b*d*)
wenzelm@60297
   697
       \<^rule_thm>\<open>real_mm_binom_times\<close>, 
neuper@38001
   698
        (*(a - b)*(c p d) = a*c - a*d - b*c + b*d*)
wenzelm@60297
   699
       \<^rule_thm>\<open>realpow_multI\<close>,                
walther@60242
   700
        (*(a*b) \<up> n = a \<up> n * b \<up> n*)
wenzelm@60297
   701
       \<^rule_thm>\<open>real_plus_binom_pow3\<close>,
walther@60242
   702
        (* (a + b) \<up> 3 = a \<up> 3 + 3*a \<up> 2*b + 3*a*b \<up> 2 + b \<up> 3 *)
wenzelm@60297
   703
       \<^rule_thm>\<open>real_minus_binom_pow3\<close>,
walther@60242
   704
        (* (a - b) \<up> 3 = a \<up> 3 - 3*a \<up> 2*b + 3*a*b \<up> 2 - b \<up> 3 *)
neuper@37954
   705
neuper@37954
   706
wenzelm@60297
   707
     (*  \<^rule_thm>\<open>distrib_right\<close>,	
neuper@38001
   708
	 (*"(z1.0 + z2.0) * w = z1.0 * w + z2.0 * w"*)
wenzelm@60297
   709
	\<^rule_thm>\<open>distrib_left\<close>,	
neuper@38001
   710
	(*"w * (z1.0 + z2.0) = w * z1.0 + w * z2.0"*)
wenzelm@60297
   711
	\<^rule_thm>\<open>left_diff_distrib\<close>,	
neuper@38001
   712
	(*"(z1.0 - z2.0) * w = z1.0 * w - z2.0 * w"*)
wenzelm@60297
   713
	\<^rule_thm>\<open>right_diff_distrib\<close>,	
neuper@38001
   714
	(*"w * (z1.0 - z2.0) = w * z1.0 - w * z2.0"*)
neuper@38001
   715
	*)
neuper@38001
   716
	
wenzelm@60297
   717
	\<^rule_thm>\<open>mult_1_left\<close>,              
neuper@38001
   718
         (*"1 * z = z"*)
wenzelm@60297
   719
	\<^rule_thm>\<open>mult_zero_left\<close>,              
neuper@38001
   720
         (*"0 * z = 0"*)
wenzelm@60297
   721
	\<^rule_thm>\<open>add_0_left\<close>,
neuper@38001
   722
         (*"0 + z = z"*)
neuper@37954
   723
wenzelm@60294
   724
	\<^rule_eval>\<open>plus\<close> (**)(eval_binop "#add_"), 
wenzelm@60294
   725
	\<^rule_eval>\<open>times\<close> (**)(eval_binop "#mult_"),
wenzelm@60294
   726
	\<^rule_eval>\<open>powr\<close> (**)(eval_binop "#power_"),
neuper@38001
   727
        (*	       
wenzelm@60297
   728
	 \<^rule_thm>\<open>mult.commute\<close>,		
neuper@38001
   729
        (*AC-rewriting*)
wenzelm@60297
   730
	\<^rule_thm>\<open>real_mult_left_commute\<close>,
wenzelm@60297
   731
	\<^rule_thm>\<open>mult.assoc\<close>,
wenzelm@60297
   732
	\<^rule_thm>\<open>add.commute\<close>,	
wenzelm@60297
   733
	\<^rule_thm>\<open>add.left_commute\<close>,
wenzelm@60297
   734
	\<^rule_thm>\<open>add.assoc\<close>,
neuper@38001
   735
	*)
neuper@38001
   736
	
wenzelm@60296
   737
	\<^rule_thm_sym>\<open>realpow_twoI\<close>,
walther@60242
   738
	(*"r1 * r1 = r1 \<up> 2"*)
wenzelm@60297
   739
	\<^rule_thm>\<open>realpow_plus_1\<close>,			
walther@60242
   740
	(*"r * r \<up> n = r \<up> (n + 1)"*)
wenzelm@60296
   741
	(*\<^rule_thm_sym>\<open>real_mult_2\<close>,
neuper@38001
   742
	(*"z1 + z1 = 2 * z1"*)*)
wenzelm@60297
   743
	\<^rule_thm>\<open>real_mult_2_assoc\<close>,		
neuper@38001
   744
	(*"z1 + (z1 + k) = 2 * z1 + k"*)
neuper@37954
   745
wenzelm@60297
   746
	\<^rule_thm>\<open>real_num_collect\<close>, 
neuper@38001
   747
	(*"[| l is_const; m is_const |] ==> l * n + m * n = (l + m) * n"*)
wenzelm@60297
   748
	\<^rule_thm>\<open>real_num_collect_assoc\<close>,	
neuper@38001
   749
	(*"[| l is_const; m is_const |] ==>  l * n + (m * n + k) =  (l + m) * n + k"*)
wenzelm@60297
   750
	\<^rule_thm>\<open>real_one_collect\<close>,		
neuper@38001
   751
	(*"m is_const ==> n + m * n = (1 + m) * n"*)
wenzelm@60297
   752
	\<^rule_thm>\<open>real_one_collect_assoc\<close>, 
neuper@38001
   753
	(*"m is_const ==> k + (n + m * n) = k + (1 + m) * n"*)
neuper@37954
   754
wenzelm@60294
   755
	\<^rule_eval>\<open>plus\<close> (**)(eval_binop "#add_"), 
wenzelm@60294
   756
	\<^rule_eval>\<open>times\<close> (**)(eval_binop "#mult_"),
wenzelm@60294
   757
	\<^rule_eval>\<open>powr\<close> (**)(eval_binop "#power_")
neuper@38001
   758
	],
walther@59878
   759
      scr = Rule.Empty_Prog
wneuper@59585
   760
(*Program ((Thm.term_of o the o (parse thy)) scr_expand_binomtest)*)
wneuper@59406
   761
      };      
wneuper@59472
   762
\<close>
wenzelm@60289
   763
rule_set_knowledge
wenzelm@60286
   764
  make_polytest = \<open>prep_rls' make_polytest\<close> and
wenzelm@60286
   765
  expand_binomtest = \<open>prep_rls' expand_binomtest\<close>
wenzelm@60289
   766
rule_set_knowledge
wenzelm@60286
   767
  norm_equation = \<open>prep_rls' norm_equation\<close> and
wenzelm@60286
   768
  ac_plus_times = \<open>prep_rls' ac_plus_times\<close> and
wenzelm@60286
   769
  rearrange_assoc = \<open>prep_rls' rearrange_assoc\<close>
wneuper@59430
   770
wneuper@59472
   771
section \<open>problems\<close>
wenzelm@60306
   772
wenzelm@60306
   773
problem pbl_test_uni_plain2 : "plain_square/univariate/equation/test" =
wenzelm@60306
   774
  \<open>assoc_rls' @{theory} "matches"\<close>
wenzelm@60306
   775
  Method: "Test/solve_plain_square"
wenzelm@60306
   776
  CAS: "solve (e_e::bool, v_v)"
wenzelm@60306
   777
  Given: "equality e_e" "solveFor v_v"
wenzelm@60306
   778
  Where:
wenzelm@60306
   779
    "(matches (?a + ?b*v_v  \<up> 2 = 0) e_e) |
wenzelm@60306
   780
     (matches (     ?b*v_v  \<up> 2 = 0) e_e) |
wenzelm@60306
   781
     (matches (?a +    v_v  \<up> 2 = 0) e_e) |
wenzelm@60306
   782
     (matches (        v_v  \<up> 2 = 0) e_e)"
wenzelm@60306
   783
  Find: "solutions v_v'i'"
wenzelm@60306
   784
wenzelm@60306
   785
problem pbl_test_uni_poly : "polynomial/univariate/equation/test" =
wenzelm@60306
   786
  \<open>Rule_Set.empty\<close>
wenzelm@60306
   787
  CAS: "solve (e_e::bool, v_v)"
wenzelm@60306
   788
  Given: "equality (v_v  \<up> 2 + p_p * v_v + q__q = 0)" "solveFor v_v"
wenzelm@60306
   789
  Where: "HOL.False"
wenzelm@60306
   790
  Find: "solutions v_v'i'"
wenzelm@60306
   791
wenzelm@60306
   792
problem pbl_test_uni_poly_deg2 : "degree_two/polynomial/univariate/equation/test" =
wenzelm@60306
   793
  \<open>Rule_Set.empty\<close>
wenzelm@60306
   794
  CAS: "solve (v_v  \<up> 2 + p_p * v_v + q__q = 0, v_v)"
wenzelm@60306
   795
  Given: "equality (v_v  \<up> 2 + p_p * v_v + q__q = 0)" "solveFor v_v"
wenzelm@60306
   796
  Find: "solutions v_v'i'"
wenzelm@60306
   797
wenzelm@60306
   798
problem pbl_test_uni_poly_deg2_pq : "pq_formula/degree_two/polynomial/univariate/equation/test" =
wenzelm@60306
   799
  \<open>Rule_Set.empty\<close>
wenzelm@60306
   800
  CAS: "solve (v_v  \<up> 2 + p_p * v_v + q__q = 0, v_v)"
wenzelm@60306
   801
  Given: "equality (v_v  \<up> 2 + p_p * v_v + q__q = 0)" "solveFor v_v"
wenzelm@60306
   802
  Find: "solutions v_v'i'"
wenzelm@60306
   803
wenzelm@60306
   804
problem pbl_test_uni_poly_deg2_abc : "abc_formula/degree_two/polynomial/univariate/equation/test" =
wenzelm@60306
   805
  \<open>Rule_Set.empty\<close>
wenzelm@60306
   806
  CAS: "solve (a_a * x  \<up> 2 + b_b * x + c_c = 0, v_v)"
wenzelm@60306
   807
  Given: "equality (a_a * x  \<up> 2 + b_b * x + c_c = 0)" "solveFor v_v"
wenzelm@60306
   808
  Find: "solutions v_v'i'"
wenzelm@60306
   809
wenzelm@60306
   810
problem pbl_test_uni_root : "squareroot/univariate/equation/test" =
wenzelm@60306
   811
  \<open>Rule_Set.append_rules "contains_root" Rule_Set.empty [\<^rule_eval>\<open>contains_root\<close>
wenzelm@60306
   812
    (eval_contains_root "#contains_root_")]\<close>
wenzelm@60306
   813
  Method: "Test/square_equation"
wenzelm@60306
   814
  CAS: "solve (e_e::bool, v_v)"
wenzelm@60306
   815
  Given: "equality e_e" "solveFor v_v"
wenzelm@60306
   816
  Where: "precond_rootpbl v_v"
wenzelm@60306
   817
  Find: "solutions v_v'i'"
wenzelm@60306
   818
wenzelm@60306
   819
problem pbl_test_uni_norm : "normalise/univariate/equation/test" =
wenzelm@60306
   820
  \<open>Rule_Set.empty\<close>
wenzelm@60306
   821
  Method: "Test/norm_univar_equation"
wenzelm@60306
   822
  CAS: "solve (e_e::bool, v_v)"
wenzelm@60306
   823
  Given: "equality e_e" "solveFor v_v"
wenzelm@60306
   824
  Where:
wenzelm@60306
   825
  Find: "solutions v_v'i'"
wenzelm@60306
   826
wenzelm@60306
   827
problem pbl_test_uni_roottest : "sqroot-test/univariate/equation/test" =
wenzelm@60306
   828
  \<open>Rule_Set.empty\<close>
wenzelm@60306
   829
  CAS: "solve (e_e::bool, v_v)"
wenzelm@60306
   830
  Given: "equality e_e" "solveFor v_v"
wenzelm@60306
   831
  Where: "precond_rootpbl v_v"
wenzelm@60306
   832
  Find: "solutions v_v'i'"
wenzelm@60306
   833
wenzelm@60306
   834
problem pbl_test_intsimp : "inttype/test" =
wenzelm@60306
   835
  \<open>Rule_Set.empty\<close>
wenzelm@60306
   836
  Method: "Test/intsimp"
wenzelm@60306
   837
  Given: "intTestGiven t_t"
wenzelm@60306
   838
  Where:
wenzelm@60306
   839
  Find: "intTestFind s_s"
wneuper@59430
   840
wneuper@59472
   841
section \<open>methods\<close>
wneuper@59472
   842
subsection \<open>differentiate\<close>
wneuper@59472
   843
setup \<open>KEStore_Elems.add_mets
walther@60154
   844
    [MethodC.prep_input @{theory "Diff"} "met_test" [] MethodC.id_empty
wneuper@59430
   845
      (["Test"], [],
walther@59852
   846
        {rew_ord'="tless_true",rls'=Atools_erls,calc = [], srls = Rule_Set.empty, prls=Rule_Set.empty,
walther@59852
   847
          crls=Atools_erls, errpats = [], nrls = Rule_Set.empty}, @{thm refl})]
wneuper@59473
   848
\<close>
wneuper@59545
   849
wneuper@59504
   850
partial_function (tailrec) solve_linear :: "bool \<Rightarrow> real \<Rightarrow> bool list"
wneuper@59504
   851
  where
walther@59635
   852
"solve_linear e_e v_v = (
walther@59635
   853
  let e_e =
walther@59635
   854
    Repeat (
walther@59637
   855
      (Rewrite_Set_Inst [(''bdv'', v_v)] ''isolate_bdv'') #>
walther@59635
   856
      (Rewrite_Set ''Test_simplify'')) e_e
walther@59635
   857
  in
walther@59635
   858
    [e_e])"
wenzelm@60303
   859
method met_test_solvelin : "Test/solve_linear" =
wenzelm@60303
   860
  \<open>{rew_ord' = "e_rew_ord", rls' = tval_rls, srls = Rule_Set.empty,
wenzelm@60303
   861
    prls = assoc_rls' @{theory} "matches", calc = [], crls = tval_rls, errpats = [],
wenzelm@60303
   862
    nrls = Test_simplify}\<close>
wenzelm@60303
   863
  Program: solve_linear.simps
wenzelm@60303
   864
  Given: "equality e_e" "solveFor v_v"
wenzelm@60303
   865
  Where: "matches (?a = ?b) e_e"
wenzelm@60303
   866
  Find: "solutions v_v'i'"
wenzelm@60303
   867
wneuper@59472
   868
subsection \<open>root equation\<close>
wneuper@59545
   869
wneuper@59504
   870
partial_function (tailrec) solve_root_equ :: "bool \<Rightarrow> real \<Rightarrow> bool list"
wneuper@59504
   871
  where
walther@59635
   872
"solve_root_equ e_e v_v = (
walther@59635
   873
  let
walther@59635
   874
    e_e = (
walther@59635
   875
      (While (contains_root e_e) Do (
walther@59637
   876
        (Rewrite ''square_equation_left'' ) #>
walther@59637
   877
        (Try (Rewrite_Set ''Test_simplify'' )) #>
walther@59637
   878
        (Try (Rewrite_Set ''rearrange_assoc'' )) #>
walther@59637
   879
        (Try (Rewrite_Set ''isolate_root'' )) #>
walther@59637
   880
        (Try (Rewrite_Set ''Test_simplify'' )))) #>
walther@59637
   881
      (Try (Rewrite_Set ''norm_equation'' )) #>
walther@59637
   882
      (Try (Rewrite_Set ''Test_simplify'' )) #>
walther@59637
   883
      (Rewrite_Set_Inst [(''bdv'', v_v)] ''isolate_bdv'' ) #>
walther@59635
   884
      (Try (Rewrite_Set ''Test_simplify'' ))
walther@59635
   885
      ) e_e                                                                
walther@59635
   886
  in
walther@59635
   887
    [e_e])"
wenzelm@60303
   888
wenzelm@60303
   889
method met_test_sqrt : "Test/sqrt-equ-test" =
wenzelm@60303
   890
  (*root-equation, version for tests before 8.01.01*)
wenzelm@60303
   891
  \<open>{rew_ord'="e_rew_ord",rls'=tval_rls,
wenzelm@60303
   892
    srls = Rule_Set.append_rules "srls_contains_root" Rule_Set.empty
wenzelm@60303
   893
        [\<^rule_eval>\<open>contains_root\<close> (eval_contains_root "")],
wenzelm@60303
   894
    prls = Rule_Set.append_rules "prls_contains_root" Rule_Set.empty 
wenzelm@60303
   895
        [\<^rule_eval>\<open>contains_root\<close> (eval_contains_root "")],
wenzelm@60303
   896
    calc=[], crls=tval_rls, errpats = [], nrls = Rule_Set.empty (*,asm_rls=[],
wenzelm@60303
   897
    asm_thm=[("square_equation_left", ""), ("square_equation_right", "")]*)}\<close>
wenzelm@60303
   898
  Program: solve_root_equ.simps
wenzelm@60303
   899
  Given: "equality e_e" "solveFor v_v"
wenzelm@60303
   900
  Where: "contains_root (e_e::bool)"
wenzelm@60303
   901
  Find: "solutions v_v'i'"
wneuper@59477
   902
walther@59635
   903
partial_function (tailrec) minisubpbl :: "bool \<Rightarrow> real \<Rightarrow> bool list"
walther@59635
   904
  where
walther@59635
   905
"minisubpbl e_e v_v = (
walther@59635
   906
  let
walther@59635
   907
    e_e = (
walther@59637
   908
      (Try (Rewrite_Set ''norm_equation'' )) #>
walther@59635
   909
      (Try (Rewrite_Set ''Test_simplify'' ))) e_e;
walther@59635
   910
    L_L = SubProblem (''Test'', [''LINEAR'', ''univariate'', ''equation'', ''test''],
walther@59635
   911
      [''Test'', ''solve_linear'']) [BOOL e_e, REAL v_v]
walther@59635
   912
  in
walther@59635
   913
    Check_elementwise L_L {(v_v::real). Assumptions})"
wenzelm@60303
   914
wenzelm@60303
   915
method met_test_squ_sub : "Test/squ-equ-test-subpbl1" =
wenzelm@60303
   916
  (*tests subproblem fixed linear*)
wenzelm@60303
   917
  \<open>{rew_ord' = "e_rew_ord", rls' = tval_rls, srls = Rule_Set.empty,
walther@59852
   918
          prls = Rule_Set.append_rules "prls_met_test_squ_sub" Rule_Set.empty
wenzelm@60294
   919
              [\<^rule_eval>\<open>precond_rootmet\<close> (eval_precond_rootmet "")],
wenzelm@60303
   920
          calc=[], crls=tval_rls, errpats = [], nrls = Test_simplify}\<close>
wenzelm@60303
   921
  Program: minisubpbl.simps
wenzelm@60303
   922
  Given: "equality e_e" "solveFor v_v"
wenzelm@60303
   923
  Where: "precond_rootmet v_v"
wenzelm@60303
   924
  Find: "solutions v_v'i'"
wneuper@59545
   925
wneuper@59504
   926
partial_function (tailrec) solve_root_equ2 :: "bool \<Rightarrow> real \<Rightarrow> bool list"
walther@59635
   927
  where
walther@59635
   928
"solve_root_equ2 e_e v_v = (
walther@59635
   929
  let
walther@59635
   930
    e_e = (
walther@59635
   931
      (While (contains_root e_e) Do (
walther@59637
   932
        (Rewrite ''square_equation_left'' ) #>
walther@59637
   933
        (Try (Rewrite_Set ''Test_simplify'' )) #>
walther@59637
   934
        (Try (Rewrite_Set ''rearrange_assoc'' )) #>
walther@59637
   935
        (Try (Rewrite_Set ''isolate_root'' )) #>
walther@59637
   936
        (Try (Rewrite_Set ''Test_simplify'' )))) #>
walther@59637
   937
      (Try (Rewrite_Set ''norm_equation'' )) #>
walther@59635
   938
      (Try (Rewrite_Set ''Test_simplify'' ))
walther@59635
   939
      ) e_e;
walther@59635
   940
    L_L = SubProblem (''Test'', [''LINEAR'', ''univariate'', ''equation'', ''test''],
wneuper@59504
   941
             [''Test'', ''solve_linear'']) [BOOL e_e, REAL v_v]
walther@59635
   942
  in
walther@59635
   943
    Check_elementwise L_L {(v_v::real). Assumptions})                                       "
wenzelm@60303
   944
wenzelm@60303
   945
method met_test_eq1 : "Test/square_equation1" =
wenzelm@60303
   946
  (*root-equation1:*)
wenzelm@60303
   947
  \<open>{rew_ord'="e_rew_ord",rls'=tval_rls,
wenzelm@60303
   948
    srls = Rule_Set.append_rules "srls_contains_root" Rule_Set.empty 
wenzelm@60303
   949
      [\<^rule_eval>\<open>contains_root\<close> (eval_contains_root"")], prls=Rule_Set.empty, calc=[], crls=tval_rls,
wenzelm@60303
   950
        errpats = [], nrls = Rule_Set.empty(*,asm_rls=[], asm_thm=[("square_equation_left", ""),
wenzelm@60303
   951
        ("square_equation_right", "")]*)}\<close>
wenzelm@60303
   952
  Program: solve_root_equ2.simps
wenzelm@60303
   953
  Given: "equality e_e" "solveFor v_v"
wenzelm@60303
   954
  Find: "solutions v_v'i'"
wneuper@59545
   955
wneuper@59504
   956
partial_function (tailrec) solve_root_equ3 :: "bool \<Rightarrow> real \<Rightarrow> bool list"
wneuper@59504
   957
  where
walther@59635
   958
"solve_root_equ3 e_e v_v = (
walther@59635
   959
  let
walther@59635
   960
    e_e = (
walther@59635
   961
      (While (contains_root e_e) Do ((
walther@59635
   962
        (Rewrite ''square_equation_left'' ) Or
walther@59637
   963
        (Rewrite ''square_equation_right'' )) #>
walther@59637
   964
        (Try (Rewrite_Set ''Test_simplify'' )) #>
walther@59637
   965
        (Try (Rewrite_Set ''rearrange_assoc'' )) #>
walther@59637
   966
        (Try (Rewrite_Set ''isolate_root'' )) #>
walther@59637
   967
        (Try (Rewrite_Set ''Test_simplify'' )))) #>
walther@59637
   968
      (Try (Rewrite_Set ''norm_equation'' )) #>
walther@59635
   969
      (Try (Rewrite_Set ''Test_simplify'' ))
walther@59635
   970
      ) e_e;
walther@59635
   971
    L_L = SubProblem (''Test'', [''plain_square'', ''univariate'', ''equation'', ''test''],
walther@59635
   972
      [''Test'', ''solve_plain_square'']) [BOOL e_e, REAL v_v]
walther@59635
   973
  in
walther@59635
   974
    Check_elementwise L_L {(v_v::real). Assumptions})"
wenzelm@60303
   975
wenzelm@60303
   976
method met_test_squ2 : "Test/square_equation2" =
wenzelm@60303
   977
  (*root-equation2*)
wenzelm@60303
   978
  \<open>{rew_ord'="e_rew_ord",rls'=tval_rls,
wenzelm@60303
   979
    srls = Rule_Set.append_rules "srls_contains_root" Rule_Set.empty 
wenzelm@60303
   980
        [\<^rule_eval>\<open>contains_root\<close> (eval_contains_root"")],
wenzelm@60303
   981
    prls=Rule_Set.empty,calc=[], crls=tval_rls, errpats = [], nrls = Rule_Set.empty(*,asm_rls=[],
wenzelm@60303
   982
    asm_thm=[("square_equation_left", ""), ("square_equation_right", "")]*)}\<close>
wenzelm@60303
   983
  Program: solve_root_equ3.simps
wenzelm@60303
   984
  Given: "equality e_e" "solveFor v_v"
wenzelm@60303
   985
  Find: "solutions v_v'i'"
wneuper@59545
   986
wneuper@59504
   987
partial_function (tailrec) solve_root_equ4 :: "bool \<Rightarrow> real \<Rightarrow> bool list"
wneuper@59504
   988
  where
walther@59635
   989
"solve_root_equ4 e_e v_v = (
walther@59635
   990
  let
walther@59635
   991
    e_e = (
walther@59635
   992
      (While (contains_root e_e) Do ((
walther@59635
   993
        (Rewrite ''square_equation_left'' ) Or
walther@59637
   994
        (Rewrite ''square_equation_right'' )) #>
walther@59637
   995
        (Try (Rewrite_Set ''Test_simplify'' )) #>
walther@59637
   996
        (Try (Rewrite_Set ''rearrange_assoc'' )) #>
walther@59637
   997
        (Try (Rewrite_Set ''isolate_root'' )) #>
walther@59637
   998
        (Try (Rewrite_Set ''Test_simplify'' )))) #>
walther@59637
   999
      (Try (Rewrite_Set ''norm_equation'' )) #>
walther@59635
  1000
      (Try (Rewrite_Set ''Test_simplify'' ))
walther@59635
  1001
      ) e_e;
walther@59635
  1002
    L_L = SubProblem (''Test'', [''univariate'', ''equation'', ''test''],
walther@59635
  1003
      [''no_met'']) [BOOL e_e, REAL v_v]
walther@59635
  1004
  in
walther@59635
  1005
    Check_elementwise L_L {(v_v::real). Assumptions})"
wenzelm@60303
  1006
wenzelm@60303
  1007
method met_test_squeq : "Test/square_equation" =
wenzelm@60303
  1008
  (*root-equation*)
wenzelm@60303
  1009
  \<open>{rew_ord'="e_rew_ord",rls'=tval_rls,
wenzelm@60303
  1010
    srls = Rule_Set.append_rules "srls_contains_root" Rule_Set.empty 
wenzelm@60303
  1011
        [\<^rule_eval>\<open>contains_root\<close> (eval_contains_root"")],
wenzelm@60303
  1012
    prls=Rule_Set.empty,calc=[], crls=tval_rls, errpats = [], nrls = Rule_Set.empty (*,asm_rls=[],
wenzelm@60303
  1013
    asm_thm=[("square_equation_left", ""), ("square_equation_right", "")]*)}\<close>
wenzelm@60303
  1014
  Program: solve_root_equ4.simps
wenzelm@60303
  1015
  Given: "equality e_e" "solveFor v_v"
wenzelm@60303
  1016
  Find: "solutions v_v'i'"
wneuper@59545
  1017
wneuper@59504
  1018
partial_function (tailrec) solve_plain_square :: "bool \<Rightarrow> real \<Rightarrow> bool list"
wneuper@59504
  1019
  where
walther@59635
  1020
"solve_plain_square e_e v_v = (
walther@59635
  1021
  let
walther@59635
  1022
    e_e = (
walther@59637
  1023
      (Try (Rewrite_Set ''isolate_bdv'' )) #>
walther@59637
  1024
      (Try (Rewrite_Set ''Test_simplify'' )) #>
walther@59635
  1025
      ((Rewrite ''square_equality_0'' ) Or
walther@59637
  1026
       (Rewrite ''square_equality'' )) #>
walther@59635
  1027
      (Try (Rewrite_Set ''tval_rls'' ))) e_e
walther@59635
  1028
  in
walther@59635
  1029
    Or_to_List e_e)"
wenzelm@60303
  1030
wenzelm@60303
  1031
method met_test_eq_plain : "Test/solve_plain_square" =
wenzelm@60303
  1032
  (*solve_plain_square*)
wenzelm@60303
  1033
  \<open>{rew_ord'="e_rew_ord",rls'=tval_rls,calc=[],srls=Rule_Set.empty,
wenzelm@60303
  1034
    prls = assoc_rls' @{theory} "matches", crls=tval_rls, errpats = [], nrls = Rule_Set.empty(*,
wenzelm@60303
  1035
    asm_rls=[],asm_thm=[]*)}\<close>
wenzelm@60303
  1036
  Program: solve_plain_square.simps
wenzelm@60303
  1037
  Given: "equality e_e" "solveFor v_v"
wenzelm@60303
  1038
  Where:
wenzelm@60303
  1039
    "(matches (?a + ?b*v_v  \<up> 2 = 0) e_e) |
wenzelm@60303
  1040
     (matches (     ?b*v_v  \<up> 2 = 0) e_e) |
wenzelm@60303
  1041
     (matches (?a +    v_v  \<up> 2 = 0) e_e) |
wenzelm@60303
  1042
     (matches (        v_v  \<up> 2 = 0) e_e)"
wenzelm@60303
  1043
  Find: "solutions v_v'i'"
wenzelm@60303
  1044
wenzelm@60303
  1045
wneuper@59472
  1046
subsection \<open>polynomial equation\<close>
wneuper@59545
  1047
wneuper@59504
  1048
partial_function (tailrec) norm_univariate_equ :: "bool \<Rightarrow> real \<Rightarrow> bool list"
wneuper@59504
  1049
  where
walther@59635
  1050
"norm_univariate_equ e_e v_v = (
walther@59635
  1051
  let
walther@59635
  1052
    e_e = (
walther@59637
  1053
      (Try (Rewrite ''rnorm_equation_add'' )) #>
walther@59635
  1054
      (Try (Rewrite_Set ''Test_simplify'' )) ) e_e
walther@59635
  1055
  in
walther@59635
  1056
    SubProblem (''Test'', [''univariate'', ''equation'', ''test''],
wneuper@59504
  1057
        [''no_met'']) [BOOL e_e, REAL v_v])"
wenzelm@60303
  1058
wenzelm@60303
  1059
method met_test_norm_univ : "Test/norm_univar_equation" =
wenzelm@60303
  1060
  \<open>{rew_ord'="e_rew_ord",rls'=tval_rls,srls = Rule_Set.empty,prls=Rule_Set.empty, calc=[], crls=tval_rls,
wenzelm@60303
  1061
    errpats = [], nrls = Rule_Set.empty}\<close>
wenzelm@60303
  1062
  Program: norm_univariate_equ.simps
wenzelm@60303
  1063
  Given: "equality e_e" "solveFor v_v"
wenzelm@60303
  1064
  Where:
wenzelm@60303
  1065
  Find: "solutions v_v'i'"
wenzelm@60303
  1066
wenzelm@60303
  1067
wneuper@59472
  1068
subsection \<open>diophantine equation\<close>
wneuper@59545
  1069
wneuper@59504
  1070
partial_function (tailrec) test_simplify :: "int \<Rightarrow> int"
wneuper@59504
  1071
  where
walther@59635
  1072
"test_simplify t_t = (
walther@59635
  1073
  Repeat (
walther@59637
  1074
    (Try (Calculate ''PLUS'')) #>         
walther@59635
  1075
    (Try (Calculate ''TIMES''))) t_t)"
wenzelm@60303
  1076
wenzelm@60303
  1077
method met_test_intsimp : "Test/intsimp" =
wenzelm@60303
  1078
  \<open>{rew_ord' = "e_rew_ord", rls' = tval_rls, srls = Rule_Set.empty,  prls = Rule_Set.empty, calc = [],
wenzelm@60303
  1079
    crls = tval_rls, errpats = [], nrls = Test_simplify}\<close>
wenzelm@60303
  1080
  Program: test_simplify.simps
wenzelm@60303
  1081
  Given: "intTestGiven t_t"
wenzelm@60303
  1082
  Where:
wenzelm@60303
  1083
  Find: "intTestFind s_s"
wenzelm@60303
  1084
wenzelm@60303
  1085
ML \<open>
wneuper@59472
  1086
\<close>
wneuper@59430
  1087
neuper@37906
  1088
end