src/Tools/isac/Knowledge/Poly.thy
author wneuper <walther.neuper@jku.at>
Sun, 18 Jul 2021 21:15:21 +0200
changeset 60333 7c76b8278a9f
parent 60331 40eb8aa2b0d6
child 60335 7701598a2182
permissions -rw-r--r--
Test_Isac_Short.thy, Test_Some.the work on new src, new TOODOOs

notes
# the previous changeset run Test_Isac_Short.thy on src/* from before the merge
# errors coming from merge are outcommented with TOODOO
neuper@37906
     1
(* WN.020812: theorems in the Reals,
neuper@37906
     2
   necessary for special rule sets, in addition to Isabelle2002.
neuper@37906
     3
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
neuper@37906
     4
   !!! THIS IS THE _least_ NUMBER OF ADDITIONAL THEOREMS !!!
neuper@37906
     5
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
walther@60242
     6
   xxxI contain \<up> instead of ^ in the respective theorem xxx in 2002
neuper@37906
     7
   changed by: Richard Lang 020912
neuper@37906
     8
*)
neuper@37906
     9
neuper@37950
    10
theory Poly imports Simplify begin
neuper@37906
    11
wneuper@59523
    12
subsection \<open>remark on term-structure of polynomials\<close>
wneuper@59523
    13
text \<open>
wneuper@59523
    14
WN190319:
wneuper@59523
    15
the code below reflects missing coordination between two authors:
wneuper@59523
    16
* ML: built the equation solver; simple rule-sets, programs; better predicates for specifications.
wneuper@59523
    17
* MG: built simplification of polynomials with AC rewriting by ML code
wneuper@59523
    18
wneuper@59523
    19
WN020919:
wneuper@59523
    20
*** there are 5 kinds of expanded normalforms ***
wneuper@59523
    21
wneuper@59523
    22
[1] 'complete polynomial' (Komplettes Polynom), univariate
wneuper@59523
    23
   a_0 + a_1.x^1 +...+ a_n.x^n   not (a_n = 0)
wneuper@59523
    24
	        not (a_n = 0), some a_i may be zero (DON'T disappear),
wneuper@59523
    25
                variables in monomials lexicographically ordered and complete,
wneuper@59523
    26
                x written as 1*x^1, ...
wneuper@59523
    27
[2] 'polynomial' (Polynom), univariate and multivariate
wneuper@59523
    28
   a_0 + a_1.x +...+ a_n.x^n   not (a_n = 0)
wneuper@59523
    29
   a_0 + a_1.x_1.x_2^n_12...x_m^n_1m +...+  a_n.x_1^n.x_2^n_n2...x_m^n_nm
wneuper@59523
    30
	        not (a_n = 0), some a_i may be zero (ie. monomials disappear),
wneuper@59523
    31
                exponents and coefficients equal 1 are not (WN060904.TODO in cancel_p_)shown,
wneuper@59523
    32
                and variables in monomials are lexicographically ordered  
walther@60242
    33
   examples: [1]: "1 + (-10) * x \<up> 1 + 25 * x \<up> 2"
walther@60242
    34
	     [1]: "11 + 0 * x \<up> 1 + 1 * x \<up> 2"
walther@60242
    35
	     [2]: "x + (-50) * x \<up> 3"
walther@60242
    36
	     [2]: "(-1) * x * y \<up> 2 + 7 * x \<up> 3"
wneuper@59523
    37
wneuper@59523
    38
[3] 'expanded_term' (Ausmultiplizierter Term):
wneuper@59523
    39
   pull out unary minus to binary minus, 
wneuper@59523
    40
   as frequently exercised in schools; other conditions for [2] hold however
walther@60242
    41
   examples: "a \<up> 2 - 2 * a * b + b \<up> 2"
walther@60242
    42
	     "4 * x \<up> 2 - 9 * y \<up> 2"
wneuper@59523
    43
[4] 'polynomial_in' (Polynom in): 
wneuper@59523
    44
   polynomial in 1 variable with arbitrary coefficients
walther@60242
    45
   examples: "2 * x + (-50) * x \<up> 3"                     (poly in x)
walther@60242
    46
	     "(u + v) + (2 * u \<up> 2) * a + (-u) * a \<up> 2 (poly in a)
wneuper@59523
    47
[5] 'expanded_in' (Ausmultiplizierter Termin in): 
wneuper@59523
    48
   analoguous to [3] with binary minus like [3]
walther@60242
    49
   examples: "2 * x - 50 * x \<up> 3"                     (expanded in x)
walther@60242
    50
	     "(u + v) + (2 * u \<up> 2) * a - u * a \<up> 2 (expanded in a)
wneuper@59523
    51
\<close>
wneuper@59523
    52
subsection \<open>consts definition for predicates in specifications\<close>
neuper@37906
    53
consts
neuper@37906
    54
walther@60278
    55
  is_expanded_in :: "[real, real] => bool" ("_ is'_expanded'_in _") 
walther@60278
    56
  is_poly_in     :: "[real, real] => bool" ("_ is'_poly'_in _")   (*RL DA *)
walther@60278
    57
  has_degree_in  :: "[real, real] => real" ("_ has'_degree'_in _")(*RL DA *)
walther@60278
    58
  is_polyrat_in  :: "[real, real] => bool" ("_ is'_polyrat'_in _")(*RL030626*)
neuper@37906
    59
walther@60278
    60
  is_multUnordered:: "real => bool" ("_ is'_multUnordered") 
walther@60278
    61
  is_addUnordered :: "real => bool" ("_ is'_addUnordered") (*WN030618*)
walther@60278
    62
  is_polyexp      :: "real => bool" ("_ is'_polyexp") 
neuper@37906
    63
wneuper@59523
    64
subsection \<open>theorems not yet adopted from Isabelle\<close>
neuper@52148
    65
axiomatization where (*.not contained in Isabelle2002,
neuper@37906
    66
         stated as axioms, TODO: prove as theorems;
walther@60242
    67
         theorem-IDs 'xxxI' with \<up> instead of ^ in 'xxx' in Isabelle2002.*)
neuper@37906
    68
walther@60242
    69
  realpow_pow:             "(a \<up> b) \<up> c = a \<up> (b * c)" and
walther@60242
    70
  realpow_addI:            "r \<up> (n + m) = r \<up> n * r \<up> m" and
walther@60242
    71
  realpow_addI_assoc_l:    "r \<up> n * (r \<up> m * s) = r \<up> (n + m) * s" and
walther@60242
    72
  realpow_addI_assoc_r:    "s * r \<up> n * r \<up> m = s * r \<up> (n + m)" and
neuper@37906
    73
		  
walther@60242
    74
  realpow_oneI:            "r \<up> 1 = r" and
walther@60242
    75
  realpow_zeroI:            "r \<up> 0 = 1" and
walther@60242
    76
  realpow_eq_oneI:         "1 \<up> n = 1" and
walther@60242
    77
  realpow_multI:           "(r * s) \<up> n = r \<up> n * s \<up> n"  and
neuper@37974
    78
  realpow_multI_poly:      "[| r is_polyexp; s is_polyexp |] ==>
walther@60242
    79
			      (r * s) \<up> n = r \<up> n * s \<up> n"  and
walther@60242
    80
  realpow_minus_oneI:      "(- 1) \<up> (2 * n) = 1"  and 
wneuper@59589
    81
  real_diff_0:		         "0 - x = - (x::real)" and
neuper@37906
    82
walther@60242
    83
  realpow_twoI:            "r \<up> 2 = r * r" and
walther@60242
    84
  realpow_twoI_assoc_l:	  "r * (r * s) = r \<up> 2 * s" and
walther@60242
    85
  realpow_twoI_assoc_r:	  "s * r * r = s * r \<up> 2" and
walther@60242
    86
  realpow_two_atom:        "r is_atom ==> r * r = r \<up> 2" and
walther@60242
    87
  realpow_plus_1:          "r * r \<up> n = r \<up> (n + 1)"   and       
walther@60242
    88
  realpow_plus_1_assoc_l:  "r * (r \<up> m * s) = r \<up> (1 + m) * s"  and
walther@60242
    89
  realpow_plus_1_assoc_l2: "r \<up> m * (r * s) = r \<up> (1 + m) * s"  and
walther@60242
    90
  realpow_plus_1_assoc_r:  "s * r * r \<up> m = s * r \<up> (1 + m)" and
walther@60242
    91
  realpow_plus_1_atom:     "r is_atom ==> r * r \<up> n = r \<up> (1 + n)" and
neuper@37974
    92
  realpow_def_atom:        "[| Not (r is_atom); 1 < n |]
walther@60242
    93
			   ==> r \<up> n = r * r \<up> (n + -1)" and
walther@60242
    94
  realpow_addI_atom:       "r is_atom ==> r \<up> n * r \<up> m = r \<up> (n + m)" and
neuper@37906
    95
neuper@37906
    96
walther@60278
    97
  realpow_minus_even:	     "n is_even ==> (- r) \<up> n = r \<up> n" and
walther@60242
    98
  realpow_minus_odd:       "Not (n is_even) ==> (- r) \<up> n = -1 * r \<up> n" and
neuper@37906
    99
neuper@37906
   100
neuper@37906
   101
(* RL 020914 *)
neuper@52148
   102
  real_pp_binom_times:     "(a + b)*(c + d) = a*c + a*d + b*c + b*d" and
neuper@52148
   103
  real_pm_binom_times:     "(a + b)*(c - d) = a*c - a*d + b*c - b*d" and
neuper@52148
   104
  real_mp_binom_times:     "(a - b)*(c + d) = a*c + a*d - b*c - b*d" and
neuper@52148
   105
  real_mm_binom_times:     "(a - b)*(c - d) = a*c - a*d - b*c + b*d" and
walther@60242
   106
  real_plus_binom_pow3:    "(a + b) \<up> 3 = a \<up> 3 + 3*a \<up> 2*b + 3*a*b \<up> 2 + b \<up> 3" and
neuper@37974
   107
  real_plus_binom_pow3_poly: "[| a is_polyexp; b is_polyexp |] ==> 
walther@60242
   108
			    (a + b) \<up> 3 = a \<up> 3 + 3*a \<up> 2*b + 3*a*b \<up> 2 + b \<up> 3" and
walther@60242
   109
  real_minus_binom_pow3:   "(a - b) \<up> 3 = a \<up> 3 - 3*a \<up> 2*b + 3*a*b \<up> 2 - b \<up> 3" and
walther@60242
   110
  real_minus_binom_pow3_p: "(a + -1 * b) \<up> 3 = a \<up> 3 + -3*a \<up> 2*b + 3*a*b \<up> 2 +
walther@60242
   111
                           -1*b \<up> 3" and
neuper@37974
   112
(* real_plus_binom_pow:        "[| n is_const;  3 < n |] ==>
walther@60260
   113
			       (a + b) \<up> n = (a + b) * (a + b)\<up>(n - 1)" *)
walther@60242
   114
  real_plus_binom_pow4:   "(a + b) \<up> 4 = (a \<up> 3 + 3*a \<up> 2*b + 3*a*b \<up> 2 + b \<up> 3)
neuper@52148
   115
                           *(a + b)" and
neuper@37974
   116
  real_plus_binom_pow4_poly: "[| a is_polyexp; b is_polyexp |] ==> 
walther@60242
   117
			   (a + b) \<up> 4 = (a \<up> 3 + 3*a \<up> 2*b + 3*a*b \<up> 2 + b \<up> 3)
neuper@52148
   118
                           *(a + b)" and
walther@60242
   119
  real_plus_binom_pow5:    "(a + b) \<up> 5 = (a \<up> 3 + 3*a \<up> 2*b + 3*a*b \<up> 2 + b \<up> 3)
walther@60242
   120
                           *(a \<up> 2 + 2*a*b + b \<up> 2)" and
neuper@37974
   121
  real_plus_binom_pow5_poly: "[| a is_polyexp; b is_polyexp |] ==> 
walther@60242
   122
			        (a + b) \<up> 5 = (a \<up> 3 + 3*a \<up> 2*b + 3*a*b \<up> 2 
walther@60242
   123
                                + b \<up> 3)*(a \<up> 2 + 2*a*b + b \<up> 2)" and
neuper@52148
   124
  real_diff_plus:          "a - b = a + -b" (*17.3.03: do_NOT_use*) and
neuper@52148
   125
  real_diff_minus:         "a - b = a + -1 * b" and
walther@60242
   126
  real_plus_binom_times:   "(a + b)*(a + b) = a \<up> 2 + 2*a*b + b \<up> 2" and
walther@60242
   127
  real_minus_binom_times:  "(a - b)*(a - b) = a \<up> 2 - 2*a*b + b \<up> 2" and
neuper@37906
   128
  (*WN071229 changed for Schaerding -----vvv*)
walther@60260
   129
  (*real_plus_binom_pow2:  "(a + b) \<up> 2 = a \<up> 2 + 2*a*b + b \<up> 2"*)
walther@60242
   130
  real_plus_binom_pow2:    "(a + b) \<up> 2 = (a + b) * (a + b)" and
walther@60242
   131
  (*WN071229 changed for Schaerding -----\<up>*)
neuper@37974
   132
  real_plus_binom_pow2_poly: "[| a is_polyexp; b is_polyexp |] ==>
walther@60242
   133
			       (a + b) \<up> 2 = a \<up> 2 + 2*a*b + b \<up> 2" and
walther@60242
   134
  real_minus_binom_pow2:      "(a - b) \<up> 2 = a \<up> 2 - 2*a*b + b \<up> 2" and
walther@60242
   135
  real_minus_binom_pow2_p:    "(a - b) \<up> 2 = a \<up> 2 + -2*a*b + b \<up> 2" and
walther@60242
   136
  real_plus_minus_binom1:     "(a + b)*(a - b) = a \<up> 2 - b \<up> 2" and
walther@60242
   137
  real_plus_minus_binom1_p:   "(a + b)*(a - b) = a \<up> 2 + -1*b \<up> 2" and
walther@60242
   138
  real_plus_minus_binom1_p_p: "(a + b)*(a + -1 * b) = a \<up> 2 + -1*b \<up> 2" and
walther@60242
   139
  real_plus_minus_binom2:     "(a - b)*(a + b) = a \<up> 2 - b \<up> 2" and
walther@60242
   140
  real_plus_minus_binom2_p:   "(a - b)*(a + b) = a \<up> 2 + -1*b \<up> 2" and
walther@60242
   141
  real_plus_minus_binom2_p_p: "(a + -1 * b)*(a + b) = a \<up> 2 + -1*b \<up> 2" and
walther@60242
   142
  real_plus_binom_times1:     "(a +  1*b)*(a + -1*b) = a \<up> 2 + -1*b \<up> 2" and
walther@60242
   143
  real_plus_binom_times2:     "(a + -1*b)*(a +  1*b) = a \<up> 2 + -1*b \<up> 2" and
neuper@37906
   144
neuper@37974
   145
  real_num_collect:           "[| l is_const; m is_const |] ==>
neuper@52148
   146
			      l * n + m * n = (l + m) * n" and
neuper@37906
   147
(* FIXME.MG.0401: replace 'real_num_collect_assoc' 
neuper@37906
   148
	by 'real_num_collect_assoc_l' ... are equal, introduced by MG ! *)
neuper@37974
   149
  real_num_collect_assoc:     "[| l is_const; m is_const |] ==> 
neuper@52148
   150
			      l * n + (m * n + k) = (l + m) * n + k" and
neuper@37974
   151
  real_num_collect_assoc_l:   "[| l is_const; m is_const |] ==>
neuper@37950
   152
			      l * n + (m * n + k) = (l + m)
neuper@52148
   153
				* n + k" and
neuper@37974
   154
  real_num_collect_assoc_r:   "[| l is_const; m is_const |] ==>
neuper@52148
   155
			      (k + m * n) + l * n = k + (l + m) * n" and
neuper@52148
   156
  real_one_collect:           "m is_const ==> n + m * n = (1 + m) * n" and
neuper@37906
   157
(* FIXME.MG.0401: replace 'real_one_collect_assoc' 
neuper@37906
   158
	by 'real_one_collect_assoc_l' ... are equal, introduced by MG ! *)
neuper@52148
   159
  real_one_collect_assoc:     "m is_const ==> n + (m * n + k) = (1 + m)* n + k" and
neuper@37906
   160
neuper@52148
   161
  real_one_collect_assoc_l:   "m is_const ==> n + (m * n + k) = (1 + m) * n + k" and
neuper@52148
   162
  real_one_collect_assoc_r:  "m is_const ==> (k + n) +  m * n = k + (1 + m) * n" and
neuper@37906
   163
neuper@37906
   164
(* FIXME.MG.0401: replace 'real_mult_2_assoc' 
neuper@37906
   165
	by 'real_mult_2_assoc_l' ... are equal, introduced by MG ! *)
neuper@52148
   166
  real_mult_2_assoc:          "z1 + (z1 + k) = 2 * z1 + k" and
neuper@52148
   167
  real_mult_2_assoc_l:        "z1 + (z1 + k) = 2 * z1 + k" and
neuper@52148
   168
  real_mult_2_assoc_r:        "(k + z1) + z1 = k + 2 * z1" and
neuper@37906
   169
wneuper@59587
   170
  real_mult_left_commute: "z1 * (z2 * z3) = z2 * (z1 * z3)" and
wneuper@59587
   171
  real_mult_minus1:       "-1 * z = - (z::real)" and
walther@60333
   172
  (*sym_real_mult_minus1 expands indefinitely without assumptions ...*)
walther@60333
   173
  real_mult_minus1_sym:   "[| \<not>(matches (- 1 * x) z); \<not>(z is_atom) |] ==> - (z::real) = -1 * z" and
wneuper@59587
   174
  real_mult_2:            "2 * z = z + (z::real)" and
wneuper@59587
   175
neuper@52148
   176
  real_add_mult_distrib_poly: "w is_polyexp ==> (z1 + z2) * w = z1 * w + z2 * w" and
neuper@37974
   177
  real_add_mult_distrib2_poly:"w is_polyexp ==> w * (z1 + z2) = w * z1 + w * z2"
neuper@37950
   178
walther@60278
   179
wneuper@59523
   180
subsection \<open>auxiliary functions\<close>
wneuper@59530
   181
ML \<open>
wneuper@59530
   182
val poly_consts =
wenzelm@60309
   183
  [\<^const_name>\<open>plus\<close>, \<^const_name>\<open>minus\<close>,
wenzelm@60309
   184
  \<^const_name>\<open>divide\<close>, \<^const_name>\<open>times\<close>,
wenzelm@60309
   185
  \<^const_name>\<open>powr\<close>];
walther@60321
   186
walther@60321
   187
val int_ord_SAVE = int_ord;
walther@60321
   188
(*for tests on rewrite orders*)
walther@60321
   189
fun int_ord (i1, i2) =
walther@60321
   190
(@{print} {a = "int_ord (" ^ string_of_int i1 ^ ", " ^ string_of_int i2 ^ ") = ", z = Int.compare (i1, i2)};
walther@60321
   191
  Int.compare (i1, i2));
walther@60321
   192
(**)val int_ord = int_ord_SAVE; (*..outcomment for tests*)
wneuper@59530
   193
\<close>
wneuper@59523
   194
subsubsection \<open>for predicates in specifications (ML)\<close>
wneuper@59472
   195
ML \<open>
wneuper@59522
   196
(*--- auxiliary for is_expanded_in, is_poly_in, has_degree_in ---*)
walther@60317
   197
(*. a "monomial t in variable v" is a term t with
wneuper@59522
   198
  either (1) v NOT existent in t, or (2) v contained in t,
wneuper@59522
   199
  if (1) then degree 0
walther@60317
   200
  if (2) then v is a factor on the very right, casually with exponent.*)
wneuper@59522
   201
fun factor_right_deg (*case 2*)
walther@60317
   202
	    (Const ("Groups.times_class.times", _) $
walther@60317
   203
        t1 $ (Const ("Transcendental.powr",_) $ vv $ num)) v =
walther@60317
   204
	  if vv = v andalso not (Prog_Expr.occurs_in v t1) then SOME (snd (HOLogic.dest_number num))
walther@60317
   205
    else NONE
walther@60317
   206
  | factor_right_deg (Const ("Transcendental.powr",_) $ vv $ num) v =
walther@60317
   207
	   if (vv = v) then SOME (snd (HOLogic.dest_number num)) else NONE
walther@60331
   208
wenzelm@60309
   209
  | factor_right_deg (Const (\<^const_name>\<open>times\<close>,_) $ t1 $ vv) v = 
walther@59603
   210
	   if vv = v andalso not (Prog_Expr.occurs_in v t1) then SOME 1 else NONE
wneuper@59522
   211
  | factor_right_deg vv v =
wneuper@59522
   212
	  if (vv = v) then SOME 1 else NONE;    
wneuper@59522
   213
fun mono_deg_in m v =  (*case 1*)
walther@59603
   214
	if not (Prog_Expr.occurs_in v m) then (*case 1*) SOME 0 else factor_right_deg m v;
wneuper@59522
   215
wneuper@59522
   216
fun expand_deg_in t v =
wneuper@59522
   217
	let
wenzelm@60309
   218
    fun edi ~1 ~1 (Const (\<^const_name>\<open>plus\<close>, _) $ t1 $ t2) =
wneuper@59522
   219
          (case mono_deg_in t2 v of (* $ is left associative*)
wneuper@59522
   220
            SOME d' => edi d' d' t1 | NONE => NONE)
wenzelm@60309
   221
      | edi ~1 ~1 (Const (\<^const_name>\<open>minus\<close>, _) $ t1 $ t2) =
wneuper@59522
   222
          (case mono_deg_in t2 v of
wneuper@59522
   223
            SOME d' => edi d' d' t1 | NONE => NONE)
wenzelm@60309
   224
      | edi d dmax (Const (\<^const_name>\<open>minus\<close>, _) $ t1 $ t2) =
wneuper@59522
   225
          (case mono_deg_in t2 v of (*(d = 0 andalso d' = 0) handle 3+4-...4 +x*)
wneuper@59522
   226
	        SOME d' => if d > d' orelse (d = 0 andalso d' = 0) then edi d' dmax t1 else NONE
wneuper@59522
   227
          | NONE => NONE)
wenzelm@60309
   228
      | edi d dmax (Const (\<^const_name>\<open>plus\<close>,_) $ t1 $ t2) =
wneuper@59522
   229
          (case mono_deg_in t2 v of
wneuper@59522
   230
            SOME d' =>    (*RL (d = 0 andalso d' = 0) need to handle 3+4-...4 +x*)
wneuper@59522
   231
              if d > d' orelse (d = 0 andalso d' = 0) then edi d' dmax t1 else NONE
wneuper@59522
   232
          | NONE => NONE)
wneuper@59522
   233
      | edi ~1 ~1 t =
wneuper@59522
   234
          (case mono_deg_in t v of d as SOME _ => d | NONE => NONE)
wneuper@59522
   235
      | edi d dmax t = (*basecase last*)
wneuper@59522
   236
    	    (case mono_deg_in t v of
wneuper@59522
   237
    	      SOME d' => if d > d' orelse (d = 0 andalso d' = 0) then SOME dmax else NONE
wneuper@59522
   238
		      | NONE => NONE)
wneuper@59522
   239
	in edi ~1 ~1 t end;
wneuper@59522
   240
wneuper@59522
   241
fun poly_deg_in t v =
wneuper@59522
   242
	let
wenzelm@60309
   243
    fun edi ~1 ~1 (Const (\<^const_name>\<open>plus\<close>,_) $ t1 $ t2) =
wneuper@59522
   244
		    (case mono_deg_in t2 v of (* $ is left associative *)
wneuper@59522
   245
		      SOME d' => edi d' d' t1
wneuper@59522
   246
        | NONE => NONE)
wenzelm@60309
   247
	    | edi d dmax (Const (\<^const_name>\<open>plus\<close>,_) $ t1 $ t2) =
wneuper@59522
   248
		    (case mono_deg_in t2 v of
wneuper@59522
   249
	        SOME d' =>    (*RL (d = 0 andalso (d' = 0)) handle 3+4-...4 +x*)
wneuper@59522
   250
            if d > d' orelse (d = 0 andalso d' = 0) then edi d' dmax t1 else NONE
wneuper@59522
   251
        | NONE => NONE)
wneuper@59522
   252
	    | edi ~1 ~1 t =
wneuper@59522
   253
        (case mono_deg_in t v of
wneuper@59522
   254
		      d as SOME _ => d
wneuper@59522
   255
        | NONE => NONE)
wneuper@59522
   256
	    | edi d dmax t = (* basecase last *)
wneuper@59522
   257
		    (case mono_deg_in t v of
wneuper@59522
   258
		      SOME d' =>
wneuper@59522
   259
            if d > d' orelse (d = 0 andalso d' = 0) then SOME dmax else NONE
wneuper@59522
   260
        | NONE => NONE)
wneuper@59522
   261
	in edi ~1 ~1 t end;
wneuper@59523
   262
\<close>
neuper@37950
   263
wneuper@59523
   264
subsubsection \<open>for hard-coded AC rewriting (MG)\<close>
wneuper@59523
   265
ML \<open>
wneuper@59523
   266
(**. MG.03: make_polynomial_ ... uses SML-fun for ordering .**)
neuper@37950
   267
wneuper@59523
   268
(*FIXME.0401: make SML-order local to make_polynomial(_) *)
wneuper@59523
   269
(*FIXME.0401: replace 'make_polynomial'(old) by 'make_polynomial_'(MG) *)
wneuper@59523
   270
(* Polynom --> List von Monomen *) 
wenzelm@60309
   271
fun poly2list (Const (\<^const_name>\<open>plus\<close>,_) $ t1 $ t2) = 
wneuper@59523
   272
    (poly2list t1) @ (poly2list t2)
wneuper@59523
   273
  | poly2list t = [t];
neuper@37950
   274
wneuper@59523
   275
(* Monom --> Liste von Variablen *)
wenzelm@60309
   276
fun monom2list (Const (\<^const_name>\<open>times\<close>,_) $ t1 $ t2) = 
wneuper@59523
   277
    (monom2list t1) @ (monom2list t2)
wneuper@59523
   278
  | monom2list t = [t];
neuper@37950
   279
wneuper@59523
   280
(* liefert Variablenname (String) einer Variablen und Basis bei Potenz *)
wenzelm@60309
   281
fun get_basStr (Const (\<^const_name>\<open>powr\<close>,_) $ Free (str, _) $ _) = str
walther@60322
   282
  | get_basStr (Const ("Transcendental.powr",_) $ n $ _) = TermC.to_string n
wneuper@59523
   283
  | get_basStr (Free (str, _)) = str
walther@60318
   284
  | get_basStr t =
walther@60322
   285
    if TermC.is_num t then TermC.to_string t
walther@60318
   286
    else "|||"; (* gross gewichtet; für Brüche ect. *)
neuper@37950
   287
wneuper@59523
   288
(* liefert Hochzahl (String) einer Variablen bzw Gewichtstring (zum Sortieren) *)
walther@60321
   289
fun get_potStr (Const ("Transcendental.powr", _) $ Free _ $ Free (str, _)) = str
walther@60321
   290
  | get_potStr (Const ("Transcendental.powr", _) $ Free _ $ t) =
walther@60322
   291
    if TermC.is_num t then TermC.to_string t else "|||"
walther@60321
   292
  | get_potStr (Free _) = "---" (* keine Hochzahl --> kleinst gewichtet *)
wneuper@59523
   293
  | get_potStr _ = "||||||"; (* gross gewichtet; für Brüch ect. *)
neuper@37978
   294
wneuper@59523
   295
(* Umgekehrte string_ord *)
wneuper@59523
   296
val string_ord_rev =  rev_order o string_ord;
wneuper@59523
   297
		
wneuper@59523
   298
 (* Ordnung zum lexikographischen Vergleich zweier Variablen (oder Potenzen) 
wneuper@59523
   299
    innerhalb eines Monomes:
wneuper@59523
   300
    - zuerst lexikographisch nach Variablenname 
wneuper@59523
   301
    - wenn gleich: nach steigender Potenz *)
walther@60321
   302
fun var_ord (a, b) = 
walther@60321
   303
(@{print} {a = "var_ord ", a_b = "(" ^ UnparseC.term a ^ ", " ^ UnparseC.term b ^ ")",
walther@60321
   304
   sort_args = "(" ^ get_basStr a ^ ", " ^ get_potStr a ^ "), (" ^ get_basStr b ^ ", " ^ get_potStr b ^ ")"};
walther@60321
   305
  prod_ord string_ord string_ord 
walther@60321
   306
  ((get_basStr a, get_potStr a), (get_basStr b, get_potStr b))
walther@60321
   307
);
walther@60318
   308
fun var_ord (a,b: term) = 
walther@60318
   309
  prod_ord string_ord string_ord 
wneuper@59523
   310
    ((get_basStr a, get_potStr a), (get_basStr b, get_potStr b));
neuper@37950
   311
wneuper@59523
   312
(* Ordnung zum lexikographischen Vergleich zweier Variablen (oder Potenzen); 
wneuper@59523
   313
   verwendet zum Sortieren von Monomen mittels Gesamtgradordnung:
wneuper@59523
   314
   - zuerst lexikographisch nach Variablenname 
wneuper@59523
   315
   - wenn gleich: nach sinkender Potenz*)
walther@60321
   316
fun var_ord_revPow (a, b: term) = 
walther@60321
   317
(@{print} {a = "var_ord_revPow ", at_bt = "(" ^ UnparseC.term a ^ ", " ^ UnparseC.term b ^ ")",
walther@60321
   318
    sort_args = "(" ^ get_basStr a ^ ", " ^ get_potStr a ^ "), (" ^ get_basStr b ^ ", " ^ get_potStr b ^ ")"};
walther@60321
   319
  prod_ord string_ord string_ord_rev 
walther@60321
   320
    ((get_basStr a, get_potStr a), (get_basStr b, get_potStr b))
walther@60321
   321
);
walther@60318
   322
fun var_ord_revPow (a, b: term) =
walther@60318
   323
  prod_ord string_ord string_ord_rev 
wneuper@59523
   324
    ((get_basStr a, get_potStr a), (get_basStr b, get_potStr b));
neuper@37950
   325
walther@60278
   326
wneuper@59523
   327
(* Ordnet ein Liste von Variablen (und Potenzen) lexikographisch *)
walther@60321
   328
fun sort_varList ts =
walther@60321
   329
(@{print} {a = "sort_varList", args = UnparseC.terms ts};
walther@60321
   330
  sort var_ord ts);
wneuper@59523
   331
val sort_varList = sort var_ord;
wneuper@59523
   332
wneuper@59523
   333
(* Entfernet aeussersten Operator (Wurzel) aus einem Term und schreibt 
wneuper@59523
   334
   Argumente in eine Liste *)
wneuper@59523
   335
fun args u : term list =
walther@60318
   336
  let
walther@60318
   337
    fun stripc (f $ t, ts) = stripc (f, t::ts)
walther@60318
   338
  	  | stripc (t as Free _, ts) = (t::ts)
walther@60318
   339
  	  | stripc (_, ts) = ts
walther@60318
   340
  in stripc (u, []) end;
wneuper@59523
   341
                                    
wneuper@59523
   342
(* liefert True, falls der Term (Liste von Termen) nur Zahlen 
wneuper@59523
   343
   (keine Variablen) enthaelt *)
walther@60317
   344
fun filter_num ts = fold (curry and_) (map TermC.is_num ts) true
wneuper@59523
   345
wneuper@59523
   346
(* liefert True, falls der Term nur Zahlen (keine Variablen) enthaelt 
wneuper@59523
   347
   dh. er ist ein numerischer Wert und entspricht einem Koeffizienten *)
wneuper@59523
   348
fun is_nums t = filter_num [t];
wneuper@59523
   349
wneuper@59523
   350
(* Berechnet den Gesamtgrad eines Monoms *)
walther@60318
   351
(**)local(**)
walther@60317
   352
  fun counter (n, []) = n
walther@60317
   353
    | counter (n, x :: xs) = 
walther@60317
   354
	    if (is_nums x) then counter (n, xs)
walther@60317
   355
	    else 
walther@60317
   356
	      (case x of 
walther@60318
   357
		      (Const ("Transcendental.powr", _) $ Free _ $ t) =>
walther@60318
   358
            if TermC.is_num t
walther@60318
   359
            then counter (t |> HOLogic.dest_number |> snd |> curry op + n, xs)
walther@60318
   360
            else counter (n + 1000, xs) (*FIXME.MG?!*)
walther@60318
   361
	      | (Const ("Num.numeral_class.numeral", _) $ num) =>
walther@60318
   362
            counter (n + 1 + HOLogic.dest_numeral num, xs)
walther@60318
   363
	      | _ => counter (n + 1, xs)) (*FIXME.MG?! ... Brüche ect.*)
walther@60318
   364
(**)in(**)
walther@60317
   365
  fun monom_degree l = counter (0, l) 
walther@60318
   366
(**)end;(*local*)
wneuper@59523
   367
wneuper@59523
   368
(* wie Ordnung dict_ord (lexicographische Ordnung zweier Listen, mit Vergleich 
wneuper@59523
   369
   der Listen-Elemente mit elem_ord) - Elemente die Bedingung cond erfuellen, 
wneuper@59523
   370
   werden jedoch dabei ignoriert (uebersprungen)  *)
walther@60321
   371
fun dict_cond_ord _ _ ([], [])     = (@{print} {a = "dict_cond_ord ([], [])"}; EQUAL)
walther@60321
   372
  | dict_cond_ord _ _ ([], _ :: _) = (@{print} {a = "dict_cond_ord ([], _ :: _)"}; LESS)
walther@60321
   373
  | dict_cond_ord _ _ (_ :: _, []) = (@{print} {a = "dict_cond_ord (_ :: _, [])"}; GREATER)
walther@60321
   374
  | dict_cond_ord elem_ord cond (x :: xs, y :: ys) =
walther@60321
   375
    (@{print} {a = "dict_cond_ord", args = "(" ^ UnparseC.terms (x :: xs) ^ ", " ^ UnparseC.terms (y :: ys) ^ ")", 
walther@60321
   376
      is_nums = "(" ^ LibraryC.bool2str (cond x) ^ ", " ^ LibraryC.bool2str (cond y) ^ ")"};
walther@60321
   377
     case (cond x, cond y) of 
walther@60321
   378
	    (false, false) =>
walther@60321
   379
        (case elem_ord (x, y) of 
walther@60321
   380
				  EQUAL => dict_cond_ord elem_ord cond (xs, ys) 
walther@60321
   381
			  | ord => ord)
walther@60321
   382
    | (false, true)  => dict_cond_ord elem_ord cond (x :: xs, ys)
walther@60321
   383
    | (true, false)  => dict_cond_ord elem_ord cond (xs, y :: ys)
walther@60321
   384
    | (true, true)  =>  dict_cond_ord elem_ord cond (xs, ys) );
wneuper@59523
   385
fun dict_cond_ord _ _ ([], []) = EQUAL
wneuper@59523
   386
  | dict_cond_ord _ _ ([], _ :: _) = LESS
wneuper@59523
   387
  | dict_cond_ord _ _ (_ :: _, []) = GREATER
wneuper@59523
   388
  | dict_cond_ord elem_ord cond (x :: xs, y :: ys) =
wneuper@59523
   389
    (case (cond x, cond y) of 
walther@60318
   390
	    (false, false) =>
walther@60318
   391
        (case elem_ord (x, y) of 
walther@60318
   392
				  EQUAL => dict_cond_ord elem_ord cond (xs, ys) 
walther@60318
   393
			  | ord => ord)
walther@60318
   394
    | (false, true)  => dict_cond_ord elem_ord cond (x :: xs, ys)
walther@60318
   395
    | (true, false)  => dict_cond_ord elem_ord cond (xs, y :: ys)
walther@60318
   396
    | (true, true)  =>  dict_cond_ord elem_ord cond (xs, ys) );
wneuper@59523
   397
wneuper@59523
   398
(* Gesamtgradordnung zum Vergleich von Monomen (Liste von Variablen/Potenzen):
wneuper@59523
   399
   zuerst nach Gesamtgrad, bei gleichem Gesamtgrad lexikographisch ordnen - 
walther@60260
   400
   dabei werden Koeffizienten ignoriert (2*3*a \<up> 2*4*b gilt wie a \<up> 2*b) *)
wneuper@59523
   401
fun degree_ord (xs, ys) =
walther@60318
   402
	prod_ord int_ord (dict_cond_ord var_ord_revPow is_nums)
walther@60318
   403
	  ((monom_degree xs, xs), (monom_degree ys, ys));
wneuper@59523
   404
wneuper@59523
   405
fun hd_str str = substring (str, 0, 1);
wneuper@59523
   406
fun tl_str str = substring (str, 1, (size str) - 1);
wneuper@59523
   407
wneuper@59523
   408
(* liefert nummerischen Koeffizienten eines Monoms oder NONE *)
walther@60318
   409
fun get_koeff_of_mon [] = raise ERROR "get_koeff_of_mon: called with l = []"
walther@60318
   410
  | get_koeff_of_mon (x :: _) = if is_nums x then SOME x else NONE;
wneuper@59523
   411
wneuper@59523
   412
(* wandelt Koeffizient in (zum sortieren geeigneten) String um *)
walther@60318
   413
fun koeff2ordStr (SOME t) =
walther@60318
   414
    if TermC.is_num t
walther@60318
   415
    then 
walther@60318
   416
      if (t |> HOLogic.dest_number |> snd) < 0
walther@60318
   417
      then (t |> HOLogic.dest_number |> snd |> curry op * ~1 |> string_of_int) ^ "0"  (* 3 < -3 *)
walther@60318
   418
      else (t |> HOLogic.dest_number |> snd |> string_of_int)
walther@60318
   419
    else "aaa"                                                      (* "num.Ausdruck" --> gross *)
walther@60318
   420
  | koeff2ordStr NONE = "---";                                     (* "kein Koeff" --> kleinste *)
wneuper@59523
   421
wneuper@59523
   422
(* Order zum Vergleich von Koeffizienten (strings): 
wneuper@59523
   423
   "kein Koeff" < "0" < "1" < "-1" < "2" < "-2" < ... < "num.Ausdruck" *)
walther@60318
   424
fun compare_koeff_ord (xs, ys) = string_ord
walther@60318
   425
  ((koeff2ordStr o get_koeff_of_mon) xs,
walther@60318
   426
   (koeff2ordStr o get_koeff_of_mon) ys);
wneuper@59523
   427
wneuper@59523
   428
(* Gesamtgradordnung degree_ord + Ordnen nach Koeffizienten falls EQUAL *)
wneuper@59523
   429
fun koeff_degree_ord (xs, ys) =
wneuper@59523
   430
	    prod_ord degree_ord compare_koeff_ord ((xs, xs), (ys, ys));
wneuper@59523
   431
wneuper@59523
   432
(* Ordnet ein Liste von Monomen (Monom = Liste von Variablen) mittels 
wneuper@59523
   433
   Gesamtgradordnung *)
wneuper@59523
   434
val sort_monList = sort koeff_degree_ord;
wneuper@59523
   435
wneuper@59523
   436
(* Alternativ zu degree_ord koennte auch die viel einfachere und 
wneuper@59523
   437
   kuerzere Ordnung simple_ord verwendet werden - ist aber nicht 
wneuper@59523
   438
   fuer unsere Zwecke geeignet!
wneuper@59523
   439
wneuper@59523
   440
fun simple_ord (al,bl: term list) = dict_ord string_ord 
wneuper@59523
   441
	 (map get_basStr al, map get_basStr bl); 
wneuper@59523
   442
wneuper@59523
   443
val sort_monList = sort simple_ord; *)
wneuper@59523
   444
wneuper@59523
   445
(* aus 2 Variablen wird eine Summe bzw ein Produkt erzeugt 
wneuper@59523
   446
   (mit gewuenschtem Typen T) *)
wenzelm@60309
   447
fun plus T = Const (\<^const_name>\<open>plus\<close>, [T,T] ---> T);
wenzelm@60309
   448
fun mult T = Const (\<^const_name>\<open>times\<close>, [T,T] ---> T);
wneuper@59523
   449
fun binop op_ t1 t2 = op_ $ t1 $ t2;
wneuper@59523
   450
fun create_prod T (a,b) = binop (mult T) a b;
wneuper@59523
   451
fun create_sum T (a,b) = binop (plus T) a b;
wneuper@59523
   452
wneuper@59523
   453
(* löscht letztes Element einer Liste *)
wneuper@59523
   454
fun drop_last l = take ((length l)-1,l);
wneuper@59523
   455
wneuper@59523
   456
(* Liste von Variablen --> Monom *)
wneuper@59523
   457
fun create_monom T vl = foldr (create_prod T) (drop_last vl, last_elem vl);
wneuper@59523
   458
(* Bemerkung: 
wneuper@59523
   459
   foldr bewirkt rechtslastige Klammerung des Monoms - ist notwendig, damit zwei 
wneuper@59523
   460
   gleiche Monome zusammengefasst werden können (collect_numerals)! 
wneuper@59523
   461
   zB: 2*(x*(y*z)) + 3*(x*(y*z)) --> (2+3)*(x*(y*z))*)
wneuper@59523
   462
wneuper@59523
   463
(* Liste von Monomen --> Polynom *)	
wneuper@59523
   464
fun create_polynom T ml = foldl (create_sum T) (hd ml, tl ml);
wneuper@59523
   465
(* Bemerkung: 
wneuper@59523
   466
   foldl bewirkt linkslastige Klammerung des Polynoms (der Summanten) - 
wneuper@59523
   467
   bessere Darstellung, da keine Klammern sichtbar! 
wneuper@59523
   468
   (und discard_parentheses in make_polynomial hat weniger zu tun) *)
wneuper@59523
   469
wneuper@59523
   470
(* sorts the variables (faktors) of an expanded polynomial lexicographical *)
wneuper@59523
   471
fun sort_variables t = 
walther@60317
   472
  let
walther@60317
   473
  	val ll = map monom2list (poly2list t);
walther@60317
   474
  	val lls = map sort_varList ll; 
walther@60317
   475
  	val T = type_of t;
walther@60317
   476
  	val ls = map (create_monom T) lls;
walther@60317
   477
  in create_polynom T ls end;
wneuper@59523
   478
wneuper@59523
   479
(* sorts the monoms of an expanded and variable-sorted polynomial 
wneuper@59523
   480
   by total_degree *)
wneuper@59523
   481
fun sort_monoms t = 
walther@60318
   482
  let
walther@60318
   483
  	val ll =  map monom2list (poly2list t);
walther@60318
   484
  	val lls = sort_monList ll;
walther@60318
   485
  	val T = Term.type_of t;
walther@60318
   486
  	val ls = map (create_monom T) lls;
walther@60318
   487
  in create_polynom T ls end;
wneuper@59523
   488
\<close>
wneuper@59523
   489
wneuper@59523
   490
subsubsection \<open>rewrite order for hard-coded AC rewriting\<close>
wneuper@59523
   491
ML \<open>
neuper@37950
   492
local (*. for make_polynomial .*)
neuper@37950
   493
neuper@37950
   494
open Term;  (* for type order = EQUAL | LESS | GREATER *)
neuper@37950
   495
neuper@37950
   496
fun pr_ord EQUAL = "EQUAL"
neuper@37950
   497
  | pr_ord LESS  = "LESS"
neuper@37950
   498
  | pr_ord GREATER = "GREATER";
neuper@37950
   499
neuper@37950
   500
fun dest_hd' (Const (a, T)) =                          (* ~ term.ML *)
neuper@37950
   501
  (case a of
wenzelm@60309
   502
     \<^const_name>\<open>powr\<close> => ((("|||||||||||||", 0), T), 0)    (*WN greatest string*)
neuper@37950
   503
   | _ => (((a, 0), T), 0))
walther@60317
   504
  | dest_hd' (Free (a, T)) = (((a, 0), T), 1)(*TODOO handle this as numeral, too? see EqSystem.thy*)
neuper@37950
   505
  | dest_hd' (Var v) = (v, 2)
neuper@37950
   506
  | dest_hd' (Bound i) = ((("", i), dummyT), 3)
wneuper@59523
   507
  | dest_hd' (Abs (_, T, _)) = ((("", 0), T), 4)
wneuper@59523
   508
  | dest_hd' t = raise TERM ("dest_hd'", [t]);
neuper@37950
   509
neuper@37950
   510
fun size_of_term' (Const(str,_) $ t) =
wenzelm@60309
   511
  if \<^const_name>\<open>powr\<close>= str then 1000 + size_of_term' t else 1+size_of_term' t(*WN*)
neuper@37950
   512
  | size_of_term' (Abs (_,_,body)) = 1 + size_of_term' body
neuper@37950
   513
  | size_of_term' (f$t) = size_of_term' f  +  size_of_term' t
neuper@37950
   514
  | size_of_term' _ = 1;
neuper@37950
   515
neuper@37950
   516
fun term_ord' pr thy (Abs (_, T, t), Abs(_, U, u)) =       (* ~ term.ML *)
neuper@52070
   517
    (case term_ord' pr thy (t, u) of EQUAL => Term_Ord.typ_ord (T, U) | ord => ord)
neuper@37950
   518
  | term_ord' pr thy (t, u) =
neuper@52070
   519
    (if pr then 
neuper@52070
   520
	   let
neuper@52070
   521
       val (f, ts) = strip_comb t and (g, us) = strip_comb u;
walther@59870
   522
       val _ = tracing ("t= f@ts= \"" ^ UnparseC.term_in_thy thy f ^ "\" @ \"[" ^
walther@59870
   523
         commas (map (UnparseC.term_in_thy thy) ts) ^ "]\"");
walther@59870
   524
       val _ = tracing("u= g@us= \"" ^ UnparseC.term_in_thy thy g ^ "\" @ \"[" ^
walther@59870
   525
         commas (map (UnparseC.term_in_thy thy) us) ^ "]\"");
neuper@52070
   526
       val _ = tracing ("size_of_term(t,u)= (" ^ string_of_int (size_of_term' t) ^ ", " ^
neuper@52070
   527
         string_of_int (size_of_term' u) ^ ")");
neuper@52070
   528
       val _ = tracing ("hd_ord(f,g)      = " ^ (pr_ord o hd_ord) (f,g));
neuper@52070
   529
       val _ = tracing ("terms_ord(ts,us) = " ^ (pr_ord o terms_ord str false) (ts, us));
neuper@52070
   530
       val _ = tracing ("-------");
neuper@52070
   531
     in () end
neuper@37950
   532
       else ();
neuper@37950
   533
	 case int_ord (size_of_term' t, size_of_term' u) of
neuper@37950
   534
	   EQUAL =>
neuper@37950
   535
	     let val (f, ts) = strip_comb t and (g, us) = strip_comb u in
neuper@37950
   536
	       (case hd_ord (f, g) of EQUAL => (terms_ord str pr) (ts, us) 
neuper@37950
   537
	     | ord => ord)
neuper@37950
   538
	     end
neuper@37950
   539
	 | ord => ord)
neuper@37950
   540
and hd_ord (f, g) =                                        (* ~ term.ML *)
neuper@37974
   541
  prod_ord (prod_ord Term_Ord.indexname_ord Term_Ord.typ_ord) int_ord (dest_hd' f, dest_hd' g)
wneuper@59523
   542
and terms_ord _ pr (ts, us) = 
walther@59881
   543
    list_ord (term_ord' pr (ThyC.get_theory "Isac_Knowledge"))(ts, us);
neuper@52070
   544
neuper@37950
   545
in
neuper@37950
   546
walther@60324
   547
fun ord_make_polynomial (pr:bool) thy (_: subst) (ts, us) =
walther@60324
   548
    (term_ord' pr thy(***) (TermC.numerals_to_Free ts, TermC.numerals_to_Free us) = LESS );
neuper@37950
   549
neuper@37950
   550
end;(*local*)
neuper@37950
   551
walther@59857
   552
Rewrite_Ord.rew_ord' := overwritel (! Rewrite_Ord.rew_ord', (* TODO: make analogous to KEStore_Elems.add_mets *)
wenzelm@60291
   553
[("termlessI", termlessI), ("ord_make_polynomial", ord_make_polynomial false \<^theory>)]);
wneuper@59523
   554
\<close>
neuper@37950
   555
wneuper@59523
   556
subsection \<open>predicates\<close>
wneuper@59523
   557
subsubsection \<open>in specifications\<close>
wneuper@59523
   558
ML \<open>
wneuper@59523
   559
(* is_polyrat_in becomes true, if no bdv is in the denominator of a fraction*)
wneuper@59523
   560
fun is_polyrat_in t v = 
wneuper@59524
   561
  let
walther@59962
   562
   	fun finddivide (_ $ _ $ _ $ _) _ = raise ERROR("is_polyrat_in:")
wneuper@59523
   563
	    (* at the moment there is no term like this, but ....*)
wenzelm@60309
   564
	  | finddivide (Const (\<^const_name>\<open>divide\<close>,_) $ _ $ b) v = not (Prog_Expr.occurs_in v b)
wneuper@59524
   565
	  | finddivide (_ $ t1 $ t2) v = finddivide t1 v orelse finddivide t2 v
wneuper@59524
   566
	  | finddivide (_ $ t1) v = finddivide t1 v
wneuper@59523
   567
	  | finddivide _ _ = false;
wneuper@59524
   568
  in finddivide t v end;
wneuper@59523
   569
    
wneuper@59524
   570
fun is_expanded_in t v = case expand_deg_in t v of SOME _ => true | NONE => false;
wneuper@59524
   571
fun is_poly_in t v =     case poly_deg_in t v of SOME _ => true | NONE => false;
wneuper@59524
   572
fun has_degree_in t v =  case expand_deg_in t v of SOME d => d | NONE => ~1;
neuper@37950
   573
wneuper@59523
   574
(*.the expression contains + - * ^ only ?
wneuper@59523
   575
   this is weaker than 'is_polynomial' !.*)
wneuper@59523
   576
fun is_polyexp (Free _) = true
wneuper@59529
   577
  | is_polyexp (Const _) = true (* potential danger: bdv is not considered *)
walther@60318
   578
  | is_polyexp (Const ("Groups.plus_class.plus",_) $ Free _ $ num) =
walther@60318
   579
    if TermC.is_num num then true
walther@60318
   580
    else if TermC.is_variable num then true
walther@60318
   581
    else is_polyexp num
walther@60318
   582
  | is_polyexp (Const ("Groups.plus_class.plus",_) $ num $ Free _) =
walther@60318
   583
    if TermC.is_num num then true
walther@60318
   584
    else if TermC.is_variable num then true
walther@60318
   585
    else is_polyexp num
walther@60318
   586
  | is_polyexp (Const ("Groups.minus_class.minus",_) $ Free _ $ num) =
walther@60318
   587
    if TermC.is_num num then true
walther@60318
   588
    else if TermC.is_variable num then true
walther@60318
   589
    else is_polyexp num
walther@60318
   590
  | is_polyexp (Const ("Groups.times_class.times",_) $ num $ Free _) =
walther@60318
   591
    if TermC.is_num num then true
walther@60318
   592
    else if TermC.is_variable num then true
walther@60318
   593
    else is_polyexp num
walther@60318
   594
  | is_polyexp (Const ("Transcendental.powr",_) $ Free _ $ num) =
walther@60318
   595
    if TermC.is_num num then true
walther@60318
   596
    else if TermC.is_variable num then true
walther@60318
   597
    else is_polyexp num
wneuper@59523
   598
  | is_polyexp (Const ("Groups.plus_class.plus",_) $ t1 $ t2) = 
walther@60318
   599
    ((is_polyexp t1) andalso (is_polyexp t2))
wneuper@59523
   600
  | is_polyexp (Const ("Groups.minus_class.minus",_) $ t1 $ t2) = 
walther@60318
   601
    ((is_polyexp t1) andalso (is_polyexp t2))
wneuper@59523
   602
  | is_polyexp (Const ("Groups.times_class.times",_) $ t1 $ t2) = 
walther@60318
   603
    ((is_polyexp t1) andalso (is_polyexp t2))
walther@60275
   604
  | is_polyexp (Const ("Transcendental.powr",_) $ t1 $ t2) = 
walther@60318
   605
    ((is_polyexp t1) andalso (is_polyexp t2))
walther@60317
   606
  | is_polyexp num = TermC.is_num num;
wneuper@59523
   607
\<close>
neuper@37950
   608
wneuper@59523
   609
subsubsection \<open>for hard-coded AC rewriting\<close>
wneuper@59523
   610
ML \<open>
wneuper@59523
   611
(* auch Klammerung muss übereinstimmen;
wneuper@59523
   612
   sort_variables klammert Produkte rechtslastig*)
wneuper@59523
   613
fun is_multUnordered t = ((is_polyexp t) andalso not (t = sort_variables t));
wneuper@59523
   614
wneuper@59523
   615
fun is_addUnordered t = ((is_polyexp t) andalso not (t = sort_monoms t));
wneuper@59523
   616
\<close>
wneuper@59523
   617
wneuper@59523
   618
subsection \<open>evaluations functions\<close>
walther@60278
   619
subsubsection \<open>for predicates\<close>
wneuper@59523
   620
ML \<open>
walther@60278
   621
fun eval_is_polyrat_in _ _(p as (Const ("Poly.is_polyrat_in",_) $ t $ v)) _  =
wneuper@59523
   622
    if is_polyrat_in t v 
walther@59868
   623
    then SOME ((UnparseC.term p) ^ " = True",
wneuper@59523
   624
	        HOLogic.Trueprop $ (TermC.mk_equality (p, @{term True})))
walther@59868
   625
    else SOME ((UnparseC.term p) ^ " = True",
wneuper@59523
   626
	        HOLogic.Trueprop $ (TermC.mk_equality (p, @{term False})))
wneuper@59523
   627
  | eval_is_polyrat_in _ _ _ _ = ((*tracing"### no matches";*) NONE);
wneuper@59523
   628
walther@60278
   629
(*("is_expanded_in", ("Poly.is_expanded_in", eval_is_expanded_in ""))*)
wneuper@59523
   630
fun eval_is_expanded_in _ _ 
walther@60278
   631
       (p as (Const ("Poly.is_expanded_in",_) $ t $ v)) _ =
wneuper@59523
   632
    if is_expanded_in t v
walther@59868
   633
    then SOME ((UnparseC.term p) ^ " = True",
wneuper@59523
   634
	        HOLogic.Trueprop $ (TermC.mk_equality (p, @{term True})))
walther@59868
   635
    else SOME ((UnparseC.term p) ^ " = True",
wneuper@59523
   636
	        HOLogic.Trueprop $ (TermC.mk_equality (p, @{term False})))
wneuper@59523
   637
  | eval_is_expanded_in _ _ _ _ = NONE;
wneuper@59523
   638
walther@60278
   639
(*("is_poly_in", ("Poly.is_poly_in", eval_is_poly_in ""))*)
wneuper@59523
   640
fun eval_is_poly_in _ _ 
walther@60278
   641
       (p as (Const ("Poly.is_poly_in",_) $ t $ v)) _ =
wneuper@59523
   642
    if is_poly_in t v
walther@59868
   643
    then SOME ((UnparseC.term p) ^ " = True",
wneuper@59523
   644
	        HOLogic.Trueprop $ (TermC.mk_equality (p, @{term True})))
walther@59868
   645
    else SOME ((UnparseC.term p) ^ " = True",
wneuper@59523
   646
	        HOLogic.Trueprop $ (TermC.mk_equality (p, @{term False})))
wneuper@59523
   647
  | eval_is_poly_in _ _ _ _ = NONE;
wneuper@59523
   648
walther@60278
   649
(*("has_degree_in", ("Poly.has_degree_in", eval_has_degree_in ""))*)
wneuper@59523
   650
fun eval_has_degree_in _ _ 
walther@60278
   651
	     (p as (Const ("Poly.has_degree_in",_) $ t $ v)) _ =
wneuper@59523
   652
    let val d = has_degree_in t v
wneuper@59523
   653
	val d' = TermC.term_of_num HOLogic.realT d
walther@59868
   654
    in SOME ((UnparseC.term p) ^ " = " ^ (string_of_int d),
wneuper@59523
   655
	      HOLogic.Trueprop $ (TermC.mk_equality (p, d')))
wneuper@59523
   656
    end
wneuper@59523
   657
  | eval_has_degree_in _ _ _ _ = NONE;
wneuper@59523
   658
walther@60278
   659
(*("is_polyexp", ("Poly.is_polyexp", eval_is_polyexp ""))*)
wneuper@59523
   660
fun eval_is_polyexp (thmid:string) _ 
walther@60278
   661
		       (t as (Const("Poly.is_polyexp", _) $ arg)) thy = 
wneuper@59523
   662
    if is_polyexp arg
walther@59870
   663
    then SOME (TermC.mk_thmid thmid (UnparseC.term_in_thy thy arg) "", 
wneuper@59523
   664
	         HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True})))
walther@59870
   665
    else SOME (TermC.mk_thmid thmid (UnparseC.term_in_thy thy arg) "", 
wneuper@59523
   666
	         HOLogic.Trueprop $ (TermC.mk_equality (t, @{term False})))
wneuper@59523
   667
  | eval_is_polyexp _ _ _ _ = NONE; 
wneuper@59523
   668
\<close>
wneuper@59523
   669
wneuper@59523
   670
subsubsection \<open>for hard-coded AC rewriting\<close>
wneuper@59523
   671
ML \<open>
wneuper@59523
   672
(*WN.18.6.03 *)
walther@60278
   673
(*("is_addUnordered", ("Poly.is_addUnordered", eval_is_addUnordered ""))*)
wneuper@59523
   674
fun eval_is_addUnordered (thmid:string) _ 
walther@60278
   675
		       (t as (Const("Poly.is_addUnordered", _) $ arg)) thy = 
wneuper@59523
   676
    if is_addUnordered arg
walther@59870
   677
    then SOME (TermC.mk_thmid thmid (UnparseC.term_in_thy thy arg) "", 
wneuper@59523
   678
	         HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True})))
walther@59870
   679
    else SOME (TermC.mk_thmid thmid (UnparseC.term_in_thy thy arg) "", 
wneuper@59523
   680
	         HOLogic.Trueprop $ (TermC.mk_equality (t, @{term False})))
wneuper@59523
   681
  | eval_is_addUnordered _ _ _ _ = NONE; 
wneuper@59523
   682
wneuper@59523
   683
fun eval_is_multUnordered (thmid:string) _ 
walther@60278
   684
		       (t as (Const("Poly.is_multUnordered", _) $ arg)) thy = 
wneuper@59523
   685
    if is_multUnordered arg
walther@59870
   686
    then SOME (TermC.mk_thmid thmid (UnparseC.term_in_thy thy arg) "", 
wneuper@59523
   687
	         HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True})))
walther@59870
   688
    else SOME (TermC.mk_thmid thmid (UnparseC.term_in_thy thy arg) "", 
wneuper@59523
   689
	         HOLogic.Trueprop $ (TermC.mk_equality (t, @{term False})))
wneuper@59523
   690
  | eval_is_multUnordered _ _ _ _ = NONE; 
wneuper@59523
   691
\<close>
wenzelm@60313
   692
calculation is_polyrat_in = \<open>eval_is_polyrat_in "#eval_is_polyrat_in"\<close>
wenzelm@60313
   693
calculation is_expanded_in = \<open>eval_is_expanded_in ""\<close>
wenzelm@60313
   694
calculation is_poly_in = \<open>eval_is_poly_in ""\<close>
wenzelm@60313
   695
calculation has_degree_in = \<open>eval_has_degree_in ""\<close>
wenzelm@60313
   696
calculation is_polyexp = \<open>eval_is_polyexp ""\<close>
wenzelm@60313
   697
calculation is_multUnordered = \<open>eval_is_multUnordered ""\<close>
wenzelm@60313
   698
calculation is_addUnordered = \<open>eval_is_addUnordered ""\<close>
wneuper@59523
   699
wneuper@59523
   700
subsection \<open>rule-sets\<close>
wneuper@59523
   701
subsubsection \<open>without specific order\<close>
wneuper@59523
   702
ML \<open>
wneuper@59523
   703
(* used only for merge *)
walther@59852
   704
val calculate_Poly = Rule_Set.append_rules "calculate_PolyFIXXXME.not.impl." Rule_Set.empty [];
wneuper@59523
   705
wneuper@59523
   706
(*.for evaluation of conditions in rewrite rules.*)
walther@59852
   707
val Poly_erls = Rule_Set.append_rules "Poly_erls" Atools_erls
wenzelm@60294
   708
  [\<^rule_eval>\<open>HOL.eq\<close> (Prog_Expr.eval_equal "#equal_"),
wenzelm@60297
   709
  \<^rule_thm>\<open>real_unari_minus\<close>,
wenzelm@60294
   710
  \<^rule_eval>\<open>plus\<close> (eval_binop "#add_"),
wenzelm@60294
   711
  \<^rule_eval>\<open>minus\<close> (eval_binop "#sub_"),
wenzelm@60294
   712
  \<^rule_eval>\<open>times\<close> (eval_binop "#mult_"),
wenzelm@60294
   713
  \<^rule_eval>\<open>powr\<close> (eval_binop "#power_")];
wneuper@59523
   714
walther@59852
   715
val poly_crls = Rule_Set.append_rules "poly_crls" Atools_crls
wenzelm@60294
   716
  [\<^rule_eval>\<open>HOL.eq\<close> (Prog_Expr.eval_equal "#equal_"),
wenzelm@60297
   717
  \<^rule_thm>\<open>real_unari_minus\<close>,
wenzelm@60294
   718
  \<^rule_eval>\<open>plus\<close> (eval_binop "#add_"),
wenzelm@60294
   719
  \<^rule_eval>\<open>minus\<close> (eval_binop "#sub_"),
wenzelm@60294
   720
  \<^rule_eval>\<open>times\<close> (eval_binop "#mult_"),
wenzelm@60294
   721
  \<^rule_eval>\<open>powr\<close> (eval_binop "#power_")];
wneuper@59523
   722
\<close>
wneuper@59523
   723
ML \<open>
neuper@37950
   724
val expand =
walther@59857
   725
  Rule_Def.Repeat {id = "expand", preconds = [], rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59852
   726
      erls = Rule_Set.empty,srls = Rule_Set.Empty, calc = [], errpatts = [],
wenzelm@60297
   727
      rules = [\<^rule_thm>\<open>distrib_right\<close>,
neuper@37950
   728
	       (*"(z1.0 + z2.0) * w = z1.0 * w + z2.0 * w"*)
wenzelm@60297
   729
	       \<^rule_thm>\<open>distrib_left\<close>
neuper@37950
   730
	       (*"w * (z1.0 + z2.0) = w * z1.0 + w * z2.0"*)
walther@59878
   731
	       ], scr = Rule.Empty_Prog};
neuper@37950
   732
walther@60320
   733
(* erls for calculate_Rational + etc *)
walther@60318
   734
val powers_erls =
walther@60318
   735
  Rule_Def.Repeat {id = "powers_erls", preconds = [], rew_ord = ("dummy_ord",Rewrite_Ord.dummy_ord), 
walther@60318
   736
      erls = Rule_Set.empty, srls = Rule_Set.Empty, calc = [], errpatts = [],
walther@60320
   737
      rules = 
walther@60320
   738
        [Rule.Eval ("Prog_Expr.matches", Prog_Expr.eval_matches "#matches_"),
walther@60320
   739
	       Rule.Eval ("Prog_Expr.is_atom", Prog_Expr.eval_is_atom "#is_atom_"),
walther@60318
   740
	       Rule.Eval ("Prog_Expr.is_even", Prog_Expr.eval_is_even "#is_even_"),
walther@60318
   741
	       Rule.Eval ("Orderings.ord_class.less", Prog_Expr.eval_equ "#less_"),
walther@60318
   742
	       Rule.Thm ("not_false", ThmC.numerals_to_Free @{thm not_false}),
walther@60318
   743
	       Rule.Thm ("not_true", ThmC.numerals_to_Free @{thm not_true}),
walther@60318
   744
	       Rule.Eval ("Groups.plus_class.plus", (**)eval_binop "#add_")
walther@60318
   745
	       ],
walther@60318
   746
      scr = Rule.Empty_Prog
walther@60318
   747
      };
walther@60320
   748
walther@60333
   749
\<close> ML \<open>
walther@60320
   750
val discard_minus =
walther@60320
   751
  Rule_Def.Repeat {id = "discard_minus", preconds = [], rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@60320
   752
      erls = powers_erls, srls = Rule_Set.Empty, calc = [], errpatts = [],
walther@60320
   753
      rules =
wenzelm@60297
   754
       [\<^rule_thm>\<open>real_diff_minus\<close>,
walther@60320
   755
          (*"a - b = a + -1 * b"*)
walther@60320
   756
        Rule.Thm ("real_mult_minus1_sym", ThmC.numerals_to_Free (@{thm real_mult_minus1_sym}))
walther@60320
   757
	        (*"\<not>(z is_const) ==> - (z::real) = -1 * z"*)],
walther@60320
   758
	      scr = Rule.Empty_Prog};
walther@60320
   759
neuper@37950
   760
val expand_poly_ = 
walther@59851
   761
  Rule_Def.Repeat{id = "expand_poly_", preconds = [], 
walther@59857
   762
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@60318
   763
      erls = powers_erls, srls = Rule_Set.Empty,
neuper@42451
   764
      calc = [], errpatts = [],
neuper@42407
   765
      rules =
wenzelm@60297
   766
        [\<^rule_thm>\<open>real_plus_binom_pow4\<close>,
walther@60260
   767
	           (*"(a + b) \<up> 4 = ... "*)
wenzelm@60297
   768
	         \<^rule_thm>\<open>real_plus_binom_pow5\<close>,
walther@60260
   769
	           (*"(a + b) \<up> 5 = ... "*)
wenzelm@60297
   770
	         \<^rule_thm>\<open>real_plus_binom_pow3\<close>,
walther@60260
   771
	           (*"(a + b) \<up> 3 = a \<up> 3 + 3*a \<up> 2*b + 3*a*b \<up> 2 + b \<up> 3" *)
neuper@42407
   772
	         (*WN071229 changed/removed for Schaerding -----vvv*)
wenzelm@60297
   773
	         (*\<^rule_thm>\<open>real_plus_binom_pow2\<close>,*)
walther@60260
   774
	           (*"(a + b) \<up> 2 = a \<up> 2 + 2*a*b + b \<up> 2"*)
wenzelm@60297
   775
	         \<^rule_thm>\<open>real_plus_binom_pow2\<close>,
walther@60260
   776
	           (*"(a + b) \<up> 2 = (a + b) * (a + b)"*)
wenzelm@60297
   777
	         (*\<^rule_thm>\<open>real_plus_minus_binom1_p_p\<close>,*)
walther@60260
   778
	           (*"(a + b)*(a + -1 * b) = a \<up> 2 + -1*b \<up> 2"*)
wenzelm@60297
   779
	         (*\<^rule_thm>\<open>real_plus_minus_binom2_p_p\<close>,*)
walther@60260
   780
	           (*"(a + -1 * b)*(a + b) = a \<up> 2 + -1*b \<up> 2"*)
walther@60242
   781
	         (*WN071229 changed/removed for Schaerding -----\<up>*)
neuper@37950
   782
	      
wenzelm@60297
   783
	         \<^rule_thm>\<open>distrib_right\<close>,
neuper@42407
   784
	           (*"(z1.0 + z2.0) * w = z1.0 * w + z2.0 * w"*)
wenzelm@60297
   785
	         \<^rule_thm>\<open>distrib_left\<close>,
neuper@42407
   786
	           (*"w * (z1.0 + z2.0) = w * z1.0 + w * z2.0"*)
neuper@37950
   787
	       
wenzelm@60297
   788
	         \<^rule_thm>\<open>realpow_multI\<close>,
walther@60242
   789
	           (*"(r * s) \<up> n = r \<up> n * s \<up> n"*)
walther@60331
   790
	         \<^rule_thm>\<open>realpow_pow\<close>,
walther@60242
   791
	           (*"(a \<up> b) \<up> c = a \<up> (b * c)"*)
walther@60323
   792
(**)
walther@60318
   793
	         Rule.Thm ("realpow_minus_even",ThmC.numerals_to_Free @{thm realpow_minus_even}),
walther@60318
   794
	           (*"n is_even ==> (- r) \<up> n = r \<up> n"*)
walther@60318
   795
	         Rule.Thm ("realpow_minus_odd",ThmC.numerals_to_Free @{thm realpow_minus_odd})
walther@60318
   796
	           (*"Not (n is_even) ==> (- r) \<up> n = -1 * r \<up> n"*)
walther@60323
   797
(**)
walther@59878
   798
	       ], scr = Rule.Empty_Prog};
neuper@37950
   799
neuper@37950
   800
val expand_poly_rat_ = 
walther@59851
   801
  Rule_Def.Repeat{id = "expand_poly_rat_", preconds = [], 
walther@59857
   802
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@60323
   803
      erls =  Rule_Set.append_rules "Rule_Set.empty-expand_poly_rat_" Rule_Set.empty
walther@60323
   804
	        [Rule.Eval ("Poly.is_polyexp", eval_is_polyexp ""),
walther@60323
   805
	         Rule.Eval ("Prog_Expr.is_even", Prog_Expr.eval_is_even "#is_even_"),
walther@60323
   806
	         Rule.Thm ("not_false", ThmC.numerals_to_Free @{thm not_false}),
walther@60323
   807
	         Rule.Thm ("not_true", ThmC.numerals_to_Free @{thm not_true})
walther@60323
   808
		      ],
walther@59851
   809
      srls = Rule_Set.Empty,
neuper@42451
   810
      calc = [], errpatts = [],
neuper@37950
   811
      rules = 
wenzelm@60297
   812
        [\<^rule_thm>\<open>real_plus_binom_pow4_poly\<close>,
walther@60260
   813
	     (*"[| a is_polyexp; b is_polyexp |] ==> (a + b) \<up> 4 = ... "*)
wenzelm@60297
   814
	 \<^rule_thm>\<open>real_plus_binom_pow5_poly\<close>,
walther@60260
   815
	     (*"[| a is_polyexp; b is_polyexp |] ==> (a + b) \<up> 5 = ... "*)
wenzelm@60297
   816
	 \<^rule_thm>\<open>real_plus_binom_pow2_poly\<close>,
neuper@37950
   817
	     (*"[| a is_polyexp; b is_polyexp |] ==>
walther@60260
   818
		            (a + b) \<up> 2 = a \<up> 2 + 2*a*b + b \<up> 2"*)
wenzelm@60297
   819
	 \<^rule_thm>\<open>real_plus_binom_pow3_poly\<close>,
neuper@37950
   820
	     (*"[| a is_polyexp; b is_polyexp |] ==> 
walther@60260
   821
			(a + b) \<up> 3 = a \<up> 3 + 3*a \<up> 2*b + 3*a*b \<up> 2 + b \<up> 3" *)
wenzelm@60297
   822
	 \<^rule_thm>\<open>real_plus_minus_binom1_p_p\<close>,
walther@60260
   823
	     (*"(a + b)*(a + -1 * b) = a \<up> 2 + -1*b \<up> 2"*)
wenzelm@60297
   824
	 \<^rule_thm>\<open>real_plus_minus_binom2_p_p\<close>,
walther@60260
   825
	     (*"(a + -1 * b)*(a + b) = a \<up> 2 + -1*b \<up> 2"*)
neuper@37950
   826
	      
wenzelm@60298
   827
	 \<^rule_thm>\<open>real_add_mult_distrib_poly\<close>,
neuper@37950
   828
	       (*"w is_polyexp ==> (z1.0 + z2.0) * w = z1.0 * w + z2.0 * w"*)
wenzelm@60298
   829
	 \<^rule_thm>\<open>real_add_mult_distrib2_poly\<close>,
neuper@37950
   830
	     (*"w is_polyexp ==> w * (z1.0 + z2.0) = w * z1.0 + w * z2.0"*)
neuper@37950
   831
	       
wenzelm@60297
   832
	 \<^rule_thm>\<open>realpow_multI_poly\<close>,
neuper@37950
   833
	     (*"[| r is_polyexp; s is_polyexp |] ==> 
walther@60242
   834
		            (r * s) \<up> n = r \<up> n * s \<up> n"*)
walther@60318
   835
	 Rule.Thm ("realpow_pow",ThmC.numerals_to_Free @{thm realpow_pow}),
walther@60318
   836
	   (*"(a \<up> b) \<up> c = a \<up> (b * c)"*)
walther@60318
   837
	 Rule.Thm ("realpow_minus_even",ThmC.numerals_to_Free @{thm realpow_minus_even}),
walther@60318
   838
	   (*"n is_even ==> (- r) \<up> n = r \<up> n"*)
walther@60318
   839
	 Rule.Thm ("realpow_minus_odd",ThmC.numerals_to_Free @{thm realpow_minus_odd})
walther@60323
   840
	   (*"\<not> (n is_even) ==> (- r) \<up> n = -1 * r \<up> n"*)
walther@59878
   841
	 ], scr = Rule.Empty_Prog};
neuper@37950
   842
neuper@37950
   843
val simplify_power_ = 
walther@59851
   844
  Rule_Def.Repeat{id = "simplify_power_", preconds = [], 
walther@59857
   845
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59852
   846
      erls = Rule_Set.empty, srls = Rule_Set.Empty,
neuper@42451
   847
      calc = [], errpatts = [],
wneuper@59416
   848
      rules = [(*MG: Reihenfolge der folgenden 2 Rule.Thm muss so bleiben, wegen
walther@60260
   849
		a*(a*a) --> a*a \<up> 2 und nicht a*(a*a) --> a \<up> 2*a *)
wenzelm@60296
   850
	       \<^rule_thm_sym>\<open>realpow_twoI\<close>,	
walther@60242
   851
	       (*"r * r = r \<up> 2"*)
wenzelm@60297
   852
	       \<^rule_thm>\<open>realpow_twoI_assoc_l\<close>,
walther@60242
   853
	       (*"r * (r * s) = r \<up> 2 * s"*)
neuper@37950
   854
wenzelm@60297
   855
	       \<^rule_thm>\<open>realpow_plus_1\<close>,		
walther@60242
   856
	       (*"r * r \<up> n = r \<up> (n + 1)"*)
wenzelm@60298
   857
	       \<^rule_thm>\<open>realpow_plus_1_assoc_l\<close>,
walther@60242
   858
	       (*"r * (r \<up> m * s) = r \<up> (1 + m) * s"*)
walther@60260
   859
	       (*MG 9.7.03: neues Rule.Thm wegen a*(a*(a*b)) --> a \<up> 2*(a*b) *)
wenzelm@60298
   860
	       \<^rule_thm>\<open>realpow_plus_1_assoc_l2\<close>,
walther@60242
   861
	       (*"r \<up> m * (r * s) = r \<up> (1 + m) * s"*)
neuper@37950
   862
wenzelm@60296
   863
	       \<^rule_thm_sym>\<open>realpow_addI\<close>,
walther@60242
   864
	       (*"r \<up> n * r \<up> m = r \<up> (n + m)"*)
wenzelm@60297
   865
	       \<^rule_thm>\<open>realpow_addI_assoc_l\<close>,
walther@60242
   866
	       (*"r \<up> n * (r \<up> m * s) = r \<up> (n + m) * s"*)
neuper@37950
   867
	       
neuper@37950
   868
	       (* ist in expand_poly - wird hier aber auch gebraucht, wegen: 
walther@60260
   869
		  "r * r = r \<up> 2" wenn r=a \<up> b*)
wenzelm@60297
   870
	       \<^rule_thm>\<open>realpow_pow\<close>
walther@60242
   871
	       (*"(a \<up> b) \<up> c = a \<up> (b * c)"*)
walther@59878
   872
	       ], scr = Rule.Empty_Prog};
neuper@37950
   873
neuper@37950
   874
val calc_add_mult_pow_ = 
walther@59851
   875
  Rule_Def.Repeat{id = "calc_add_mult_pow_", preconds = [], 
walther@59857
   876
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59851
   877
      erls = Atools_erls(*erls3.4.03*),srls = Rule_Set.Empty,
wenzelm@60309
   878
      calc = [("PLUS"  , (\<^const_name>\<open>plus\<close>, eval_binop "#add_")), 
wenzelm@60309
   879
	      ("TIMES" , (\<^const_name>\<open>times\<close>, eval_binop "#mult_")),
wenzelm@60309
   880
	      ("POWER", (\<^const_name>\<open>powr\<close>, eval_binop "#power_"))
neuper@37950
   881
	      ],
neuper@42451
   882
      errpatts = [],
wenzelm@60294
   883
      rules = [\<^rule_eval>\<open>plus\<close> (eval_binop "#add_"),
wenzelm@60294
   884
	       \<^rule_eval>\<open>times\<close> (eval_binop "#mult_"),
wenzelm@60294
   885
	       \<^rule_eval>\<open>powr\<close> (eval_binop "#power_")
walther@59878
   886
	       ], scr = Rule.Empty_Prog};
neuper@37950
   887
neuper@37950
   888
val reduce_012_mult_ = 
walther@59851
   889
  Rule_Def.Repeat{id = "reduce_012_mult_", preconds = [], 
walther@59857
   890
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59852
   891
      erls = Rule_Set.empty,srls = Rule_Set.Empty,
neuper@42451
   892
      calc = [], errpatts = [],
wneuper@59416
   893
      rules = [(* MG: folgende Rule.Thm müssen hier stehen bleiben: *)
wenzelm@60297
   894
               \<^rule_thm>\<open>mult_1_right\<close>,
walther@60260
   895
	       (*"z * 1 = z"*) (*wegen "a * b * b \<up> (-1) + a"*) 
wenzelm@60297
   896
	       \<^rule_thm>\<open>realpow_zeroI\<close>,
walther@60260
   897
	       (*"r \<up> 0 = 1"*) (*wegen "a*a \<up> (-1)*c + b + c"*)
wenzelm@60297
   898
	       \<^rule_thm>\<open>realpow_oneI\<close>,
walther@60242
   899
	       (*"r \<up> 1 = r"*)
wenzelm@60297
   900
	       \<^rule_thm>\<open>realpow_eq_oneI\<close>
walther@60242
   901
	       (*"1 \<up> n = 1"*)
walther@59878
   902
	       ], scr = Rule.Empty_Prog};
neuper@37950
   903
neuper@37950
   904
val collect_numerals_ = 
walther@59851
   905
  Rule_Def.Repeat{id = "collect_numerals_", preconds = [], 
walther@59857
   906
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59851
   907
      erls = Atools_erls, srls = Rule_Set.Empty,
wenzelm@60309
   908
      calc = [("PLUS"  , (\<^const_name>\<open>plus\<close>, eval_binop "#add_"))
neuper@42451
   909
	      ], errpatts = [],
neuper@37950
   910
      rules = 
wenzelm@60297
   911
        [\<^rule_thm>\<open>real_num_collect\<close>, 
neuper@37950
   912
	     (*"[| l is_const; m is_const |]==>l * n + m * n = (l + m) * n"*)
wenzelm@60297
   913
	 \<^rule_thm>\<open>real_num_collect_assoc_r\<close>,
neuper@37950
   914
	     (*"[| l is_const; m is_const |] ==>  \
neuper@37950
   915
					\(k + m * n) + l * n = k + (l + m)*n"*)
wenzelm@60297
   916
	 \<^rule_thm>\<open>real_one_collect\<close>,	
neuper@37950
   917
	     (*"m is_const ==> n + m * n = (1 + m) * n"*)
wenzelm@60297
   918
	 \<^rule_thm>\<open>real_one_collect_assoc_r\<close>, 
neuper@37950
   919
	     (*"m is_const ==> (k + n) + m * n = k + (m + 1) * n"*)
neuper@37950
   920
wenzelm@60294
   921
         \<^rule_eval>\<open>plus\<close> (eval_binop "#add_"),
neuper@37950
   922
wneuper@59416
   923
	 (*MG: Reihenfolge der folgenden 2 Rule.Thm muss so bleiben, wegen
neuper@37950
   924
		     (a+a)+a --> a + 2*a --> 3*a and not (a+a)+a --> 2*a + a *)
wenzelm@60297
   925
         \<^rule_thm>\<open>real_mult_2_assoc_r\<close>,
neuper@37950
   926
	     (*"(k + z1) + z1 = k + 2 * z1"*)
wenzelm@60296
   927
	 \<^rule_thm_sym>\<open>real_mult_2\<close>
neuper@37950
   928
	     (*"z1 + z1 = 2 * z1"*)
walther@59878
   929
	], scr = Rule.Empty_Prog};
neuper@37950
   930
neuper@37950
   931
val reduce_012_ = 
walther@59851
   932
  Rule_Def.Repeat{id = "reduce_012_", preconds = [], 
walther@59857
   933
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59852
   934
      erls = Rule_Set.empty,srls = Rule_Set.Empty, calc = [], errpatts = [],
wenzelm@60297
   935
      rules = [\<^rule_thm>\<open>mult_1_left\<close>,                 
neuper@37950
   936
	       (*"1 * z = z"*)
wenzelm@60297
   937
	       \<^rule_thm>\<open>mult_zero_left\<close>,        
neuper@37950
   938
	       (*"0 * z = 0"*)
wenzelm@60297
   939
	       \<^rule_thm>\<open>mult_zero_right\<close>,
neuper@37950
   940
	       (*"z * 0 = 0"*)
wenzelm@60297
   941
	       \<^rule_thm>\<open>add_0_left\<close>,
neuper@37950
   942
	       (*"0 + z = z"*)
wenzelm@60297
   943
	       \<^rule_thm>\<open>add_0_right\<close>,
neuper@37950
   944
	       (*"z + 0 = z"*) (*wegen a+b-b --> a+(1-1)*b --> a+0 --> a*)
neuper@37950
   945
wenzelm@60297
   946
	       (*\<^rule_thm>\<open>realpow_oneI\<close>*)
walther@60242
   947
	       (*"?r \<up> 1 = ?r"*)
wenzelm@60297
   948
	       \<^rule_thm>\<open>division_ring_divide_zero\<close>
neuper@37950
   949
	       (*"0 / ?x = 0"*)
walther@59878
   950
	       ], scr = Rule.Empty_Prog};
neuper@37950
   951
neuper@37979
   952
val discard_parentheses1 = 
walther@59852
   953
    Rule_Set.append_rules "discard_parentheses1" Rule_Set.empty 
wenzelm@60296
   954
	       [\<^rule_thm_sym>\<open>mult.assoc\<close>
neuper@37950
   955
		(*"?z1.1 * (?z2.1 * ?z3.1) = ?z1.1 * ?z2.1 * ?z3.1"*)
wenzelm@60296
   956
		(*\<^rule_thm_sym>\<open>add.assoc\<close>*)
neuper@37950
   957
		(*"?z1.1 + (?z2.1 + ?z3.1) = ?z1.1 + ?z2.1 + ?z3.1"*)
neuper@37950
   958
		 ];
neuper@37950
   959
wneuper@59523
   960
val expand_poly =
walther@59851
   961
  Rule_Def.Repeat{id = "expand_poly", preconds = [], 
walther@59857
   962
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@60320
   963
      erls = powers_erls, srls = Rule_Set.Empty, calc = [], errpatts = [],
walther@60320
   964
      rules = 
walther@60320
   965
        [Rule.Thm ("distrib_right" ,ThmC.numerals_to_Free @{thm distrib_right}),
neuper@37950
   966
	       (*"(z1.0 + z2.0) * w = z1.0 * w + z2.0 * w"*)
wenzelm@60297
   967
	       \<^rule_thm>\<open>distrib_left\<close>,
neuper@37950
   968
	       (*"w * (z1.0 + z2.0) = w * z1.0 + w * z2.0"*)
walther@59871
   969
	       (*Rule.Thm ("distrib_right1",ThmC.numerals_to_Free @{thm distrib_right}1),
neuper@37950
   970
		....... 18.3.03 undefined???*)
neuper@37950
   971
wenzelm@60297
   972
	       \<^rule_thm>\<open>real_plus_binom_pow2\<close>,
walther@60260
   973
	       (*"(a + b) \<up> 2 = a \<up> 2 + 2*a*b + b \<up> 2"*)
wenzelm@60297
   974
	       \<^rule_thm>\<open>real_minus_binom_pow2_p\<close>,
walther@60260
   975
	       (*"(a - b) \<up> 2 = a \<up> 2 + -2*a*b + b \<up> 2"*)
wenzelm@60298
   976
	       \<^rule_thm>\<open>real_plus_minus_binom1_p\<close>,
walther@60260
   977
	       (*"(a + b)*(a - b) = a \<up> 2 + -1*b \<up> 2"*)
wenzelm@60298
   978
	       \<^rule_thm>\<open>real_plus_minus_binom2_p\<close>,
walther@60260
   979
	       (*"(a - b)*(a + b) = a \<up> 2 + -1*b \<up> 2"*)
neuper@37950
   980
wenzelm@60297
   981
	       \<^rule_thm>\<open>minus_minus\<close>,
neuper@37950
   982
	       (*"- (- ?z) = ?z"*)
wenzelm@60297
   983
	       \<^rule_thm>\<open>real_diff_minus\<close>,
neuper@37950
   984
	       (*"a - b = a + -1 * b"*)
walther@60320
   985
	       Rule.Thm ("real_mult_minus1_sym", ThmC.numerals_to_Free (@{thm real_mult_minus1_sym}))
walther@60320
   986
	       (*"\<not>(z is_const) ==> - (z::real) = -1 * z"*)
neuper@37950
   987
wenzelm@60298
   988
	       (*\<^rule_thm>\<open>real_minus_add_distrib\<close>,*)
neuper@37950
   989
	       (*"- (?x + ?y) = - ?x + - ?y"*)
wenzelm@60297
   990
	       (*\<^rule_thm>\<open>real_diff_plus\<close>*)
neuper@37950
   991
	       (*"a - b = a + -b"*)
walther@59878
   992
	       ], scr = Rule.Empty_Prog};
neuper@37950
   993
neuper@37950
   994
val simplify_power = 
walther@59851
   995
  Rule_Def.Repeat{id = "simplify_power", preconds = [], 
walther@59857
   996
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59852
   997
      erls = Rule_Set.empty, srls = Rule_Set.Empty,
neuper@42451
   998
      calc = [], errpatts = [],
wenzelm@60297
   999
      rules = [\<^rule_thm>\<open>realpow_multI\<close>,
walther@60242
  1000
	       (*"(r * s) \<up> n = r \<up> n * s \<up> n"*)
neuper@37950
  1001
	       
wenzelm@60296
  1002
	       \<^rule_thm_sym>\<open>realpow_twoI\<close>,	
walther@60242
  1003
	       (*"r1 * r1 = r1 \<up> 2"*)
wenzelm@60297
  1004
	       \<^rule_thm>\<open>realpow_plus_1\<close>,		
walther@60242
  1005
	       (*"r * r \<up> n = r \<up> (n + 1)"*)
wenzelm@60297
  1006
	       \<^rule_thm>\<open>realpow_pow\<close>,
walther@60242
  1007
	       (*"(a \<up> b) \<up> c = a \<up> (b * c)"*)
wenzelm@60296
  1008
	       \<^rule_thm_sym>\<open>realpow_addI\<close>,
walther@60242
  1009
	       (*"r \<up> n * r \<up> m = r \<up> (n + m)"*)
wenzelm@60297
  1010
	       \<^rule_thm>\<open>realpow_oneI\<close>,
walther@60242
  1011
	       (*"r \<up> 1 = r"*)
wenzelm@60297
  1012
	       \<^rule_thm>\<open>realpow_eq_oneI\<close>
walther@60242
  1013
	       (*"1 \<up> n = 1"*)
walther@59878
  1014
	       ], scr = Rule.Empty_Prog};
neuper@42451
  1015
neuper@37950
  1016
val collect_numerals = 
walther@59851
  1017
  Rule_Def.Repeat{id = "collect_numerals", preconds = [], 
walther@59857
  1018
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59851
  1019
      erls = Atools_erls(*erls3.4.03*),srls = Rule_Set.Empty,
wenzelm@60309
  1020
      calc = [("PLUS"  , (\<^const_name>\<open>plus\<close>, eval_binop "#add_")), 
wenzelm@60309
  1021
	      ("TIMES" , (\<^const_name>\<open>times\<close>, eval_binop "#mult_")),
wenzelm@60309
  1022
	      ("POWER", (\<^const_name>\<open>powr\<close>, eval_binop "#power_"))
neuper@42451
  1023
	      ], errpatts = [],
wenzelm@60297
  1024
      rules = [\<^rule_thm>\<open>real_num_collect\<close>, 
neuper@37950
  1025
	       (*"[| l is_const; m is_const |]==>l * n + m * n = (l + m) * n"*)
wenzelm@60297
  1026
	       \<^rule_thm>\<open>real_num_collect_assoc\<close>,
neuper@37950
  1027
	       (*"[| l is_const; m is_const |] ==>  
neuper@37950
  1028
				l * n + (m * n + k) =  (l + m) * n + k"*)
wenzelm@60297
  1029
	       \<^rule_thm>\<open>real_one_collect\<close>,	
neuper@37950
  1030
	       (*"m is_const ==> n + m * n = (1 + m) * n"*)
wenzelm@60297
  1031
	       \<^rule_thm>\<open>real_one_collect_assoc\<close>, 
neuper@37950
  1032
	       (*"m is_const ==> k + (n + m * n) = k + (1 + m) * n"*)
wenzelm@60294
  1033
	       \<^rule_eval>\<open>plus\<close> (eval_binop "#add_"), 
wenzelm@60294
  1034
	       \<^rule_eval>\<open>times\<close> (eval_binop "#mult_"),
wenzelm@60294
  1035
	       \<^rule_eval>\<open>powr\<close> (eval_binop "#power_")
walther@59878
  1036
	       ], scr = Rule.Empty_Prog};
neuper@37950
  1037
val reduce_012 = 
walther@59851
  1038
  Rule_Def.Repeat{id = "reduce_012", preconds = [], 
walther@59857
  1039
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59852
  1040
      erls = Rule_Set.empty,srls = Rule_Set.Empty,
neuper@42451
  1041
      calc = [], errpatts = [],
wenzelm@60297
  1042
      rules = [\<^rule_thm>\<open>mult_1_left\<close>,                 
neuper@37950
  1043
	       (*"1 * z = z"*)
wenzelm@60297
  1044
	       (*\<^rule_thm>\<open>real_mult_minus1\<close>,14.3.03*)
neuper@37950
  1045
	       (*"-1 * z = - z"*)
wenzelm@60298
  1046
	       Rule.Thm ("minus_mult_left", ThmC.numerals_to_Free (@{thm minus_mult_left} RS @{thm sym})),
neuper@37950
  1047
	       (*- (?x * ?y) = "- ?x * ?y"*)
wenzelm@60298
  1048
	       (*\<^rule_thm>\<open>real_minus_mult_cancel\<close>,
neuper@37950
  1049
	       (*"- ?x * - ?y = ?x * ?y"*)---*)
wenzelm@60297
  1050
	       \<^rule_thm>\<open>mult_zero_left\<close>,        
neuper@37950
  1051
	       (*"0 * z = 0"*)
wenzelm@60297
  1052
	       \<^rule_thm>\<open>add_0_left\<close>,
neuper@37950
  1053
	       (*"0 + z = z"*)
wenzelm@60297
  1054
	       \<^rule_thm>\<open>right_minus\<close>,
neuper@37950
  1055
	       (*"?z + - ?z = 0"*)
wenzelm@60296
  1056
	       \<^rule_thm_sym>\<open>real_mult_2\<close>,	
neuper@37950
  1057
	       (*"z1 + z1 = 2 * z1"*)
wenzelm@60297
  1058
	       \<^rule_thm>\<open>real_mult_2_assoc\<close>
neuper@37950
  1059
	       (*"z1 + (z1 + k) = 2 * z1 + k"*)
walther@59878
  1060
	       ], scr = Rule.Empty_Prog};
neuper@52139
  1061
neuper@37950
  1062
val discard_parentheses = 
walther@59852
  1063
    Rule_Set.append_rules "discard_parentheses" Rule_Set.empty 
wenzelm@60296
  1064
	       [\<^rule_thm_sym>\<open>mult.assoc\<close>,	\<^rule_thm_sym>\<open>add.assoc\<close>];
wneuper@59523
  1065
\<close>
neuper@37950
  1066
wneuper@59523
  1067
subsubsection \<open>hard-coded AC rewriting\<close>
wneuper@59523
  1068
ML \<open>
wneuper@59523
  1069
(*MG.0401: termorders for multivariate polys dropped due to principal problems:
wneuper@59523
  1070
  (total-degree-)ordering of monoms NOT possible with size_of_term GIVEN*)
wneuper@59523
  1071
val order_add_mult = 
walther@59851
  1072
  Rule_Def.Repeat{id = "order_add_mult", preconds = [], 
wenzelm@60291
  1073
      rew_ord = ("ord_make_polynomial",ord_make_polynomial false \<^theory>),
walther@59852
  1074
      erls = Rule_Set.empty,srls = Rule_Set.Empty,
neuper@42451
  1075
      calc = [], errpatts = [],
wenzelm@60297
  1076
      rules = [\<^rule_thm>\<open>mult.commute\<close>,
wneuper@59523
  1077
	       (* z * w = w * z *)
wenzelm@60297
  1078
	       \<^rule_thm>\<open>real_mult_left_commute\<close>,
wneuper@59523
  1079
	       (*z1.0 * (z2.0 * z3.0) = z2.0 * (z1.0 * z3.0)*)
wenzelm@60297
  1080
	       \<^rule_thm>\<open>mult.assoc\<close>,		
wneuper@59523
  1081
	       (*z1.0 * z2.0 * z3.0 = z1.0 * (z2.0 * z3.0)*)
wenzelm@60297
  1082
	       \<^rule_thm>\<open>add.commute\<close>,	
wneuper@59523
  1083
	       (*z + w = w + z*)
wenzelm@60297
  1084
	       \<^rule_thm>\<open>add.left_commute\<close>,
wneuper@59523
  1085
	       (*x + (y + z) = y + (x + z)*)
wenzelm@60297
  1086
	       \<^rule_thm>\<open>add.assoc\<close>	               
wneuper@59523
  1087
	       (*z1.0 + z2.0 + z3.0 = z1.0 + (z2.0 + z3.0)*)
walther@59878
  1088
	       ], scr = Rule.Empty_Prog};
wneuper@59523
  1089
(*MG.0401: termorders for multivariate polys dropped due to principal problems:
wneuper@59523
  1090
  (total-degree-)ordering of monoms NOT possible with size_of_term GIVEN*)
wneuper@59523
  1091
val order_mult = 
walther@59851
  1092
  Rule_Def.Repeat{id = "order_mult", preconds = [], 
wenzelm@60291
  1093
      rew_ord = ("ord_make_polynomial",ord_make_polynomial false \<^theory>),
walther@59852
  1094
      erls = Rule_Set.empty,srls = Rule_Set.Empty,
wneuper@59523
  1095
      calc = [], errpatts = [],
wenzelm@60297
  1096
      rules = [\<^rule_thm>\<open>mult.commute\<close>,
wneuper@59523
  1097
	       (* z * w = w * z *)
wenzelm@60297
  1098
	       \<^rule_thm>\<open>real_mult_left_commute\<close>,
wneuper@59523
  1099
	       (*z1.0 * (z2.0 * z3.0) = z2.0 * (z1.0 * z3.0)*)
wenzelm@60297
  1100
	       \<^rule_thm>\<open>mult.assoc\<close>	
wneuper@59523
  1101
	       (*z1.0 * z2.0 * z3.0 = z1.0 * (z2.0 * z3.0)*)
walther@59878
  1102
	       ], scr = Rule.Empty_Prog};
wneuper@59472
  1103
\<close>
wneuper@59472
  1104
ML \<open>
wneuper@59416
  1105
fun attach_form (_: Rule.rule list list) (_: term) (_: term) = (*still missing*)
wneuper@59416
  1106
    []:(Rule.rule * (term * term list)) list;
walther@59850
  1107
fun init_state (_: term) = Rule_Set.e_rrlsstate;
wneuper@59416
  1108
fun locate_rule (_: Rule.rule list list) (_: term) (_: Rule.rule) =
wneuper@59416
  1109
    ([]:(Rule.rule * (term * term list)) list);
wneuper@59416
  1110
fun next_rule (_: Rule.rule list list) (_: term) = (NONE: Rule.rule option);
wneuper@59406
  1111
fun normal_form t = SOME (sort_variables t, []: term list);
neuper@37950
  1112
neuper@37950
  1113
val order_mult_ =
walther@59850
  1114
    Rule_Set.Rrls {id = "order_mult_", 
neuper@37950
  1115
	  prepat = 
neuper@38036
  1116
          (* ?p matched with the current term gives an environment,
neuper@38037
  1117
             which evaluates (the instantiated) "?p is_multUnordered" to true *)
wenzelm@60291
  1118
	  [([TermC.parse_patt \<^theory> "?p is_multUnordered"], 
wenzelm@60291
  1119
             TermC.parse_patt \<^theory> "?p :: real")],
walther@59857
  1120
	  rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59852
  1121
	  erls = Rule_Set.append_rules "Rule_Set.empty-is_multUnordered" Rule_Set.empty
wenzelm@60294
  1122
			    [\<^rule_eval>\<open>is_multUnordered\<close> (eval_is_multUnordered "")],
wenzelm@60309
  1123
	  calc = [("PLUS"  , (\<^const_name>\<open>plus\<close>, eval_binop "#add_")),
wenzelm@60309
  1124
		  ("TIMES" , (\<^const_name>\<open>times\<close>, eval_binop "#mult_")),
wenzelm@60309
  1125
		  ("DIVIDE", (\<^const_name>\<open>divide\<close>, Prog_Expr.eval_cancel "#divide_e")),
wenzelm@60309
  1126
		  ("POWER" , (\<^const_name>\<open>powr\<close>, eval_binop "#power_"))],
wneuper@59406
  1127
    errpatts = [],
wneuper@59416
  1128
	  scr = Rule.Rfuns {init_state  = init_state,
neuper@37950
  1129
		     normal_form = normal_form,
neuper@37950
  1130
		     locate_rule = locate_rule,
neuper@37950
  1131
		     next_rule   = next_rule,
neuper@37950
  1132
		     attach_form = attach_form}};
neuper@37950
  1133
val order_mult_rls_ = 
walther@59851
  1134
  Rule_Def.Repeat {id = "order_mult_rls_", preconds = [], 
walther@59857
  1135
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59852
  1136
      erls = Rule_Set.empty,srls = Rule_Set.Empty,
neuper@42451
  1137
      calc = [], errpatts = [],
wneuper@59416
  1138
      rules = [Rule.Rls_ order_mult_
walther@59878
  1139
	       ], scr = Rule.Empty_Prog};
neuper@37950
  1140
wneuper@59523
  1141
\<close> ML \<open>
neuper@37950
  1142
wneuper@59416
  1143
fun attach_form (_: Rule.rule list list) (_: term) (_: term) = (*still missing*)
wneuper@59416
  1144
    []: (Rule.rule * (term * term list)) list;
walther@59850
  1145
fun init_state (_: term) = Rule_Set.e_rrlsstate;
wneuper@59416
  1146
fun locate_rule (_: Rule.rule list list) (_: term) (_: Rule.rule) =
wneuper@59416
  1147
    ([]: (Rule.rule * (term * term list)) list);
wneuper@59416
  1148
fun next_rule (_: Rule.rule list list) (_: term) = (NONE: Rule.rule option);
wneuper@59406
  1149
fun normal_form t = SOME (sort_monoms t,[]: term list);
wneuper@59472
  1150
\<close> ML \<open>
neuper@37950
  1151
val order_add_ =
walther@59850
  1152
    Rule_Set.Rrls {id = "order_add_", 
neuper@37950
  1153
	  prepat = (*WN.18.6.03 Preconditions und Pattern,
walther@59850
  1154
		    die beide passen muessen, damit das Rule_Set.Rrls angewandt wird*)
wneuper@59389
  1155
	  [([TermC.parse_patt @{theory} "?p is_addUnordered"], 
wneuper@59389
  1156
	     TermC.parse_patt @{theory} "?p :: real" 
neuper@37950
  1157
	    (*WN.18.6.03 also KEIN pattern, dieses erzeugt nur das Environment 
neuper@37950
  1158
	      fuer die Evaluation der Precondition "p is_addUnordered"*))],
walther@59857
  1159
	  rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59852
  1160
	  erls = Rule_Set.append_rules "Rule_Set.empty-is_addUnordered" Rule_Set.empty(*MG: poly_erls*)
wenzelm@60294
  1161
			    [\<^rule_eval>\<open>is_addUnordered\<close> (eval_is_addUnordered "")],
wenzelm@60309
  1162
	  calc = [("PLUS"  ,(\<^const_name>\<open>plus\<close>, eval_binop "#add_")),
wenzelm@60309
  1163
		  ("TIMES" ,(\<^const_name>\<open>times\<close>, eval_binop "#mult_")),
wenzelm@60309
  1164
		  ("DIVIDE",(\<^const_name>\<open>divide\<close>, Prog_Expr.eval_cancel "#divide_e")),
wenzelm@60309
  1165
		  ("POWER" ,(\<^const_name>\<open>powr\<close>  , eval_binop "#power_"))],
neuper@42451
  1166
	  errpatts = [],
wneuper@59416
  1167
	  scr = Rule.Rfuns {init_state  = init_state,
neuper@37950
  1168
		     normal_form = normal_form,
neuper@37950
  1169
		     locate_rule = locate_rule,
neuper@37950
  1170
		     next_rule   = next_rule,
neuper@37950
  1171
		     attach_form = attach_form}};
neuper@37950
  1172
wneuper@59406
  1173
val order_add_rls_ =
walther@59851
  1174
  Rule_Def.Repeat {id = "order_add_rls_", preconds = [], 
walther@59857
  1175
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59852
  1176
      erls = Rule_Set.empty,srls = Rule_Set.Empty,
neuper@42451
  1177
      calc = [], errpatts = [],
wneuper@59416
  1178
      rules = [Rule.Rls_ order_add_
walther@59878
  1179
	       ], scr = Rule.Empty_Prog};
wneuper@59472
  1180
\<close>
neuper@37950
  1181
wneuper@59472
  1182
text \<open>rule-set make_polynomial also named norm_Poly:
neuper@42398
  1183
  Rewrite order has not been implemented properly; the order is better in 
neuper@42398
  1184
  make_polynomial_in (coded in SML).
neuper@42398
  1185
  Notes on state of development:
neuper@42398
  1186
  \# surprise 2006: test --- norm_Poly NOT COMPLETE ---
neuper@42398
  1187
  \# migration Isabelle2002 --> 2011 weakened the rule set, see test
walther@59962
  1188
  --- Matthias Goldgruber 2003 rewrite orders ---, raise ERROR "ord_make_polynomial_in #16b"
wneuper@59472
  1189
\<close>
wneuper@59472
  1190
ML \<open>
neuper@37950
  1191
(*. see MG-DA.p.52ff .*)
neuper@37950
  1192
val make_polynomial(*MG.03, overwrites version from above, 
neuper@37950
  1193
    previously 'make_polynomial_'*) =
walther@59878
  1194
  Rule_Set.Sequence {id = "make_polynomial", preconds = []:term list, 
walther@59857
  1195
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59851
  1196
      erls = Atools_erls, srls = Rule_Set.Empty,calc = [], errpatts = [],
wneuper@59416
  1197
      rules = [Rule.Rls_ discard_minus,
wneuper@59416
  1198
	       Rule.Rls_ expand_poly_,
wenzelm@60294
  1199
	       \<^rule_eval>\<open>times\<close> (eval_binop "#mult_"),
wneuper@59416
  1200
	       Rule.Rls_ order_mult_rls_,
wneuper@59416
  1201
	       Rule.Rls_ simplify_power_, 
wneuper@59416
  1202
	       Rule.Rls_ calc_add_mult_pow_, 
wneuper@59416
  1203
	       Rule.Rls_ reduce_012_mult_,
wneuper@59416
  1204
	       Rule.Rls_ order_add_rls_,
wneuper@59416
  1205
	       Rule.Rls_ collect_numerals_, 
wneuper@59416
  1206
	       Rule.Rls_ reduce_012_,
wneuper@59416
  1207
	       Rule.Rls_ discard_parentheses1
neuper@37950
  1208
	       ],
walther@59878
  1209
      scr = Rule.Empty_Prog
wneuper@59406
  1210
      };
wneuper@59472
  1211
\<close>
wneuper@59472
  1212
ML \<open>
neuper@37950
  1213
val norm_Poly(*=make_polynomial*) = 
walther@59878
  1214
  Rule_Set.Sequence {id = "norm_Poly", preconds = []:term list, 
walther@59857
  1215
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59851
  1216
      erls = Atools_erls, srls = Rule_Set.Empty, calc = [], errpatts = [],
wneuper@59416
  1217
      rules = [Rule.Rls_ discard_minus,
wneuper@59416
  1218
	       Rule.Rls_ expand_poly_,
wenzelm@60294
  1219
	       \<^rule_eval>\<open>times\<close> (eval_binop "#mult_"),
wneuper@59416
  1220
	       Rule.Rls_ order_mult_rls_,
wneuper@59416
  1221
	       Rule.Rls_ simplify_power_, 
wneuper@59416
  1222
	       Rule.Rls_ calc_add_mult_pow_, 
wneuper@59416
  1223
	       Rule.Rls_ reduce_012_mult_,
wneuper@59416
  1224
	       Rule.Rls_ order_add_rls_,
wneuper@59416
  1225
	       Rule.Rls_ collect_numerals_, 
wneuper@59416
  1226
	       Rule.Rls_ reduce_012_,
wneuper@59416
  1227
	       Rule.Rls_ discard_parentheses1
neuper@37950
  1228
	       ],
walther@59878
  1229
      scr = Rule.Empty_Prog
wneuper@59406
  1230
      };
wneuper@59472
  1231
\<close>
wneuper@59472
  1232
ML \<open>
wneuper@59416
  1233
(* MG:03 Like make_polynomial_ but without Rule.Rls_ discard_parentheses1 
neuper@37950
  1234
   and expand_poly_rat_ instead of expand_poly_, see MG-DA.p.56ff*)
neuper@37950
  1235
(* MG necessary  for termination of norm_Rational(*_mg*) in Rational.ML*)
neuper@37950
  1236
val make_rat_poly_with_parentheses =
walther@59878
  1237
  Rule_Set.Sequence{id = "make_rat_poly_with_parentheses", preconds = []:term list, 
walther@59857
  1238
      rew_ord = ("dummy_ord", Rewrite_Ord.dummy_ord),
walther@59851
  1239
      erls = Atools_erls, srls = Rule_Set.Empty, calc = [], errpatts = [],
wneuper@59416
  1240
      rules = [Rule.Rls_ discard_minus,
wneuper@59416
  1241
	       Rule.Rls_ expand_poly_rat_,(*ignors rationals*)
wenzelm@60294
  1242
	       \<^rule_eval>\<open>times\<close> (eval_binop "#mult_"),
wneuper@59416
  1243
	       Rule.Rls_ order_mult_rls_,
wneuper@59416
  1244
	       Rule.Rls_ simplify_power_, 
wneuper@59416
  1245
	       Rule.Rls_ calc_add_mult_pow_, 
wneuper@59416
  1246
	       Rule.Rls_ reduce_012_mult_,
wneuper@59416
  1247
	       Rule.Rls_ order_add_rls_,
wneuper@59416
  1248
	       Rule.Rls_ collect_numerals_, 
wneuper@59416
  1249
	       Rule.Rls_ reduce_012_
wneuper@59416
  1250
	       (*Rule.Rls_ discard_parentheses1 *)
neuper@37950
  1251
	       ],
walther@59878
  1252
      scr = Rule.Empty_Prog
wneuper@59406
  1253
      };
wneuper@59472
  1254
\<close>
wneuper@59472
  1255
ML \<open>
neuper@37950
  1256
(*.a minimal ruleset for reverse rewriting of factions [2];
neuper@37950
  1257
   compare expand_binoms.*)
neuper@37950
  1258
val rev_rew_p = 
walther@59878
  1259
Rule_Set.Sequence{id = "rev_rew_p", preconds = [], rew_ord = ("termlessI",termlessI),
walther@59851
  1260
    erls = Atools_erls, srls = Rule_Set.Empty,
wenzelm@60309
  1261
    calc = [(*("PLUS"  , (\<^const_name>\<open>plus\<close>, eval_binop "#add_")), 
wenzelm@60309
  1262
	    ("TIMES" , (\<^const_name>\<open>times\<close>, eval_binop "#mult_")),
wenzelm@60309
  1263
	    ("POWER", (\<^const_name>\<open>powr\<close>, eval_binop "#power_"))*)
neuper@42451
  1264
	    ], errpatts = [],
wenzelm@60297
  1265
    rules = [\<^rule_thm>\<open>real_plus_binom_times\<close>,
neuper@37950
  1266
	     (*"(a + b)*(a + b) = a ^ 2 + 2 * a * b + b ^ 2*)
wenzelm@60297
  1267
	     \<^rule_thm>\<open>real_plus_binom_times1\<close>,
walther@60260
  1268
	     (*"(a +  1*b)*(a + -1*b) = a \<up> 2 + -1*b \<up> 2"*)
wenzelm@60297
  1269
	     \<^rule_thm>\<open>real_plus_binom_times2\<close>,
walther@60260
  1270
	     (*"(a + -1*b)*(a +  1*b) = a \<up> 2 + -1*b \<up> 2"*)
neuper@37950
  1271
wenzelm@60297
  1272
	     \<^rule_thm>\<open>mult_1_left\<close>,(*"1 * z = z"*)
neuper@37950
  1273
wenzelm@60297
  1274
             \<^rule_thm>\<open>distrib_right\<close>,
neuper@37950
  1275
	     (*"(z1.0 + z2.0) * w = z1.0 * w + z2.0 * w"*)
wenzelm@60297
  1276
	     \<^rule_thm>\<open>distrib_left\<close>,
neuper@37950
  1277
	     (*"w * (z1.0 + z2.0) = w * z1.0 + w * z2.0"*)
neuper@37950
  1278
	       
wenzelm@60297
  1279
	     \<^rule_thm>\<open>mult.assoc\<close>,
neuper@37950
  1280
	     (*"?z1.1 * ?z2.1 * ?z3. =1 ?z1.1 * (?z2.1 * ?z3.1)"*)
wneuper@59416
  1281
	     Rule.Rls_ order_mult_rls_,
wneuper@59416
  1282
	     (*Rule.Rls_ order_add_rls_,*)
neuper@37950
  1283
wenzelm@60294
  1284
	     \<^rule_eval>\<open>plus\<close> (eval_binop "#add_"), 
wenzelm@60294
  1285
	     \<^rule_eval>\<open>times\<close> (eval_binop "#mult_"),
wenzelm@60294
  1286
	     \<^rule_eval>\<open>powr\<close> (eval_binop "#power_"),
neuper@37950
  1287
	     
wenzelm@60296
  1288
	     \<^rule_thm_sym>\<open>realpow_twoI\<close>,
walther@60242
  1289
	     (*"r1 * r1 = r1 \<up> 2"*)
wenzelm@60296
  1290
	     \<^rule_thm_sym>\<open>real_mult_2\<close>,
neuper@37950
  1291
	     (*"z1 + z1 = 2 * z1"*)
wenzelm@60297
  1292
	     \<^rule_thm>\<open>real_mult_2_assoc\<close>,
neuper@37950
  1293
	     (*"z1 + (z1 + k) = 2 * z1 + k"*)
neuper@37950
  1294
wenzelm@60297
  1295
	     \<^rule_thm>\<open>real_num_collect\<close>, 
neuper@37950
  1296
	     (*"[| l is_const; m is_const |]==>l * n + m * n = (l + m) * n"*)
wenzelm@60297
  1297
	     \<^rule_thm>\<open>real_num_collect_assoc\<close>,
neuper@37950
  1298
	     (*"[| l is_const; m is_const |] ==>  
neuper@37950
  1299
                                     l * n + (m * n + k) =  (l + m) * n + k"*)
wenzelm@60297
  1300
	     \<^rule_thm>\<open>real_one_collect\<close>,
neuper@37950
  1301
	     (*"m is_const ==> n + m * n = (1 + m) * n"*)
wenzelm@60297
  1302
	     \<^rule_thm>\<open>real_one_collect_assoc\<close>, 
neuper@37950
  1303
	     (*"m is_const ==> k + (n + m * n) = k + (1 + m) * n"*)
neuper@37950
  1304
wenzelm@60297
  1305
	     \<^rule_thm>\<open>realpow_multI\<close>,
walther@60242
  1306
	     (*"(r * s) \<up> n = r \<up> n * s \<up> n"*)
neuper@37950
  1307
wenzelm@60294
  1308
	     \<^rule_eval>\<open>plus\<close> (eval_binop "#add_"),
wenzelm@60294
  1309
	     \<^rule_eval>\<open>times\<close> (eval_binop "#mult_"),
wenzelm@60294
  1310
	     \<^rule_eval>\<open>powr\<close> (eval_binop "#power_"),
neuper@37950
  1311
wenzelm@60297
  1312
	     \<^rule_thm>\<open>mult_1_left\<close>,(*"1 * z = z"*)
wenzelm@60297
  1313
	     \<^rule_thm>\<open>mult_zero_left\<close>,(*"0 * z = 0"*)
wenzelm@60297
  1314
	     \<^rule_thm>\<open>add_0_left\<close>(*0 + z = z*)
neuper@37950
  1315
wneuper@59416
  1316
	     (*Rule.Rls_ order_add_rls_*)
neuper@37950
  1317
	     ],
neuper@37950
  1318
walther@59878
  1319
    scr = Rule.Empty_Prog};      
wneuper@59472
  1320
\<close>
neuper@52125
  1321
wneuper@59523
  1322
subsection \<open>rule-sets with explicit program for intermediate steps\<close>
wneuper@59523
  1323
partial_function (tailrec) expand_binoms_2 :: "real \<Rightarrow> real"
wneuper@59523
  1324
  where
walther@59635
  1325
"expand_binoms_2 term = (
walther@59635
  1326
  Repeat (
walther@59637
  1327
    (Try (Repeat (Rewrite ''real_plus_binom_pow2''))) #>
walther@59637
  1328
    (Try (Repeat (Rewrite ''real_plus_binom_times''))) #>
walther@59637
  1329
    (Try (Repeat (Rewrite ''real_minus_binom_pow2''))) #>
walther@59637
  1330
    (Try (Repeat (Rewrite ''real_minus_binom_times''))) #>
walther@59637
  1331
    (Try (Repeat (Rewrite ''real_plus_minus_binom1''))) #>
walther@59637
  1332
    (Try (Repeat (Rewrite ''real_plus_minus_binom2''))) #>
walther@59635
  1333
   
walther@59637
  1334
    (Try (Repeat (Rewrite ''mult_1_left''))) #>
walther@59637
  1335
    (Try (Repeat (Rewrite ''mult_zero_left''))) #>
walther@59637
  1336
    (Try (Repeat (Rewrite ''add_0_left''))) #>
walther@59635
  1337
   
walther@59637
  1338
    (Try (Repeat (Calculate ''PLUS''))) #>
walther@59637
  1339
    (Try (Repeat (Calculate ''TIMES''))) #>
walther@59637
  1340
    (Try (Repeat (Calculate ''POWER''))) #>
walther@59635
  1341
   
walther@59637
  1342
    (Try (Repeat (Rewrite ''sym_realpow_twoI''))) #>
walther@59637
  1343
    (Try (Repeat (Rewrite ''realpow_plus_1''))) #>
walther@59637
  1344
    (Try (Repeat (Rewrite ''sym_real_mult_2''))) #>
walther@59637
  1345
    (Try (Repeat (Rewrite ''real_mult_2_assoc''))) #>
walther@59635
  1346
   
walther@59637
  1347
    (Try (Repeat (Rewrite ''real_num_collect''))) #>
walther@59637
  1348
    (Try (Repeat (Rewrite ''real_num_collect_assoc''))) #>
walther@59635
  1349
   
walther@59637
  1350
    (Try (Repeat (Rewrite ''real_one_collect''))) #>
walther@59637
  1351
    (Try (Repeat (Rewrite ''real_one_collect_assoc''))) #>
walther@59635
  1352
   
walther@59637
  1353
    (Try (Repeat (Calculate ''PLUS''))) #>
walther@59637
  1354
    (Try (Repeat (Calculate ''TIMES''))) #>
walther@59635
  1355
    (Try (Repeat (Calculate ''POWER''))))
walther@59635
  1356
  term)"
wneuper@59523
  1357
ML \<open>
wneuper@59523
  1358
val expand_binoms = 
walther@59851
  1359
  Rule_Def.Repeat{id = "expand_binoms", preconds = [], rew_ord = ("termlessI",termlessI),
walther@59851
  1360
      erls = Atools_erls, srls = Rule_Set.Empty,
wenzelm@60309
  1361
      calc = [("PLUS"  , (\<^const_name>\<open>plus\<close>, eval_binop "#add_")), 
wenzelm@60309
  1362
	      ("TIMES" , (\<^const_name>\<open>times\<close>, eval_binop "#mult_")),
wenzelm@60309
  1363
	      ("POWER", (\<^const_name>\<open>powr\<close>, eval_binop "#power_"))
wneuper@59523
  1364
	      ], errpatts = [],
wenzelm@60298
  1365
      rules = [\<^rule_thm>\<open>real_plus_binom_pow2\<close>,     
walther@60242
  1366
	       (*"(a + b) \<up> 2 = a \<up> 2 + 2 * a * b + b \<up> 2"*)
wenzelm@60298
  1367
	       \<^rule_thm>\<open>real_plus_binom_times\<close>,    
wneuper@59523
  1368
	      (*"(a + b)*(a + b) = ...*)
wenzelm@60298
  1369
	       \<^rule_thm>\<open>real_minus_binom_pow2\<close>,   
walther@60242
  1370
	       (*"(a - b) \<up> 2 = a \<up> 2 - 2 * a * b + b \<up> 2"*)
wenzelm@60298
  1371
	       \<^rule_thm>\<open>real_minus_binom_times\<close>,   
wneuper@59523
  1372
	       (*"(a - b)*(a - b) = ...*)
wenzelm@60298
  1373
	       \<^rule_thm>\<open>real_plus_minus_binom1\<close>,   
walther@60242
  1374
		(*"(a + b) * (a - b) = a \<up> 2 - b \<up> 2"*)
wenzelm@60298
  1375
	       \<^rule_thm>\<open>real_plus_minus_binom2\<close>,   
walther@60242
  1376
		(*"(a - b) * (a + b) = a \<up> 2 - b \<up> 2"*)
wneuper@59523
  1377
	       (*RL 020915*)
wenzelm@60297
  1378
	       \<^rule_thm>\<open>real_pp_binom_times\<close>, 
wneuper@59523
  1379
		(*(a + b)*(c + d) = a*c + a*d + b*c + b*d*)
wenzelm@60297
  1380
               \<^rule_thm>\<open>real_pm_binom_times\<close>, 
wneuper@59523
  1381
		(*(a + b)*(c - d) = a*c - a*d + b*c - b*d*)
wenzelm@60297
  1382
               \<^rule_thm>\<open>real_mp_binom_times\<close>, 
wneuper@59523
  1383
		(*(a - b)*(c + d) = a*c + a*d - b*c - b*d*)
wenzelm@60297
  1384
               \<^rule_thm>\<open>real_mm_binom_times\<close>, 
wneuper@59523
  1385
		(*(a - b)*(c - d) = a*c - a*d - b*c + b*d*)
wenzelm@60297
  1386
	       \<^rule_thm>\<open>realpow_multI\<close>,
walther@60260
  1387
		(*(a*b) \<up> n = a \<up> n * b \<up> n*)
wenzelm@60297
  1388
	       \<^rule_thm>\<open>real_plus_binom_pow3\<close>,
walther@60260
  1389
	        (* (a + b) \<up> 3 = a \<up> 3 + 3*a \<up> 2*b + 3*a*b \<up> 2 + b \<up> 3 *)
wenzelm@60298
  1390
	       \<^rule_thm>\<open>real_minus_binom_pow3\<close>,
walther@60260
  1391
	        (* (a - b) \<up> 3 = a \<up> 3 - 3*a \<up> 2*b + 3*a*b \<up> 2 - b \<up> 3 *)
wneuper@59523
  1392
wneuper@59523
  1393
wenzelm@60297
  1394
              (*\<^rule_thm>\<open>distrib_right\<close>,	
wneuper@59523
  1395
		(*"(z1.0 + z2.0) * w = z1.0 * w + z2.0 * w"*)
wenzelm@60297
  1396
	       \<^rule_thm>\<open>distrib_left\<close>,	
wneuper@59523
  1397
	       (*"w * (z1.0 + z2.0) = w * z1.0 + w * z2.0"*)
wenzelm@60297
  1398
	       \<^rule_thm>\<open>left_diff_distrib\<close>,	
wneuper@59523
  1399
	       (*"(z1.0 - z2.0) * w = z1.0 * w - z2.0 * w"*)
wenzelm@60297
  1400
	       \<^rule_thm>\<open>right_diff_distrib\<close>,	
wneuper@59523
  1401
	       (*"w * (z1.0 - z2.0) = w * z1.0 - w * z2.0"*)
wneuper@59523
  1402
	      *)
wenzelm@60297
  1403
	       \<^rule_thm>\<open>mult_1_left\<close>,
wneuper@59523
  1404
               (*"1 * z = z"*)
wenzelm@60297
  1405
	       \<^rule_thm>\<open>mult_zero_left\<close>,
wneuper@59523
  1406
               (*"0 * z = 0"*)
wenzelm@60297
  1407
	       \<^rule_thm>\<open>add_0_left\<close>,(*"0 + z = z"*)
wneuper@59523
  1408
wenzelm@60294
  1409
	       \<^rule_eval>\<open>plus\<close> (eval_binop "#add_"), 
wenzelm@60294
  1410
	       \<^rule_eval>\<open>times\<close> (eval_binop "#mult_"),
wenzelm@60294
  1411
	       \<^rule_eval>\<open>powr\<close> (eval_binop "#power_"),
wenzelm@60297
  1412
              (*\<^rule_thm>\<open>mult.commute\<close>,
wneuper@59523
  1413
		(*AC-rewriting*)
wenzelm@60298
  1414
	       \<^rule_thm>\<open>real_mult_left_commute\<close>,
wenzelm@60297
  1415
	       \<^rule_thm>\<open>mult.assoc\<close>,
wenzelm@60297
  1416
	       \<^rule_thm>\<open>add.commute\<close>,
wenzelm@60297
  1417
	       \<^rule_thm>\<open>add.left_commute\<close>,
wenzelm@60297
  1418
	       \<^rule_thm>\<open>add.assoc\<close>,
wneuper@59523
  1419
	      *)
wenzelm@60296
  1420
	       \<^rule_thm_sym>\<open>realpow_twoI\<close>,
walther@60242
  1421
	       (*"r1 * r1 = r1 \<up> 2"*)
wenzelm@60297
  1422
	       \<^rule_thm>\<open>realpow_plus_1\<close>,			
walther@60242
  1423
	       (*"r * r \<up> n = r \<up> (n + 1)"*)
wenzelm@60296
  1424
	       (*\<^rule_thm_sym>\<open>real_mult_2\<close>,		
wneuper@59523
  1425
	       (*"z1 + z1 = 2 * z1"*)*)
wenzelm@60297
  1426
	       \<^rule_thm>\<open>real_mult_2_assoc\<close>,		
wneuper@59523
  1427
	       (*"z1 + (z1 + k) = 2 * z1 + k"*)
wneuper@59523
  1428
wenzelm@60297
  1429
	       \<^rule_thm>\<open>real_num_collect\<close>, 
wneuper@59523
  1430
	       (*"[| l is_const; m is_const |] ==>l * n + m * n = (l + m) * n"*)
wenzelm@60298
  1431
	       \<^rule_thm>\<open>real_num_collect_assoc\<close>,	
wneuper@59523
  1432
	       (*"[| l is_const; m is_const |] ==>  
wneuper@59523
  1433
                                       l * n + (m * n + k) =  (l + m) * n + k"*)
wenzelm@60297
  1434
	       \<^rule_thm>\<open>real_one_collect\<close>,
wneuper@59523
  1435
	       (*"m is_const ==> n + m * n = (1 + m) * n"*)
wenzelm@60298
  1436
	       \<^rule_thm>\<open>real_one_collect_assoc\<close>, 
wneuper@59523
  1437
	       (*"m is_const ==> k + (n + m * n) = k + (1 + m) * n"*)
wneuper@59523
  1438
wenzelm@60294
  1439
	       \<^rule_eval>\<open>plus\<close> (eval_binop "#add_"), 
wenzelm@60294
  1440
	       \<^rule_eval>\<open>times\<close> (eval_binop "#mult_"),
wenzelm@60294
  1441
	       \<^rule_eval>\<open>powr\<close> (eval_binop "#power_")
wneuper@59523
  1442
	       ],
walther@59618
  1443
      scr = Rule.Prog (Program.prep_program @{thm expand_binoms_2.simps})
wneuper@59523
  1444
      };      
wneuper@59523
  1445
\<close>
wneuper@59523
  1446
walther@59887
  1447
subsection \<open>add to Know_Store\<close>
wneuper@59523
  1448
subsubsection \<open>rule-sets\<close>
walther@59618
  1449
ML \<open>val prep_rls' = Auto_Prog.prep_rls @{theory}\<close>
s1210629013@55444
  1450
wenzelm@60289
  1451
rule_set_knowledge
wenzelm@60286
  1452
  norm_Poly = \<open>prep_rls' norm_Poly\<close> and
wenzelm@60286
  1453
  Poly_erls = \<open>prep_rls' Poly_erls\<close> (*FIXXXME:del with rls.rls'*) and
wenzelm@60286
  1454
  expand = \<open>prep_rls' expand\<close> and
wenzelm@60286
  1455
  expand_poly = \<open>prep_rls' expand_poly\<close> and
wenzelm@60286
  1456
  simplify_power = \<open>prep_rls' simplify_power\<close> and
neuper@52125
  1457
wenzelm@60286
  1458
  order_add_mult = \<open>prep_rls' order_add_mult\<close> and
wenzelm@60286
  1459
  collect_numerals = \<open>prep_rls' collect_numerals\<close> and
wenzelm@60286
  1460
  collect_numerals_= \<open>prep_rls' collect_numerals_\<close> and
wenzelm@60286
  1461
  reduce_012 = \<open>prep_rls' reduce_012\<close> and
wenzelm@60286
  1462
  discard_parentheses = \<open>prep_rls' discard_parentheses\<close> and
neuper@52125
  1463
 
wenzelm@60286
  1464
  make_polynomial = \<open>prep_rls' make_polynomial\<close> and
wenzelm@60286
  1465
  expand_binoms = \<open>prep_rls' expand_binoms\<close> and
wenzelm@60286
  1466
  rev_rew_p = \<open>prep_rls' rev_rew_p\<close> and
wenzelm@60286
  1467
  discard_minus = \<open>prep_rls' discard_minus\<close> and
wenzelm@60286
  1468
  expand_poly_ = \<open>prep_rls' expand_poly_\<close> and
neuper@52125
  1469
 
wenzelm@60286
  1470
  expand_poly_rat_ = \<open>prep_rls' expand_poly_rat_\<close> and
wenzelm@60286
  1471
  simplify_power_ = \<open>prep_rls' simplify_power_\<close> and
wenzelm@60286
  1472
  calc_add_mult_pow_ = \<open>prep_rls' calc_add_mult_pow_\<close> and
wenzelm@60286
  1473
  reduce_012_mult_ = \<open>prep_rls' reduce_012_mult_\<close> and
wenzelm@60286
  1474
  reduce_012_ = \<open>prep_rls' reduce_012_\<close> and
neuper@52125
  1475
 
wenzelm@60286
  1476
  discard_parentheses1 = \<open>prep_rls' discard_parentheses1\<close> and
wenzelm@60286
  1477
  order_mult_rls_ = \<open>prep_rls' order_mult_rls_\<close> and
wenzelm@60286
  1478
  order_add_rls_ = \<open>prep_rls' order_add_rls_\<close> and
wenzelm@60286
  1479
  make_rat_poly_with_parentheses = \<open>prep_rls' make_rat_poly_with_parentheses\<close>
wneuper@59523
  1480
wneuper@59526
  1481
subsection \<open>problems\<close>
wenzelm@60306
  1482
wenzelm@60306
  1483
problem pbl_simp_poly : "polynomial/simplification" =
wenzelm@60306
  1484
  \<open>Rule_Set.append_rules "empty" Rule_Set.empty [(*for preds in where_*)
wenzelm@60306
  1485
    \<^rule_eval>\<open>is_polyexp\<close> (eval_is_polyexp "")]\<close>
wenzelm@60306
  1486
  Method: "simplification/for_polynomials"
wenzelm@60306
  1487
  CAS: "Simplify t_t"
wenzelm@60306
  1488
  Given: "Term t_t"
wenzelm@60306
  1489
  Where: "t_t is_polyexp"
wenzelm@60306
  1490
  Find: "normalform n_n"
wneuper@59429
  1491
wneuper@59526
  1492
subsection \<open>methods\<close>
wneuper@59545
  1493
wneuper@59429
  1494
partial_function (tailrec) simplify :: "real \<Rightarrow> real"
wneuper@59429
  1495
  where
walther@59635
  1496
"simplify term = ((Rewrite_Set ''norm_Poly'') term)"
wenzelm@60303
  1497
wenzelm@60303
  1498
method met_simp_poly : "simplification/for_polynomials" =
wenzelm@60303
  1499
  \<open>{rew_ord'="tless_true", rls' = Rule_Set.empty, calc = [], srls = Rule_Set.empty,
wenzelm@60303
  1500
    prls = Rule_Set.append_rules "simplification_for_polynomials_prls" Rule_Set.empty
wenzelm@60303
  1501
      [(*for preds in where_*) \<^rule_eval>\<open>is_polyexp\<close> (eval_is_polyexp"")],
wenzelm@60303
  1502
    crls = Rule_Set.empty, errpats = [], nrls = norm_Poly}\<close>
wenzelm@60303
  1503
  Program: simplify.simps
wenzelm@60303
  1504
  Given: "Term t_t"
wenzelm@60303
  1505
  Where: "t_t is_polyexp"
wenzelm@60303
  1506
  Find: "normalform n_n"
wenzelm@60303
  1507
wneuper@59472
  1508
ML \<open>
wneuper@59472
  1509
\<close> ML \<open>
wneuper@59472
  1510
\<close> 
neuper@37906
  1511
end