src/HOL/Tools/Groebner_Basis/normalizer.ML
author wenzelm
Thu, 04 Oct 2007 20:29:33 +0200
changeset 24849 193a10e6bf90
parent 23880 64b9806e160b
child 25253 c642b36f2bec
permissions -rw-r--r--
added uu, aT;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/Tools/Groebner_Basis/normalizer.ML
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
     3
    Author:     Amine Chaieb, TU Muenchen
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
     4
*)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
     5
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
     6
signature NORMALIZER = 
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
     7
sig
23485
881b04972953 made type conv pervasive;
wenzelm
parents: 23407
diff changeset
     8
 val semiring_normalize_conv : Proof.context -> conv
881b04972953 made type conv pervasive;
wenzelm
parents: 23407
diff changeset
     9
 val semiring_normalize_ord_conv : Proof.context -> (cterm -> cterm -> bool) -> conv
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    10
 val semiring_normalize_tac : Proof.context -> int -> tactic
23485
881b04972953 made type conv pervasive;
wenzelm
parents: 23407
diff changeset
    11
 val semiring_normalize_wrapper :  Proof.context -> NormalizerData.entry -> conv
881b04972953 made type conv pervasive;
wenzelm
parents: 23407
diff changeset
    12
 val semiring_normalize_ord_wrapper :  Proof.context -> NormalizerData.entry ->
881b04972953 made type conv pervasive;
wenzelm
parents: 23407
diff changeset
    13
   (cterm -> cterm -> bool) -> conv
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    14
 val semiring_normalizers_conv :
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    15
     cterm list -> cterm list * thm list -> cterm list * thm list ->
23485
881b04972953 made type conv pervasive;
wenzelm
parents: 23407
diff changeset
    16
     (cterm -> bool) * conv * conv * conv -> (cterm -> cterm -> bool) ->
881b04972953 made type conv pervasive;
wenzelm
parents: 23407
diff changeset
    17
       {add: conv, mul: conv, neg: conv, main: conv, pow: conv, sub: conv}
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    18
end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    19
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    20
structure Normalizer: NORMALIZER = 
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    21
struct
23559
wenzelm
parents: 23485
diff changeset
    22
wenzelm
parents: 23485
diff changeset
    23
open Conv Misc;
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    24
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    25
(* Very basic stuff for terms *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    26
val dest_numeral = term_of #> HOLogic.dest_number #> snd;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    27
val is_numeral = can dest_numeral;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    28
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    29
val numeral01_conv = Simplifier.rewrite
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    30
                         (HOL_basic_ss addsimps [numeral_1_eq_1, numeral_0_eq_0]);
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    31
val zero1_numeral_conv = 
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    32
 Simplifier.rewrite (HOL_basic_ss addsimps [numeral_1_eq_1 RS sym, numeral_0_eq_0 RS sym]);
23580
998a6fda9bb6 moved mk_cnumeral/mk_cnumber to Tools/numeral.ML;
wenzelm
parents: 23559
diff changeset
    33
fun zerone_conv cv = zero1_numeral_conv then_conv cv then_conv numeral01_conv;
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    34
val natarith = [@{thm "add_nat_number_of"}, @{thm "diff_nat_number_of"},
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    35
                @{thm "mult_nat_number_of"}, @{thm "eq_nat_number_of"}, 
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    36
                @{thm "less_nat_number_of"}];
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    37
val nat_add_conv = 
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    38
 zerone_conv 
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    39
  (Simplifier.rewrite 
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    40
    (HOL_basic_ss 
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    41
       addsimps arith_simps @ natarith @ rel_simps
23880
64b9806e160b dropped Nat.ML legacy bindings
haftmann
parents: 23580
diff changeset
    42
             @ [if_False, if_True, @{thm add_0}, @{thm add_Suc}, add_number_of_left, Suc_eq_add_numeral_1]
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    43
             @ map (fn th => th RS sym) numerals));
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    44
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    45
val nat_mul_conv = nat_add_conv;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    46
val zeron_tm = @{cterm "0::nat"};
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    47
val onen_tm  = @{cterm "1::nat"};
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    48
val true_tm = @{cterm "True"};
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    49
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    50
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    51
(* The main function! *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    52
fun semiring_normalizers_conv vars (sr_ops, sr_rules) (r_ops, r_rules)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    53
  (is_semiring_constant, semiring_add_conv, semiring_mul_conv, semiring_pow_conv) =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    54
let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    55
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    56
val [pthm_02, pthm_03, pthm_04, pthm_05, pthm_07, pthm_08,
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    57
     pthm_09, pthm_10, pthm_11, pthm_12, pthm_13, pthm_14, pthm_15, pthm_16,
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    58
     pthm_17, pthm_18, pthm_19, pthm_21, pthm_22, pthm_23, pthm_24,
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    59
     pthm_25, pthm_26, pthm_27, pthm_28, pthm_29, pthm_30, pthm_31, pthm_32,
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    60
     pthm_33, pthm_34, pthm_35, pthm_36, pthm_37, pthm_38,pthm_39,pthm_40] = sr_rules;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    61
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    62
val [ca, cb, cc, cd, cm, cn, cp, cq, cx, cy, cz, clx, crx, cly, cry] = vars;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    63
val [add_pat, mul_pat, pow_pat, zero_tm, one_tm] = sr_ops;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    64
val [add_tm, mul_tm, pow_tm] = map (Thm.dest_fun o Thm.dest_fun) [add_pat, mul_pat, pow_pat];
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    65
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    66
val dest_add = dest_binop add_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    67
val dest_mul = dest_binop mul_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    68
fun dest_pow tm =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    69
 let val (l,r) = dest_binop pow_tm tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    70
 in if is_numeral r then (l,r) else raise CTERM ("dest_pow",[tm])
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    71
 end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    72
val is_add = is_binop add_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    73
val is_mul = is_binop mul_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    74
fun is_pow tm = is_binop pow_tm tm andalso is_numeral(Thm.dest_arg tm);
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    75
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    76
val (neg_mul,sub_add,sub_tm,neg_tm,dest_sub,is_sub,cx',cy') =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    77
  (case (r_ops, r_rules) of
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    78
    ([], []) => (TrueI, TrueI, true_tm, true_tm, (fn t => (t,t)), K false, true_tm, true_tm)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    79
  | ([sub_pat, neg_pat], [neg_mul, sub_add]) =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    80
      let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    81
        val sub_tm = Thm.dest_fun (Thm.dest_fun sub_pat)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    82
        val neg_tm = Thm.dest_fun neg_pat
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    83
        val dest_sub = dest_binop sub_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    84
        val is_sub = is_binop sub_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    85
      in (neg_mul,sub_add,sub_tm,neg_tm,dest_sub,is_sub, neg_mul |> concl |> Thm.dest_arg,
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    86
          sub_add |> concl |> Thm.dest_arg |> Thm.dest_arg)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    87
      end);
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    88
in fn variable_order =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    89
 let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    90
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    91
(* Conversion for "x^n * x^m", with either x^n = x and/or x^m = x possible.  *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    92
(* Also deals with "const * const", but both terms must involve powers of    *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    93
(* the same variable, or both be constants, or behaviour may be incorrect.   *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    94
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    95
 fun powvar_mul_conv tm =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    96
  let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    97
  val (l,r) = dest_mul tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    98
  in if is_semiring_constant l andalso is_semiring_constant r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
    99
     then semiring_mul_conv tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   100
     else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   101
      ((let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   102
         val (lx,ln) = dest_pow l
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   103
        in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   104
         ((let val (rx,rn) = dest_pow r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   105
               val th1 = inst_thm [(cx,lx),(cp,ln),(cq,rn)] pthm_29
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   106
                val (tm1,tm2) = Thm.dest_comb(concl th1) in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   107
               transitive th1 (Drule.arg_cong_rule tm1 (nat_add_conv tm2)) end)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   108
           handle CTERM _ =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   109
            (let val th1 = inst_thm [(cx,lx),(cq,ln)] pthm_31
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   110
                 val (tm1,tm2) = Thm.dest_comb(concl th1) in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   111
               transitive th1 (Drule.arg_cong_rule tm1 (nat_add_conv tm2)) end)) end)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   112
       handle CTERM _ =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   113
           ((let val (rx,rn) = dest_pow r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   114
                val th1 = inst_thm [(cx,rx),(cq,rn)] pthm_30
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   115
                val (tm1,tm2) = Thm.dest_comb(concl th1) in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   116
               transitive th1 (Drule.arg_cong_rule tm1 (nat_add_conv tm2)) end)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   117
           handle CTERM _ => inst_thm [(cx,l)] pthm_32
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   118
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   119
))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   120
 end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   121
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   122
(* Remove "1 * m" from a monomial, and just leave m.                         *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   123
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   124
 fun monomial_deone th =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   125
       (let val (l,r) = dest_mul(concl th) in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   126
           if l aconvc one_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   127
          then transitive th (inst_thm [(ca,r)] pthm_13)  else th end)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   128
       handle CTERM _ => th;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   129
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   130
(* Conversion for "(monomial)^n", where n is a numeral.                      *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   131
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   132
 val monomial_pow_conv =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   133
  let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   134
   fun monomial_pow tm bod ntm =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   135
    if not(is_comb bod)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   136
    then reflexive tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   137
    else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   138
     if is_semiring_constant bod
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   139
     then semiring_pow_conv tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   140
     else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   141
      let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   142
      val (lopr,r) = Thm.dest_comb bod
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   143
      in if not(is_comb lopr)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   144
         then reflexive tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   145
        else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   146
          let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   147
          val (opr,l) = Thm.dest_comb lopr
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   148
         in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   149
           if opr aconvc pow_tm andalso is_numeral r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   150
          then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   151
            let val th1 = inst_thm [(cx,l),(cp,r),(cq,ntm)] pthm_34
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   152
                val (l,r) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   153
           in transitive th1 (Drule.arg_cong_rule l (nat_mul_conv r))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   154
           end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   155
           else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   156
            if opr aconvc mul_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   157
            then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   158
             let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   159
              val th1 = inst_thm [(cx,l),(cy,r),(cq,ntm)] pthm_33
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   160
             val (xy,z) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   161
              val (x,y) = Thm.dest_comb xy
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   162
              val thl = monomial_pow y l ntm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   163
              val thr = monomial_pow z r ntm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   164
             in transitive th1 (combination (Drule.arg_cong_rule x thl) thr)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   165
             end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   166
             else reflexive tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   167
          end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   168
      end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   169
  in fn tm =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   170
   let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   171
    val (lopr,r) = Thm.dest_comb tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   172
    val (opr,l) = Thm.dest_comb lopr
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   173
   in if not (opr aconvc pow_tm) orelse not(is_numeral r)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   174
      then raise CTERM ("monomial_pow_conv", [tm])
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   175
      else if r aconvc zeron_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   176
      then inst_thm [(cx,l)] pthm_35
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   177
      else if r aconvc onen_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   178
      then inst_thm [(cx,l)] pthm_36
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   179
      else monomial_deone(monomial_pow tm l r)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   180
   end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   181
  end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   182
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   183
(* Multiplication of canonical monomials.                                    *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   184
 val monomial_mul_conv =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   185
  let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   186
   fun powvar tm =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   187
    if is_semiring_constant tm then one_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   188
    else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   189
     ((let val (lopr,r) = Thm.dest_comb tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   190
           val (opr,l) = Thm.dest_comb lopr
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   191
       in if opr aconvc pow_tm andalso is_numeral r then l 
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   192
          else raise CTERM ("monomial_mul_conv",[tm]) end)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   193
     handle CTERM _ => tm)   (* FIXME !? *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   194
   fun  vorder x y =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   195
    if x aconvc y then 0
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   196
    else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   197
     if x aconvc one_tm then ~1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   198
     else if y aconvc one_tm then 1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   199
      else if variable_order x y then ~1 else 1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   200
   fun monomial_mul tm l r =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   201
    ((let val (lx,ly) = dest_mul l val vl = powvar lx
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   202
      in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   203
      ((let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   204
        val (rx,ry) = dest_mul r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   205
         val vr = powvar rx
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   206
         val ord = vorder vl vr
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   207
        in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   208
         if ord = 0
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   209
        then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   210
          let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   211
             val th1 = inst_thm [(clx,lx),(cly,ly),(crx,rx),(cry,ry)] pthm_15
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   212
             val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   213
             val (tm3,tm4) = Thm.dest_comb tm1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   214
             val th2 = Drule.fun_cong_rule (Drule.arg_cong_rule tm3 (powvar_mul_conv tm4)) tm2
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   215
             val th3 = transitive th1 th2
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   216
              val  (tm5,tm6) = Thm.dest_comb(concl th3)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   217
              val  (tm7,tm8) = Thm.dest_comb tm6
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   218
             val  th4 = monomial_mul tm6 (Thm.dest_arg tm7) tm8
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   219
         in  transitive th3 (Drule.arg_cong_rule tm5 th4)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   220
         end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   221
         else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   222
          let val th0 = if ord < 0 then pthm_16 else pthm_17
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   223
             val th1 = inst_thm [(clx,lx),(cly,ly),(crx,rx),(cry,ry)] th0
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   224
             val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   225
             val (tm3,tm4) = Thm.dest_comb tm2
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   226
         in transitive th1 (Drule.arg_cong_rule tm1 (monomial_mul tm2 (Thm.dest_arg tm3) tm4))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   227
         end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   228
        end)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   229
       handle CTERM _ =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   230
        (let val vr = powvar r val ord = vorder vl vr
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   231
        in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   232
          if ord = 0 then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   233
           let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   234
           val th1 = inst_thm [(clx,lx),(cly,ly),(crx,r)] pthm_18
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   235
                 val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   236
           val (tm3,tm4) = Thm.dest_comb tm1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   237
           val th2 = Drule.fun_cong_rule (Drule.arg_cong_rule tm3 (powvar_mul_conv tm4)) tm2
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   238
          in transitive th1 th2
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   239
          end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   240
          else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   241
          if ord < 0 then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   242
            let val th1 = inst_thm [(clx,lx),(cly,ly),(crx,r)] pthm_19
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   243
                val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   244
                val (tm3,tm4) = Thm.dest_comb tm2
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   245
           in transitive th1 (Drule.arg_cong_rule tm1 (monomial_mul tm2 (Thm.dest_arg tm3) tm4))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   246
           end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   247
           else inst_thm [(ca,l),(cb,r)] pthm_09
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   248
        end)) end)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   249
     handle CTERM _ =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   250
      (let val vl = powvar l in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   251
        ((let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   252
          val (rx,ry) = dest_mul r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   253
          val vr = powvar rx
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   254
           val ord = vorder vl vr
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   255
         in if ord = 0 then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   256
              let val th1 = inst_thm [(clx,l),(crx,rx),(cry,ry)] pthm_21
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   257
                 val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   258
                 val (tm3,tm4) = Thm.dest_comb tm1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   259
             in transitive th1 (Drule.fun_cong_rule (Drule.arg_cong_rule tm3 (powvar_mul_conv tm4)) tm2)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   260
             end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   261
             else if ord > 0 then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   262
                 let val th1 = inst_thm [(clx,l),(crx,rx),(cry,ry)] pthm_22
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   263
                     val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   264
                    val (tm3,tm4) = Thm.dest_comb tm2
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   265
                in transitive th1 (Drule.arg_cong_rule tm1 (monomial_mul tm2 (Thm.dest_arg tm3) tm4))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   266
                end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   267
             else reflexive tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   268
         end)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   269
        handle CTERM _ =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   270
          (let val vr = powvar r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   271
               val  ord = vorder vl vr
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   272
          in if ord = 0 then powvar_mul_conv tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   273
              else if ord > 0 then inst_thm [(ca,l),(cb,r)] pthm_09
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   274
              else reflexive tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   275
          end)) end))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   276
  in fn tm => let val (l,r) = dest_mul tm in monomial_deone(monomial_mul tm l r)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   277
             end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   278
  end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   279
(* Multiplication by monomial of a polynomial.                               *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   280
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   281
 val polynomial_monomial_mul_conv =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   282
  let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   283
   fun pmm_conv tm =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   284
    let val (l,r) = dest_mul tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   285
    in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   286
    ((let val (y,z) = dest_add r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   287
          val th1 = inst_thm [(cx,l),(cy,y),(cz,z)] pthm_37
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   288
          val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   289
          val (tm3,tm4) = Thm.dest_comb tm1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   290
          val th2 = combination (Drule.arg_cong_rule tm3 (monomial_mul_conv tm4)) (pmm_conv tm2)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   291
      in transitive th1 th2
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   292
      end)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   293
     handle CTERM _ => monomial_mul_conv tm)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   294
   end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   295
 in pmm_conv
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   296
 end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   297
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   298
(* Addition of two monomials identical except for constant multiples.        *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   299
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   300
fun monomial_add_conv tm =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   301
 let val (l,r) = dest_add tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   302
 in if is_semiring_constant l andalso is_semiring_constant r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   303
    then semiring_add_conv tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   304
    else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   305
     let val th1 =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   306
           if is_mul l andalso is_semiring_constant(Thm.dest_arg1 l)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   307
           then if is_mul r andalso is_semiring_constant(Thm.dest_arg1 r) then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   308
                    inst_thm [(ca,Thm.dest_arg1 l),(cm,Thm.dest_arg r), (cb,Thm.dest_arg1 r)] pthm_02
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   309
                else inst_thm [(ca,Thm.dest_arg1 l),(cm,r)] pthm_03
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   310
           else if is_mul r andalso is_semiring_constant(Thm.dest_arg1 r)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   311
           then inst_thm [(cm,l),(ca,Thm.dest_arg1 r)] pthm_04
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   312
           else inst_thm [(cm,r)] pthm_05
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   313
         val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   314
         val (tm3,tm4) = Thm.dest_comb tm1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   315
         val th2 = Drule.arg_cong_rule tm3 (semiring_add_conv tm4)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   316
         val th3 = transitive th1 (Drule.fun_cong_rule th2 tm2)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   317
         val tm5 = concl th3
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   318
      in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   319
      if (Thm.dest_arg1 tm5) aconvc zero_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   320
      then transitive th3 (inst_thm [(ca,Thm.dest_arg tm5)] pthm_11)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   321
      else monomial_deone th3
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   322
     end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   323
 end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   324
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   325
(* Ordering on monomials.                                                    *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   326
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   327
fun striplist dest =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   328
 let fun strip x acc =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   329
   ((let val (l,r) = dest x in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   330
        strip l (strip r acc) end)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   331
    handle CTERM _ => x::acc)    (* FIXME !? *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   332
 in fn x => strip x []
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   333
 end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   334
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   335
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   336
fun powervars tm =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   337
 let val ptms = striplist dest_mul tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   338
 in if is_semiring_constant (hd ptms) then tl ptms else ptms
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   339
 end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   340
val num_0 = 0;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   341
val num_1 = 1;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   342
fun dest_varpow tm =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   343
 ((let val (x,n) = dest_pow tm in (x,dest_numeral n) end)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   344
   handle CTERM _ =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   345
   (tm,(if is_semiring_constant tm then num_0 else num_1)));
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   346
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   347
val morder =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   348
 let fun lexorder l1 l2 =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   349
  case (l1,l2) of
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   350
    ([],[]) => 0
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   351
  | (vps,[]) => ~1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   352
  | ([],vps) => 1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   353
  | (((x1,n1)::vs1),((x2,n2)::vs2)) =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   354
     if variable_order x1 x2 then 1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   355
     else if variable_order x2 x1 then ~1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   356
     else if n1 < n2 then ~1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   357
     else if n2 < n1 then 1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   358
     else lexorder vs1 vs2
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   359
 in fn tm1 => fn tm2 =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   360
  let val vdegs1 = map dest_varpow (powervars tm1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   361
      val vdegs2 = map dest_varpow (powervars tm2)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   362
      val deg1 = fold_rev ((curry (op +)) o snd) vdegs1 num_0
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   363
      val deg2 = fold_rev ((curry (op +)) o snd) vdegs2 num_0
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   364
  in if deg1 < deg2 then ~1 else if deg1 > deg2 then 1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   365
                            else lexorder vdegs1 vdegs2
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   366
  end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   367
 end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   368
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   369
(* Addition of two polynomials.                                              *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   370
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   371
val polynomial_add_conv =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   372
 let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   373
 fun dezero_rule th =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   374
  let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   375
   val tm = concl th
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   376
  in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   377
   if not(is_add tm) then th else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   378
   let val (lopr,r) = Thm.dest_comb tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   379
       val l = Thm.dest_arg lopr
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   380
   in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   381
    if l aconvc zero_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   382
    then transitive th (inst_thm [(ca,r)] pthm_07)   else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   383
        if r aconvc zero_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   384
        then transitive th (inst_thm [(ca,l)] pthm_08)  else th
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   385
   end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   386
  end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   387
 fun padd tm =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   388
  let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   389
   val (l,r) = dest_add tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   390
  in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   391
   if l aconvc zero_tm then inst_thm [(ca,r)] pthm_07
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   392
   else if r aconvc zero_tm then inst_thm [(ca,l)] pthm_08
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   393
   else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   394
    if is_add l
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   395
    then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   396
     let val (a,b) = dest_add l
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   397
     in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   398
     if is_add r then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   399
      let val (c,d) = dest_add r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   400
          val ord = morder a c
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   401
      in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   402
       if ord = 0 then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   403
        let val th1 = inst_thm [(ca,a),(cb,b),(cc,c),(cd,d)] pthm_23
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   404
            val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   405
            val (tm3,tm4) = Thm.dest_comb tm1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   406
            val th2 = Drule.arg_cong_rule tm3 (monomial_add_conv tm4)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   407
        in dezero_rule (transitive th1 (combination th2 (padd tm2)))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   408
        end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   409
       else (* ord <> 0*)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   410
        let val th1 =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   411
                if ord > 0 then inst_thm [(ca,a),(cb,b),(cc,r)] pthm_24
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   412
                else inst_thm [(ca,l),(cc,c),(cd,d)] pthm_25
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   413
            val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   414
        in dezero_rule (transitive th1 (Drule.arg_cong_rule tm1 (padd tm2)))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   415
        end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   416
      end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   417
     else (* not (is_add r)*)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   418
      let val ord = morder a r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   419
      in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   420
       if ord = 0 then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   421
        let val th1 = inst_thm [(ca,a),(cb,b),(cc,r)] pthm_26
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   422
            val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   423
            val (tm3,tm4) = Thm.dest_comb tm1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   424
            val th2 = Drule.fun_cong_rule (Drule.arg_cong_rule tm3 (monomial_add_conv tm4)) tm2
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   425
        in dezero_rule (transitive th1 th2)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   426
        end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   427
       else (* ord <> 0*)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   428
        if ord > 0 then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   429
          let val th1 = inst_thm [(ca,a),(cb,b),(cc,r)] pthm_24
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   430
              val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   431
          in dezero_rule (transitive th1 (Drule.arg_cong_rule tm1 (padd tm2)))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   432
          end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   433
        else dezero_rule (inst_thm [(ca,l),(cc,r)] pthm_27)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   434
      end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   435
    end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   436
   else (* not (is_add l)*)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   437
    if is_add r then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   438
      let val (c,d) = dest_add r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   439
          val  ord = morder l c
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   440
      in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   441
       if ord = 0 then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   442
         let val th1 = inst_thm [(ca,l),(cc,c),(cd,d)] pthm_28
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   443
             val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   444
             val (tm3,tm4) = Thm.dest_comb tm1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   445
             val th2 = Drule.fun_cong_rule (Drule.arg_cong_rule tm3 (monomial_add_conv tm4)) tm2
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   446
         in dezero_rule (transitive th1 th2)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   447
         end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   448
       else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   449
        if ord > 0 then reflexive tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   450
        else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   451
         let val th1 = inst_thm [(ca,l),(cc,c),(cd,d)] pthm_25
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   452
             val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   453
         in dezero_rule (transitive th1 (Drule.arg_cong_rule tm1 (padd tm2)))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   454
         end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   455
      end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   456
    else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   457
     let val ord = morder l r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   458
     in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   459
      if ord = 0 then monomial_add_conv tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   460
      else if ord > 0 then dezero_rule(reflexive tm)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   461
      else dezero_rule (inst_thm [(ca,l),(cc,r)] pthm_27)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   462
     end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   463
  end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   464
 in padd
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   465
 end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   466
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   467
(* Multiplication of two polynomials.                                        *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   468
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   469
val polynomial_mul_conv =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   470
 let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   471
  fun pmul tm =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   472
   let val (l,r) = dest_mul tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   473
   in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   474
    if not(is_add l) then polynomial_monomial_mul_conv tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   475
    else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   476
     if not(is_add r) then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   477
      let val th1 = inst_thm [(ca,l),(cb,r)] pthm_09
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   478
      in transitive th1 (polynomial_monomial_mul_conv(concl th1))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   479
      end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   480
     else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   481
       let val (a,b) = dest_add l
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   482
           val th1 = inst_thm [(ca,a),(cb,b),(cc,r)] pthm_10
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   483
           val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   484
           val (tm3,tm4) = Thm.dest_comb tm1
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   485
           val th2 = Drule.arg_cong_rule tm3 (polynomial_monomial_mul_conv tm4)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   486
           val th3 = transitive th1 (combination th2 (pmul tm2))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   487
       in transitive th3 (polynomial_add_conv (concl th3))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   488
       end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   489
   end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   490
 in fn tm =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   491
   let val (l,r) = dest_mul tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   492
   in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   493
    if l aconvc zero_tm then inst_thm [(ca,r)] pthm_11
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   494
    else if r aconvc zero_tm then inst_thm [(ca,l)] pthm_12
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   495
    else if l aconvc one_tm then inst_thm [(ca,r)] pthm_13
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   496
    else if r aconvc one_tm then inst_thm [(ca,l)] pthm_14
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   497
    else pmul tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   498
   end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   499
 end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   500
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   501
(* Power of polynomial (optimized for the monomial and trivial cases).       *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   502
23580
998a6fda9bb6 moved mk_cnumeral/mk_cnumber to Tools/numeral.ML;
wenzelm
parents: 23559
diff changeset
   503
fun num_conv n =
998a6fda9bb6 moved mk_cnumeral/mk_cnumber to Tools/numeral.ML;
wenzelm
parents: 23559
diff changeset
   504
  nat_add_conv (Thm.capply @{cterm Suc} (Numeral.mk_cnumber @{ctyp nat} (dest_numeral n - 1)))
998a6fda9bb6 moved mk_cnumeral/mk_cnumber to Tools/numeral.ML;
wenzelm
parents: 23559
diff changeset
   505
  |> Thm.symmetric;
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   506
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   507
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   508
val polynomial_pow_conv =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   509
 let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   510
  fun ppow tm =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   511
    let val (l,n) = dest_pow tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   512
    in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   513
     if n aconvc zeron_tm then inst_thm [(cx,l)] pthm_35
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   514
     else if n aconvc onen_tm then inst_thm [(cx,l)] pthm_36
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   515
     else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   516
         let val th1 = num_conv n
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   517
             val th2 = inst_thm [(cx,l),(cq,Thm.dest_arg (concl th1))] pthm_38
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   518
             val (tm1,tm2) = Thm.dest_comb(concl th2)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   519
             val th3 = transitive th2 (Drule.arg_cong_rule tm1 (ppow tm2))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   520
             val th4 = transitive (Drule.arg_cong_rule (Thm.dest_fun tm) th1) th3
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   521
         in transitive th4 (polynomial_mul_conv (concl th4))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   522
         end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   523
    end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   524
 in fn tm =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   525
       if is_add(Thm.dest_arg1 tm) then ppow tm else monomial_pow_conv tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   526
 end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   527
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   528
(* Negation.                                                                 *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   529
23580
998a6fda9bb6 moved mk_cnumeral/mk_cnumber to Tools/numeral.ML;
wenzelm
parents: 23559
diff changeset
   530
fun polynomial_neg_conv tm =
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   531
   let val (l,r) = Thm.dest_comb tm in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   532
        if not (l aconvc neg_tm) then raise CTERM ("polynomial_neg_conv",[tm]) else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   533
        let val th1 = inst_thm [(cx',r)] neg_mul
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   534
            val th2 = transitive th1 (arg1_conv semiring_mul_conv (concl th1))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   535
        in transitive th2 (polynomial_monomial_mul_conv (concl th2))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   536
        end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   537
   end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   538
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   539
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   540
(* Subtraction.                                                              *)
23580
998a6fda9bb6 moved mk_cnumeral/mk_cnumber to Tools/numeral.ML;
wenzelm
parents: 23559
diff changeset
   541
fun polynomial_sub_conv tm =
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   542
  let val (l,r) = dest_sub tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   543
      val th1 = inst_thm [(cx',l),(cy',r)] sub_add
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   544
      val (tm1,tm2) = Thm.dest_comb(concl th1)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   545
      val th2 = Drule.arg_cong_rule tm1 (polynomial_neg_conv tm2)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   546
  in transitive th1 (transitive th2 (polynomial_add_conv (concl th2)))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   547
  end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   548
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   549
(* Conversion from HOL term.                                                 *)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   550
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   551
fun polynomial_conv tm =
23407
0e4452fcbeb8 normalizer conversions depend on the proof context; added functions for conversion and wrapper that sill depend on the variable ordering (_ord)
chaieb
parents: 23330
diff changeset
   552
 if is_semiring_constant tm then semiring_add_conv tm
0e4452fcbeb8 normalizer conversions depend on the proof context; added functions for conversion and wrapper that sill depend on the variable ordering (_ord)
chaieb
parents: 23330
diff changeset
   553
 else if not(is_comb tm) then reflexive tm
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   554
 else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   555
  let val (lopr,r) = Thm.dest_comb tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   556
  in if lopr aconvc neg_tm then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   557
       let val th1 = Drule.arg_cong_rule lopr (polynomial_conv r)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   558
       in transitive th1 (polynomial_neg_conv (concl th1))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   559
       end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   560
     else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   561
       if not(is_comb lopr) then reflexive tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   562
       else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   563
         let val (opr,l) = Thm.dest_comb lopr
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   564
         in if opr aconvc pow_tm andalso is_numeral r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   565
            then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   566
              let val th1 = Drule.fun_cong_rule (Drule.arg_cong_rule opr (polynomial_conv l)) r
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   567
              in transitive th1 (polynomial_pow_conv (concl th1))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   568
              end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   569
            else
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   570
              if opr aconvc add_tm orelse opr aconvc mul_tm orelse opr aconvc sub_tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   571
              then
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   572
               let val th1 = combination (Drule.arg_cong_rule opr (polynomial_conv l)) (polynomial_conv r)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   573
                   val f = if opr aconvc add_tm then polynomial_add_conv
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   574
                      else if opr aconvc mul_tm then polynomial_mul_conv
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   575
                      else polynomial_sub_conv
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   576
               in transitive th1 (f (concl th1))
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   577
               end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   578
              else reflexive tm
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   579
         end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   580
  end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   581
 in
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   582
   {main = polynomial_conv,
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   583
    add = polynomial_add_conv,
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   584
    mul = polynomial_mul_conv,
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   585
    pow = polynomial_pow_conv,
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   586
    neg = polynomial_neg_conv,
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   587
    sub = polynomial_sub_conv}
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   588
 end
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   589
end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   590
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   591
val nat_arith = @{thms "nat_arith"};
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   592
val nat_exp_ss = HOL_basic_ss addsimps (nat_number @ nat_arith @ arith_simps @ rel_simps)
23880
64b9806e160b dropped Nat.ML legacy bindings
haftmann
parents: 23580
diff changeset
   593
                              addsimps [Let_def, if_False, if_True, @{thm add_0}, @{thm add_Suc}];
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   594
23407
0e4452fcbeb8 normalizer conversions depend on the proof context; added functions for conversion and wrapper that sill depend on the variable ordering (_ord)
chaieb
parents: 23330
diff changeset
   595
fun simple_cterm_ord t u = Term.term_ord (term_of t, term_of u) = LESS;
0e4452fcbeb8 normalizer conversions depend on the proof context; added functions for conversion and wrapper that sill depend on the variable ordering (_ord)
chaieb
parents: 23330
diff changeset
   596
fun semiring_normalize_ord_wrapper ctxt ({vars, semiring, ring, idom}, 
0e4452fcbeb8 normalizer conversions depend on the proof context; added functions for conversion and wrapper that sill depend on the variable ordering (_ord)
chaieb
parents: 23330
diff changeset
   597
                                     {conv, dest_const, mk_const, is_const}) ord =
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   598
  let
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   599
    val pow_conv =
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   600
      arg_conv (Simplifier.rewrite nat_exp_ss)
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   601
      then_conv Simplifier.rewrite
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   602
        (HOL_basic_ss addsimps [nth (snd semiring) 31, nth (snd semiring) 34])
23330
01c09922ce59 Conversion for computation on constants now depends on the context
chaieb
parents: 23259
diff changeset
   603
      then_conv conv ctxt
01c09922ce59 Conversion for computation on constants now depends on the context
chaieb
parents: 23259
diff changeset
   604
    val dat = (is_const, conv ctxt, conv ctxt, pow_conv)
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   605
    val {main, ...} = semiring_normalizers_conv vars semiring ring dat ord
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   606
  in main end;
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   607
23407
0e4452fcbeb8 normalizer conversions depend on the proof context; added functions for conversion and wrapper that sill depend on the variable ordering (_ord)
chaieb
parents: 23330
diff changeset
   608
fun semiring_normalize_wrapper ctxt data = 
0e4452fcbeb8 normalizer conversions depend on the proof context; added functions for conversion and wrapper that sill depend on the variable ordering (_ord)
chaieb
parents: 23330
diff changeset
   609
  semiring_normalize_ord_wrapper ctxt data simple_cterm_ord;
0e4452fcbeb8 normalizer conversions depend on the proof context; added functions for conversion and wrapper that sill depend on the variable ordering (_ord)
chaieb
parents: 23330
diff changeset
   610
0e4452fcbeb8 normalizer conversions depend on the proof context; added functions for conversion and wrapper that sill depend on the variable ordering (_ord)
chaieb
parents: 23330
diff changeset
   611
fun semiring_normalize_ord_conv ctxt ord tm =
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   612
  (case NormalizerData.match ctxt tm of
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   613
    NONE => reflexive tm
23407
0e4452fcbeb8 normalizer conversions depend on the proof context; added functions for conversion and wrapper that sill depend on the variable ordering (_ord)
chaieb
parents: 23330
diff changeset
   614
  | SOME res => semiring_normalize_ord_wrapper ctxt res ord tm);
0e4452fcbeb8 normalizer conversions depend on the proof context; added functions for conversion and wrapper that sill depend on the variable ordering (_ord)
chaieb
parents: 23330
diff changeset
   615
 
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   616
23407
0e4452fcbeb8 normalizer conversions depend on the proof context; added functions for conversion and wrapper that sill depend on the variable ordering (_ord)
chaieb
parents: 23330
diff changeset
   617
fun semiring_normalize_conv ctxt = semiring_normalize_ord_conv ctxt simple_cterm_ord;
23252
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   618
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   619
fun semiring_normalize_tac ctxt = SUBGOAL (fn (goal, i) =>
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   620
  rtac (semiring_normalize_conv ctxt
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   621
    (cterm_of (ProofContext.theory_of ctxt) (fst (Logic.dest_equals goal)))) i);
67268bb40b21 Semiring normalization and Groebner Bases.
wenzelm
parents:
diff changeset
   622
end;