src/HOL/Decision_Procs/Reflected_Multivariate_Polynomial.thy
author wenzelm
Mon, 21 Feb 2011 23:47:19 +0100
changeset 42686 ab5d2d81f9fb
parent 42634 8ce56536fda7
child 42687 7a55699805dc
permissions -rw-r--r--
tuned proofs -- eliminated prems;
chaieb@33154
     1
(*  Title:      HOL/Decision_Procs/Reflected_Multivariate_Polynomial.thy
chaieb@33154
     2
    Author:     Amine Chaieb
chaieb@33154
     3
*)
chaieb@33154
     4
haftmann@35046
     5
header {* Implementation and verification of multivariate polynomials *}
chaieb@33154
     6
chaieb@33154
     7
theory Reflected_Multivariate_Polynomial
wenzelm@41661
     8
imports Complex_Main "~~/src/HOL/Library/Abstract_Rat" Polynomial_List
chaieb@33154
     9
begin
chaieb@33154
    10
haftmann@35046
    11
  (* Implementation *)
chaieb@33154
    12
chaieb@33154
    13
subsection{* Datatype of polynomial expressions *} 
chaieb@33154
    14
chaieb@33154
    15
datatype poly = C Num| Bound nat| Add poly poly|Sub poly poly
chaieb@33154
    16
  | Mul poly poly| Neg poly| Pw poly nat| CN poly nat poly
chaieb@33154
    17
wenzelm@35054
    18
abbreviation poly_0 :: "poly" ("0\<^sub>p") where "0\<^sub>p \<equiv> C (0\<^sub>N)"
wenzelm@35054
    19
abbreviation poly_p :: "int \<Rightarrow> poly" ("_\<^sub>p") where "i\<^sub>p \<equiv> C (i\<^sub>N)"
chaieb@33154
    20
chaieb@33154
    21
subsection{* Boundedness, substitution and all that *}
haftmann@39473
    22
primrec polysize:: "poly \<Rightarrow> nat" where
chaieb@33154
    23
  "polysize (C c) = 1"
haftmann@39473
    24
| "polysize (Bound n) = 1"
haftmann@39473
    25
| "polysize (Neg p) = 1 + polysize p"
haftmann@39473
    26
| "polysize (Add p q) = 1 + polysize p + polysize q"
haftmann@39473
    27
| "polysize (Sub p q) = 1 + polysize p + polysize q"
haftmann@39473
    28
| "polysize (Mul p q) = 1 + polysize p + polysize q"
haftmann@39473
    29
| "polysize (Pw p n) = 1 + polysize p"
haftmann@39473
    30
| "polysize (CN c n p) = 4 + polysize c + polysize p"
chaieb@33154
    31
haftmann@39473
    32
primrec polybound0:: "poly \<Rightarrow> bool" (* a poly is INDEPENDENT of Bound 0 *) where
chaieb@33154
    33
  "polybound0 (C c) = True"
haftmann@39473
    34
| "polybound0 (Bound n) = (n>0)"
haftmann@39473
    35
| "polybound0 (Neg a) = polybound0 a"
haftmann@39473
    36
| "polybound0 (Add a b) = (polybound0 a \<and> polybound0 b)"
haftmann@39473
    37
| "polybound0 (Sub a b) = (polybound0 a \<and> polybound0 b)" 
haftmann@39473
    38
| "polybound0 (Mul a b) = (polybound0 a \<and> polybound0 b)"
haftmann@39473
    39
| "polybound0 (Pw p n) = (polybound0 p)"
haftmann@39473
    40
| "polybound0 (CN c n p) = (n \<noteq> 0 \<and> polybound0 c \<and> polybound0 p)"
haftmann@39473
    41
haftmann@39473
    42
primrec polysubst0:: "poly \<Rightarrow> poly \<Rightarrow> poly" (* substitute a poly into a poly for Bound 0 *) where
chaieb@33154
    43
  "polysubst0 t (C c) = (C c)"
haftmann@39473
    44
| "polysubst0 t (Bound n) = (if n=0 then t else Bound n)"
haftmann@39473
    45
| "polysubst0 t (Neg a) = Neg (polysubst0 t a)"
haftmann@39473
    46
| "polysubst0 t (Add a b) = Add (polysubst0 t a) (polysubst0 t b)"
haftmann@39473
    47
| "polysubst0 t (Sub a b) = Sub (polysubst0 t a) (polysubst0 t b)" 
haftmann@39473
    48
| "polysubst0 t (Mul a b) = Mul (polysubst0 t a) (polysubst0 t b)"
haftmann@39473
    49
| "polysubst0 t (Pw p n) = Pw (polysubst0 t p) n"
haftmann@39473
    50
| "polysubst0 t (CN c n p) = (if n=0 then Add (polysubst0 t c) (Mul t (polysubst0 t p))
chaieb@33154
    51
                             else CN (polysubst0 t c) n (polysubst0 t p))"
chaieb@33154
    52
chaieb@33154
    53
consts 
chaieb@33154
    54
  decrpoly:: "poly \<Rightarrow> poly" 
chaieb@33154
    55
recdef decrpoly "measure polysize"
chaieb@33154
    56
  "decrpoly (Bound n) = Bound (n - 1)"
chaieb@33154
    57
  "decrpoly (Neg a) = Neg (decrpoly a)"
chaieb@33154
    58
  "decrpoly (Add a b) = Add (decrpoly a) (decrpoly b)"
chaieb@33154
    59
  "decrpoly (Sub a b) = Sub (decrpoly a) (decrpoly b)"
chaieb@33154
    60
  "decrpoly (Mul a b) = Mul (decrpoly a) (decrpoly b)"
chaieb@33154
    61
  "decrpoly (Pw p n) = Pw (decrpoly p) n"
chaieb@33154
    62
  "decrpoly (CN c n p) = CN (decrpoly c) (n - 1) (decrpoly p)"
chaieb@33154
    63
  "decrpoly a = a"
chaieb@33154
    64
chaieb@33154
    65
subsection{* Degrees and heads and coefficients *}
chaieb@33154
    66
chaieb@33154
    67
consts degree:: "poly \<Rightarrow> nat"
chaieb@33154
    68
recdef degree "measure size"
chaieb@33154
    69
  "degree (CN c 0 p) = 1 + degree p"
chaieb@33154
    70
  "degree p = 0"
chaieb@33154
    71
consts head:: "poly \<Rightarrow> poly"
chaieb@33154
    72
chaieb@33154
    73
recdef head "measure size"
chaieb@33154
    74
  "head (CN c 0 p) = head p"
chaieb@33154
    75
  "head p = p"
chaieb@33154
    76
  (* More general notions of degree and head *)
chaieb@33154
    77
consts degreen:: "poly \<Rightarrow> nat \<Rightarrow> nat"
chaieb@33154
    78
recdef degreen "measure size"
chaieb@33154
    79
  "degreen (CN c n p) = (\<lambda>m. if n=m then 1 + degreen p n else 0)"
chaieb@33154
    80
  "degreen p = (\<lambda>m. 0)"
chaieb@33154
    81
chaieb@33154
    82
consts headn:: "poly \<Rightarrow> nat \<Rightarrow> poly"
chaieb@33154
    83
recdef headn "measure size"
chaieb@33154
    84
  "headn (CN c n p) = (\<lambda>m. if n \<le> m then headn p m else CN c n p)"
chaieb@33154
    85
  "headn p = (\<lambda>m. p)"
chaieb@33154
    86
chaieb@33154
    87
consts coefficients:: "poly \<Rightarrow> poly list"
chaieb@33154
    88
recdef coefficients "measure size"
chaieb@33154
    89
  "coefficients (CN c 0 p) = c#(coefficients p)"
chaieb@33154
    90
  "coefficients p = [p]"
chaieb@33154
    91
chaieb@33154
    92
consts isconstant:: "poly \<Rightarrow> bool"
chaieb@33154
    93
recdef isconstant "measure size"
chaieb@33154
    94
  "isconstant (CN c 0 p) = False"
chaieb@33154
    95
  "isconstant p = True"
chaieb@33154
    96
chaieb@33154
    97
consts behead:: "poly \<Rightarrow> poly"
chaieb@33154
    98
recdef behead "measure size"
chaieb@33154
    99
  "behead (CN c 0 p) = (let p' = behead p in if p' = 0\<^sub>p then c else CN c 0 p')"
chaieb@33154
   100
  "behead p = 0\<^sub>p"
chaieb@33154
   101
chaieb@33154
   102
consts headconst:: "poly \<Rightarrow> Num"
chaieb@33154
   103
recdef headconst "measure size"
chaieb@33154
   104
  "headconst (CN c n p) = headconst p"
chaieb@33154
   105
  "headconst (C n) = n"
chaieb@33154
   106
chaieb@33154
   107
subsection{* Operations for normalization *}
chaieb@33154
   108
consts 
chaieb@33154
   109
  polyadd :: "poly\<times>poly \<Rightarrow> poly"
chaieb@33154
   110
  polyneg :: "poly \<Rightarrow> poly" ("~\<^sub>p")
chaieb@33154
   111
  polysub :: "poly\<times>poly \<Rightarrow> poly"
chaieb@33154
   112
  polymul :: "poly\<times>poly \<Rightarrow> poly"
chaieb@33154
   113
  polypow :: "nat \<Rightarrow> poly \<Rightarrow> poly"
wenzelm@35054
   114
abbreviation poly_add :: "poly \<Rightarrow> poly \<Rightarrow> poly" (infixl "+\<^sub>p" 60)
wenzelm@35054
   115
  where "a +\<^sub>p b \<equiv> polyadd (a,b)"
wenzelm@35054
   116
abbreviation poly_mul :: "poly \<Rightarrow> poly \<Rightarrow> poly" (infixl "*\<^sub>p" 60)
wenzelm@35054
   117
  where "a *\<^sub>p b \<equiv> polymul (a,b)"
wenzelm@35054
   118
abbreviation poly_sub :: "poly \<Rightarrow> poly \<Rightarrow> poly" (infixl "-\<^sub>p" 60)
wenzelm@35054
   119
  where "a -\<^sub>p b \<equiv> polysub (a,b)"
wenzelm@35054
   120
abbreviation poly_pow :: "poly \<Rightarrow> nat \<Rightarrow> poly" (infixl "^\<^sub>p" 60)
wenzelm@35054
   121
  where "a ^\<^sub>p k \<equiv> polypow k a"
chaieb@33154
   122
chaieb@33154
   123
recdef polyadd "measure (\<lambda> (a,b). polysize a + polysize b)"
chaieb@33154
   124
  "polyadd (C c, C c') = C (c+\<^sub>Nc')"
chaieb@33154
   125
  "polyadd (C c, CN c' n' p') = CN (polyadd (C c, c')) n' p'"
chaieb@33154
   126
  "polyadd (CN c n p, C c') = CN (polyadd (c, C c')) n p"
chaieb@33154
   127
stupid:  "polyadd (CN c n p, CN c' n' p') = 
chaieb@33154
   128
    (if n < n' then CN (polyadd(c,CN c' n' p')) n p
chaieb@33154
   129
     else if n'<n then CN (polyadd(CN c n p, c')) n' p'
chaieb@33154
   130
     else (let cc' = polyadd (c,c') ; 
chaieb@33154
   131
               pp' = polyadd (p,p')
chaieb@33154
   132
           in (if pp' = 0\<^sub>p then cc' else CN cc' n pp')))"
chaieb@33154
   133
  "polyadd (a, b) = Add a b"
krauss@42634
   134
(hints recdef_simp add: Let_def measure_def split_def inv_image_def recdef_cong del: if_cong)
chaieb@33154
   135
chaieb@33154
   136
recdef polyneg "measure size"
chaieb@33154
   137
  "polyneg (C c) = C (~\<^sub>N c)"
chaieb@33154
   138
  "polyneg (CN c n p) = CN (polyneg c) n (polyneg p)"
chaieb@33154
   139
  "polyneg a = Neg a"
chaieb@33154
   140
chaieb@33154
   141
defs polysub_def[code]: "polysub \<equiv> \<lambda> (p,q). polyadd (p,polyneg q)"
chaieb@33154
   142
chaieb@33154
   143
recdef polymul "measure (\<lambda>(a,b). size a + size b)"
chaieb@33154
   144
  "polymul(C c, C c') = C (c*\<^sub>Nc')"
chaieb@33154
   145
  "polymul(C c, CN c' n' p') = 
chaieb@33154
   146
      (if c = 0\<^sub>N then 0\<^sub>p else CN (polymul(C c,c')) n' (polymul(C c, p')))"
chaieb@33154
   147
  "polymul(CN c n p, C c') = 
chaieb@33154
   148
      (if c' = 0\<^sub>N  then 0\<^sub>p else CN (polymul(c,C c')) n (polymul(p, C c')))"
chaieb@33154
   149
  "polymul(CN c n p, CN c' n' p') = 
chaieb@33154
   150
  (if n<n' then CN (polymul(c,CN c' n' p')) n (polymul(p,CN c' n' p'))
chaieb@33154
   151
  else if n' < n 
chaieb@33154
   152
  then CN (polymul(CN c n p,c')) n' (polymul(CN c n p,p'))
chaieb@33154
   153
  else polyadd(polymul(CN c n p, c'),CN 0\<^sub>p n' (polymul(CN c n p, p'))))"
chaieb@33154
   154
  "polymul (a,b) = Mul a b"
chaieb@33154
   155
recdef polypow "measure id"
chaieb@33154
   156
  "polypow 0 = (\<lambda>p. 1\<^sub>p)"
chaieb@33154
   157
  "polypow n = (\<lambda>p. let q = polypow (n div 2) p ; d = polymul(q,q) in 
chaieb@33154
   158
                    if even n then d else polymul(p,d))"
chaieb@33154
   159
chaieb@33154
   160
consts polynate :: "poly \<Rightarrow> poly"
chaieb@33154
   161
recdef polynate "measure polysize"
chaieb@33154
   162
  "polynate (Bound n) = CN 0\<^sub>p n 1\<^sub>p"
chaieb@33154
   163
  "polynate (Add p q) = (polynate p +\<^sub>p polynate q)"
chaieb@33154
   164
  "polynate (Sub p q) = (polynate p -\<^sub>p polynate q)"
chaieb@33154
   165
  "polynate (Mul p q) = (polynate p *\<^sub>p polynate q)"
chaieb@33154
   166
  "polynate (Neg p) = (~\<^sub>p (polynate p))"
chaieb@33154
   167
  "polynate (Pw p n) = ((polynate p) ^\<^sub>p n)"
chaieb@33154
   168
  "polynate (CN c n p) = polynate (Add c (Mul (Bound n) p))"
chaieb@33154
   169
  "polynate (C c) = C (normNum c)"
chaieb@33154
   170
chaieb@33154
   171
fun poly_cmul :: "Num \<Rightarrow> poly \<Rightarrow> poly" where
chaieb@33154
   172
  "poly_cmul y (C x) = C (y *\<^sub>N x)"
chaieb@33154
   173
| "poly_cmul y (CN c n p) = CN (poly_cmul y c) n (poly_cmul y p)"
chaieb@33154
   174
| "poly_cmul y p = C y *\<^sub>p p"
chaieb@33154
   175
haftmann@35413
   176
definition monic :: "poly \<Rightarrow> (poly \<times> bool)" where
chaieb@33154
   177
  "monic p \<equiv> (let h = headconst p in if h = 0\<^sub>N then (p,False) else ((C (Ninv h)) *\<^sub>p p, 0>\<^sub>N h))"
chaieb@33154
   178
chaieb@33154
   179
subsection{* Pseudo-division *}
chaieb@33154
   180
haftmann@35413
   181
definition shift1 :: "poly \<Rightarrow> poly" where
chaieb@33154
   182
  "shift1 p \<equiv> CN 0\<^sub>p 0 p"
chaieb@33154
   183
haftmann@39473
   184
abbreviation funpow :: "nat \<Rightarrow> ('a \<Rightarrow> 'a) \<Rightarrow> ('a \<Rightarrow> 'a)" where
haftmann@39473
   185
  "funpow \<equiv> compow"
haftmann@39473
   186
krauss@41651
   187
partial_function (tailrec) polydivide_aux :: "poly \<Rightarrow> nat \<Rightarrow> poly \<Rightarrow> nat \<Rightarrow> poly \<Rightarrow> nat \<times> poly"
chaieb@33154
   188
  where
krauss@41651
   189
  "polydivide_aux a n p k s = 
chaieb@33154
   190
  (if s = 0\<^sub>p then (k,s)
chaieb@33154
   191
  else (let b = head s; m = degree s in
chaieb@33154
   192
  (if m < n then (k,s) else 
chaieb@33154
   193
  (let p'= funpow (m - n) shift1 p in 
krauss@41651
   194
  (if a = b then polydivide_aux a n p k (s -\<^sub>p p') 
krauss@41651
   195
  else polydivide_aux a n p (Suc k) ((a *\<^sub>p s) -\<^sub>p (b *\<^sub>p p')))))))"
chaieb@33154
   196
haftmann@35413
   197
definition polydivide :: "poly \<Rightarrow> poly \<Rightarrow> (nat \<times> poly)" where
krauss@41651
   198
  "polydivide s p \<equiv> polydivide_aux (head p) (degree p) p 0 s"
chaieb@33154
   199
chaieb@33154
   200
fun poly_deriv_aux :: "nat \<Rightarrow> poly \<Rightarrow> poly" where
chaieb@33154
   201
  "poly_deriv_aux n (CN c 0 p) = CN (poly_cmul ((int n)\<^sub>N) c) 0 (poly_deriv_aux (n + 1) p)"
chaieb@33154
   202
| "poly_deriv_aux n p = poly_cmul ((int n)\<^sub>N) p"
chaieb@33154
   203
chaieb@33154
   204
fun poly_deriv :: "poly \<Rightarrow> poly" where
chaieb@33154
   205
  "poly_deriv (CN c 0 p) = poly_deriv_aux 1 p"
chaieb@33154
   206
| "poly_deriv p = 0\<^sub>p"
chaieb@33154
   207
chaieb@33154
   208
  (* Verification *)
chaieb@33154
   209
lemma nth_pos2[simp]: "0 < n \<Longrightarrow> (x#xs) ! n = xs ! (n - 1)"
chaieb@33154
   210
using Nat.gr0_conv_Suc
chaieb@33154
   211
by clarsimp
chaieb@33154
   212
chaieb@33154
   213
subsection{* Semantics of the polynomial representation *}
chaieb@33154
   214
haftmann@39473
   215
primrec Ipoly :: "'a list \<Rightarrow> poly \<Rightarrow> 'a::{field_char_0, field_inverse_zero, power}" where
chaieb@33154
   216
  "Ipoly bs (C c) = INum c"
haftmann@39473
   217
| "Ipoly bs (Bound n) = bs!n"
haftmann@39473
   218
| "Ipoly bs (Neg a) = - Ipoly bs a"
haftmann@39473
   219
| "Ipoly bs (Add a b) = Ipoly bs a + Ipoly bs b"
haftmann@39473
   220
| "Ipoly bs (Sub a b) = Ipoly bs a - Ipoly bs b"
haftmann@39473
   221
| "Ipoly bs (Mul a b) = Ipoly bs a * Ipoly bs b"
haftmann@39473
   222
| "Ipoly bs (Pw t n) = (Ipoly bs t) ^ n"
haftmann@39473
   223
| "Ipoly bs (CN c n p) = (Ipoly bs c) + (bs!n)*(Ipoly bs p)"
haftmann@39473
   224
wenzelm@35054
   225
abbreviation
haftmann@36409
   226
  Ipoly_syntax :: "poly \<Rightarrow> 'a list \<Rightarrow>'a::{field_char_0, field_inverse_zero, power}" ("\<lparr>_\<rparr>\<^sub>p\<^bsup>_\<^esup>")
wenzelm@35054
   227
  where "\<lparr>p\<rparr>\<^sub>p\<^bsup>bs\<^esup> \<equiv> Ipoly bs p"
chaieb@33154
   228
chaieb@33154
   229
lemma Ipoly_CInt: "Ipoly bs (C (i,1)) = of_int i" 
chaieb@33154
   230
  by (simp add: INum_def)
chaieb@33154
   231
lemma Ipoly_CRat: "Ipoly bs (C (i, j)) = of_int i / of_int j" 
chaieb@33154
   232
  by (simp  add: INum_def)
chaieb@33154
   233
chaieb@33154
   234
lemmas RIpoly_eqs = Ipoly.simps(2-7) Ipoly_CInt Ipoly_CRat
chaieb@33154
   235
chaieb@33154
   236
subsection {* Normal form and normalization *}
chaieb@33154
   237
chaieb@33154
   238
consts isnpolyh:: "poly \<Rightarrow> nat \<Rightarrow> bool"
chaieb@33154
   239
recdef isnpolyh "measure size"
chaieb@33154
   240
  "isnpolyh (C c) = (\<lambda>k. isnormNum c)"
chaieb@33154
   241
  "isnpolyh (CN c n p) = (\<lambda>k. n\<ge> k \<and> (isnpolyh c (Suc n)) \<and> (isnpolyh p n) \<and> (p \<noteq> 0\<^sub>p))"
chaieb@33154
   242
  "isnpolyh p = (\<lambda>k. False)"
chaieb@33154
   243
chaieb@33154
   244
lemma isnpolyh_mono: "\<lbrakk>n' \<le> n ; isnpolyh p n\<rbrakk> \<Longrightarrow> isnpolyh p n'"
chaieb@33154
   245
by (induct p rule: isnpolyh.induct, auto)
chaieb@33154
   246
haftmann@35413
   247
definition isnpoly :: "poly \<Rightarrow> bool" where
chaieb@33154
   248
  "isnpoly p \<equiv> isnpolyh p 0"
chaieb@33154
   249
chaieb@33154
   250
text{* polyadd preserves normal forms *}
chaieb@33154
   251
chaieb@33154
   252
lemma polyadd_normh: "\<lbrakk>isnpolyh p n0 ; isnpolyh q n1\<rbrakk> 
chaieb@33154
   253
      \<Longrightarrow> isnpolyh (polyadd(p,q)) (min n0 n1)"
chaieb@33154
   254
proof(induct p q arbitrary: n0 n1 rule: polyadd.induct)
chaieb@33154
   255
  case (2 a b c' n' p' n0 n1)
wenzelm@42686
   256
  from 2 have  th1: "isnpolyh (C (a,b)) (Suc n')" by simp 
wenzelm@42686
   257
  from 2(3) have th2: "isnpolyh c' (Suc n')"  and nplen1: "n' \<ge> n1" by simp_all
chaieb@33154
   258
  with isnpolyh_mono have cp: "isnpolyh c' (Suc n')" by simp
wenzelm@42686
   259
  with 2(1)[OF th1 th2] have th3:"isnpolyh (C (a,b) +\<^sub>p c') (Suc n')" by simp
chaieb@33154
   260
  from nplen1 have n01len1: "min n0 n1 \<le> n'" by simp 
wenzelm@42686
   261
  thus ?case using 2 th3 by simp
chaieb@33154
   262
next
chaieb@33154
   263
  case (3 c' n' p' a b n1 n0)
wenzelm@42686
   264
  from 3 have  th1: "isnpolyh (C (a,b)) (Suc n')" by simp 
wenzelm@42686
   265
  from 3(2) have th2: "isnpolyh c' (Suc n')"  and nplen1: "n' \<ge> n1" by simp_all
chaieb@33154
   266
  with isnpolyh_mono have cp: "isnpolyh c' (Suc n')" by simp
wenzelm@42686
   267
  with 3(1)[OF th2 th1] have th3:"isnpolyh (c' +\<^sub>p C (a,b)) (Suc n')" by simp
chaieb@33154
   268
  from nplen1 have n01len1: "min n0 n1 \<le> n'" by simp 
wenzelm@42686
   269
  thus ?case using 3 th3 by simp
chaieb@33154
   270
next
chaieb@33154
   271
  case (4 c n p c' n' p' n0 n1)
chaieb@33154
   272
  hence nc: "isnpolyh c (Suc n)" and np: "isnpolyh p n" by simp_all
wenzelm@42686
   273
  from 4 have nc': "isnpolyh c' (Suc n')" and np': "isnpolyh p' n'" by simp_all 
wenzelm@42686
   274
  from 4 have ngen0: "n \<ge> n0" by simp
wenzelm@42686
   275
  from 4 have n'gen1: "n' \<ge> n1" by simp 
chaieb@33154
   276
  have "n < n' \<or> n' < n \<or> n = n'" by auto
krauss@42634
   277
  moreover {assume eq: "n = n'"
wenzelm@42686
   278
    with 4(2)[OF nc nc'] 
chaieb@33154
   279
    have ncc':"isnpolyh (c +\<^sub>p c') (Suc n)" by auto
chaieb@33154
   280
    hence ncc'n01: "isnpolyh (c +\<^sub>p c') (min n0 n1)"
chaieb@33154
   281
      using isnpolyh_mono[where n'="min n0 n1" and n="Suc n"] ngen0 n'gen1 by auto
wenzelm@42686
   282
    from eq 4(1)[OF np np'] have npp': "isnpolyh (p +\<^sub>p p') n" by simp
chaieb@33154
   283
    have minle: "min n0 n1 \<le> n'" using ngen0 n'gen1 eq by simp
wenzelm@42686
   284
    from minle npp' ncc'n01 eq ngen0 n'gen1 ncc' have ?case by (simp add: Let_def)}
chaieb@33154
   285
  moreover {assume lt: "n < n'"
chaieb@33154
   286
    have "min n0 n1 \<le> n0" by simp
wenzelm@42686
   287
    with 4 have th1:"min n0 n1 \<le> n" by auto 
wenzelm@42686
   288
    from 4 have th21: "isnpolyh c (Suc n)" by simp
wenzelm@42686
   289
    from 4 have th22: "isnpolyh (CN c' n' p') n'" by simp
chaieb@33154
   290
    from lt have th23: "min (Suc n) n' = Suc n" by arith
wenzelm@42686
   291
    from 4(4)[OF th21 th22]
chaieb@33154
   292
    have "isnpolyh (polyadd (c, CN c' n' p')) (Suc n)" using th23 by simp
wenzelm@42686
   293
    with 4 lt th1 have ?case by simp }
chaieb@33154
   294
  moreover {assume gt: "n' < n" hence gt': "n' < n \<and> \<not> n < n'" by simp
chaieb@33154
   295
    have "min n0 n1 \<le> n1"  by simp
wenzelm@42686
   296
    with 4 have th1:"min n0 n1 \<le> n'" by auto
wenzelm@42686
   297
    from 4 have th21: "isnpolyh c' (Suc n')" by simp_all
wenzelm@42686
   298
    from 4 have th22: "isnpolyh (CN c n p) n" by simp
chaieb@33154
   299
    from gt have th23: "min n (Suc n') = Suc n'" by arith
wenzelm@42686
   300
    from 4(3)[OF th22 th21]
chaieb@33154
   301
    have "isnpolyh (polyadd (CN c n p,c')) (Suc n')" using th23 by simp
wenzelm@42686
   302
    with 4 gt th1 have ?case by simp}
chaieb@33154
   303
      ultimately show ?case by blast
chaieb@33154
   304
qed auto
chaieb@33154
   305
chaieb@33154
   306
lemma polyadd[simp]: "Ipoly bs (polyadd (p,q)) = (Ipoly bs p) + (Ipoly bs q)"
haftmann@36348
   307
by (induct p q rule: polyadd.induct, auto simp add: Let_def field_simps right_distrib[symmetric] simp del: right_distrib)
chaieb@33154
   308
chaieb@33154
   309
lemma polyadd_norm: "\<lbrakk> isnpoly p ; isnpoly q\<rbrakk> \<Longrightarrow> isnpoly (polyadd(p,q))"
chaieb@33154
   310
  using polyadd_normh[of "p" "0" "q" "0"] isnpoly_def by simp
chaieb@33154
   311
krauss@41652
   312
text{* The degree of addition and other general lemmas needed for the normal form of polymul *}
chaieb@33154
   313
chaieb@33154
   314
lemma polyadd_different_degreen: 
chaieb@33154
   315
  "\<lbrakk>isnpolyh p n0 ; isnpolyh q n1; degreen p m \<noteq> degreen q m ; m \<le> min n0 n1\<rbrakk> \<Longrightarrow> 
chaieb@33154
   316
  degreen (polyadd(p,q)) m = max (degreen p m) (degreen q m)"
chaieb@33154
   317
proof (induct p q arbitrary: m n0 n1 rule: polyadd.induct)
chaieb@33154
   318
  case (4 c n p c' n' p' m n0 n1)
krauss@42634
   319
  have "n' = n \<or> n < n' \<or> n' < n" by arith
krauss@42634
   320
  thus ?case
krauss@42634
   321
  proof (elim disjE)
krauss@42634
   322
    assume [simp]: "n' = n"
krauss@42634
   323
    from 4(1)[of n n m] 4(2)[of "Suc n" "Suc n" m] 4(5-7)
krauss@42634
   324
    show ?thesis by (auto simp: Let_def)
krauss@42634
   325
  next
krauss@42634
   326
    assume "n < n'"
krauss@42634
   327
    with 4 show ?thesis by auto
krauss@42634
   328
  next
krauss@42634
   329
    assume "n' < n"
krauss@42634
   330
    with 4 show ?thesis by auto
krauss@42634
   331
  qed
krauss@42634
   332
qed auto
chaieb@33154
   333
chaieb@33154
   334
lemma headnz[simp]: "\<lbrakk>isnpolyh p n ; p \<noteq> 0\<^sub>p\<rbrakk> \<Longrightarrow> headn p m \<noteq> 0\<^sub>p"
chaieb@33154
   335
  by (induct p arbitrary: n rule: headn.induct, auto)
chaieb@33154
   336
lemma degree_isnpolyh_Suc[simp]: "isnpolyh p (Suc n) \<Longrightarrow> degree p = 0"
chaieb@33154
   337
  by (induct p arbitrary: n rule: degree.induct, auto)
chaieb@33154
   338
lemma degreen_0[simp]: "isnpolyh p n \<Longrightarrow> m < n \<Longrightarrow> degreen p m = 0"
chaieb@33154
   339
  by (induct p arbitrary: n rule: degreen.induct, auto)
chaieb@33154
   340
chaieb@33154
   341
lemma degree_isnpolyh_Suc': "n > 0 \<Longrightarrow> isnpolyh p n \<Longrightarrow> degree p = 0"
chaieb@33154
   342
  by (induct p arbitrary: n rule: degree.induct, auto)
chaieb@33154
   343
chaieb@33154
   344
lemma degree_npolyhCN[simp]: "isnpolyh (CN c n p) n0 \<Longrightarrow> degree c = 0"
chaieb@33154
   345
  using degree_isnpolyh_Suc by auto
chaieb@33154
   346
lemma degreen_npolyhCN[simp]: "isnpolyh (CN c n p) n0 \<Longrightarrow> degreen c n = 0"
chaieb@33154
   347
  using degreen_0 by auto
chaieb@33154
   348
chaieb@33154
   349
chaieb@33154
   350
lemma degreen_polyadd:
chaieb@33154
   351
  assumes np: "isnpolyh p n0" and nq: "isnpolyh q n1" and m: "m \<le> max n0 n1"
chaieb@33154
   352
  shows "degreen (p +\<^sub>p q) m \<le> max (degreen p m) (degreen q m)"
chaieb@33154
   353
  using np nq m
chaieb@33154
   354
proof (induct p q arbitrary: n0 n1 m rule: polyadd.induct)
chaieb@33154
   355
  case (2 c c' n' p' n0 n1) thus ?case  by (cases n', simp_all)
chaieb@33154
   356
next
chaieb@33154
   357
  case (3 c n p c' n0 n1) thus ?case by (cases n, auto)
chaieb@33154
   358
next
chaieb@33154
   359
  case (4 c n p c' n' p' n0 n1 m) 
krauss@42634
   360
  have "n' = n \<or> n < n' \<or> n' < n" by arith
krauss@42634
   361
  thus ?case
krauss@42634
   362
  proof (elim disjE)
krauss@42634
   363
    assume [simp]: "n' = n"
krauss@42634
   364
    from 4(1)[of n n m] 4(2)[of "Suc n" "Suc n" m] 4(5-7)
krauss@42634
   365
    show ?thesis by (auto simp: Let_def)
krauss@42634
   366
  qed simp_all
chaieb@33154
   367
qed auto
chaieb@33154
   368
chaieb@33154
   369
lemma polyadd_eq_const_degreen: "\<lbrakk> isnpolyh p n0 ; isnpolyh q n1 ; polyadd (p,q) = C c\<rbrakk> 
chaieb@33154
   370
  \<Longrightarrow> degreen p m = degreen q m"
chaieb@33154
   371
proof (induct p q arbitrary: m n0 n1 c rule: polyadd.induct)
chaieb@33154
   372
  case (4 c n p c' n' p' m n0 n1 x) 
wenzelm@42686
   373
  {assume nn': "n' < n" hence ?case using 4 by simp}
chaieb@33154
   374
  moreover 
chaieb@33154
   375
  {assume nn':"\<not> n' < n" hence "n < n' \<or> n = n'" by arith
wenzelm@42686
   376
    moreover {assume "n < n'" with 4 have ?case by simp }
wenzelm@42686
   377
    moreover {assume eq: "n = n'" hence ?case using 4 
krauss@42634
   378
        apply (cases "p +\<^sub>p p' = 0\<^sub>p")
krauss@42634
   379
        apply (auto simp add: Let_def)
wenzelm@42686
   380
        apply blast
wenzelm@42686
   381
        done
krauss@42634
   382
      }
chaieb@33154
   383
    ultimately have ?case by blast}
chaieb@33154
   384
  ultimately show ?case by blast
chaieb@33154
   385
qed simp_all
chaieb@33154
   386
chaieb@33154
   387
lemma polymul_properties:
haftmann@36409
   388
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
   389
  and np: "isnpolyh p n0" and nq: "isnpolyh q n1" and m: "m \<le> min n0 n1"
chaieb@33154
   390
  shows "isnpolyh (p *\<^sub>p q) (min n0 n1)" 
chaieb@33154
   391
  and "(p *\<^sub>p q = 0\<^sub>p) = (p = 0\<^sub>p \<or> q = 0\<^sub>p)" 
chaieb@33154
   392
  and "degreen (p *\<^sub>p q) m = (if (p = 0\<^sub>p \<or> q = 0\<^sub>p) then 0 
chaieb@33154
   393
                             else degreen p m + degreen q m)"
chaieb@33154
   394
  using np nq m
chaieb@33154
   395
proof(induct p q arbitrary: n0 n1 m rule: polymul.induct)
chaieb@33154
   396
  case (2 a b c' n' p') 
chaieb@33154
   397
  let ?c = "(a,b)"
chaieb@33154
   398
  { case (1 n0 n1) 
chaieb@33154
   399
    hence n: "isnpolyh (C ?c) n'" "isnpolyh c' (Suc n')" "isnpolyh p' n'" "isnormNum ?c" 
chaieb@33154
   400
      "isnpolyh (CN c' n' p') n1"
chaieb@33154
   401
      by simp_all
chaieb@33154
   402
    {assume "?c = 0\<^sub>N" hence ?case by auto}
chaieb@33154
   403
      moreover {assume cnz: "?c \<noteq> 0\<^sub>N" 
wenzelm@33268
   404
        from "2.hyps"(1)[rule_format,where xb="n'",  OF cnz n(1) n(3)] 
wenzelm@33268
   405
          "2.hyps"(2)[rule_format, where x="Suc n'" 
wenzelm@33268
   406
          and xa="Suc n'" and xb = "n'", OF cnz ] cnz n have ?case
wenzelm@33268
   407
          by (auto simp add: min_def)}
chaieb@33154
   408
      ultimately show ?case by blast
chaieb@33154
   409
  next
chaieb@33154
   410
    case (2 n0 n1) thus ?case by auto 
chaieb@33154
   411
  next
chaieb@33154
   412
    case (3 n0 n1) thus ?case  using "2.hyps" by auto } 
chaieb@33154
   413
next
chaieb@33154
   414
  case (3 c n p a b){
chaieb@33154
   415
    let ?c' = "(a,b)"
chaieb@33154
   416
    case (1 n0 n1) 
chaieb@33154
   417
    hence n: "isnpolyh (C ?c') n" "isnpolyh c (Suc n)" "isnpolyh p n" "isnormNum ?c'" 
chaieb@33154
   418
      "isnpolyh (CN c n p) n0"
chaieb@33154
   419
      by simp_all
chaieb@33154
   420
    {assume "?c' = 0\<^sub>N" hence ?case by auto}
chaieb@33154
   421
      moreover {assume cnz: "?c' \<noteq> 0\<^sub>N"
wenzelm@33268
   422
        from "3.hyps"(1)[rule_format,where xb="n",  OF cnz n(3) n(1)] 
wenzelm@33268
   423
          "3.hyps"(2)[rule_format, where x="Suc n" 
wenzelm@33268
   424
          and xa="Suc n" and xb = "n", OF cnz ] cnz n have ?case
wenzelm@33268
   425
          by (auto simp add: min_def)}
chaieb@33154
   426
      ultimately show ?case by blast
chaieb@33154
   427
  next
chaieb@33154
   428
    case (2 n0 n1) thus ?case apply auto done
chaieb@33154
   429
  next
chaieb@33154
   430
    case (3 n0 n1) thus ?case  using "3.hyps" by auto } 
chaieb@33154
   431
next
chaieb@33154
   432
  case (4 c n p c' n' p')
chaieb@33154
   433
  let ?cnp = "CN c n p" let ?cnp' = "CN c' n' p'"
chaieb@33154
   434
    {fix n0 n1
chaieb@33154
   435
      assume "isnpolyh ?cnp n0" and "isnpolyh ?cnp' n1"
chaieb@33154
   436
      hence cnp: "isnpolyh ?cnp n" and cnp': "isnpolyh ?cnp' n'"
wenzelm@33268
   437
        and np: "isnpolyh p n" and nc: "isnpolyh c (Suc n)" 
wenzelm@33268
   438
        and np': "isnpolyh p' n'" and nc': "isnpolyh c' (Suc n')"
wenzelm@33268
   439
        and nn0: "n \<ge> n0" and nn1:"n' \<ge> n1"
wenzelm@33268
   440
        by simp_all
chaieb@33154
   441
      have "n < n' \<or> n' < n \<or> n' = n" by auto
chaieb@33154
   442
      moreover
chaieb@33154
   443
      {assume nn': "n < n'"
wenzelm@33268
   444
        with "4.hyps"(5)[rule_format, OF nn' np cnp', where xb ="n"] 
wenzelm@33268
   445
          "4.hyps"(6)[rule_format, OF nn' nc cnp', where xb="n"] nn' nn0 nn1 cnp
wenzelm@33268
   446
        have "isnpolyh (?cnp *\<^sub>p ?cnp') (min n0 n1)"
wenzelm@33268
   447
          by (simp add: min_def) }
chaieb@33154
   448
      moreover
chaieb@33154
   449
chaieb@33154
   450
      {assume nn': "n > n'" hence stupid: "n' < n \<and> \<not> n < n'" by arith
wenzelm@33268
   451
        with "4.hyps"(3)[rule_format, OF stupid cnp np', where xb="n'"]
wenzelm@33268
   452
          "4.hyps"(4)[rule_format, OF stupid cnp nc', where xb="Suc n'"] 
wenzelm@33268
   453
          nn' nn0 nn1 cnp'
wenzelm@33268
   454
        have "isnpolyh (?cnp *\<^sub>p ?cnp') (min n0 n1)"
wenzelm@33268
   455
          by (cases "Suc n' = n", simp_all add: min_def)}
chaieb@33154
   456
      moreover
chaieb@33154
   457
      {assume nn': "n' = n" hence stupid: "\<not> n' < n \<and> \<not> n < n'" by arith
wenzelm@33268
   458
        from "4.hyps"(1)[rule_format, OF stupid cnp np', where xb="n"]
wenzelm@33268
   459
          "4.hyps"(2)[rule_format, OF stupid cnp nc', where xb="n"] nn' cnp cnp' nn1
wenzelm@33268
   460
        
wenzelm@33268
   461
        have "isnpolyh (?cnp *\<^sub>p ?cnp') (min n0 n1)"
wenzelm@33268
   462
          by simp (rule polyadd_normh,simp_all add: min_def isnpolyh_mono[OF nn0]) }
chaieb@33154
   463
      ultimately show "isnpolyh (?cnp *\<^sub>p ?cnp') (min n0 n1)" by blast }
chaieb@33154
   464
    note th = this
chaieb@33154
   465
    {fix n0 n1 m
chaieb@33154
   466
      assume np: "isnpolyh ?cnp n0" and np':"isnpolyh ?cnp' n1"
chaieb@33154
   467
      and m: "m \<le> min n0 n1"
chaieb@33154
   468
      let ?d = "degreen (?cnp *\<^sub>p ?cnp') m"
chaieb@33154
   469
      let ?d1 = "degreen ?cnp m"
chaieb@33154
   470
      let ?d2 = "degreen ?cnp' m"
chaieb@33154
   471
      let ?eq = "?d = (if ?cnp = 0\<^sub>p \<or> ?cnp' = 0\<^sub>p then 0  else ?d1 + ?d2)"
chaieb@33154
   472
      have "n'<n \<or> n < n' \<or> n' = n" by auto
chaieb@33154
   473
      moreover 
chaieb@33154
   474
      {assume "n' < n \<or> n < n'"
wenzelm@33268
   475
        with "4.hyps" np np' m 
wenzelm@33268
   476
        have ?eq apply (cases "n' < n", simp_all)
wenzelm@33268
   477
        apply (erule allE[where x="n"],erule allE[where x="n"],auto) 
wenzelm@33268
   478
        done }
chaieb@33154
   479
      moreover
chaieb@33154
   480
      {assume nn': "n' = n"  hence nn:"\<not> n' < n \<and> \<not> n < n'" by arith
wenzelm@33268
   481
        from "4.hyps"(1)[rule_format, OF nn, where x="n" and xa ="n'" and xb="n"]
wenzelm@33268
   482
          "4.hyps"(2)[rule_format, OF nn, where x="n" and xa ="Suc n'" and xb="n"] 
wenzelm@33268
   483
          np np' nn'
wenzelm@33268
   484
        have norm: "isnpolyh ?cnp n" "isnpolyh c' (Suc n)" "isnpolyh (?cnp *\<^sub>p c') n"
wenzelm@33268
   485
          "isnpolyh p' n" "isnpolyh (?cnp *\<^sub>p p') n" "isnpolyh (CN 0\<^sub>p n (CN c n p *\<^sub>p p')) n"
wenzelm@33268
   486
          "(?cnp *\<^sub>p c' = 0\<^sub>p) = (c' = 0\<^sub>p)" 
wenzelm@33268
   487
          "?cnp *\<^sub>p p' \<noteq> 0\<^sub>p" by (auto simp add: min_def)
wenzelm@33268
   488
        {assume mn: "m = n" 
wenzelm@33268
   489
          from "4.hyps"(1)[rule_format, OF nn norm(1,4), where xb="n"]
wenzelm@33268
   490
            "4.hyps"(2)[rule_format, OF nn norm(1,2), where xb="n"] norm nn' mn
wenzelm@33268
   491
          have degs:  "degreen (?cnp *\<^sub>p c') n = 
wenzelm@33268
   492
            (if c'=0\<^sub>p then 0 else ?d1 + degreen c' n)"
wenzelm@33268
   493
            "degreen (?cnp *\<^sub>p p') n = ?d1  + degreen p' n" by (simp_all add: min_def)
wenzelm@33268
   494
          from degs norm
wenzelm@33268
   495
          have th1: "degreen(?cnp *\<^sub>p c') n < degreen (CN 0\<^sub>p n (?cnp *\<^sub>p p')) n" by simp
wenzelm@33268
   496
          hence neq: "degreen (?cnp *\<^sub>p c') n \<noteq> degreen (CN 0\<^sub>p n (?cnp *\<^sub>p p')) n"
wenzelm@33268
   497
            by simp
wenzelm@33268
   498
          have nmin: "n \<le> min n n" by (simp add: min_def)
wenzelm@33268
   499
          from polyadd_different_degreen[OF norm(3,6) neq nmin] th1
wenzelm@33268
   500
          have deg: "degreen (CN c n p *\<^sub>p c' +\<^sub>p CN 0\<^sub>p n (CN c n p *\<^sub>p p')) n = degreen (CN 0\<^sub>p n (CN c n p *\<^sub>p p')) n" by simp 
wenzelm@33268
   501
          from "4.hyps"(1)[rule_format, OF nn norm(1,4), where xb="n"]
wenzelm@33268
   502
            "4.hyps"(2)[rule_format, OF nn norm(1,2), where xb="n"]
wenzelm@33268
   503
            mn norm m nn' deg
wenzelm@33268
   504
          have ?eq by simp}
wenzelm@33268
   505
        moreover
wenzelm@33268
   506
        {assume mn: "m \<noteq> n" hence mn': "m < n" using m np by auto
wenzelm@33268
   507
          from nn' m np have max1: "m \<le> max n n"  by simp 
wenzelm@33268
   508
          hence min1: "m \<le> min n n" by simp     
wenzelm@33268
   509
          hence min2: "m \<le> min n (Suc n)" by simp
wenzelm@33268
   510
          {assume "c' = 0\<^sub>p"
wenzelm@33268
   511
            from `c' = 0\<^sub>p` have ?eq
wenzelm@33268
   512
              using "4.hyps"(1)[rule_format, OF nn norm(1,4) min1]
wenzelm@33268
   513
            "4.hyps"(2)[rule_format, OF nn norm(1,2) min2] mn nn'
wenzelm@33268
   514
              apply simp
wenzelm@33268
   515
              done}
wenzelm@33268
   516
          moreover
wenzelm@33268
   517
          {assume cnz: "c' \<noteq> 0\<^sub>p"
wenzelm@33268
   518
            from "4.hyps"(1)[rule_format, OF nn norm(1,4) min1]
wenzelm@33268
   519
              "4.hyps"(2)[rule_format, OF nn norm(1,2) min2]
wenzelm@33268
   520
              degreen_polyadd[OF norm(3,6) max1]
chaieb@33154
   521
wenzelm@33268
   522
            have "degreen (?cnp *\<^sub>p c' +\<^sub>p CN 0\<^sub>p n (?cnp *\<^sub>p p')) m 
wenzelm@33268
   523
              \<le> max (degreen (?cnp *\<^sub>p c') m) (degreen (CN 0\<^sub>p n (?cnp *\<^sub>p p')) m)"
wenzelm@33268
   524
              using mn nn' cnz np np' by simp
wenzelm@33268
   525
            with "4.hyps"(1)[rule_format, OF nn norm(1,4) min1]
wenzelm@33268
   526
              "4.hyps"(2)[rule_format, OF nn norm(1,2) min2]
wenzelm@33268
   527
              degreen_0[OF norm(3) mn'] have ?eq using nn' mn cnz np np' by clarsimp}
wenzelm@33268
   528
          ultimately have ?eq by blast }
wenzelm@33268
   529
        ultimately have ?eq by blast}
chaieb@33154
   530
      ultimately show ?eq by blast}
chaieb@33154
   531
    note degth = this
chaieb@33154
   532
    { case (2 n0 n1)
chaieb@33154
   533
      hence np: "isnpolyh ?cnp n0" and np': "isnpolyh ?cnp' n1" 
wenzelm@33268
   534
        and m: "m \<le> min n0 n1" by simp_all
chaieb@33154
   535
      hence mn: "m \<le> n" by simp
chaieb@33154
   536
      let ?c0p = "CN 0\<^sub>p n (?cnp *\<^sub>p p')"
chaieb@33154
   537
      {assume C: "?cnp *\<^sub>p c' +\<^sub>p ?c0p = 0\<^sub>p" "n' = n"
wenzelm@33268
   538
        hence nn: "\<not>n' < n \<and> \<not> n<n'" by simp
wenzelm@33268
   539
        from "4.hyps"(1) [rule_format, OF nn, where x="n" and xa = "n" and xb="n"] 
wenzelm@33268
   540
          "4.hyps"(2) [rule_format, OF nn, where x="n" and xa = "Suc n" and xb="n"] 
wenzelm@33268
   541
          np np' C(2) mn
wenzelm@33268
   542
        have norm: "isnpolyh ?cnp n" "isnpolyh c' (Suc n)" "isnpolyh (?cnp *\<^sub>p c') n"
wenzelm@33268
   543
          "isnpolyh p' n" "isnpolyh (?cnp *\<^sub>p p') n" "isnpolyh (CN 0\<^sub>p n (CN c n p *\<^sub>p p')) n"
wenzelm@33268
   544
          "(?cnp *\<^sub>p c' = 0\<^sub>p) = (c' = 0\<^sub>p)" 
wenzelm@33268
   545
          "?cnp *\<^sub>p p' \<noteq> 0\<^sub>p" 
wenzelm@33268
   546
          "degreen (?cnp *\<^sub>p c') n = (if c'=0\<^sub>p then 0 else degreen ?cnp n + degreen c' n)"
wenzelm@33268
   547
            "degreen (?cnp *\<^sub>p p') n = degreen ?cnp n + degreen p' n"
wenzelm@33268
   548
          by (simp_all add: min_def)
wenzelm@33268
   549
            
wenzelm@33268
   550
          from norm have cn: "isnpolyh (CN 0\<^sub>p n (CN c n p *\<^sub>p p')) n" by simp
wenzelm@33268
   551
          have degneq: "degreen (?cnp *\<^sub>p c') n < degreen (CN 0\<^sub>p n (?cnp *\<^sub>p p')) n" 
wenzelm@33268
   552
            using norm by simp
wenzelm@33268
   553
        from polyadd_eq_const_degreen[OF norm(3) cn C(1), where m="n"]  degneq
wenzelm@33268
   554
        have "False" by simp }
chaieb@33154
   555
      thus ?case using "4.hyps" by clarsimp}
chaieb@33154
   556
qed auto
chaieb@33154
   557
chaieb@33154
   558
lemma polymul[simp]: "Ipoly bs (p *\<^sub>p q) = (Ipoly bs p) * (Ipoly bs q)"
haftmann@36348
   559
by(induct p q rule: polymul.induct, auto simp add: field_simps)
chaieb@33154
   560
chaieb@33154
   561
lemma polymul_normh: 
haftmann@36409
   562
    assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
   563
  shows "\<lbrakk>isnpolyh p n0 ; isnpolyh q n1\<rbrakk> \<Longrightarrow> isnpolyh (p *\<^sub>p q) (min n0 n1)"
chaieb@33154
   564
  using polymul_properties(1)  by blast
chaieb@33154
   565
lemma polymul_eq0_iff: 
haftmann@36409
   566
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
   567
  shows "\<lbrakk> isnpolyh p n0 ; isnpolyh q n1\<rbrakk> \<Longrightarrow> (p *\<^sub>p q = 0\<^sub>p) = (p = 0\<^sub>p \<or> q = 0\<^sub>p) "
chaieb@33154
   568
  using polymul_properties(2)  by blast
chaieb@33154
   569
lemma polymul_degreen:  
haftmann@36409
   570
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
   571
  shows "\<lbrakk> isnpolyh p n0 ; isnpolyh q n1 ; m \<le> min n0 n1\<rbrakk> \<Longrightarrow> degreen (p *\<^sub>p q) m = (if (p = 0\<^sub>p \<or> q = 0\<^sub>p) then 0 else degreen p m + degreen q m)"
chaieb@33154
   572
  using polymul_properties(3) by blast
chaieb@33154
   573
lemma polymul_norm:   
haftmann@36409
   574
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
   575
  shows "\<lbrakk> isnpoly p; isnpoly q\<rbrakk> \<Longrightarrow> isnpoly (polymul (p,q))"
chaieb@33154
   576
  using polymul_normh[of "p" "0" "q" "0"] isnpoly_def by simp
chaieb@33154
   577
chaieb@33154
   578
lemma headconst_zero: "isnpolyh p n0 \<Longrightarrow> headconst p = 0\<^sub>N \<longleftrightarrow> p = 0\<^sub>p"
chaieb@33154
   579
  by (induct p arbitrary: n0 rule: headconst.induct, auto)
chaieb@33154
   580
chaieb@33154
   581
lemma headconst_isnormNum: "isnpolyh p n0 \<Longrightarrow> isnormNum (headconst p)"
chaieb@33154
   582
  by (induct p arbitrary: n0, auto)
chaieb@33154
   583
chaieb@33154
   584
lemma monic_eqI: assumes np: "isnpolyh p n0" 
haftmann@36409
   585
  shows "INum (headconst p) * Ipoly bs (fst (monic p)) = (Ipoly bs p ::'a::{field_char_0, field_inverse_zero, power})"
chaieb@33154
   586
  unfolding monic_def Let_def
chaieb@33154
   587
proof(cases "headconst p = 0\<^sub>N", simp_all add: headconst_zero[OF np])
chaieb@33154
   588
  let ?h = "headconst p"
chaieb@33154
   589
  assume pz: "p \<noteq> 0\<^sub>p"
chaieb@33154
   590
  {assume hz: "INum ?h = (0::'a)"
chaieb@33154
   591
    from headconst_isnormNum[OF np] have norm: "isnormNum ?h" "isnormNum 0\<^sub>N" by simp_all
chaieb@33154
   592
    from isnormNum_unique[where ?'a = 'a, OF norm] hz have "?h = 0\<^sub>N" by simp
chaieb@33154
   593
    with headconst_zero[OF np] have "p =0\<^sub>p" by blast with pz have "False" by blast}
chaieb@33154
   594
  thus "INum (headconst p) = (0::'a) \<longrightarrow> \<lparr>p\<rparr>\<^sub>p\<^bsup>bs\<^esup> = 0" by blast
chaieb@33154
   595
qed
chaieb@33154
   596
chaieb@33154
   597
krauss@41652
   598
text{* polyneg is a negation and preserves normal forms *}
chaieb@33154
   599
chaieb@33154
   600
lemma polyneg[simp]: "Ipoly bs (polyneg p) = - Ipoly bs p"
chaieb@33154
   601
by (induct p rule: polyneg.induct, auto)
chaieb@33154
   602
chaieb@33154
   603
lemma polyneg0: "isnpolyh p n \<Longrightarrow> ((~\<^sub>p p) = 0\<^sub>p) = (p = 0\<^sub>p)"
chaieb@33154
   604
  by (induct p arbitrary: n rule: polyneg.induct, auto simp add: Nneg_def)
chaieb@33154
   605
lemma polyneg_polyneg: "isnpolyh p n0 \<Longrightarrow> ~\<^sub>p (~\<^sub>p p) = p"
chaieb@33154
   606
  by (induct p arbitrary: n0 rule: polyneg.induct, auto)
chaieb@33154
   607
lemma polyneg_normh: "\<And>n. isnpolyh p n \<Longrightarrow> isnpolyh (polyneg p) n "
chaieb@33154
   608
by (induct p rule: polyneg.induct, auto simp add: polyneg0)
chaieb@33154
   609
chaieb@33154
   610
lemma polyneg_norm: "isnpoly p \<Longrightarrow> isnpoly (polyneg p)"
chaieb@33154
   611
  using isnpoly_def polyneg_normh by simp
chaieb@33154
   612
chaieb@33154
   613
krauss@41652
   614
text{* polysub is a substraction and preserves normal forms *}
krauss@41652
   615
chaieb@33154
   616
lemma polysub[simp]: "Ipoly bs (polysub (p,q)) = (Ipoly bs p) - (Ipoly bs q)"
chaieb@33154
   617
by (simp add: polysub_def polyneg polyadd)
chaieb@33154
   618
lemma polysub_normh: "\<And> n0 n1. \<lbrakk> isnpolyh p n0 ; isnpolyh q n1\<rbrakk> \<Longrightarrow> isnpolyh (polysub(p,q)) (min n0 n1)"
chaieb@33154
   619
by (simp add: polysub_def polyneg_normh polyadd_normh)
chaieb@33154
   620
chaieb@33154
   621
lemma polysub_norm: "\<lbrakk> isnpoly p; isnpoly q\<rbrakk> \<Longrightarrow> isnpoly (polysub(p,q))"
chaieb@33154
   622
  using polyadd_norm polyneg_norm by (simp add: polysub_def) 
haftmann@36409
   623
lemma polysub_same_0[simp]:   assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
   624
  shows "isnpolyh p n0 \<Longrightarrow> polysub (p, p) = 0\<^sub>p"
chaieb@33154
   625
unfolding polysub_def split_def fst_conv snd_conv
chaieb@33154
   626
by (induct p arbitrary: n0,auto simp add: Let_def Nsub0[simplified Nsub_def])
chaieb@33154
   627
chaieb@33154
   628
lemma polysub_0: 
haftmann@36409
   629
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
   630
  shows "\<lbrakk> isnpolyh p n0 ; isnpolyh q n1\<rbrakk> \<Longrightarrow> (p -\<^sub>p q = 0\<^sub>p) = (p = q)"
chaieb@33154
   631
  unfolding polysub_def split_def fst_conv snd_conv
krauss@42634
   632
  by (induct p q arbitrary: n0 n1 rule:polyadd.induct)
krauss@42634
   633
  (auto simp: Nsub0[simplified Nsub_def] Let_def)
chaieb@33154
   634
chaieb@33154
   635
text{* polypow is a power function and preserves normal forms *}
krauss@41652
   636
haftmann@36409
   637
lemma polypow[simp]: "Ipoly bs (polypow n p) = ((Ipoly bs p :: 'a::{field_char_0, field_inverse_zero})) ^ n"
chaieb@33154
   638
proof(induct n rule: polypow.induct)
chaieb@33154
   639
  case 1 thus ?case by simp
chaieb@33154
   640
next
chaieb@33154
   641
  case (2 n)
chaieb@33154
   642
  let ?q = "polypow ((Suc n) div 2) p"
chaieb@33154
   643
  let ?d = "polymul(?q,?q)"
chaieb@33154
   644
  have "odd (Suc n) \<or> even (Suc n)" by simp
chaieb@33154
   645
  moreover 
chaieb@33154
   646
  {assume odd: "odd (Suc n)"
chaieb@33154
   647
    have th: "(Suc (Suc (Suc (0\<Colon>nat)) * (Suc n div Suc (Suc (0\<Colon>nat))))) = Suc n div 2 + Suc n div 2 + 1" by arith
chaieb@33154
   648
    from odd have "Ipoly bs (p ^\<^sub>p Suc n) = Ipoly bs (polymul(p, ?d))" by (simp add: Let_def)
chaieb@33154
   649
    also have "\<dots> = (Ipoly bs p) * (Ipoly bs p)^(Suc n div 2)*(Ipoly bs p)^(Suc n div 2)"
chaieb@33154
   650
      using "2.hyps" by simp
chaieb@33154
   651
    also have "\<dots> = (Ipoly bs p) ^ (Suc n div 2 + Suc n div 2 + 1)"
chaieb@33154
   652
      apply (simp only: power_add power_one_right) by simp
chaieb@33154
   653
    also have "\<dots> = (Ipoly bs p) ^ (Suc (Suc (Suc (0\<Colon>nat)) * (Suc n div Suc (Suc (0\<Colon>nat)))))"
chaieb@33154
   654
      by (simp only: th)
chaieb@33154
   655
    finally have ?case 
chaieb@33154
   656
    using odd_nat_div_two_times_two_plus_one[OF odd, symmetric] by simp  }
chaieb@33154
   657
  moreover 
chaieb@33154
   658
  {assume even: "even (Suc n)"
chaieb@33154
   659
    have th: "(Suc (Suc (0\<Colon>nat))) * (Suc n div Suc (Suc (0\<Colon>nat))) = Suc n div 2 + Suc n div 2" by arith
chaieb@33154
   660
    from even have "Ipoly bs (p ^\<^sub>p Suc n) = Ipoly bs ?d" by (simp add: Let_def)
chaieb@33154
   661
    also have "\<dots> = (Ipoly bs p) ^ (Suc n div 2 + Suc n div 2)"
chaieb@33154
   662
      using "2.hyps" apply (simp only: power_add) by simp
chaieb@33154
   663
    finally have ?case using even_nat_div_two_times_two[OF even] by (simp only: th)}
chaieb@33154
   664
  ultimately show ?case by blast
chaieb@33154
   665
qed
chaieb@33154
   666
chaieb@33154
   667
lemma polypow_normh: 
wenzelm@42686
   668
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
   669
  shows "isnpolyh p n \<Longrightarrow> isnpolyh (polypow k p) n"
chaieb@33154
   670
proof (induct k arbitrary: n rule: polypow.induct)
chaieb@33154
   671
  case (2 k n)
chaieb@33154
   672
  let ?q = "polypow (Suc k div 2) p"
chaieb@33154
   673
  let ?d = "polymul (?q,?q)"
wenzelm@42686
   674
  from 2 have th1:"isnpolyh ?q n" and th2: "isnpolyh p n" by blast+
chaieb@33154
   675
  from polymul_normh[OF th1 th1] have dn: "isnpolyh ?d n" by simp
chaieb@33154
   676
  from polymul_normh[OF th2 dn] have on: "isnpolyh (polymul(p,?d)) n" by simp
chaieb@33154
   677
  from dn on show ?case by (simp add: Let_def)
chaieb@33154
   678
qed auto 
chaieb@33154
   679
chaieb@33154
   680
lemma polypow_norm:   
haftmann@36409
   681
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
   682
  shows "isnpoly p \<Longrightarrow> isnpoly (polypow k p)"
chaieb@33154
   683
  by (simp add: polypow_normh isnpoly_def)
chaieb@33154
   684
krauss@41652
   685
text{* Finally the whole normalization *}
chaieb@33154
   686
haftmann@36409
   687
lemma polynate[simp]: "Ipoly bs (polynate p) = (Ipoly bs p :: 'a ::{field_char_0, field_inverse_zero})"
chaieb@33154
   688
by (induct p rule:polynate.induct, auto)
chaieb@33154
   689
chaieb@33154
   690
lemma polynate_norm[simp]: 
haftmann@36409
   691
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
   692
  shows "isnpoly (polynate p)"
chaieb@33154
   693
  by (induct p rule: polynate.induct, simp_all add: polyadd_norm polymul_norm polysub_norm polyneg_norm polypow_norm) (simp_all add: isnpoly_def)
chaieb@33154
   694
chaieb@33154
   695
text{* shift1 *}
chaieb@33154
   696
chaieb@33154
   697
chaieb@33154
   698
lemma shift1: "Ipoly bs (shift1 p) = Ipoly bs (Mul (Bound 0) p)"
wenzelm@42686
   699
  by (simp add: shift1_def)
chaieb@33154
   700
chaieb@33154
   701
lemma shift1_isnpoly: 
chaieb@33154
   702
  assumes pn: "isnpoly p" and pnz: "p \<noteq> 0\<^sub>p" shows "isnpoly (shift1 p) "
chaieb@33154
   703
  using pn pnz by (simp add: shift1_def isnpoly_def )
chaieb@33154
   704
chaieb@33154
   705
lemma shift1_nz[simp]:"shift1 p \<noteq> 0\<^sub>p"
chaieb@33154
   706
  by (simp add: shift1_def)
chaieb@33154
   707
lemma funpow_shift1_isnpoly: 
chaieb@33154
   708
  "\<lbrakk> isnpoly p ; p \<noteq> 0\<^sub>p\<rbrakk> \<Longrightarrow> isnpoly (funpow n shift1 p)"
haftmann@39473
   709
  by (induct n arbitrary: p) (auto simp add: shift1_isnpoly funpow_swap1)
chaieb@33154
   710
chaieb@33154
   711
lemma funpow_isnpolyh: 
chaieb@33154
   712
  assumes f: "\<And> p. isnpolyh p n \<Longrightarrow> isnpolyh (f p) n "and np: "isnpolyh p n"
chaieb@33154
   713
  shows "isnpolyh (funpow k f p) n"
chaieb@33154
   714
  using f np by (induct k arbitrary: p, auto)
chaieb@33154
   715
haftmann@36409
   716
lemma funpow_shift1: "(Ipoly bs (funpow n shift1 p) :: 'a :: {field_char_0, field_inverse_zero}) = Ipoly bs (Mul (Pw (Bound 0) n) p)"
wenzelm@42686
   717
  by (induct n arbitrary: p) (simp_all add: shift1_isnpoly shift1)
chaieb@33154
   718
chaieb@33154
   719
lemma shift1_isnpolyh: "isnpolyh p n0 \<Longrightarrow> p\<noteq> 0\<^sub>p \<Longrightarrow> isnpolyh (shift1 p) 0"
chaieb@33154
   720
  using isnpolyh_mono[where n="n0" and n'="0" and p="p"] by (simp add: shift1_def)
chaieb@33154
   721
chaieb@33154
   722
lemma funpow_shift1_1: 
haftmann@36409
   723
  "(Ipoly bs (funpow n shift1 p) :: 'a :: {field_char_0, field_inverse_zero}) = Ipoly bs (funpow n shift1 1\<^sub>p *\<^sub>p p)"
chaieb@33154
   724
  by (simp add: funpow_shift1)
chaieb@33154
   725
chaieb@33154
   726
lemma poly_cmul[simp]: "Ipoly bs (poly_cmul c p) = Ipoly bs (Mul (C c) p)"
haftmann@36348
   727
by (induct p  arbitrary: n0 rule: poly_cmul.induct, auto simp add: field_simps)
chaieb@33154
   728
chaieb@33154
   729
lemma behead:
chaieb@33154
   730
  assumes np: "isnpolyh p n"
haftmann@36409
   731
  shows "Ipoly bs (Add (Mul (head p) (Pw (Bound 0) (degree p))) (behead p)) = (Ipoly bs p :: 'a :: {field_char_0, field_inverse_zero})"
chaieb@33154
   732
  using np
chaieb@33154
   733
proof (induct p arbitrary: n rule: behead.induct)
chaieb@33154
   734
  case (1 c p n) hence pn: "isnpolyh p n" by simp
wenzelm@42686
   735
  from 1(1)[OF pn] 
chaieb@33154
   736
  have th:"Ipoly bs (Add (Mul (head p) (Pw (Bound 0) (degree p))) (behead p)) = Ipoly bs p" . 
chaieb@33154
   737
  then show ?case using "1.hyps" apply (simp add: Let_def,cases "behead p = 0\<^sub>p")
wenzelm@42686
   738
    by (simp_all add: th[symmetric] field_simps)
chaieb@33154
   739
qed (auto simp add: Let_def)
chaieb@33154
   740
chaieb@33154
   741
lemma behead_isnpolyh:
chaieb@33154
   742
  assumes np: "isnpolyh p n" shows "isnpolyh (behead p) n"
chaieb@33154
   743
  using np by (induct p rule: behead.induct, auto simp add: Let_def isnpolyh_mono)
chaieb@33154
   744
krauss@41652
   745
subsection{* Miscellaneous lemmas about indexes, decrementation, substitution  etc ... *}
chaieb@33154
   746
lemma isnpolyh_polybound0: "isnpolyh p (Suc n) \<Longrightarrow> polybound0 p"
haftmann@39473
   747
proof(induct p arbitrary: n rule: poly.induct, auto)
chaieb@33154
   748
  case (goal1 c n p n')
chaieb@33154
   749
  hence "n = Suc (n - 1)" by simp
chaieb@33154
   750
  hence "isnpolyh p (Suc (n - 1))"  using `isnpolyh p n` by simp
wenzelm@42686
   751
  with goal1(2) show ?case by simp
chaieb@33154
   752
qed
chaieb@33154
   753
chaieb@33154
   754
lemma isconstant_polybound0: "isnpolyh p n0 \<Longrightarrow> isconstant p \<longleftrightarrow> polybound0 p"
chaieb@33154
   755
by (induct p arbitrary: n0 rule: isconstant.induct, auto simp add: isnpolyh_polybound0)
chaieb@33154
   756
chaieb@33154
   757
lemma decrpoly_zero[simp]: "decrpoly p = 0\<^sub>p \<longleftrightarrow> p = 0\<^sub>p" by (induct p, auto)
chaieb@33154
   758
chaieb@33154
   759
lemma decrpoly_normh: "isnpolyh p n0 \<Longrightarrow> polybound0 p \<Longrightarrow> isnpolyh (decrpoly p) (n0 - 1)"
chaieb@33154
   760
  apply (induct p arbitrary: n0, auto)
chaieb@33154
   761
  apply (atomize)
chaieb@33154
   762
  apply (erule_tac x = "Suc nat" in allE)
chaieb@33154
   763
  apply auto
chaieb@33154
   764
  done
chaieb@33154
   765
chaieb@33154
   766
lemma head_polybound0: "isnpolyh p n0 \<Longrightarrow> polybound0 (head p)"
chaieb@33154
   767
 by (induct p  arbitrary: n0 rule: head.induct, auto intro: isnpolyh_polybound0)
chaieb@33154
   768
chaieb@33154
   769
lemma polybound0_I:
chaieb@33154
   770
  assumes nb: "polybound0 a"
chaieb@33154
   771
  shows "Ipoly (b#bs) a = Ipoly (b'#bs) a"
chaieb@33154
   772
using nb
haftmann@39473
   773
by (induct a rule: poly.induct) auto 
chaieb@33154
   774
lemma polysubst0_I:
chaieb@33154
   775
  shows "Ipoly (b#bs) (polysubst0 a t) = Ipoly ((Ipoly (b#bs) a)#bs) t"
chaieb@33154
   776
  by (induct t) simp_all
chaieb@33154
   777
chaieb@33154
   778
lemma polysubst0_I':
chaieb@33154
   779
  assumes nb: "polybound0 a"
chaieb@33154
   780
  shows "Ipoly (b#bs) (polysubst0 a t) = Ipoly ((Ipoly (b'#bs) a)#bs) t"
chaieb@33154
   781
  by (induct t) (simp_all add: polybound0_I[OF nb, where b="b" and b'="b'"])
chaieb@33154
   782
chaieb@33154
   783
lemma decrpoly: assumes nb: "polybound0 t"
chaieb@33154
   784
  shows "Ipoly (x#bs) t = Ipoly bs (decrpoly t)"
chaieb@33154
   785
  using nb by (induct t rule: decrpoly.induct, simp_all)
chaieb@33154
   786
chaieb@33154
   787
lemma polysubst0_polybound0: assumes nb: "polybound0 t"
chaieb@33154
   788
  shows "polybound0 (polysubst0 t a)"
haftmann@39473
   789
using nb by (induct a rule: poly.induct, auto)
chaieb@33154
   790
chaieb@33154
   791
lemma degree0_polybound0: "isnpolyh p n \<Longrightarrow> degree p = 0 \<Longrightarrow> polybound0 p"
chaieb@33154
   792
  by (induct p arbitrary: n rule: degree.induct, auto simp add: isnpolyh_polybound0)
chaieb@33154
   793
haftmann@39473
   794
primrec maxindex :: "poly \<Rightarrow> nat" where
chaieb@33154
   795
  "maxindex (Bound n) = n + 1"
chaieb@33154
   796
| "maxindex (CN c n p) = max  (n + 1) (max (maxindex c) (maxindex p))"
chaieb@33154
   797
| "maxindex (Add p q) = max (maxindex p) (maxindex q)"
chaieb@33154
   798
| "maxindex (Sub p q) = max (maxindex p) (maxindex q)"
chaieb@33154
   799
| "maxindex (Mul p q) = max (maxindex p) (maxindex q)"
chaieb@33154
   800
| "maxindex (Neg p) = maxindex p"
chaieb@33154
   801
| "maxindex (Pw p n) = maxindex p"
chaieb@33154
   802
| "maxindex (C x) = 0"
chaieb@33154
   803
chaieb@33154
   804
definition wf_bs :: "'a list \<Rightarrow> poly \<Rightarrow> bool" where
chaieb@33154
   805
  "wf_bs bs p = (length bs \<ge> maxindex p)"
chaieb@33154
   806
chaieb@33154
   807
lemma wf_bs_coefficients: "wf_bs bs p \<Longrightarrow> \<forall> c \<in> set (coefficients p). wf_bs bs c"
chaieb@33154
   808
proof(induct p rule: coefficients.induct)
chaieb@33154
   809
  case (1 c p) 
chaieb@33154
   810
  show ?case 
chaieb@33154
   811
  proof
chaieb@33154
   812
    fix x assume xc: "x \<in> set (coefficients (CN c 0 p))"
chaieb@33154
   813
    hence "x = c \<or> x \<in> set (coefficients p)" by simp
chaieb@33154
   814
    moreover 
chaieb@33154
   815
    {assume "x = c" hence "wf_bs bs x" using "1.prems"  unfolding wf_bs_def by simp}
chaieb@33154
   816
    moreover 
chaieb@33154
   817
    {assume H: "x \<in> set (coefficients p)" 
chaieb@33154
   818
      from "1.prems" have "wf_bs bs p" unfolding wf_bs_def by simp
chaieb@33154
   819
      with "1.hyps" H have "wf_bs bs x" by blast }
chaieb@33154
   820
    ultimately  show "wf_bs bs x" by blast
chaieb@33154
   821
  qed
chaieb@33154
   822
qed simp_all
chaieb@33154
   823
chaieb@33154
   824
lemma maxindex_coefficients: " \<forall>c\<in> set (coefficients p). maxindex c \<le> maxindex p"
chaieb@33154
   825
by (induct p rule: coefficients.induct, auto)
chaieb@33154
   826
chaieb@33154
   827
lemma wf_bs_I: "wf_bs bs p ==> Ipoly (bs@bs') p = Ipoly bs p"
chaieb@33154
   828
  unfolding wf_bs_def by (induct p, auto simp add: nth_append)
chaieb@33154
   829
chaieb@33154
   830
lemma take_maxindex_wf: assumes wf: "wf_bs bs p" 
chaieb@33154
   831
  shows "Ipoly (take (maxindex p) bs) p = Ipoly bs p"
chaieb@33154
   832
proof-
chaieb@33154
   833
  let ?ip = "maxindex p"
chaieb@33154
   834
  let ?tbs = "take ?ip bs"
chaieb@33154
   835
  from wf have "length ?tbs = ?ip" unfolding wf_bs_def by simp
chaieb@33154
   836
  hence wf': "wf_bs ?tbs p" unfolding wf_bs_def by  simp
chaieb@33154
   837
  have eq: "bs = ?tbs @ (drop ?ip bs)" by simp
chaieb@33154
   838
  from wf_bs_I[OF wf', of "drop ?ip bs"] show ?thesis using eq by simp
chaieb@33154
   839
qed
chaieb@33154
   840
chaieb@33154
   841
lemma decr_maxindex: "polybound0 p \<Longrightarrow> maxindex (decrpoly p) = maxindex p - 1"
wenzelm@42686
   842
  by (induct p) auto
chaieb@33154
   843
chaieb@33154
   844
lemma wf_bs_insensitive: "length bs = length bs' \<Longrightarrow> wf_bs bs p = wf_bs bs' p"
chaieb@33154
   845
  unfolding wf_bs_def by simp
chaieb@33154
   846
chaieb@33154
   847
lemma wf_bs_insensitive': "wf_bs (x#bs) p = wf_bs (y#bs) p"
chaieb@33154
   848
  unfolding wf_bs_def by simp
chaieb@33154
   849
chaieb@33154
   850
chaieb@33154
   851
chaieb@33154
   852
lemma wf_bs_coefficients': "\<forall>c \<in> set (coefficients p). wf_bs bs c \<Longrightarrow> wf_bs (x#bs) p"
chaieb@33154
   853
by(induct p rule: coefficients.induct, auto simp add: wf_bs_def)
chaieb@33154
   854
lemma coefficients_Nil[simp]: "coefficients p \<noteq> []"
chaieb@33154
   855
  by (induct p rule: coefficients.induct, simp_all)
chaieb@33154
   856
chaieb@33154
   857
chaieb@33154
   858
lemma coefficients_head: "last (coefficients p) = head p"
chaieb@33154
   859
  by (induct p rule: coefficients.induct, auto)
chaieb@33154
   860
chaieb@33154
   861
lemma wf_bs_decrpoly: "wf_bs bs (decrpoly p) \<Longrightarrow> wf_bs (x#bs) p"
chaieb@33154
   862
  unfolding wf_bs_def by (induct p rule: decrpoly.induct, auto)
chaieb@33154
   863
chaieb@33154
   864
lemma length_le_list_ex: "length xs \<le> n \<Longrightarrow> \<exists> ys. length (xs @ ys) = n"
chaieb@33154
   865
  apply (rule exI[where x="replicate (n - length xs) z"])
chaieb@33154
   866
  by simp
chaieb@33154
   867
lemma isnpolyh_Suc_const:"isnpolyh p (Suc n) \<Longrightarrow> isconstant p"
chaieb@33154
   868
by (cases p, auto) (case_tac "nat", simp_all)
chaieb@33154
   869
chaieb@33154
   870
lemma wf_bs_polyadd: "wf_bs bs p \<and> wf_bs bs q \<longrightarrow> wf_bs bs (p +\<^sub>p q)"
chaieb@33154
   871
  unfolding wf_bs_def 
chaieb@33154
   872
  apply (induct p q rule: polyadd.induct)
chaieb@33154
   873
  apply (auto simp add: Let_def)
chaieb@33154
   874
  done
chaieb@33154
   875
chaieb@33154
   876
lemma wf_bs_polyul: "wf_bs bs p \<Longrightarrow> wf_bs bs q \<Longrightarrow> wf_bs bs (p *\<^sub>p q)"
chaieb@33154
   877
chaieb@33154
   878
 unfolding wf_bs_def 
chaieb@33154
   879
  apply (induct p q arbitrary: bs rule: polymul.induct) 
chaieb@33154
   880
  apply (simp_all add: wf_bs_polyadd)
chaieb@33154
   881
  apply clarsimp
chaieb@33154
   882
  apply (rule wf_bs_polyadd[unfolded wf_bs_def, rule_format])
chaieb@33154
   883
  apply auto
chaieb@33154
   884
  done
chaieb@33154
   885
chaieb@33154
   886
lemma wf_bs_polyneg: "wf_bs bs p \<Longrightarrow> wf_bs bs (~\<^sub>p p)"
chaieb@33154
   887
  unfolding wf_bs_def by (induct p rule: polyneg.induct, auto)
chaieb@33154
   888
chaieb@33154
   889
lemma wf_bs_polysub: "wf_bs bs p \<Longrightarrow> wf_bs bs q \<Longrightarrow> wf_bs bs (p -\<^sub>p q)"
chaieb@33154
   890
  unfolding polysub_def split_def fst_conv snd_conv using wf_bs_polyadd wf_bs_polyneg by blast
chaieb@33154
   891
chaieb@33154
   892
subsection{* Canonicity of polynomial representation, see lemma isnpolyh_unique*}
chaieb@33154
   893
chaieb@33154
   894
definition "polypoly bs p = map (Ipoly bs) (coefficients p)"
chaieb@33154
   895
definition "polypoly' bs p = map ((Ipoly bs o decrpoly)) (coefficients p)"
chaieb@33154
   896
definition "poly_nate bs p = map ((Ipoly bs o decrpoly)) (coefficients (polynate p))"
chaieb@33154
   897
chaieb@33154
   898
lemma coefficients_normh: "isnpolyh p n0 \<Longrightarrow> \<forall> q \<in> set (coefficients p). isnpolyh q n0"
chaieb@33154
   899
proof (induct p arbitrary: n0 rule: coefficients.induct)
chaieb@33154
   900
  case (1 c p n0)
chaieb@33154
   901
  have cp: "isnpolyh (CN c 0 p) n0" by fact
chaieb@33154
   902
  hence norm: "isnpolyh c 0" "isnpolyh p 0" "p \<noteq> 0\<^sub>p" "n0 = 0"
chaieb@33154
   903
    by (auto simp add: isnpolyh_mono[where n'=0])
chaieb@33154
   904
  from "1.hyps"[OF norm(2)] norm(1) norm(4)  show ?case by simp 
chaieb@33154
   905
qed auto
chaieb@33154
   906
chaieb@33154
   907
lemma coefficients_isconst:
chaieb@33154
   908
  "isnpolyh p n \<Longrightarrow> \<forall>q\<in>set (coefficients p). isconstant q"
chaieb@33154
   909
  by (induct p arbitrary: n rule: coefficients.induct, 
chaieb@33154
   910
    auto simp add: isnpolyh_Suc_const)
chaieb@33154
   911
chaieb@33154
   912
lemma polypoly_polypoly':
chaieb@33154
   913
  assumes np: "isnpolyh p n0"
chaieb@33154
   914
  shows "polypoly (x#bs) p = polypoly' bs p"
chaieb@33154
   915
proof-
chaieb@33154
   916
  let ?cf = "set (coefficients p)"
chaieb@33154
   917
  from coefficients_normh[OF np] have cn_norm: "\<forall> q\<in> ?cf. isnpolyh q n0" .
chaieb@33154
   918
  {fix q assume q: "q \<in> ?cf"
chaieb@33154
   919
    from q cn_norm have th: "isnpolyh q n0" by blast
chaieb@33154
   920
    from coefficients_isconst[OF np] q have "isconstant q" by blast
chaieb@33154
   921
    with isconstant_polybound0[OF th] have "polybound0 q" by blast}
chaieb@33154
   922
  hence "\<forall>q \<in> ?cf. polybound0 q" ..
chaieb@33154
   923
  hence "\<forall>q \<in> ?cf. Ipoly (x#bs) q = Ipoly bs (decrpoly q)"
chaieb@33154
   924
    using polybound0_I[where b=x and bs=bs and b'=y] decrpoly[where x=x and bs=bs]
chaieb@33154
   925
    by auto
chaieb@33154
   926
  
chaieb@33154
   927
  thus ?thesis unfolding polypoly_def polypoly'_def by simp 
chaieb@33154
   928
qed
chaieb@33154
   929
chaieb@33154
   930
lemma polypoly_poly:
chaieb@33154
   931
  assumes np: "isnpolyh p n0" shows "Ipoly (x#bs) p = poly (polypoly (x#bs) p) x"
chaieb@33154
   932
  using np 
chaieb@33154
   933
by (induct p arbitrary: n0 bs rule: coefficients.induct, auto simp add: polypoly_def)
chaieb@33154
   934
chaieb@33154
   935
lemma polypoly'_poly: 
chaieb@33154
   936
  assumes np: "isnpolyh p n0" shows "\<lparr>p\<rparr>\<^sub>p\<^bsup>x # bs\<^esup> = poly (polypoly' bs p) x"
chaieb@33154
   937
  using polypoly_poly[OF np, simplified polypoly_polypoly'[OF np]] .
chaieb@33154
   938
chaieb@33154
   939
chaieb@33154
   940
lemma polypoly_poly_polybound0:
chaieb@33154
   941
  assumes np: "isnpolyh p n0" and nb: "polybound0 p"
chaieb@33154
   942
  shows "polypoly bs p = [Ipoly bs p]"
chaieb@33154
   943
  using np nb unfolding polypoly_def 
chaieb@33154
   944
  by (cases p, auto, case_tac nat, auto)
chaieb@33154
   945
chaieb@33154
   946
lemma head_isnpolyh: "isnpolyh p n0 \<Longrightarrow> isnpolyh (head p) n0" 
chaieb@33154
   947
  by (induct p rule: head.induct, auto)
chaieb@33154
   948
chaieb@33154
   949
lemma headn_nz[simp]: "isnpolyh p n0 \<Longrightarrow> (headn p m = 0\<^sub>p) = (p = 0\<^sub>p)"
chaieb@33154
   950
  by (cases p,auto)
chaieb@33154
   951
chaieb@33154
   952
lemma head_eq_headn0: "head p = headn p 0"
chaieb@33154
   953
  by (induct p rule: head.induct, simp_all)
chaieb@33154
   954
chaieb@33154
   955
lemma head_nz[simp]: "isnpolyh p n0 \<Longrightarrow> (head p = 0\<^sub>p) = (p = 0\<^sub>p)"
chaieb@33154
   956
  by (simp add: head_eq_headn0)
chaieb@33154
   957
chaieb@33154
   958
lemma isnpolyh_zero_iff: 
haftmann@36409
   959
  assumes nq: "isnpolyh p n0" and eq :"\<forall>bs. wf_bs bs p \<longrightarrow> \<lparr>p\<rparr>\<^sub>p\<^bsup>bs\<^esup> = (0::'a::{field_char_0, field_inverse_zero, power})"
chaieb@33154
   960
  shows "p = 0\<^sub>p"
chaieb@33154
   961
using nq eq
berghofe@34915
   962
proof (induct "maxindex p" arbitrary: p n0 rule: less_induct)
berghofe@34915
   963
  case less
berghofe@34915
   964
  note np = `isnpolyh p n0` and zp = `\<forall>bs. wf_bs bs p \<longrightarrow> \<lparr>p\<rparr>\<^sub>p\<^bsup>bs\<^esup> = (0::'a)`
berghofe@34915
   965
  {assume nz: "maxindex p = 0"
berghofe@34915
   966
    then obtain c where "p = C c" using np by (cases p, auto)
chaieb@33154
   967
    with zp np have "p = 0\<^sub>p" unfolding wf_bs_def by simp}
chaieb@33154
   968
  moreover
berghofe@34915
   969
  {assume nz: "maxindex p \<noteq> 0"
chaieb@33154
   970
    let ?h = "head p"
chaieb@33154
   971
    let ?hd = "decrpoly ?h"
chaieb@33154
   972
    let ?ihd = "maxindex ?hd"
chaieb@33154
   973
    from head_isnpolyh[OF np] head_polybound0[OF np] have h:"isnpolyh ?h n0" "polybound0 ?h" 
chaieb@33154
   974
      by simp_all
chaieb@33154
   975
    hence nhd: "isnpolyh ?hd (n0 - 1)" using decrpoly_normh by blast
chaieb@33154
   976
    
chaieb@33154
   977
    from maxindex_coefficients[of p] coefficients_head[of p, symmetric]
berghofe@34915
   978
    have mihn: "maxindex ?h \<le> maxindex p" by auto
berghofe@34915
   979
    with decr_maxindex[OF h(2)] nz  have ihd_lt_n: "?ihd < maxindex p" by auto
chaieb@33154
   980
    {fix bs:: "'a list"  assume bs: "wf_bs bs ?hd"
chaieb@33154
   981
      let ?ts = "take ?ihd bs"
chaieb@33154
   982
      let ?rs = "drop ?ihd bs"
chaieb@33154
   983
      have ts: "wf_bs ?ts ?hd" using bs unfolding wf_bs_def by simp
chaieb@33154
   984
      have bs_ts_eq: "?ts@ ?rs = bs" by simp
chaieb@33154
   985
      from wf_bs_decrpoly[OF ts] have tsh: " \<forall>x. wf_bs (x#?ts) ?h" by simp
berghofe@34915
   986
      from ihd_lt_n have "ALL x. length (x#?ts) \<le> maxindex p" by simp
berghofe@34915
   987
      with length_le_list_ex obtain xs where xs:"length ((x#?ts) @ xs) = maxindex p" by blast
berghofe@34915
   988
      hence "\<forall> x. wf_bs ((x#?ts) @ xs) p" unfolding wf_bs_def by simp
chaieb@33154
   989
      with zp have "\<forall> x. Ipoly ((x#?ts) @ xs) p = 0" by blast
chaieb@33154
   990
      hence "\<forall> x. Ipoly (x#(?ts @ xs)) p = 0" by simp
chaieb@33154
   991
      with polypoly_poly[OF np, where ?'a = 'a] polypoly_polypoly'[OF np, where ?'a = 'a]
chaieb@33154
   992
      have "\<forall>x. poly (polypoly' (?ts @ xs) p) x = poly [] x"  by simp
chaieb@33154
   993
      hence "poly (polypoly' (?ts @ xs) p) = poly []" by (auto intro: ext) 
chaieb@33154
   994
      hence "\<forall> c \<in> set (coefficients p). Ipoly (?ts @ xs) (decrpoly c) = 0"
wenzelm@33268
   995
        using poly_zero[where ?'a='a] by (simp add: polypoly'_def list_all_iff)
chaieb@33154
   996
      with coefficients_head[of p, symmetric]
chaieb@33154
   997
      have th0: "Ipoly (?ts @ xs) ?hd = 0" by simp
chaieb@33154
   998
      from bs have wf'': "wf_bs ?ts ?hd" unfolding wf_bs_def by simp
chaieb@33154
   999
      with th0 wf_bs_I[of ?ts ?hd xs] have "Ipoly ?ts ?hd = 0" by simp
chaieb@33154
  1000
      with wf'' wf_bs_I[of ?ts ?hd ?rs] bs_ts_eq have "\<lparr>?hd\<rparr>\<^sub>p\<^bsup>bs\<^esup> = 0" by simp }
chaieb@33154
  1001
    then have hdz: "\<forall>bs. wf_bs bs ?hd \<longrightarrow> \<lparr>?hd\<rparr>\<^sub>p\<^bsup>bs\<^esup> = (0::'a)" by blast
chaieb@33154
  1002
    
berghofe@34915
  1003
    from less(1)[OF ihd_lt_n nhd] hdz have "?hd = 0\<^sub>p" by blast
chaieb@33154
  1004
    hence "?h = 0\<^sub>p" by simp
chaieb@33154
  1005
    with head_nz[OF np] have "p = 0\<^sub>p" by simp}
chaieb@33154
  1006
  ultimately show "p = 0\<^sub>p" by blast
chaieb@33154
  1007
qed
chaieb@33154
  1008
chaieb@33154
  1009
lemma isnpolyh_unique:  
chaieb@33154
  1010
  assumes np:"isnpolyh p n0" and nq: "isnpolyh q n1"
haftmann@36409
  1011
  shows "(\<forall>bs. \<lparr>p\<rparr>\<^sub>p\<^bsup>bs\<^esup> = (\<lparr>q\<rparr>\<^sub>p\<^bsup>bs\<^esup> :: 'a::{field_char_0, field_inverse_zero, power})) \<longleftrightarrow>  p = q"
chaieb@33154
  1012
proof(auto)
chaieb@33154
  1013
  assume H: "\<forall>bs. (\<lparr>p\<rparr>\<^sub>p\<^bsup>bs\<^esup> ::'a)= \<lparr>q\<rparr>\<^sub>p\<^bsup>bs\<^esup>"
chaieb@33154
  1014
  hence "\<forall>bs.\<lparr>p -\<^sub>p q\<rparr>\<^sub>p\<^bsup>bs\<^esup>= (0::'a)" by simp
chaieb@33154
  1015
  hence "\<forall>bs. wf_bs bs (p -\<^sub>p q) \<longrightarrow> \<lparr>p -\<^sub>p q\<rparr>\<^sub>p\<^bsup>bs\<^esup> = (0::'a)" 
chaieb@33154
  1016
    using wf_bs_polysub[where p=p and q=q] by auto
chaieb@33154
  1017
  with isnpolyh_zero_iff[OF polysub_normh[OF np nq]] polysub_0[OF np nq]
chaieb@33154
  1018
  show "p = q" by blast
chaieb@33154
  1019
qed
chaieb@33154
  1020
chaieb@33154
  1021
krauss@41652
  1022
text{* consequences of unicity on the algorithms for polynomial normalization *}
chaieb@33154
  1023
haftmann@36409
  1024
lemma polyadd_commute:   assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
  1025
  and np: "isnpolyh p n0" and nq: "isnpolyh q n1" shows "p +\<^sub>p q = q +\<^sub>p p"
chaieb@33154
  1026
  using isnpolyh_unique[OF polyadd_normh[OF np nq] polyadd_normh[OF nq np]] by simp
chaieb@33154
  1027
chaieb@33154
  1028
lemma zero_normh: "isnpolyh 0\<^sub>p n" by simp
chaieb@33154
  1029
lemma one_normh: "isnpolyh 1\<^sub>p n" by simp
chaieb@33154
  1030
lemma polyadd_0[simp]: 
haftmann@36409
  1031
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
  1032
  and np: "isnpolyh p n0" shows "p +\<^sub>p 0\<^sub>p = p" and "0\<^sub>p +\<^sub>p p = p"
chaieb@33154
  1033
  using isnpolyh_unique[OF polyadd_normh[OF np zero_normh] np] 
chaieb@33154
  1034
    isnpolyh_unique[OF polyadd_normh[OF zero_normh np] np] by simp_all
chaieb@33154
  1035
chaieb@33154
  1036
lemma polymul_1[simp]: 
wenzelm@42686
  1037
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
  1038
  and np: "isnpolyh p n0" shows "p *\<^sub>p 1\<^sub>p = p" and "1\<^sub>p *\<^sub>p p = p"
chaieb@33154
  1039
  using isnpolyh_unique[OF polymul_normh[OF np one_normh] np] 
chaieb@33154
  1040
    isnpolyh_unique[OF polymul_normh[OF one_normh np] np] by simp_all
chaieb@33154
  1041
lemma polymul_0[simp]: 
haftmann@36409
  1042
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
  1043
  and np: "isnpolyh p n0" shows "p *\<^sub>p 0\<^sub>p = 0\<^sub>p" and "0\<^sub>p *\<^sub>p p = 0\<^sub>p"
chaieb@33154
  1044
  using isnpolyh_unique[OF polymul_normh[OF np zero_normh] zero_normh] 
chaieb@33154
  1045
    isnpolyh_unique[OF polymul_normh[OF zero_normh np] zero_normh] by simp_all
chaieb@33154
  1046
chaieb@33154
  1047
lemma polymul_commute: 
haftmann@36409
  1048
    assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
  1049
  and np:"isnpolyh p n0" and nq: "isnpolyh q n1"
chaieb@33154
  1050
  shows "p *\<^sub>p q = q *\<^sub>p p"
haftmann@36409
  1051
using isnpolyh_unique[OF polymul_normh[OF np nq] polymul_normh[OF nq np], where ?'a = "'a\<Colon>{field_char_0, field_inverse_zero, power}"] by simp
chaieb@33154
  1052
chaieb@33154
  1053
declare polyneg_polyneg[simp]
chaieb@33154
  1054
  
chaieb@33154
  1055
lemma isnpolyh_polynate_id[simp]: 
haftmann@36409
  1056
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
  1057
  and np:"isnpolyh p n0" shows "polynate p = p"
haftmann@36409
  1058
  using isnpolyh_unique[where ?'a= "'a::{field_char_0, field_inverse_zero}", OF polynate_norm[of p, unfolded isnpoly_def] np] polynate[where ?'a = "'a::{field_char_0, field_inverse_zero}"] by simp
chaieb@33154
  1059
chaieb@33154
  1060
lemma polynate_idempotent[simp]: 
haftmann@36409
  1061
    assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
  1062
  shows "polynate (polynate p) = polynate p"
chaieb@33154
  1063
  using isnpolyh_polynate_id[OF polynate_norm[of p, unfolded isnpoly_def]] .
chaieb@33154
  1064
chaieb@33154
  1065
lemma poly_nate_polypoly': "poly_nate bs p = polypoly' bs (polynate p)"
chaieb@33154
  1066
  unfolding poly_nate_def polypoly'_def ..
haftmann@36409
  1067
lemma poly_nate_poly: shows "poly (poly_nate bs p) = (\<lambda>x:: 'a ::{field_char_0, field_inverse_zero}. \<lparr>p\<rparr>\<^sub>p\<^bsup>x # bs\<^esup>)"
chaieb@33154
  1068
  using polypoly'_poly[OF polynate_norm[unfolded isnpoly_def], symmetric, of bs p]
chaieb@33154
  1069
  unfolding poly_nate_polypoly' by (auto intro: ext)
chaieb@33154
  1070
chaieb@33154
  1071
subsection{* heads, degrees and all that *}
chaieb@33154
  1072
lemma degree_eq_degreen0: "degree p = degreen p 0"
chaieb@33154
  1073
  by (induct p rule: degree.induct, simp_all)
chaieb@33154
  1074
chaieb@33154
  1075
lemma degree_polyneg: assumes n: "isnpolyh p n"
chaieb@33154
  1076
  shows "degree (polyneg p) = degree p"
chaieb@33154
  1077
  using n
chaieb@33154
  1078
  by (induct p arbitrary: n rule: polyneg.induct, simp_all) (case_tac na, auto)
chaieb@33154
  1079
chaieb@33154
  1080
lemma degree_polyadd:
chaieb@33154
  1081
  assumes np: "isnpolyh p n0" and nq: "isnpolyh q n1"
chaieb@33154
  1082
  shows "degree (p +\<^sub>p q) \<le> max (degree p) (degree q)"
chaieb@33154
  1083
using degreen_polyadd[OF np nq, where m= "0"] degree_eq_degreen0 by simp
chaieb@33154
  1084
chaieb@33154
  1085
chaieb@33154
  1086
lemma degree_polysub: assumes np: "isnpolyh p n0" and nq: "isnpolyh q n1"
chaieb@33154
  1087
  shows "degree (p -\<^sub>p q) \<le> max (degree p) (degree q)"
chaieb@33154
  1088
proof-
chaieb@33154
  1089
  from nq have nq': "isnpolyh (~\<^sub>p q) n1" using polyneg_normh by simp
chaieb@33154
  1090
  from degree_polyadd[OF np nq'] show ?thesis by (simp add: polysub_def degree_polyneg[OF nq])
chaieb@33154
  1091
qed
chaieb@33154
  1092
chaieb@33154
  1093
lemma degree_polysub_samehead: 
haftmann@36409
  1094
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
  1095
  and np: "isnpolyh p n0" and nq: "isnpolyh q n1" and h: "head p = head q" 
chaieb@33154
  1096
  and d: "degree p = degree q"
chaieb@33154
  1097
  shows "degree (p -\<^sub>p q) < degree p \<or> (p -\<^sub>p q = 0\<^sub>p)"
chaieb@33154
  1098
unfolding polysub_def split_def fst_conv snd_conv
chaieb@33154
  1099
using np nq h d
chaieb@33154
  1100
proof(induct p q rule:polyadd.induct)
chaieb@33154
  1101
  case (1 a b a' b') thus ?case by (simp add: Nsub_def Nsub0[simplified Nsub_def]) 
chaieb@33154
  1102
next
chaieb@33154
  1103
  case (2 a b c' n' p') 
chaieb@33154
  1104
  let ?c = "(a,b)"
wenzelm@42686
  1105
  from 2 have "degree (C ?c) = degree (CN c' n' p')" by simp
chaieb@33154
  1106
  hence nz:"n' > 0" by (cases n', auto)
chaieb@33154
  1107
  hence "head (CN c' n' p') = CN c' n' p'" by (cases n', auto)
wenzelm@42686
  1108
  with 2 show ?case by simp
chaieb@33154
  1109
next
chaieb@33154
  1110
  case (3 c n p a' b') 
chaieb@33154
  1111
  let ?c' = "(a',b')"
wenzelm@42686
  1112
  from 3 have "degree (C ?c') = degree (CN c n p)" by simp
chaieb@33154
  1113
  hence nz:"n > 0" by (cases n, auto)
chaieb@33154
  1114
  hence "head (CN c n p) = CN c n p" by (cases n, auto)
wenzelm@42686
  1115
  with 3 show ?case by simp
chaieb@33154
  1116
next
chaieb@33154
  1117
  case (4 c n p c' n' p')
chaieb@33154
  1118
  hence H: "isnpolyh (CN c n p) n0" "isnpolyh (CN c' n' p') n1" 
chaieb@33154
  1119
    "head (CN c n p) = head (CN c' n' p')" "degree (CN c n p) = degree (CN c' n' p')" by simp+
chaieb@33154
  1120
  hence degc: "degree c = 0" and degc': "degree c' = 0" by simp_all  
chaieb@33154
  1121
  hence degnc: "degree (~\<^sub>p c) = 0" and degnc': "degree (~\<^sub>p c') = 0" 
chaieb@33154
  1122
    using H(1-2) degree_polyneg by auto
chaieb@33154
  1123
  from H have cnh: "isnpolyh c (Suc n)" and c'nh: "isnpolyh c' (Suc n')"  by simp+
chaieb@33154
  1124
  from degree_polysub[OF cnh c'nh, simplified polysub_def] degc degc' have degcmc': "degree (c +\<^sub>p  ~\<^sub>pc') = 0"  by simp
chaieb@33154
  1125
  from H have pnh: "isnpolyh p n" and p'nh: "isnpolyh p' n'" by auto
chaieb@33154
  1126
  have "n = n' \<or> n < n' \<or> n > n'" by arith
chaieb@33154
  1127
  moreover
chaieb@33154
  1128
  {assume nn': "n = n'"
chaieb@33154
  1129
    have "n = 0 \<or> n >0" by arith
wenzelm@42686
  1130
    moreover {assume nz: "n = 0" hence ?case using 4 nn' by (auto simp add: Let_def degcmc')}
chaieb@33154
  1131
    moreover {assume nz: "n > 0"
wenzelm@42686
  1132
      with nn' H(3) have  cc': "c = c'" and pp': "p = p'" by (cases n, auto)+
wenzelm@42686
  1133
      hence ?case
wenzelm@42686
  1134
        using polysub_same_0 [OF p'nh, simplified polysub_def split_def fst_conv snd_conv]
wenzelm@42686
  1135
          polysub_same_0 [OF c'nh, simplified polysub_def split_def fst_conv snd_conv]
wenzelm@42686
  1136
        using 4 nn' by (simp add: Let_def) }
chaieb@33154
  1137
    ultimately have ?case by blast}
chaieb@33154
  1138
  moreover
chaieb@33154
  1139
  {assume nn': "n < n'" hence n'p: "n' > 0" by simp 
chaieb@33154
  1140
    hence headcnp':"head (CN c' n' p') = CN c' n' p'"  by (cases n', simp_all)
wenzelm@42686
  1141
    have degcnp': "degree (CN c' n' p') = 0" and degcnpeq: "degree (CN c n p) = degree (CN c' n' p')"
wenzelm@42686
  1142
      using 4 nn' by (cases n', simp_all)
wenzelm@42686
  1143
    hence "n > 0" by (cases n) simp_all
wenzelm@42686
  1144
    hence headcnp: "head (CN c n p) = CN c n p" by (cases n) auto
wenzelm@42686
  1145
    from H(3) headcnp headcnp' nn' have ?case by auto }
chaieb@33154
  1146
  moreover
chaieb@33154
  1147
  {assume nn': "n > n'"  hence np: "n > 0" by simp 
wenzelm@42686
  1148
    hence headcnp: "head (CN c n p) = CN c n p" by (cases n) simp_all
wenzelm@42686
  1149
    from 4 have degcnpeq: "degree (CN c' n' p') = degree (CN c n p)" by simp
wenzelm@42686
  1150
    from np have degcnp: "degree (CN c n p) = 0" by (cases n) simp_all
chaieb@33154
  1151
    with degcnpeq have "n' > 0" by (cases n', simp_all)
wenzelm@42686
  1152
    hence headcnp': "head (CN c' n' p') = CN c' n' p'" by (cases n') auto
wenzelm@42686
  1153
    from H(3) headcnp headcnp' nn' have ?case by auto }
chaieb@33154
  1154
  ultimately show ?case  by blast
chaieb@33154
  1155
qed auto 
chaieb@33154
  1156
 
chaieb@33154
  1157
lemma shift1_head : "isnpolyh p n0 \<Longrightarrow> head (shift1 p) = head p"
wenzelm@42686
  1158
  by (induct p arbitrary: n0 rule: head.induct) (simp_all add: shift1_def)
chaieb@33154
  1159
chaieb@33154
  1160
lemma funpow_shift1_head: "isnpolyh p n0 \<Longrightarrow> p\<noteq> 0\<^sub>p \<Longrightarrow> head (funpow k shift1 p) = head p"
chaieb@33154
  1161
proof(induct k arbitrary: n0 p)
chaieb@33154
  1162
  case (Suc k n0 p) hence "isnpolyh (shift1 p) 0" by (simp add: shift1_isnpolyh)
wenzelm@42686
  1163
  with Suc have "head (funpow k shift1 (shift1 p)) = head (shift1 p)"
chaieb@33154
  1164
    and "head (shift1 p) = head p" by (simp_all add: shift1_head) 
haftmann@39473
  1165
  thus ?case by (simp add: funpow_swap1)
chaieb@33154
  1166
qed auto  
chaieb@33154
  1167
chaieb@33154
  1168
lemma shift1_degree: "degree (shift1 p) = 1 + degree p"
chaieb@33154
  1169
  by (simp add: shift1_def)
chaieb@33154
  1170
lemma funpow_shift1_degree: "degree (funpow k shift1 p) = k + degree p "
chaieb@33154
  1171
  by (induct k arbitrary: p, auto simp add: shift1_degree)
chaieb@33154
  1172
chaieb@33154
  1173
lemma funpow_shift1_nz: "p \<noteq> 0\<^sub>p \<Longrightarrow> funpow n shift1 p \<noteq> 0\<^sub>p"
chaieb@33154
  1174
  by (induct n arbitrary: p, simp_all add: funpow_def)
chaieb@33154
  1175
chaieb@33154
  1176
lemma head_isnpolyh_Suc[simp]: "isnpolyh p (Suc n) \<Longrightarrow> head p = p"
chaieb@33154
  1177
  by (induct p arbitrary: n rule: degree.induct, auto)
chaieb@33154
  1178
lemma headn_0[simp]: "isnpolyh p n \<Longrightarrow> m < n \<Longrightarrow> headn p m = p"
chaieb@33154
  1179
  by (induct p arbitrary: n rule: degreen.induct, auto)
chaieb@33154
  1180
lemma head_isnpolyh_Suc': "n > 0 \<Longrightarrow> isnpolyh p n \<Longrightarrow> head p = p"
chaieb@33154
  1181
  by (induct p arbitrary: n rule: degree.induct, auto)
chaieb@33154
  1182
lemma head_head[simp]: "isnpolyh p n0 \<Longrightarrow> head (head p) = head p"
chaieb@33154
  1183
  by (induct p rule: head.induct, auto)
chaieb@33154
  1184
chaieb@33154
  1185
lemma polyadd_eq_const_degree: 
chaieb@33154
  1186
  "\<lbrakk> isnpolyh p n0 ; isnpolyh q n1 ; polyadd (p,q) = C c\<rbrakk> \<Longrightarrow> degree p = degree q" 
chaieb@33154
  1187
  using polyadd_eq_const_degreen degree_eq_degreen0 by simp
chaieb@33154
  1188
chaieb@33154
  1189
lemma polyadd_head: assumes np: "isnpolyh p n0" and nq: "isnpolyh q n1"
chaieb@33154
  1190
  and deg: "degree p \<noteq> degree q"
chaieb@33154
  1191
  shows "head (p +\<^sub>p q) = (if degree p < degree q then head q else head p)"
chaieb@33154
  1192
using np nq deg
chaieb@33154
  1193
apply(induct p q arbitrary: n0 n1 rule: polyadd.induct,simp_all)
chaieb@33154
  1194
apply (case_tac n', simp, simp)
chaieb@33154
  1195
apply (case_tac n, simp, simp)
chaieb@33154
  1196
apply (case_tac n, case_tac n', simp add: Let_def)
chaieb@33154
  1197
apply (case_tac "pa +\<^sub>p p' = 0\<^sub>p")
krauss@42634
  1198
apply (auto simp add: polyadd_eq_const_degree)
krauss@42634
  1199
apply (metis head_nz)
krauss@42634
  1200
apply (metis head_nz)
krauss@42634
  1201
apply (metis degree.simps(9) gr0_conv_Suc head.simps(1) less_Suc0 not_less_eq)
wenzelm@42686
  1202
apply (metis degree.simps(9) gr0_conv_Suc nat_less_le order_le_less_trans)
wenzelm@42686
  1203
done
chaieb@33154
  1204
chaieb@33154
  1205
lemma polymul_head_polyeq: 
wenzelm@42686
  1206
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
  1207
  shows "\<lbrakk>isnpolyh p n0; isnpolyh q n1 ; p \<noteq> 0\<^sub>p ; q \<noteq> 0\<^sub>p \<rbrakk> \<Longrightarrow> head (p *\<^sub>p q) = head p *\<^sub>p head q"
chaieb@33154
  1208
proof (induct p q arbitrary: n0 n1 rule: polymul.induct)
chaieb@33154
  1209
  case (2 a b c' n' p' n0 n1)
chaieb@33154
  1210
  hence "isnpolyh (head (CN c' n' p')) n1" "isnormNum (a,b)"  by (simp_all add: head_isnpolyh)
wenzelm@42686
  1211
  thus ?case using 2 by (cases n') auto
chaieb@33154
  1212
next 
chaieb@33154
  1213
  case (3 c n p a' b' n0 n1) 
chaieb@33154
  1214
  hence "isnpolyh (head (CN c n p)) n0" "isnormNum (a',b')"  by (simp_all add: head_isnpolyh)
wenzelm@42686
  1215
  thus ?case using 3 by (cases n) auto
chaieb@33154
  1216
next
chaieb@33154
  1217
  case (4 c n p c' n' p' n0 n1)
chaieb@33154
  1218
  hence norm: "isnpolyh p n" "isnpolyh c (Suc n)" "isnpolyh p' n'" "isnpolyh c' (Suc n')"
chaieb@33154
  1219
    "isnpolyh (CN c n p) n" "isnpolyh (CN c' n' p') n'"
chaieb@33154
  1220
    by simp_all
chaieb@33154
  1221
  have "n < n' \<or> n' < n \<or> n = n'" by arith
chaieb@33154
  1222
  moreover 
chaieb@33154
  1223
  {assume nn': "n < n'" hence ?case 
wenzelm@42686
  1224
    using norm 
wenzelm@42686
  1225
    4(5)[rule_format, OF nn' norm(1,6)]
wenzelm@42686
  1226
    4(6)[rule_format, OF nn' norm(2,6)] by (simp, cases n, simp,cases n', simp_all) }
chaieb@33154
  1227
  moreover {assume nn': "n'< n"
chaieb@33154
  1228
    hence stupid: "n' < n \<and> \<not> n < n'" by simp
wenzelm@42686
  1229
    hence ?case using norm 4(3) [rule_format, OF stupid norm(5,3)]
wenzelm@42686
  1230
      4(4)[rule_format, OF stupid norm(5,4)] 
wenzelm@42686
  1231
      by (simp,cases n',simp,cases n,auto) }
chaieb@33154
  1232
  moreover {assume nn': "n' = n"
chaieb@33154
  1233
    hence stupid: "\<not> n' < n \<and> \<not> n < n'" by simp
chaieb@33154
  1234
    from nn' polymul_normh[OF norm(5,4)] 
chaieb@33154
  1235
    have ncnpc':"isnpolyh (CN c n p *\<^sub>p c') n" by (simp add: min_def)
chaieb@33154
  1236
    from nn' polymul_normh[OF norm(5,3)] norm 
chaieb@33154
  1237
    have ncnpp':"isnpolyh (CN c n p *\<^sub>p p') n" by simp
chaieb@33154
  1238
    from nn' ncnpp' polymul_eq0_iff[OF norm(5,3)] norm(6)
chaieb@33154
  1239
    have ncnpp0':"isnpolyh (CN 0\<^sub>p n (CN c n p *\<^sub>p p')) n" by simp 
chaieb@33154
  1240
    from polyadd_normh[OF ncnpc' ncnpp0'] 
chaieb@33154
  1241
    have nth: "isnpolyh ((CN c n p *\<^sub>p c') +\<^sub>p (CN 0\<^sub>p n (CN c n p *\<^sub>p p'))) n" 
chaieb@33154
  1242
      by (simp add: min_def)
chaieb@33154
  1243
    {assume np: "n > 0"
chaieb@33154
  1244
      with nn' head_isnpolyh_Suc'[OF np nth]
wenzelm@33268
  1245
        head_isnpolyh_Suc'[OF np norm(5)] head_isnpolyh_Suc'[OF np norm(6)[simplified nn']]
chaieb@33154
  1246
      have ?case by simp}
chaieb@33154
  1247
    moreover
chaieb@33154
  1248
    {moreover assume nz: "n = 0"
chaieb@33154
  1249
      from polymul_degreen[OF norm(5,4), where m="0"]
wenzelm@33268
  1250
        polymul_degreen[OF norm(5,3), where m="0"] nn' nz degree_eq_degreen0
chaieb@33154
  1251
      norm(5,6) degree_npolyhCN[OF norm(6)]
chaieb@33154
  1252
    have dth:"degree (CN c 0 p *\<^sub>p c') < degree (CN 0\<^sub>p 0 (CN c 0 p *\<^sub>p p'))" by simp
chaieb@33154
  1253
    hence dth':"degree (CN c 0 p *\<^sub>p c') \<noteq> degree (CN 0\<^sub>p 0 (CN c 0 p *\<^sub>p p'))" by simp
chaieb@33154
  1254
    from polyadd_head[OF ncnpc'[simplified nz] ncnpp0'[simplified nz] dth'] dth
wenzelm@42686
  1255
    have ?case using norm 4(1)[rule_format, OF stupid norm(5,3)]
wenzelm@42686
  1256
        4(2)[rule_format, OF stupid norm(5,4)] nn' nz by simp }
chaieb@33154
  1257
    ultimately have ?case by (cases n) auto} 
chaieb@33154
  1258
  ultimately show ?case by blast
chaieb@33154
  1259
qed simp_all
chaieb@33154
  1260
chaieb@33154
  1261
lemma degree_coefficients: "degree p = length (coefficients p) - 1"
chaieb@33154
  1262
  by(induct p rule: degree.induct, auto)
chaieb@33154
  1263
chaieb@33154
  1264
lemma degree_head[simp]: "degree (head p) = 0"
chaieb@33154
  1265
  by (induct p rule: head.induct, auto)
chaieb@33154
  1266
chaieb@33154
  1267
lemma degree_CN: "isnpolyh p n \<Longrightarrow> degree (CN c n p) \<le> 1+ degree p"
chaieb@33154
  1268
  by (cases n, simp_all)
chaieb@33154
  1269
lemma degree_CN': "isnpolyh p n \<Longrightarrow> degree (CN c n p) \<ge>  degree p"
chaieb@33154
  1270
  by (cases n, simp_all)
chaieb@33154
  1271
chaieb@33154
  1272
lemma polyadd_different_degree: "\<lbrakk>isnpolyh p n0 ; isnpolyh q n1; degree p \<noteq> degree q\<rbrakk> \<Longrightarrow> degree (polyadd(p,q)) = max (degree p) (degree q)"
chaieb@33154
  1273
  using polyadd_different_degreen degree_eq_degreen0 by simp
chaieb@33154
  1274
chaieb@33154
  1275
lemma degreen_polyneg: "isnpolyh p n0 \<Longrightarrow> degreen (~\<^sub>p p) m = degreen p m"
chaieb@33154
  1276
  by (induct p arbitrary: n0 rule: polyneg.induct, auto)
chaieb@33154
  1277
chaieb@33154
  1278
lemma degree_polymul:
haftmann@36409
  1279
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
  1280
  and np: "isnpolyh p n0" and nq: "isnpolyh q n1"
chaieb@33154
  1281
  shows "degree (p *\<^sub>p q) \<le> degree p + degree q"
chaieb@33154
  1282
  using polymul_degreen[OF np nq, where m="0"]  degree_eq_degreen0 by simp
chaieb@33154
  1283
chaieb@33154
  1284
lemma polyneg_degree: "isnpolyh p n \<Longrightarrow> degree (polyneg p) = degree p"
chaieb@33154
  1285
  by (induct p arbitrary: n rule: degree.induct, auto)
chaieb@33154
  1286
chaieb@33154
  1287
lemma polyneg_head: "isnpolyh p n \<Longrightarrow> head(polyneg p) = polyneg (head p)"
chaieb@33154
  1288
  by (induct p arbitrary: n rule: degree.induct, auto)
chaieb@33154
  1289
chaieb@33154
  1290
subsection {* Correctness of polynomial pseudo division *}
chaieb@33154
  1291
chaieb@33154
  1292
lemma polydivide_aux_properties:
haftmann@36409
  1293
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
  1294
  and np: "isnpolyh p n0" and ns: "isnpolyh s n1"
chaieb@33154
  1295
  and ap: "head p = a" and ndp: "degree p = n" and pnz: "p \<noteq> 0\<^sub>p"
krauss@41651
  1296
  shows "(polydivide_aux a n p k s = (k',r) \<longrightarrow> (k' \<ge> k) \<and> (degree r = 0 \<or> degree r < degree p) 
chaieb@33154
  1297
          \<and> (\<exists>nr. isnpolyh r nr) \<and> (\<exists>q n1. isnpolyh q n1 \<and> ((polypow (k' - k) a) *\<^sub>p s = p *\<^sub>p q +\<^sub>p r)))"
chaieb@33154
  1298
  using ns
berghofe@34915
  1299
proof(induct "degree s" arbitrary: s k k' r n1 rule: less_induct)
berghofe@34915
  1300
  case less
chaieb@33154
  1301
  let ?qths = "\<exists>q n1. isnpolyh q n1 \<and> (a ^\<^sub>p (k' - k) *\<^sub>p s = p *\<^sub>p q +\<^sub>p r)"
krauss@41651
  1302
  let ?ths = "polydivide_aux a n p k s = (k', r) \<longrightarrow>  k \<le> k' \<and> (degree r = 0 \<or> degree r < degree p) 
chaieb@33154
  1303
    \<and> (\<exists>nr. isnpolyh r nr) \<and> ?qths"
chaieb@33154
  1304
  let ?b = "head s"
berghofe@34915
  1305
  let ?p' = "funpow (degree s - n) shift1 p"
berghofe@34915
  1306
  let ?xdn = "funpow (degree s - n) shift1 1\<^sub>p"
chaieb@33154
  1307
  let ?akk' = "a ^\<^sub>p (k' - k)"
berghofe@34915
  1308
  note ns = `isnpolyh s n1`
chaieb@33154
  1309
  from np have np0: "isnpolyh p 0" 
chaieb@33154
  1310
    using isnpolyh_mono[where n="n0" and n'="0" and p="p"]  by simp
berghofe@34915
  1311
  have np': "isnpolyh ?p' 0" using funpow_shift1_isnpoly[OF np0[simplified isnpoly_def[symmetric]] pnz, where n="degree s - n"] isnpoly_def by simp
chaieb@33154
  1312
  have headp': "head ?p' = head p" using funpow_shift1_head[OF np pnz] by simp
chaieb@33154
  1313
  from funpow_shift1_isnpoly[where p="1\<^sub>p"] have nxdn: "isnpolyh ?xdn 0" by (simp add: isnpoly_def)
chaieb@33154
  1314
  from polypow_normh [OF head_isnpolyh[OF np0], where k="k' - k"] ap 
chaieb@33154
  1315
  have nakk':"isnpolyh ?akk' 0" by blast
chaieb@33154
  1316
  {assume sz: "s = 0\<^sub>p"
krauss@41651
  1317
   hence ?ths using np polydivide_aux.simps apply clarsimp by (rule exI[where x="0\<^sub>p"], simp) }
chaieb@33154
  1318
  moreover
chaieb@33154
  1319
  {assume sz: "s \<noteq> 0\<^sub>p"
berghofe@34915
  1320
    {assume dn: "degree s < n"
krauss@41651
  1321
      hence "?ths" using ns ndp np polydivide_aux.simps by auto (rule exI[where x="0\<^sub>p"],simp) }
chaieb@33154
  1322
    moreover 
berghofe@34915
  1323
    {assume dn': "\<not> degree s < n" hence dn: "degree s \<ge> n" by arith
chaieb@33154
  1324
      have degsp': "degree s = degree ?p'" 
berghofe@34915
  1325
        using dn ndp funpow_shift1_degree[where k = "degree s - n" and p="p"] by simp
chaieb@33154
  1326
      {assume ba: "?b = a"
wenzelm@33268
  1327
        hence headsp': "head s = head ?p'" using ap headp' by simp
wenzelm@33268
  1328
        have nr: "isnpolyh (s -\<^sub>p ?p') 0" using polysub_normh[OF ns np'] by simp
berghofe@34915
  1329
        from degree_polysub_samehead[OF ns np' headsp' degsp']
berghofe@34915
  1330
        have "degree (s -\<^sub>p ?p') < degree s \<or> s -\<^sub>p ?p' = 0\<^sub>p" by simp
wenzelm@33268
  1331
        moreover 
berghofe@34915
  1332
        {assume deglt:"degree (s -\<^sub>p ?p') < degree s"
krauss@41651
  1333
          from polydivide_aux.simps sz dn' ba
krauss@41651
  1334
          have eq: "polydivide_aux a n p k s = polydivide_aux a n p k (s -\<^sub>p ?p')"
wenzelm@33268
  1335
            by (simp add: Let_def)
krauss@41651
  1336
          {assume h1: "polydivide_aux a n p k s = (k', r)"
berghofe@34915
  1337
            from less(1)[OF deglt nr, of k k' r]
wenzelm@33268
  1338
              trans[OF eq[symmetric] h1]
wenzelm@33268
  1339
            have kk': "k \<le> k'" and nr:"\<exists>nr. isnpolyh r nr" and dr: "degree r = 0 \<or> degree r < degree p"
wenzelm@33268
  1340
              and q1:"\<exists>q nq. isnpolyh q nq \<and> (a ^\<^sub>p k' - k *\<^sub>p (s -\<^sub>p ?p') = p *\<^sub>p q +\<^sub>p r)" by auto
wenzelm@33268
  1341
            from q1 obtain q n1 where nq: "isnpolyh q n1" 
wenzelm@33268
  1342
              and asp:"a^\<^sub>p (k' - k) *\<^sub>p (s -\<^sub>p ?p') = p *\<^sub>p q +\<^sub>p r"  by blast
wenzelm@33268
  1343
            from nr obtain nr where nr': "isnpolyh r nr" by blast
wenzelm@33268
  1344
            from polymul_normh[OF nakk' ns] have nakks': "isnpolyh (a ^\<^sub>p (k' - k) *\<^sub>p s) 0" by simp
wenzelm@33268
  1345
            from polyadd_normh[OF polymul_normh[OF nakk' nxdn] nq]
wenzelm@33268
  1346
            have nq': "isnpolyh (?akk' *\<^sub>p ?xdn +\<^sub>p q) 0" by simp
wenzelm@33268
  1347
            from polyadd_normh[OF polymul_normh[OF np 
wenzelm@33268
  1348
              polyadd_normh[OF polymul_normh[OF nakk' nxdn] nq]] nr']
wenzelm@33268
  1349
            have nqr': "isnpolyh (p *\<^sub>p (?akk' *\<^sub>p ?xdn +\<^sub>p q) +\<^sub>p r) 0" by simp 
haftmann@36409
  1350
            from asp have "\<forall> (bs:: 'a::{field_char_0, field_inverse_zero} list). Ipoly bs (a^\<^sub>p (k' - k) *\<^sub>p (s -\<^sub>p ?p')) = 
wenzelm@33268
  1351
              Ipoly bs (p *\<^sub>p q +\<^sub>p r)" by simp
haftmann@36409
  1352
            hence " \<forall>(bs:: 'a::{field_char_0, field_inverse_zero} list). Ipoly bs (a^\<^sub>p (k' - k)*\<^sub>p s) = 
wenzelm@33268
  1353
              Ipoly bs (a^\<^sub>p (k' - k)) * Ipoly bs ?p' + Ipoly bs p * Ipoly bs q + Ipoly bs r" 
haftmann@36348
  1354
              by (simp add: field_simps)
haftmann@36409
  1355
            hence " \<forall>(bs:: 'a::{field_char_0, field_inverse_zero} list). Ipoly bs (a ^\<^sub>p (k' - k) *\<^sub>p s) = 
berghofe@34915
  1356
              Ipoly bs (a^\<^sub>p (k' - k)) * Ipoly bs (funpow (degree s - n) shift1 1\<^sub>p *\<^sub>p p) 
wenzelm@33268
  1357
              + Ipoly bs p * Ipoly bs q + Ipoly bs r"
wenzelm@33268
  1358
              by (auto simp only: funpow_shift1_1) 
haftmann@36409
  1359
            hence "\<forall>(bs:: 'a::{field_char_0, field_inverse_zero} list). Ipoly bs (a ^\<^sub>p (k' - k) *\<^sub>p s) = 
berghofe@34915
  1360
              Ipoly bs p * (Ipoly bs (a^\<^sub>p (k' - k)) * Ipoly bs (funpow (degree s - n) shift1 1\<^sub>p) 
haftmann@36348
  1361
              + Ipoly bs q) + Ipoly bs r" by (simp add: field_simps)
haftmann@36409
  1362
            hence "\<forall>(bs:: 'a::{field_char_0, field_inverse_zero} list). Ipoly bs (a ^\<^sub>p (k' - k) *\<^sub>p s) = 
berghofe@34915
  1363
              Ipoly bs (p *\<^sub>p ((a^\<^sub>p (k' - k)) *\<^sub>p (funpow (degree s - n) shift1 1\<^sub>p) +\<^sub>p q) +\<^sub>p r)" by simp
wenzelm@33268
  1364
            with isnpolyh_unique[OF nakks' nqr']
wenzelm@33268
  1365
            have "a ^\<^sub>p (k' - k) *\<^sub>p s = 
berghofe@34915
  1366
              p *\<^sub>p ((a^\<^sub>p (k' - k)) *\<^sub>p (funpow (degree s - n) shift1 1\<^sub>p) +\<^sub>p q) +\<^sub>p r" by blast
wenzelm@33268
  1367
            hence ?qths using nq'
berghofe@34915
  1368
              apply (rule_tac x="(a^\<^sub>p (k' - k)) *\<^sub>p (funpow (degree s - n) shift1 1\<^sub>p) +\<^sub>p q" in exI)
wenzelm@33268
  1369
              apply (rule_tac x="0" in exI) by simp
wenzelm@33268
  1370
            with kk' nr dr have "k \<le> k' \<and> (degree r = 0 \<or> degree r < degree p) \<and> (\<exists>nr. isnpolyh r nr) \<and> ?qths"
krauss@41651
  1371
              by blast } hence ?ths by blast }
wenzelm@33268
  1372
        moreover 
wenzelm@33268
  1373
        {assume spz:"s -\<^sub>p ?p' = 0\<^sub>p"
haftmann@36409
  1374
          from spz isnpolyh_unique[OF polysub_normh[OF ns np'], where q="0\<^sub>p", symmetric, where ?'a = "'a::{field_char_0, field_inverse_zero}"]
haftmann@36409
  1375
          have " \<forall>(bs:: 'a::{field_char_0, field_inverse_zero} list). Ipoly bs s = Ipoly bs ?p'" by simp
haftmann@36409
  1376
          hence "\<forall>(bs:: 'a::{field_char_0, field_inverse_zero} list). Ipoly bs s = Ipoly bs (?xdn *\<^sub>p p)" using np nxdn apply simp
wenzelm@33268
  1377
            by (simp only: funpow_shift1_1) simp
wenzelm@33268
  1378
          hence sp': "s = ?xdn *\<^sub>p p" using isnpolyh_unique[OF ns polymul_normh[OF nxdn np]] by blast
krauss@41651
  1379
          {assume h1: "polydivide_aux a n p k s = (k',r)"
krauss@41651
  1380
            from polydivide_aux.simps sz dn' ba
krauss@41651
  1381
            have eq: "polydivide_aux a n p k s = polydivide_aux a n p k (s -\<^sub>p ?p')"
wenzelm@33268
  1382
              by (simp add: Let_def)
krauss@41651
  1383
            also have "\<dots> = (k,0\<^sub>p)" using polydivide_aux.simps spz by simp
wenzelm@33268
  1384
            finally have "(k',r) = (k,0\<^sub>p)" using h1 by simp
berghofe@34915
  1385
            with sp'[symmetric] ns np nxdn polyadd_0(1)[OF polymul_normh[OF np nxdn]]
krauss@41651
  1386
              polyadd_0(2)[OF polymul_normh[OF np nxdn]] have ?ths
wenzelm@33268
  1387
              apply auto
wenzelm@33268
  1388
              apply (rule exI[where x="?xdn"])        
berghofe@34915
  1389
              apply (auto simp add: polymul_commute[of p])
krauss@41651
  1390
              done} }
wenzelm@33268
  1391
        ultimately have ?ths by blast }
chaieb@33154
  1392
      moreover
chaieb@33154
  1393
      {assume ba: "?b \<noteq> a"
wenzelm@33268
  1394
        from polysub_normh[OF polymul_normh[OF head_isnpolyh[OF np0, simplified ap] ns] 
wenzelm@33268
  1395
          polymul_normh[OF head_isnpolyh[OF ns] np']]
wenzelm@33268
  1396
        have nth: "isnpolyh ((a *\<^sub>p s) -\<^sub>p (?b *\<^sub>p ?p')) 0" by(simp add: min_def)
wenzelm@33268
  1397
        have nzths: "a *\<^sub>p s \<noteq> 0\<^sub>p" "?b *\<^sub>p ?p' \<noteq> 0\<^sub>p"
wenzelm@33268
  1398
          using polymul_eq0_iff[OF head_isnpolyh[OF np0, simplified ap] ns] 
wenzelm@33268
  1399
            polymul_eq0_iff[OF head_isnpolyh[OF ns] np']head_nz[OF np0] ap pnz sz head_nz[OF ns]
wenzelm@33268
  1400
            funpow_shift1_nz[OF pnz] by simp_all
wenzelm@33268
  1401
        from polymul_head_polyeq[OF head_isnpolyh[OF np] ns] head_nz[OF np] sz ap head_head[OF np] pnz
berghofe@34915
  1402
          polymul_head_polyeq[OF head_isnpolyh[OF ns] np'] head_nz [OF ns] sz funpow_shift1_nz[OF pnz, where n="degree s - n"]
wenzelm@33268
  1403
        have hdth: "head (a *\<^sub>p s) = head (?b *\<^sub>p ?p')" 
wenzelm@33268
  1404
          using head_head[OF ns] funpow_shift1_head[OF np pnz]
wenzelm@33268
  1405
            polymul_commute[OF head_isnpolyh[OF np] head_isnpolyh[OF ns]]
wenzelm@33268
  1406
          by (simp add: ap)
wenzelm@33268
  1407
        from polymul_degreen[OF head_isnpolyh[OF np] ns, where m="0"]
wenzelm@33268
  1408
          head_nz[OF np] pnz sz ap[symmetric]
berghofe@34915
  1409
          funpow_shift1_nz[OF pnz, where n="degree s - n"]
wenzelm@33268
  1410
          polymul_degreen[OF head_isnpolyh[OF ns] np', where m="0"]  head_nz[OF ns]
berghofe@34915
  1411
          ndp dn
wenzelm@33268
  1412
        have degth: "degree (a *\<^sub>p s) = degree (?b *\<^sub>p ?p') "
wenzelm@33268
  1413
          by (simp add: degree_eq_degreen0[symmetric] funpow_shift1_degree)
berghofe@34915
  1414
        {assume dth: "degree ((a *\<^sub>p s) -\<^sub>p (?b *\<^sub>p ?p')) < degree s"
wenzelm@33268
  1415
          from polysub_normh[OF polymul_normh[OF head_isnpolyh[OF np] ns] polymul_normh[OF head_isnpolyh[OF ns]np']]
wenzelm@33268
  1416
          ap have nasbp': "isnpolyh ((a *\<^sub>p s) -\<^sub>p (?b *\<^sub>p ?p')) 0" by simp
krauss@41651
  1417
          {assume h1:"polydivide_aux a n p k s = (k', r)"
krauss@41651
  1418
            from h1 polydivide_aux.simps sz dn' ba
krauss@41651
  1419
            have eq:"polydivide_aux a n p (Suc k) ((a *\<^sub>p s) -\<^sub>p (?b *\<^sub>p ?p')) = (k',r)"
wenzelm@33268
  1420
              by (simp add: Let_def)
berghofe@34915
  1421
            with less(1)[OF dth nasbp', of "Suc k" k' r]
wenzelm@33268
  1422
            obtain q nq nr where kk': "Suc k \<le> k'" and nr: "isnpolyh r nr" and nq: "isnpolyh q nq" 
wenzelm@33268
  1423
              and dr: "degree r = 0 \<or> degree r < degree p"
wenzelm@33268
  1424
              and qr: "a ^\<^sub>p (k' - Suc k) *\<^sub>p ((a *\<^sub>p s) -\<^sub>p (?b *\<^sub>p ?p')) = p *\<^sub>p q +\<^sub>p r" by auto
wenzelm@33268
  1425
            from kk' have kk'':"Suc (k' - Suc k) = k' - k" by arith
haftmann@36409
  1426
            {fix bs:: "'a::{field_char_0, field_inverse_zero} list"
wenzelm@33268
  1427
              
wenzelm@33268
  1428
            from qr isnpolyh_unique[OF polypow_normh[OF head_isnpolyh[OF np], where k="k' - Suc k", simplified ap] nasbp', symmetric]
wenzelm@33268
  1429
            have "Ipoly bs (a ^\<^sub>p (k' - Suc k) *\<^sub>p ((a *\<^sub>p s) -\<^sub>p (?b *\<^sub>p ?p'))) = Ipoly bs (p *\<^sub>p q +\<^sub>p r)" by simp
wenzelm@33268
  1430
            hence "Ipoly bs a ^ (Suc (k' - Suc k)) * Ipoly bs s = Ipoly bs p * Ipoly bs q + Ipoly bs a ^ (k' - Suc k) * Ipoly bs ?b * Ipoly bs ?p' + Ipoly bs r"
haftmann@36348
  1431
              by (simp add: field_simps power_Suc)
wenzelm@33268
  1432
            hence "Ipoly bs a ^ (k' - k)  * Ipoly bs s = Ipoly bs p * Ipoly bs q + Ipoly bs a ^ (k' - Suc k) * Ipoly bs ?b * Ipoly bs ?xdn * Ipoly bs p + Ipoly bs r"
berghofe@34915
  1433
              by (simp add:kk'' funpow_shift1_1[where n="degree s - n" and p="p"])
wenzelm@33268
  1434
            hence "Ipoly bs (a ^\<^sub>p (k' - k) *\<^sub>p s) = Ipoly bs p * (Ipoly bs q + Ipoly bs a ^ (k' - Suc k) * Ipoly bs ?b * Ipoly bs ?xdn) + Ipoly bs r"
haftmann@36348
  1435
              by (simp add: field_simps)}
haftmann@36409
  1436
            hence ieq:"\<forall>(bs :: 'a::{field_char_0, field_inverse_zero} list). Ipoly bs (a ^\<^sub>p (k' - k) *\<^sub>p s) = 
wenzelm@33268
  1437
              Ipoly bs (p *\<^sub>p (q +\<^sub>p (a ^\<^sub>p (k' - Suc k) *\<^sub>p ?b *\<^sub>p ?xdn)) +\<^sub>p r)" by auto 
wenzelm@33268
  1438
            let ?q = "q +\<^sub>p (a ^\<^sub>p (k' - Suc k) *\<^sub>p ?b *\<^sub>p ?xdn)"
wenzelm@33268
  1439
            from polyadd_normh[OF nq polymul_normh[OF polymul_normh[OF polypow_normh[OF head_isnpolyh[OF np], where k="k' - Suc k"] head_isnpolyh[OF ns], simplified ap ] nxdn]]
wenzelm@33268
  1440
            have nqw: "isnpolyh ?q 0" by simp
wenzelm@33268
  1441
            from ieq isnpolyh_unique[OF polymul_normh[OF polypow_normh[OF head_isnpolyh[OF np], where k="k' - k"] ns, simplified ap] polyadd_normh[OF polymul_normh[OF np nqw] nr]]
wenzelm@33268
  1442
            have asth: "(a ^\<^sub>p (k' - k) *\<^sub>p s) = p *\<^sub>p (q +\<^sub>p (a ^\<^sub>p (k' - Suc k) *\<^sub>p ?b *\<^sub>p ?xdn)) +\<^sub>p r" by blast
krauss@41651
  1443
            from dr kk' nr h1 asth nqw have ?ths apply simp
wenzelm@33268
  1444
              apply (rule conjI)
wenzelm@33268
  1445
              apply (rule exI[where x="nr"], simp)
wenzelm@33268
  1446
              apply (rule exI[where x="(q +\<^sub>p (a ^\<^sub>p (k' - Suc k) *\<^sub>p ?b *\<^sub>p ?xdn))"], simp)
wenzelm@33268
  1447
              apply (rule exI[where x="0"], simp)
wenzelm@33268
  1448
              done}
krauss@41651
  1449
          hence ?ths by blast }
wenzelm@33268
  1450
        moreover 
wenzelm@33268
  1451
        {assume spz: "a *\<^sub>p s -\<^sub>p (?b *\<^sub>p ?p') = 0\<^sub>p"
haftmann@36409
  1452
          {fix bs :: "'a::{field_char_0, field_inverse_zero} list"
wenzelm@33268
  1453
            from isnpolyh_unique[OF nth, where ?'a="'a" and q="0\<^sub>p",simplified,symmetric] spz
wenzelm@33268
  1454
          have "Ipoly bs (a*\<^sub>p s) = Ipoly bs ?b * Ipoly bs ?p'" by simp
wenzelm@33268
  1455
          hence "Ipoly bs (a*\<^sub>p s) = Ipoly bs (?b *\<^sub>p ?xdn) * Ipoly bs p" 
berghofe@34915
  1456
            by (simp add: funpow_shift1_1[where n="degree s - n" and p="p"])
wenzelm@33268
  1457
          hence "Ipoly bs (a*\<^sub>p s) = Ipoly bs (p *\<^sub>p (?b *\<^sub>p ?xdn))" by simp
wenzelm@33268
  1458
        }
haftmann@36409
  1459
        hence hth: "\<forall> (bs:: 'a::{field_char_0, field_inverse_zero} list). Ipoly bs (a*\<^sub>p s) = Ipoly bs (p *\<^sub>p (?b *\<^sub>p ?xdn))" ..
wenzelm@33268
  1460
          from hth
wenzelm@33268
  1461
          have asq: "a *\<^sub>p s = p *\<^sub>p (?b *\<^sub>p ?xdn)" 
haftmann@36409
  1462
            using isnpolyh_unique[where ?'a = "'a::{field_char_0, field_inverse_zero}", OF polymul_normh[OF head_isnpolyh[OF np] ns] 
chaieb@33154
  1463
                    polymul_normh[OF np polymul_normh[OF head_isnpolyh[OF ns] nxdn]],
wenzelm@33268
  1464
              simplified ap] by simp
krauss@41651
  1465
          {assume h1: "polydivide_aux a n p k s = (k', r)"
krauss@41651
  1466
          from h1 sz ba dn' spz polydivide_aux.simps polydivide_aux.simps
wenzelm@33268
  1467
          have "(k',r) = (Suc k, 0\<^sub>p)" by (simp add: Let_def)
wenzelm@33268
  1468
          with h1 np head_isnpolyh[OF np, simplified ap] ns polymul_normh[OF head_isnpolyh[OF ns] nxdn]
wenzelm@33268
  1469
            polymul_normh[OF np polymul_normh[OF head_isnpolyh[OF ns] nxdn]] asq
krauss@41651
  1470
          have ?ths apply (clarsimp simp add: Let_def)
wenzelm@33268
  1471
            apply (rule exI[where x="?b *\<^sub>p ?xdn"]) apply simp
wenzelm@33268
  1472
            apply (rule exI[where x="0"], simp)
wenzelm@33268
  1473
            done}
krauss@41651
  1474
        hence ?ths by blast}
wenzelm@33268
  1475
        ultimately have ?ths using  degree_polysub_samehead[OF polymul_normh[OF head_isnpolyh[OF np0, simplified ap] ns] polymul_normh[OF head_isnpolyh[OF ns] np'] hdth degth] polymul_degreen[OF head_isnpolyh[OF np] ns, where m="0"]
berghofe@34915
  1476
          head_nz[OF np] pnz sz ap[symmetric]
wenzelm@33268
  1477
          by (simp add: degree_eq_degreen0[symmetric]) blast }
chaieb@33154
  1478
      ultimately have ?ths by blast
chaieb@33154
  1479
    }
chaieb@33154
  1480
    ultimately have ?ths by blast}
chaieb@33154
  1481
  ultimately show ?ths by blast
chaieb@33154
  1482
qed
chaieb@33154
  1483
chaieb@33154
  1484
lemma polydivide_properties: 
haftmann@36409
  1485
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
  1486
  and np: "isnpolyh p n0" and ns: "isnpolyh s n1" and pnz: "p \<noteq> 0\<^sub>p"
chaieb@33154
  1487
  shows "(\<exists> k r. polydivide s p = (k,r) \<and> (\<exists>nr. isnpolyh r nr) \<and> (degree r = 0 \<or> degree r < degree p) 
chaieb@33154
  1488
  \<and> (\<exists>q n1. isnpolyh q n1 \<and> ((polypow k (head p)) *\<^sub>p s = p *\<^sub>p q +\<^sub>p r)))"
chaieb@33154
  1489
proof-
chaieb@33154
  1490
  have trv: "head p = head p" "degree p = degree p" by simp_all
krauss@41651
  1491
  from polydivide_def[where s="s" and p="p"] 
chaieb@33154
  1492
  have ex: "\<exists> k r. polydivide s p = (k,r)" by auto
chaieb@33154
  1493
  then obtain k r where kr: "polydivide s p = (k,r)" by blast
krauss@41651
  1494
  from trans[OF meta_eq_to_obj_eq[OF polydivide_def[where s="s"and p="p"], symmetric] kr]
chaieb@33154
  1495
    polydivide_aux_properties[OF np ns trv pnz, where k="0" and k'="k" and r="r"]
chaieb@33154
  1496
  have "(degree r = 0 \<or> degree r < degree p) \<and>
chaieb@33154
  1497
   (\<exists>nr. isnpolyh r nr) \<and> (\<exists>q n1. isnpolyh q n1 \<and> head p ^\<^sub>p k - 0 *\<^sub>p s = p *\<^sub>p q +\<^sub>p r)" by blast
chaieb@33154
  1498
  with kr show ?thesis 
chaieb@33154
  1499
    apply -
chaieb@33154
  1500
    apply (rule exI[where x="k"])
chaieb@33154
  1501
    apply (rule exI[where x="r"])
chaieb@33154
  1502
    apply simp
chaieb@33154
  1503
    done
chaieb@33154
  1504
qed
chaieb@33154
  1505
chaieb@33154
  1506
subsection{* More about polypoly and pnormal etc *}
chaieb@33154
  1507
chaieb@33154
  1508
definition "isnonconstant p = (\<not> isconstant p)"
chaieb@33154
  1509
chaieb@33154
  1510
lemma isnonconstant_pnormal_iff: assumes nc: "isnonconstant p" 
chaieb@33154
  1511
  shows "pnormal (polypoly bs p) \<longleftrightarrow> Ipoly bs (head p) \<noteq> 0" 
chaieb@33154
  1512
proof
chaieb@33154
  1513
  let ?p = "polypoly bs p"  
chaieb@33154
  1514
  assume H: "pnormal ?p"
chaieb@33154
  1515
  have csz: "coefficients p \<noteq> []" using nc by (cases p, auto)
chaieb@33154
  1516
  
chaieb@33154
  1517
  from coefficients_head[of p] last_map[OF csz, of "Ipoly bs"]  
chaieb@33154
  1518
    pnormal_last_nonzero[OF H]
chaieb@33154
  1519
  show "Ipoly bs (head p) \<noteq> 0" by (simp add: polypoly_def)
chaieb@33154
  1520
next
chaieb@33154
  1521
  assume h: "\<lparr>head p\<rparr>\<^sub>p\<^bsup>bs\<^esup> \<noteq> 0"
chaieb@33154
  1522
  let ?p = "polypoly bs p"
chaieb@33154
  1523
  have csz: "coefficients p \<noteq> []" using nc by (cases p, auto)
chaieb@33154
  1524
  hence pz: "?p \<noteq> []" by (simp add: polypoly_def) 
chaieb@33154
  1525
  hence lg: "length ?p > 0" by simp
chaieb@33154
  1526
  from h coefficients_head[of p] last_map[OF csz, of "Ipoly bs"] 
chaieb@33154
  1527
  have lz: "last ?p \<noteq> 0" by (simp add: polypoly_def)
chaieb@33154
  1528
  from pnormal_last_length[OF lg lz] show "pnormal ?p" .
chaieb@33154
  1529
qed
chaieb@33154
  1530
chaieb@33154
  1531
lemma isnonconstant_coefficients_length: "isnonconstant p \<Longrightarrow> length (coefficients p) > 1"
chaieb@33154
  1532
  unfolding isnonconstant_def
chaieb@33154
  1533
  apply (cases p, simp_all)
chaieb@33154
  1534
  apply (case_tac nat, auto)
chaieb@33154
  1535
  done
chaieb@33154
  1536
lemma isnonconstant_nonconstant: assumes inc: "isnonconstant p"
chaieb@33154
  1537
  shows "nonconstant (polypoly bs p) \<longleftrightarrow> Ipoly bs (head p) \<noteq> 0"
chaieb@33154
  1538
proof
chaieb@33154
  1539
  let ?p = "polypoly bs p"
chaieb@33154
  1540
  assume nc: "nonconstant ?p"
chaieb@33154
  1541
  from isnonconstant_pnormal_iff[OF inc, of bs] nc
chaieb@33154
  1542
  show "\<lparr>head p\<rparr>\<^sub>p\<^bsup>bs\<^esup> \<noteq> 0" unfolding nonconstant_def by blast
chaieb@33154
  1543
next
chaieb@33154
  1544
  let ?p = "polypoly bs p"
chaieb@33154
  1545
  assume h: "\<lparr>head p\<rparr>\<^sub>p\<^bsup>bs\<^esup> \<noteq> 0"
chaieb@33154
  1546
  from isnonconstant_pnormal_iff[OF inc, of bs] h
chaieb@33154
  1547
  have pn: "pnormal ?p" by blast
chaieb@33154
  1548
  {fix x assume H: "?p = [x]" 
chaieb@33154
  1549
    from H have "length (coefficients p) = 1" unfolding polypoly_def by auto
chaieb@33154
  1550
    with isnonconstant_coefficients_length[OF inc] have False by arith}
chaieb@33154
  1551
  thus "nonconstant ?p" using pn unfolding nonconstant_def by blast  
chaieb@33154
  1552
qed
chaieb@33154
  1553
chaieb@33154
  1554
lemma pnormal_length: "p\<noteq>[] \<Longrightarrow> pnormal p \<longleftrightarrow> length (pnormalize p) = length p"
chaieb@33154
  1555
  unfolding pnormal_def
haftmann@39473
  1556
 apply (induct p)
haftmann@39473
  1557
 apply (simp_all, case_tac "p=[]", simp_all)
chaieb@33154
  1558
 done
chaieb@33154
  1559
chaieb@33154
  1560
lemma degree_degree: assumes inc: "isnonconstant p"
chaieb@33154
  1561
  shows "degree p = Polynomial_List.degree (polypoly bs p) \<longleftrightarrow> \<lparr>head p\<rparr>\<^sub>p\<^bsup>bs\<^esup> \<noteq> 0"
chaieb@33154
  1562
proof
chaieb@33154
  1563
  let  ?p = "polypoly bs p"
chaieb@33154
  1564
  assume H: "degree p = Polynomial_List.degree ?p"
chaieb@33154
  1565
  from isnonconstant_coefficients_length[OF inc] have pz: "?p \<noteq> []"
chaieb@33154
  1566
    unfolding polypoly_def by auto
chaieb@33154
  1567
  from H degree_coefficients[of p] isnonconstant_coefficients_length[OF inc]
chaieb@33154
  1568
  have lg:"length (pnormalize ?p) = length ?p"
chaieb@33154
  1569
    unfolding Polynomial_List.degree_def polypoly_def by simp
chaieb@33154
  1570
  hence "pnormal ?p" using pnormal_length[OF pz] by blast 
chaieb@33154
  1571
  with isnonconstant_pnormal_iff[OF inc]  
chaieb@33154
  1572
  show "\<lparr>head p\<rparr>\<^sub>p\<^bsup>bs\<^esup> \<noteq> 0" by blast
chaieb@33154
  1573
next
chaieb@33154
  1574
  let  ?p = "polypoly bs p"  
chaieb@33154
  1575
  assume H: "\<lparr>head p\<rparr>\<^sub>p\<^bsup>bs\<^esup> \<noteq> 0"
chaieb@33154
  1576
  with isnonconstant_pnormal_iff[OF inc] have "pnormal ?p" by blast
chaieb@33154
  1577
  with degree_coefficients[of p] isnonconstant_coefficients_length[OF inc]
chaieb@33154
  1578
  show "degree p = Polynomial_List.degree ?p" 
chaieb@33154
  1579
    unfolding polypoly_def pnormal_def Polynomial_List.degree_def by auto
chaieb@33154
  1580
qed
chaieb@33154
  1581
chaieb@33154
  1582
section{* Swaps ; Division by a certain variable *}
haftmann@39473
  1583
primrec swap:: "nat \<Rightarrow> nat \<Rightarrow> poly \<Rightarrow> poly" where
chaieb@33154
  1584
  "swap n m (C x) = C x"
haftmann@39473
  1585
| "swap n m (Bound k) = Bound (if k = n then m else if k=m then n else k)"
haftmann@39473
  1586
| "swap n m (Neg t) = Neg (swap n m t)"
haftmann@39473
  1587
| "swap n m (Add s t) = Add (swap n m s) (swap n m t)"
haftmann@39473
  1588
| "swap n m (Sub s t) = Sub (swap n m s) (swap n m t)"
haftmann@39473
  1589
| "swap n m (Mul s t) = Mul (swap n m s) (swap n m t)"
haftmann@39473
  1590
| "swap n m (Pw t k) = Pw (swap n m t) k"
haftmann@39473
  1591
| "swap n m (CN c k p) = CN (swap n m c) (if k = n then m else if k=m then n else k)
chaieb@33154
  1592
  (swap n m p)"
chaieb@33154
  1593
chaieb@33154
  1594
lemma swap: assumes nbs: "n < length bs" and mbs: "m < length bs"
chaieb@33154
  1595
  shows "Ipoly bs (swap n m t) = Ipoly ((bs[n:= bs!m])[m:= bs!n]) t"
chaieb@33154
  1596
proof (induct t)
chaieb@33154
  1597
  case (Bound k) thus ?case using nbs mbs by simp 
chaieb@33154
  1598
next
chaieb@33154
  1599
  case (CN c k p) thus ?case using nbs mbs by simp 
chaieb@33154
  1600
qed simp_all
chaieb@33154
  1601
lemma swap_swap_id[simp]: "swap n m (swap m n t) = t"
chaieb@33154
  1602
  by (induct t,simp_all)
chaieb@33154
  1603
chaieb@33154
  1604
lemma swap_commute: "swap n m p = swap m n p" by (induct p, simp_all)
chaieb@33154
  1605
chaieb@33154
  1606
lemma swap_same_id[simp]: "swap n n t = t"
chaieb@33154
  1607
  by (induct t, simp_all)
chaieb@33154
  1608
chaieb@33154
  1609
definition "swapnorm n m t = polynate (swap n m t)"
chaieb@33154
  1610
wenzelm@42686
  1611
lemma swapnorm:
wenzelm@42686
  1612
  assumes nbs: "n < length bs" and mbs: "m < length bs"
haftmann@36409
  1613
  shows "((Ipoly bs (swapnorm n m t) :: 'a\<Colon>{field_char_0, field_inverse_zero})) = Ipoly ((bs[n:= bs!m])[m:= bs!n]) t"
wenzelm@42686
  1614
  using swap[OF assms] swapnorm_def by simp
chaieb@33154
  1615
chaieb@33154
  1616
lemma swapnorm_isnpoly[simp]: 
wenzelm@42686
  1617
  assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})"
chaieb@33154
  1618
  shows "isnpoly (swapnorm n m p)"
chaieb@33154
  1619
  unfolding swapnorm_def by simp
chaieb@33154
  1620
chaieb@33154
  1621
definition "polydivideby n s p = 
chaieb@33154
  1622
    (let ss = swapnorm 0 n s ; sp = swapnorm 0 n p ; h = head sp; (k,r) = polydivide ss sp
chaieb@33154
  1623
     in (k,swapnorm 0 n h,swapnorm 0 n r))"
chaieb@33154
  1624
chaieb@33154
  1625
lemma swap_nz [simp]: " (swap n m p = 0\<^sub>p) = (p = 0\<^sub>p)" by (induct p, simp_all)
chaieb@33154
  1626
chaieb@33154
  1627
consts isweaknpoly :: "poly \<Rightarrow> bool"
chaieb@33154
  1628
recdef isweaknpoly "measure size"
chaieb@33154
  1629
  "isweaknpoly (C c) = True"
chaieb@33154
  1630
  "isweaknpoly (CN c n p) \<longleftrightarrow> isweaknpoly c \<and> isweaknpoly p"
wenzelm@33268
  1631
  "isweaknpoly p = False"       
chaieb@33154
  1632
chaieb@33154
  1633
lemma isnpolyh_isweaknpoly: "isnpolyh p n0 \<Longrightarrow> isweaknpoly p" 
wenzelm@42686
  1634
  by (induct p arbitrary: n0) auto
chaieb@33154
  1635
chaieb@33154
  1636
lemma swap_isweanpoly: "isweaknpoly p \<Longrightarrow> isweaknpoly (swap n m p)" 
wenzelm@42686
  1637
  by (induct p) auto
chaieb@33154
  1638
chaieb@33154
  1639
end