src/HOL/Library/Commutative_Ring.thy
author haftmann
Mon, 07 Jul 2008 08:47:17 +0200
changeset 27487 c8a6ce181805
parent 27368 9f90ac19e32b
child 28952 15a4b2cf8c34
permissions -rw-r--r--
absolute imports of HOL/*.thy theories
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
     1
(*  ID:         $Id$
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
     2
    Author:     Bernhard Haeupler
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
     3
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
     4
Proving equalities in commutative rings done "right" in Isabelle/HOL.
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
     5
*)
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
     6
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
     7
header {* Proving equalities in commutative rings *}
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
     8
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
     9
theory Commutative_Ring
27487
c8a6ce181805 absolute imports of HOL/*.thy theories
haftmann
parents: 27368
diff changeset
    10
imports Plain "~~/src/HOL/List" Parity
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    11
uses ("comm_ring.ML")
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    12
begin
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    13
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    14
text {* Syntax of multivariate polynomials (pol) and polynomial expressions. *}
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    15
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    16
datatype 'a pol =
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    17
    Pc 'a
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    18
  | Pinj nat "'a pol"
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    19
  | PX "'a pol" nat "'a pol"
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    20
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    21
datatype 'a polex =
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
    22
    Pol "'a pol"
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    23
  | Add "'a polex" "'a polex"
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    24
  | Sub "'a polex" "'a polex"
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    25
  | Mul "'a polex" "'a polex"
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    26
  | Pow "'a polex" nat
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    27
  | Neg "'a polex"
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    28
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    29
text {* Interpretation functions for the shadow syntax. *}
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    30
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    31
fun
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    32
  Ipol :: "'a::{comm_ring,recpower} list \<Rightarrow> 'a pol \<Rightarrow> 'a"
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    33
where
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    34
    "Ipol l (Pc c) = c"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    35
  | "Ipol l (Pinj i P) = Ipol (drop i l) P"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    36
  | "Ipol l (PX P x Q) = Ipol l P * (hd l)^x + Ipol (drop 1 l) Q"
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    37
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    38
fun
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    39
  Ipolex :: "'a::{comm_ring,recpower} list \<Rightarrow> 'a polex \<Rightarrow> 'a"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    40
where
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    41
    "Ipolex l (Pol P) = Ipol l P"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    42
  | "Ipolex l (Add P Q) = Ipolex l P + Ipolex l Q"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    43
  | "Ipolex l (Sub P Q) = Ipolex l P - Ipolex l Q"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    44
  | "Ipolex l (Mul P Q) = Ipolex l P * Ipolex l Q"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    45
  | "Ipolex l (Pow p n) = Ipolex l p ^ n"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    46
  | "Ipolex l (Neg P) = - Ipolex l P"
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    47
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    48
text {* Create polynomial normalized polynomials given normalized inputs. *}
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    49
19736
wenzelm
parents: 18708
diff changeset
    50
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21256
diff changeset
    51
  mkPinj :: "nat \<Rightarrow> 'a pol \<Rightarrow> 'a pol" where
19736
wenzelm
parents: 18708
diff changeset
    52
  "mkPinj x P = (case P of
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    53
    Pc c \<Rightarrow> Pc c |
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    54
    Pinj y P \<Rightarrow> Pinj (x + y) P |
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    55
    PX p1 y p2 \<Rightarrow> Pinj x P)"
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    56
19736
wenzelm
parents: 18708
diff changeset
    57
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21256
diff changeset
    58
  mkPX :: "'a::{comm_ring,recpower} pol \<Rightarrow> nat \<Rightarrow> 'a pol \<Rightarrow> 'a pol" where
19736
wenzelm
parents: 18708
diff changeset
    59
  "mkPX P i Q = (case P of
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    60
    Pc c \<Rightarrow> (if (c = 0) then (mkPinj 1 Q) else (PX P i Q)) |
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    61
    Pinj j R \<Rightarrow> PX P i Q |
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    62
    PX P2 i2 Q2 \<Rightarrow> (if (Q2 = (Pc 0)) then (PX P2 (i+i2) Q) else (PX P i Q)) )"
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    63
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    64
text {* Defining the basic ring operations on normalized polynomials *}
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    65
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    66
function
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    67
  add :: "'a::{comm_ring,recpower} pol \<Rightarrow> 'a pol \<Rightarrow> 'a pol" (infixl "\<oplus>" 65)
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    68
where
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    69
    "Pc a \<oplus> Pc b = Pc (a + b)"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    70
  | "Pc c \<oplus> Pinj i P = Pinj i (P \<oplus> Pc c)"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    71
  | "Pinj i P \<oplus> Pc c = Pinj i (P \<oplus> Pc c)"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    72
  | "Pc c \<oplus> PX P i Q = PX P i (Q \<oplus> Pc c)"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    73
  | "PX P i Q \<oplus> Pc c = PX P i (Q \<oplus> Pc c)"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    74
  | "Pinj x P \<oplus> Pinj y Q =
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    75
      (if x = y then mkPinj x (P \<oplus> Q)
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    76
       else (if x > y then mkPinj y (Pinj (x - y) P \<oplus> Q)
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    77
         else mkPinj x (Pinj (y - x) Q \<oplus> P)))"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    78
  | "Pinj x P \<oplus> PX Q y R =
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    79
      (if x = 0 then P \<oplus> PX Q y R
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    80
       else (if x = 1 then PX Q y (R \<oplus> P)
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    81
         else PX Q y (R \<oplus> Pinj (x - 1) P)))"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    82
  | "PX P x R \<oplus> Pinj y Q =
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    83
      (if y = 0 then PX P x R \<oplus> Q
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    84
       else (if y = 1 then PX P x (R \<oplus> Q)
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    85
         else PX P x (R \<oplus> Pinj (y - 1) Q)))"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    86
  | "PX P1 x P2 \<oplus> PX Q1 y Q2 =
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    87
      (if x = y then mkPX (P1 \<oplus> Q1) x (P2 \<oplus> Q2)
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    88
       else (if x > y then mkPX (PX P1 (x - y) (Pc 0) \<oplus> Q1) y (P2 \<oplus> Q2)
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    89
         else mkPX (PX Q1 (y-x) (Pc 0) \<oplus> P1) x (P2 \<oplus> Q2)))"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    90
by pat_completeness auto
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    91
termination by (relation "measure (\<lambda>(x, y). size x + size y)") auto
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
    92
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    93
function
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    94
  mul :: "'a::{comm_ring,recpower} pol \<Rightarrow> 'a pol \<Rightarrow> 'a pol" (infixl "\<otimes>" 70)
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    95
where
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    96
    "Pc a \<otimes> Pc b = Pc (a * b)"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    97
  | "Pc c \<otimes> Pinj i P =
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    98
      (if c = 0 then Pc 0 else mkPinj i (P \<otimes> Pc c))"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
    99
  | "Pinj i P \<otimes> Pc c =
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   100
      (if c = 0 then Pc 0 else mkPinj i (P \<otimes> Pc c))"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   101
  | "Pc c \<otimes> PX P i Q =
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   102
      (if c = 0 then Pc 0 else mkPX (P \<otimes> Pc c) i (Q \<otimes> Pc c))"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   103
  | "PX P i Q \<otimes> Pc c =
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   104
      (if c = 0 then Pc 0 else mkPX (P \<otimes> Pc c) i (Q \<otimes> Pc c))"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   105
  | "Pinj x P \<otimes> Pinj y Q =
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   106
      (if x = y then mkPinj x (P \<otimes> Q) else
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   107
         (if x > y then mkPinj y (Pinj (x-y) P \<otimes> Q)
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   108
           else mkPinj x (Pinj (y - x) Q \<otimes> P)))"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   109
  | "Pinj x P \<otimes> PX Q y R =
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   110
      (if x = 0 then P \<otimes> PX Q y R else
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   111
         (if x = 1 then mkPX (Pinj x P \<otimes> Q) y (R \<otimes> P)
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   112
           else mkPX (Pinj x P \<otimes> Q) y (R \<otimes> Pinj (x - 1) P)))"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   113
  | "PX P x R \<otimes> Pinj y Q =
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   114
      (if y = 0 then PX P x R \<otimes> Q else
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   115
         (if y = 1 then mkPX (Pinj y Q \<otimes> P) x (R \<otimes> Q)
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   116
           else mkPX (Pinj y Q \<otimes> P) x (R \<otimes> Pinj (y - 1) Q)))"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   117
  | "PX P1 x P2 \<otimes> PX Q1 y Q2 =
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   118
      mkPX (P1 \<otimes> Q1) (x + y) (P2 \<otimes> Q2) \<oplus>
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   119
        (mkPX (P1 \<otimes> mkPinj 1 Q2) x (Pc 0) \<oplus>
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   120
          (mkPX (Q1 \<otimes> mkPinj 1 P2) y (Pc 0)))"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   121
by pat_completeness auto
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   122
termination by (relation "measure (\<lambda>(x, y). size x + size y)")
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   123
  (auto simp add: mkPinj_def split: pol.split)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   124
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   125
text {* Negation*}
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   126
fun
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   127
  neg :: "'a::{comm_ring,recpower} pol \<Rightarrow> 'a pol"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   128
where
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   129
    "neg (Pc c) = Pc (-c)"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   130
  | "neg (Pinj i P) = Pinj i (neg P)"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   131
  | "neg (PX P x Q) = PX (neg P) x (neg Q)"
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   132
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   133
text {* Substraction *}
19736
wenzelm
parents: 18708
diff changeset
   134
definition
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   135
  sub :: "'a::{comm_ring,recpower} pol \<Rightarrow> 'a pol \<Rightarrow> 'a pol" (infixl "\<ominus>" 65)
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   136
where
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   137
  "sub P Q = P \<oplus> neg Q"
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   138
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   139
text {* Square for Fast Exponentation *}
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   140
fun
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   141
  sqr :: "'a::{comm_ring,recpower} pol \<Rightarrow> 'a pol"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   142
where
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   143
    "sqr (Pc c) = Pc (c * c)"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   144
  | "sqr (Pinj i P) = mkPinj i (sqr P)"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   145
  | "sqr (PX A x B) = mkPX (sqr A) (x + x) (sqr B) \<oplus>
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   146
      mkPX (Pc (1 + 1) \<otimes> A \<otimes> mkPinj 1 B) x (Pc 0)"
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   147
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   148
text {* Fast Exponentation *}
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   149
fun
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   150
  pow :: "nat \<Rightarrow> 'a::{comm_ring,recpower} pol \<Rightarrow> 'a pol"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   151
where
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   152
    "pow 0 P = Pc 1"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   153
  | "pow n P = (if even n then pow (n div 2) (sqr P)
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   154
       else P \<otimes> pow (n div 2) (sqr P))"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   155
  
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   156
lemma pow_if:
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   157
  "pow n P =
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   158
   (if n = 0 then Pc 1 else if even n then pow (n div 2) (sqr P)
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   159
    else P \<otimes> pow (n div 2) (sqr P))"
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   160
  by (cases n) simp_all
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   161
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   162
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   163
text {* Normalization of polynomial expressions *}
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   164
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   165
fun
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   166
  norm :: "'a::{comm_ring,recpower} polex \<Rightarrow> 'a pol"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   167
where
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   168
    "norm (Pol P) = P"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   169
  | "norm (Add P Q) = norm P \<oplus> norm Q"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   170
  | "norm (Sub P Q) = norm P \<ominus> norm Q"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   171
  | "norm (Mul P Q) = norm P \<otimes> norm Q"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   172
  | "norm (Pow P n) = pow n (norm P)"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   173
  | "norm (Neg P) = neg (norm P)"
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   174
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   175
text {* mkPinj preserve semantics *}
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   176
lemma mkPinj_ci: "Ipol l (mkPinj a B) = Ipol l (Pinj a B)"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22742
diff changeset
   177
  by (induct B) (auto simp add: mkPinj_def ring_simps)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   178
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   179
text {* mkPX preserves semantics *}
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   180
lemma mkPX_ci: "Ipol l (mkPX A b C) = Ipol l (PX A b C)"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22742
diff changeset
   181
  by (cases A) (auto simp add: mkPX_def mkPinj_ci power_add ring_simps)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   182
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   183
text {* Correctness theorems for the implemented operations *}
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   184
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   185
text {* Negation *}
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   186
lemma neg_ci: "Ipol l (neg P) = -(Ipol l P)"
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   187
  by (induct P arbitrary: l) auto
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   188
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   189
text {* Addition *}
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   190
lemma add_ci: "Ipol l (P \<oplus> Q) = Ipol l P + Ipol l Q"
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   191
proof (induct P Q arbitrary: l rule: add.induct)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   192
  case (6 x P y Q)
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   193
  show ?case
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   194
  proof (rule linorder_cases)
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   195
    assume "x < y"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22742
diff changeset
   196
    with 6 show ?case by (simp add: mkPinj_ci ring_simps)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   197
  next
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   198
    assume "x = y"
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   199
    with 6 show ?case by (simp add: mkPinj_ci)
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   200
  next
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   201
    assume "x > y"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22742
diff changeset
   202
    with 6 show ?case by (simp add: mkPinj_ci ring_simps)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   203
  qed
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   204
next
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   205
  case (7 x P Q y R)
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   206
  have "x = 0 \<or> x = 1 \<or> x > 1" by arith
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   207
  moreover
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   208
  { assume "x = 0" with 7 have ?case by simp }
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   209
  moreover
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22742
diff changeset
   210
  { assume "x = 1" with 7 have ?case by (simp add: ring_simps) }
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   211
  moreover
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   212
  { assume "x > 1" from 7 have ?case by (cases x) simp_all }
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   213
  ultimately show ?case by blast
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   214
next
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   215
  case (8 P x R y Q)
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   216
  have "y = 0 \<or> y = 1 \<or> y > 1" by arith
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   217
  moreover
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   218
  { assume "y = 0" with 8 have ?case by simp }
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   219
  moreover
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   220
  { assume "y = 1" with 8 have ?case by simp }
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   221
  moreover
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   222
  { assume "y > 1" with 8 have ?case by simp }
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   223
  ultimately show ?case by blast
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   224
next
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   225
  case (9 P1 x P2 Q1 y Q2)
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   226
  show ?case
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   227
  proof (rule linorder_cases)
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   228
    assume a: "x < y" hence "EX d. d + x = y" by arith
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22742
diff changeset
   229
    with 9 a show ?case by (auto simp add: mkPX_ci power_add ring_simps)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   230
  next
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   231
    assume a: "y < x" hence "EX d. d + y = x" by arith
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22742
diff changeset
   232
    with 9 a show ?case by (auto simp add: power_add mkPX_ci ring_simps)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   233
  next
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   234
    assume "x = y"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22742
diff changeset
   235
    with 9 show ?case by (simp add: mkPX_ci ring_simps)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   236
  qed
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22742
diff changeset
   237
qed (auto simp add: ring_simps)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   238
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   239
text {* Multiplication *}
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   240
lemma mul_ci: "Ipol l (P \<otimes> Q) = Ipol l P * Ipol l Q"
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   241
  by (induct P Q arbitrary: l rule: mul.induct)
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22742
diff changeset
   242
    (simp_all add: mkPX_ci mkPinj_ci ring_simps add_ci power_add)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   243
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   244
text {* Substraction *}
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   245
lemma sub_ci: "Ipol l (P \<ominus> Q) = Ipol l P - Ipol l Q"
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   246
  by (simp add: add_ci neg_ci sub_def)
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   247
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   248
text {* Square *}
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   249
lemma sqr_ci: "Ipol ls (sqr P) = Ipol ls P * Ipol ls P"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   250
  by (induct P arbitrary: ls)
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 22742
diff changeset
   251
    (simp_all add: add_ci mkPinj_ci mkPX_ci mul_ci ring_simps power_add)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   252
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   253
text {* Power *}
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   254
lemma even_pow:"even n \<Longrightarrow> pow n P = pow (n div 2) (sqr P)"
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   255
  by (induct n) simp_all
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   256
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   257
lemma pow_ci: "Ipol ls (pow n P) = Ipol ls P ^ n"
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   258
proof (induct n arbitrary: P rule: nat_less_induct)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   259
  case (1 k)
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   260
  show ?case
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   261
  proof (cases k)
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   262
    case 0
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   263
    then show ?thesis by simp
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   264
  next
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   265
    case (Suc l)
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   266
    show ?thesis
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   267
    proof cases
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   268
      assume "even l"
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   269
      then have "Suc l div 2 = l div 2"
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   270
        by (simp add: nat_number even_nat_plus_one_div_two)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   271
      moreover
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   272
      from Suc have "l < k" by simp
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   273
      with 1 have "\<And>P. Ipol ls (pow l P) = Ipol ls P ^ l" by simp
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   274
      moreover
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   275
      note Suc `even l` even_nat_plus_one_div_two
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   276
      ultimately show ?thesis by (auto simp add: mul_ci power_Suc even_pow)
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   277
    next
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   278
      assume "odd l"
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   279
      {
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   280
        fix p
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   281
        have "Ipol ls (sqr P) ^ (Suc l div 2) = Ipol ls P ^ Suc l"
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   282
        proof (cases l)
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   283
          case 0
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   284
          with `odd l` show ?thesis by simp
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   285
        next
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   286
          case (Suc w)
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   287
          with `odd l` have "even w" by simp
20678
f6d602833557 tuned proofs;
wenzelm
parents: 20622
diff changeset
   288
          have two_times: "2 * (w div 2) = w"
f6d602833557 tuned proofs;
wenzelm
parents: 20622
diff changeset
   289
            by (simp only: numerals even_nat_div_two_times_two [OF `even w`])
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   290
          have "Ipol ls P * Ipol ls P = Ipol ls P ^ Suc (Suc 0)"
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   291
            by (simp add: power_Suc)
22742
06165e40e7bd switched from recdef to function package; constants add, mul, pow now curried; infix syntax for algebraic operations.
haftmann
parents: 22665
diff changeset
   292
	  then have "Ipol ls P * Ipol ls P = Ipol ls P ^ 2"
20678
f6d602833557 tuned proofs;
wenzelm
parents: 20622
diff changeset
   293
	    by (simp add: numerals)
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   294
          with Suc show ?thesis
20678
f6d602833557 tuned proofs;
wenzelm
parents: 20622
diff changeset
   295
            by (auto simp add: power_mult [symmetric, of _ 2 _] two_times mul_ci sqr_ci)
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   296
        qed
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   297
      } with 1 Suc `odd l` show ?thesis by simp
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   298
    qed
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   299
  qed
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   300
qed
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   301
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   302
text {* Normalization preserves semantics  *}
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   303
lemma norm_ci: "Ipolex l Pe = Ipol l (norm Pe)"
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   304
  by (induct Pe) (simp_all add: add_ci sub_ci mul_ci neg_ci pow_ci)
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   305
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   306
text {* Reflection lemma: Key to the (incomplete) decision procedure *}
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   307
lemma norm_eq:
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   308
  assumes "norm P1 = norm P2"
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   309
  shows "Ipolex l P1 = Ipolex l P2"
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   310
proof -
20622
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   311
  from prems have "Ipol l (norm P1) = Ipol l (norm P2)" by simp
e1a573146be5 tuned proofs;
wenzelm
parents: 19736
diff changeset
   312
  then show ?thesis by (simp only: norm_ci)
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   313
qed
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   314
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   315
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   316
use "comm_ring.ML"
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 17516
diff changeset
   317
setup CommRing.setup
17516
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   318
45164074dad4 added Commutative_Ring (from Main HOL);
wenzelm
parents:
diff changeset
   319
end