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