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