author | nipkow |
Mon, 21 Feb 2005 15:04:10 +0100 | |
changeset 15539 | 333a88244569 |
parent 15251 | bb6f072c8d10 |
child 16924 | 04246269386e |
permissions | -rw-r--r-- |
12224 | 1 |
(* Title: Poly.thy |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
2 |
ID: $Id$ |
12224 | 3 |
Author: Jacques D. Fleuriot |
4 |
Copyright: 2000 University of Edinburgh |
|
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
5 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
6 |
Conversion to Isar and new proofs by Lawrence C Paulson, 2003/4 |
12224 | 7 |
*) |
8 |
||
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
9 |
header{*Univariate Real Polynomials*} |
12224 | 10 |
|
15131 | 11 |
theory Poly |
15140 | 12 |
imports Transcendental |
15131 | 13 |
begin |
12224 | 14 |
|
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
15 |
text{*Application of polynomial as a real function.*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
16 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
17 |
consts poly :: "real list => real => real" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
18 |
primrec |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
19 |
poly_Nil: "poly [] x = 0" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
20 |
poly_Cons: "poly (h#t) x = h + x * poly t x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
21 |
|
12224 | 22 |
|
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
23 |
subsection{*Arithmetic Operations on Polynomials*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
24 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
25 |
text{*addition*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
26 |
consts "+++" :: "[real list, real list] => real list" (infixl 65) |
12224 | 27 |
primrec |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
28 |
padd_Nil: "[] +++ l2 = l2" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
29 |
padd_Cons: "(h#t) +++ l2 = (if l2 = [] then h#t |
12224 | 30 |
else (h + hd l2)#(t +++ tl l2))" |
31 |
||
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
32 |
text{*Multiplication by a constant*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
33 |
consts "%*" :: "[real, real list] => real list" (infixl 70) |
12224 | 34 |
primrec |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
35 |
cmult_Nil: "c %* [] = []" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
36 |
cmult_Cons: "c %* (h#t) = (c * h)#(c %* t)" |
12224 | 37 |
|
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
38 |
text{*Multiplication by a polynomial*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
39 |
consts "***" :: "[real list, real list] => real list" (infixl 70) |
12224 | 40 |
primrec |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
41 |
pmult_Nil: "[] *** l2 = []" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
42 |
pmult_Cons: "(h#t) *** l2 = (if t = [] then h %* l2 |
12224 | 43 |
else (h %* l2) +++ ((0) # (t *** l2)))" |
44 |
||
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
45 |
text{*Repeated multiplication by a polynomial*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
46 |
consts mulexp :: "[nat, real list, real list] => real list" |
12224 | 47 |
primrec |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
48 |
mulexp_zero: "mulexp 0 p q = q" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
49 |
mulexp_Suc: "mulexp (Suc n) p q = p *** mulexp n p q" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
50 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
51 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
52 |
text{*Exponential*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
53 |
consts "%^" :: "[real list, nat] => real list" (infixl 80) |
12224 | 54 |
primrec |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
55 |
pexp_0: "p %^ 0 = [1]" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
56 |
pexp_Suc: "p %^ (Suc n) = p *** (p %^ n)" |
12224 | 57 |
|
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
58 |
text{*Quotient related value of dividing a polynomial by x + a*} |
12224 | 59 |
(* Useful for divisor properties in inductive proofs *) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
60 |
consts "pquot" :: "[real list, real] => real list" |
12224 | 61 |
primrec |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
62 |
pquot_Nil: "pquot [] a= []" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
63 |
pquot_Cons: "pquot (h#t) a = (if t = [] then [h] |
12224 | 64 |
else (inverse(a) * (h - hd( pquot t a)))#(pquot t a))" |
65 |
||
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
66 |
text{*Differentiation of polynomials (needs an auxiliary function).*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
67 |
consts pderiv_aux :: "nat => real list => real list" |
12224 | 68 |
primrec |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
69 |
pderiv_aux_Nil: "pderiv_aux n [] = []" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
70 |
pderiv_aux_Cons: "pderiv_aux n (h#t) = |
12224 | 71 |
(real n * h)#(pderiv_aux (Suc n) t)" |
72 |
||
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
73 |
text{*normalization of polynomials (remove extra 0 coeff)*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
74 |
consts pnormalize :: "real list => real list" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
75 |
primrec |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
76 |
pnormalize_Nil: "pnormalize [] = []" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
77 |
pnormalize_Cons: "pnormalize (h#p) = (if ( (pnormalize p) = []) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
78 |
then (if (h = 0) then [] else [h]) |
12224 | 79 |
else (h#(pnormalize p)))" |
80 |
||
81 |
||
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
82 |
text{*Other definitions*} |
12224 | 83 |
|
84 |
constdefs |
|
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
85 |
poly_minus :: "real list => real list" ("-- _" [80] 80) |
12224 | 86 |
"-- p == (- 1) %* p" |
87 |
||
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
88 |
pderiv :: "real list => real list" |
12224 | 89 |
"pderiv p == if p = [] then [] else pderiv_aux 1 (tl p)" |
90 |
||
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
91 |
divides :: "[real list,real list] => bool" (infixl "divides" 70) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
92 |
"p1 divides p2 == \<exists>q. poly p2 = poly(p1 *** q)" |
12224 | 93 |
|
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
94 |
order :: "real => real list => nat" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
95 |
--{*order of a polynomial*} |
12224 | 96 |
"order a p == (@n. ([-a, 1] %^ n) divides p & |
97 |
~ (([-a, 1] %^ (Suc n)) divides p))" |
|
98 |
||
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
99 |
degree :: "real list => nat" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
100 |
--{*degree of a polynomial*} |
12224 | 101 |
"degree p == length (pnormalize p)" |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
102 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
103 |
rsquarefree :: "real list => bool" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
104 |
--{*squarefree polynomials --- NB with respect to real roots only.*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
105 |
"rsquarefree p == poly p \<noteq> poly [] & |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
106 |
(\<forall>a. (order a p = 0) | (order a p = 1))" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
107 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
108 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
109 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
110 |
lemma padd_Nil2: "p +++ [] = p" |
15251 | 111 |
by (induct "p", auto) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
112 |
declare padd_Nil2 [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
113 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
114 |
lemma padd_Cons_Cons: "(h1 # p1) +++ (h2 # p2) = (h1 + h2) # (p1 +++ p2)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
115 |
by auto |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
116 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
117 |
lemma pminus_Nil: "-- [] = []" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
118 |
by (simp add: poly_minus_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
119 |
declare pminus_Nil [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
120 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
121 |
lemma pmult_singleton: "[h1] *** p1 = h1 %* p1" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
122 |
by simp |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
123 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
124 |
lemma poly_ident_mult: "1 %* t = t" |
15251 | 125 |
by (induct "t", auto) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
126 |
declare poly_ident_mult [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
127 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
128 |
lemma poly_simple_add_Cons: "[a] +++ ((0)#t) = (a#t)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
129 |
by simp |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
130 |
declare poly_simple_add_Cons [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
131 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
132 |
text{*Handy general properties*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
133 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
134 |
lemma padd_commut: "b +++ a = a +++ b" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
135 |
apply (subgoal_tac "\<forall>a. b +++ a = a +++ b") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
136 |
apply (induct_tac [2] "b", auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
137 |
apply (rule padd_Cons [THEN ssubst]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
138 |
apply (case_tac "aa", auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
139 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
140 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
141 |
lemma padd_assoc [rule_format]: "\<forall>b c. (a +++ b) +++ c = a +++ (b +++ c)" |
15251 | 142 |
apply (induct "a", simp, clarify) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
143 |
apply (case_tac b, simp_all) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
144 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
145 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
146 |
lemma poly_cmult_distr [rule_format]: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
147 |
"\<forall>q. a %* ( p +++ q) = (a %* p +++ a %* q)" |
15251 | 148 |
apply (induct "p", simp, clarify) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
149 |
apply (case_tac "q") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
150 |
apply (simp_all add: right_distrib) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
151 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
152 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
153 |
lemma pmult_by_x: "[0, 1] *** t = ((0)#t)" |
15251 | 154 |
apply (induct "t", simp) |
155 |
apply (auto simp add: poly_ident_mult padd_commut) |
|
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
156 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
157 |
declare pmult_by_x [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
158 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
159 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
160 |
text{*properties of evaluation of polynomials.*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
161 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
162 |
lemma poly_add: "poly (p1 +++ p2) x = poly p1 x + poly p2 x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
163 |
apply (subgoal_tac "\<forall>p2. poly (p1 +++ p2) x = poly (p1) x + poly (p2) x") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
164 |
apply (induct_tac [2] "p1", auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
165 |
apply (case_tac "p2") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
166 |
apply (auto simp add: right_distrib) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
167 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
168 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
169 |
lemma poly_cmult: "poly (c %* p) x = c * poly p x" |
15251 | 170 |
apply (induct "p") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
171 |
apply (case_tac [2] "x=0") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
172 |
apply (auto simp add: right_distrib mult_ac) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
173 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
174 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
175 |
lemma poly_minus: "poly (-- p) x = - (poly p x)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
176 |
apply (simp add: poly_minus_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
177 |
apply (auto simp add: poly_cmult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
178 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
179 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
180 |
lemma poly_mult: "poly (p1 *** p2) x = poly p1 x * poly p2 x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
181 |
apply (subgoal_tac "\<forall>p2. poly (p1 *** p2) x = poly p1 x * poly p2 x") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
182 |
apply (simp (no_asm_simp)) |
15251 | 183 |
apply (induct "p1") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
184 |
apply (auto simp add: poly_cmult) |
15251 | 185 |
apply (case_tac p1) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
186 |
apply (auto simp add: poly_cmult poly_add left_distrib right_distrib mult_ac) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
187 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
188 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
189 |
lemma poly_exp: "poly (p %^ n) x = (poly p x) ^ n" |
15251 | 190 |
apply (induct "n") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
191 |
apply (auto simp add: poly_cmult poly_mult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
192 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
193 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
194 |
text{*More Polynomial Evaluation Lemmas*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
195 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
196 |
lemma poly_add_rzero: "poly (a +++ []) x = poly a x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
197 |
by simp |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
198 |
declare poly_add_rzero [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
199 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
200 |
lemma poly_mult_assoc: "poly ((a *** b) *** c) x = poly (a *** (b *** c)) x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
201 |
by (simp add: poly_mult real_mult_assoc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
202 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
203 |
lemma poly_mult_Nil2: "poly (p *** []) x = 0" |
15251 | 204 |
by (induct "p", auto) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
205 |
declare poly_mult_Nil2 [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
206 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
207 |
lemma poly_exp_add: "poly (p %^ (n + d)) x = poly( p %^ n *** p %^ d) x" |
15251 | 208 |
apply (induct "n") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
209 |
apply (auto simp add: poly_mult real_mult_assoc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
210 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
211 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
212 |
text{*The derivative*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
213 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
214 |
lemma pderiv_Nil: "pderiv [] = []" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
215 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
216 |
apply (simp add: pderiv_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
217 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
218 |
declare pderiv_Nil [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
219 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
220 |
lemma pderiv_singleton: "pderiv [c] = []" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
221 |
by (simp add: pderiv_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
222 |
declare pderiv_singleton [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
223 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
224 |
lemma pderiv_Cons: "pderiv (h#t) = pderiv_aux 1 t" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
225 |
by (simp add: pderiv_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
226 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
227 |
lemma DERIV_cmult2: "DERIV f x :> D ==> DERIV (%x. (f x) * c) x :> D * c" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
228 |
by (simp add: DERIV_cmult mult_commute [of _ c]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
229 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
230 |
lemma DERIV_pow2: "DERIV (%x. x ^ Suc n) x :> real (Suc n) * (x ^ n)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
231 |
by (rule lemma_DERIV_subst, rule DERIV_pow, simp) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
232 |
declare DERIV_pow2 [simp] DERIV_pow [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
233 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
234 |
lemma lemma_DERIV_poly1: "\<forall>n. DERIV (%x. (x ^ (Suc n) * poly p x)) x :> |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
235 |
x ^ n * poly (pderiv_aux (Suc n) p) x " |
15251 | 236 |
apply (induct "p") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
237 |
apply (auto intro!: DERIV_add DERIV_cmult2 |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
238 |
simp add: pderiv_def right_distrib real_mult_assoc [symmetric] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
239 |
simp del: realpow_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
240 |
apply (subst mult_commute) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
241 |
apply (simp del: realpow_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
242 |
apply (simp add: mult_commute realpow_Suc [symmetric] del: realpow_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
243 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
244 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
245 |
lemma lemma_DERIV_poly: "DERIV (%x. (x ^ (Suc n) * poly p x)) x :> |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
246 |
x ^ n * poly (pderiv_aux (Suc n) p) x " |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
247 |
by (simp add: lemma_DERIV_poly1 del: realpow_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
248 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
249 |
lemma DERIV_add_const: "DERIV f x :> D ==> DERIV (%x. a + f x) x :> D" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
250 |
by (rule lemma_DERIV_subst, rule DERIV_add, auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
251 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
252 |
lemma poly_DERIV: "DERIV (%x. poly p x) x :> poly (pderiv p) x" |
15251 | 253 |
apply (induct "p") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
254 |
apply (auto simp add: pderiv_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
255 |
apply (rule DERIV_add_const) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
256 |
apply (rule lemma_DERIV_subst) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
257 |
apply (rule lemma_DERIV_poly [where n=0, simplified], simp) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
258 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
259 |
declare poly_DERIV [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
260 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
261 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
262 |
text{* Consequences of the derivative theorem above*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
263 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
264 |
lemma poly_differentiable: "(%x. poly p x) differentiable x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
265 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
266 |
apply (simp add: differentiable_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
267 |
apply (blast intro: poly_DERIV) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
268 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
269 |
declare poly_differentiable [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
270 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
271 |
lemma poly_isCont: "isCont (%x. poly p x) x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
272 |
by (rule poly_DERIV [THEN DERIV_isCont]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
273 |
declare poly_isCont [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
274 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
275 |
lemma poly_IVT_pos: "[| a < b; poly p a < 0; 0 < poly p b |] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
276 |
==> \<exists>x. a < x & x < b & (poly p x = 0)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
277 |
apply (cut_tac f = "%x. poly p x" and a = a and b = b and y = 0 in IVT_objl) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
278 |
apply (auto simp add: order_le_less) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
279 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
280 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
281 |
lemma poly_IVT_neg: "[| a < b; 0 < poly p a; poly p b < 0 |] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
282 |
==> \<exists>x. a < x & x < b & (poly p x = 0)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
283 |
apply (insert poly_IVT_pos [where p = "-- p" ]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
284 |
apply (simp add: poly_minus neg_less_0_iff_less) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
285 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
286 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
287 |
lemma poly_MVT: "a < b ==> |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
288 |
\<exists>x. a < x & x < b & (poly p b - poly p a = (b - a) * poly (pderiv p) x)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
289 |
apply (drule_tac f = "poly p" in MVT, auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
290 |
apply (rule_tac x = z in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
291 |
apply (auto simp add: real_mult_left_cancel poly_DERIV [THEN DERIV_unique]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
292 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
293 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
294 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
295 |
text{*Lemmas for Derivatives*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
296 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
297 |
lemma lemma_poly_pderiv_aux_add: "\<forall>p2 n. poly (pderiv_aux n (p1 +++ p2)) x = |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
298 |
poly (pderiv_aux n p1 +++ pderiv_aux n p2) x" |
15251 | 299 |
apply (induct "p1", simp, clarify) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
300 |
apply (case_tac "p2") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
301 |
apply (auto simp add: right_distrib) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
302 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
303 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
304 |
lemma poly_pderiv_aux_add: "poly (pderiv_aux n (p1 +++ p2)) x = |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
305 |
poly (pderiv_aux n p1 +++ pderiv_aux n p2) x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
306 |
apply (simp add: lemma_poly_pderiv_aux_add) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
307 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
308 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
309 |
lemma lemma_poly_pderiv_aux_cmult: "\<forall>n. poly (pderiv_aux n (c %* p)) x = poly (c %* pderiv_aux n p) x" |
15251 | 310 |
apply (induct "p") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
311 |
apply (auto simp add: poly_cmult mult_ac) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
312 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
313 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
314 |
lemma poly_pderiv_aux_cmult: "poly (pderiv_aux n (c %* p)) x = poly (c %* pderiv_aux n p) x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
315 |
by (simp add: lemma_poly_pderiv_aux_cmult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
316 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
317 |
lemma poly_pderiv_aux_minus: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
318 |
"poly (pderiv_aux n (-- p)) x = poly (-- pderiv_aux n p) x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
319 |
apply (simp add: poly_minus_def poly_pderiv_aux_cmult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
320 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
321 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
322 |
lemma lemma_poly_pderiv_aux_mult1: "\<forall>n. poly (pderiv_aux (Suc n) p) x = poly ((pderiv_aux n p) +++ p) x" |
15251 | 323 |
apply (induct "p") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
324 |
apply (auto simp add: real_of_nat_Suc left_distrib) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
325 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
326 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
327 |
lemma lemma_poly_pderiv_aux_mult: "poly (pderiv_aux (Suc n) p) x = poly ((pderiv_aux n p) +++ p) x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
328 |
by (simp add: lemma_poly_pderiv_aux_mult1) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
329 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
330 |
lemma lemma_poly_pderiv_add: "\<forall>q. poly (pderiv (p +++ q)) x = poly (pderiv p +++ pderiv q) x" |
15251 | 331 |
apply (induct "p", simp, clarify) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
332 |
apply (case_tac "q") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
333 |
apply (auto simp add: poly_pderiv_aux_add poly_add pderiv_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
334 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
335 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
336 |
lemma poly_pderiv_add: "poly (pderiv (p +++ q)) x = poly (pderiv p +++ pderiv q) x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
337 |
by (simp add: lemma_poly_pderiv_add) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
338 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
339 |
lemma poly_pderiv_cmult: "poly (pderiv (c %* p)) x = poly (c %* (pderiv p)) x" |
15251 | 340 |
apply (induct "p") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
341 |
apply (auto simp add: poly_pderiv_aux_cmult poly_cmult pderiv_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
342 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
343 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
344 |
lemma poly_pderiv_minus: "poly (pderiv (--p)) x = poly (--(pderiv p)) x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
345 |
by (simp add: poly_minus_def poly_pderiv_cmult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
346 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
347 |
lemma lemma_poly_mult_pderiv: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
348 |
"poly (pderiv (h#t)) x = poly ((0 # (pderiv t)) +++ t) x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
349 |
apply (simp add: pderiv_def) |
15251 | 350 |
apply (induct "t") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
351 |
apply (auto simp add: poly_add lemma_poly_pderiv_aux_mult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
352 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
353 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
354 |
lemma poly_pderiv_mult: "\<forall>q. poly (pderiv (p *** q)) x = |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
355 |
poly (p *** (pderiv q) +++ q *** (pderiv p)) x" |
15251 | 356 |
apply (induct "p") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
357 |
apply (auto simp add: poly_add poly_cmult poly_pderiv_cmult poly_pderiv_add poly_mult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
358 |
apply (rule lemma_poly_mult_pderiv [THEN ssubst]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
359 |
apply (rule lemma_poly_mult_pderiv [THEN ssubst]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
360 |
apply (rule poly_add [THEN ssubst]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
361 |
apply (rule poly_add [THEN ssubst]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
362 |
apply (simp (no_asm_simp) add: poly_mult right_distrib add_ac mult_ac) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
363 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
364 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
365 |
lemma poly_pderiv_exp: "poly (pderiv (p %^ (Suc n))) x = |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
366 |
poly ((real (Suc n)) %* (p %^ n) *** pderiv p) x" |
15251 | 367 |
apply (induct "n") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
368 |
apply (auto simp add: poly_add poly_pderiv_cmult poly_cmult poly_pderiv_mult |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
369 |
real_of_nat_zero poly_mult real_of_nat_Suc |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
370 |
right_distrib left_distrib mult_ac) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
371 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
372 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
373 |
lemma poly_pderiv_exp_prime: "poly (pderiv ([-a, 1] %^ (Suc n))) x = |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
374 |
poly (real (Suc n) %* ([-a, 1] %^ n)) x" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
375 |
apply (simp add: poly_pderiv_exp poly_mult del: pexp_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
376 |
apply (simp add: poly_cmult pderiv_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
377 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
378 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
379 |
subsection{*Key Property: if @{term "f(a) = 0"} then @{term "(x - a)"} divides |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
380 |
@{term "p(x)"} *} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
381 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
382 |
lemma lemma_poly_linear_rem: "\<forall>h. \<exists>q r. h#t = [r] +++ [-a, 1] *** q" |
15251 | 383 |
apply (induct "t", safe) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
384 |
apply (rule_tac x = "[]" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
385 |
apply (rule_tac x = h in exI, simp) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
386 |
apply (drule_tac x = aa in spec, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
387 |
apply (rule_tac x = "r#q" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
388 |
apply (rule_tac x = "a*r + h" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
389 |
apply (case_tac "q", auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
390 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
391 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
392 |
lemma poly_linear_rem: "\<exists>q r. h#t = [r] +++ [-a, 1] *** q" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
393 |
by (cut_tac t = t and a = a in lemma_poly_linear_rem, auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
394 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
395 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
396 |
lemma poly_linear_divides: "(poly p a = 0) = ((p = []) | (\<exists>q. p = [-a, 1] *** q))" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
397 |
apply (auto simp add: poly_add poly_cmult right_distrib) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
398 |
apply (case_tac "p", simp) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
399 |
apply (cut_tac h = aa and t = list and a = a in poly_linear_rem, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
400 |
apply (case_tac "q", auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
401 |
apply (drule_tac x = "[]" in spec, simp) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
402 |
apply (auto simp add: poly_add poly_cmult real_add_assoc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
403 |
apply (drule_tac x = "aa#lista" in spec, auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
404 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
405 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
406 |
lemma lemma_poly_length_mult: "\<forall>h k a. length (k %* p +++ (h # (a %* p))) = Suc (length p)" |
15251 | 407 |
by (induct "p", auto) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
408 |
declare lemma_poly_length_mult [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
409 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
410 |
lemma lemma_poly_length_mult2: "\<forall>h k. length (k %* p +++ (h # p)) = Suc (length p)" |
15251 | 411 |
by (induct "p", auto) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
412 |
declare lemma_poly_length_mult2 [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
413 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
414 |
lemma poly_length_mult: "length([-a,1] *** q) = Suc (length q)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
415 |
by auto |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
416 |
declare poly_length_mult [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
417 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
418 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
419 |
subsection{*Polynomial length*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
420 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
421 |
lemma poly_cmult_length: "length (a %* p) = length p" |
15251 | 422 |
by (induct "p", auto) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
423 |
declare poly_cmult_length [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
424 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
425 |
lemma poly_add_length [rule_format]: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
426 |
"\<forall>p2. length (p1 +++ p2) = |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
427 |
(if (length p1 < length p2) then length p2 else length p1)" |
15251 | 428 |
apply (induct "p1", simp_all, arith) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
429 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
430 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
431 |
lemma poly_root_mult_length: "length([a,b] *** p) = Suc (length p)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
432 |
by (simp add: poly_cmult_length poly_add_length) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
433 |
declare poly_root_mult_length [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
434 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
435 |
lemma poly_mult_not_eq_poly_Nil: "(poly (p *** q) x \<noteq> poly [] x) = |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
436 |
(poly p x \<noteq> poly [] x & poly q x \<noteq> poly [] x)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
437 |
apply (auto simp add: poly_mult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
438 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
439 |
declare poly_mult_not_eq_poly_Nil [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
440 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
441 |
lemma poly_mult_eq_zero_disj: "(poly (p *** q) x = 0) = (poly p x = 0 | poly q x = 0)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
442 |
by (auto simp add: poly_mult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
443 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
444 |
text{*Normalisation Properties*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
445 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
446 |
lemma poly_normalized_nil: "(pnormalize p = []) --> (poly p x = 0)" |
15251 | 447 |
by (induct "p", auto) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
448 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
449 |
text{*A nontrivial polynomial of degree n has no more than n roots*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
450 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
451 |
lemma poly_roots_index_lemma [rule_format]: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
452 |
"\<forall>p x. poly p x \<noteq> poly [] x & length p = n |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
453 |
--> (\<exists>i. \<forall>x. (poly p x = (0::real)) --> (\<exists>m. (m \<le> n & x = i m)))" |
15251 | 454 |
apply (induct "n", safe) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
455 |
apply (rule ccontr) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
456 |
apply (subgoal_tac "\<exists>a. poly p a = 0", safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
457 |
apply (drule poly_linear_divides [THEN iffD1], safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
458 |
apply (drule_tac x = q in spec) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
459 |
apply (drule_tac x = x in spec) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
460 |
apply (simp del: poly_Nil pmult_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
461 |
apply (erule exE) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
462 |
apply (drule_tac x = "%m. if m = Suc n then a else i m" in spec, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
463 |
apply (drule poly_mult_eq_zero_disj [THEN iffD1], safe) |
15251 | 464 |
apply (drule_tac x = "Suc (length q)" in spec) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
465 |
apply simp |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
466 |
apply (drule_tac x = xa in spec, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
467 |
apply (drule_tac x = m in spec, simp, blast) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
468 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
469 |
lemmas poly_roots_index_lemma2 = conjI [THEN poly_roots_index_lemma, standard] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
470 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
471 |
lemma poly_roots_index_length: "poly p x \<noteq> poly [] x ==> |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
472 |
\<exists>i. \<forall>x. (poly p x = 0) --> (\<exists>n. n \<le> length p & x = i n)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
473 |
by (blast intro: poly_roots_index_lemma2) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
474 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
475 |
lemma poly_roots_finite_lemma: "poly p x \<noteq> poly [] x ==> |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
476 |
\<exists>N i. \<forall>x. (poly p x = 0) --> (\<exists>n. (n::nat) < N & x = i n)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
477 |
apply (drule poly_roots_index_length, safe) |
15251 | 478 |
apply (rule_tac x = "Suc (length p)" in exI) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
479 |
apply (rule_tac x = i in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
480 |
apply (simp add: less_Suc_eq_le) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
481 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
482 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
483 |
(* annoying proof *) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
484 |
lemma real_finite_lemma [rule_format (no_asm)]: |
15251 | 485 |
"\<forall>P. (\<forall>x. P x --> (\<exists>n. n < N & x = (j::nat=>real) n)) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
486 |
--> (\<exists>a. \<forall>x. P x --> x < a)" |
15251 | 487 |
apply (induct "N", simp, safe) |
488 |
apply (drule_tac x = "%z. P z & (z \<noteq> j N)" in spec) |
|
489 |
apply (auto simp add: less_Suc_eq) |
|
490 |
apply (rename_tac N P a) |
|
491 |
apply (rule_tac x = "abs a + abs (j N) + 1" in exI) |
|
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
492 |
apply safe |
15251 | 493 |
apply (drule_tac x = x in spec, safe) |
494 |
apply (drule_tac x = "j n" in spec, arith+) |
|
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
495 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
496 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
497 |
lemma poly_roots_finite: "(poly p \<noteq> poly []) = |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
498 |
(\<exists>N j. \<forall>x. poly p x = 0 --> (\<exists>n. (n::nat) < N & x = j n))" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
499 |
apply safe |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
500 |
apply (erule swap, rule ext) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
501 |
apply (rule ccontr) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
502 |
apply (clarify dest!: poly_roots_finite_lemma) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
503 |
apply (clarify dest!: real_finite_lemma) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
504 |
apply (drule_tac x = a in fun_cong, auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
505 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
506 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
507 |
text{*Entirety and Cancellation for polynomials*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
508 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
509 |
lemma poly_entire_lemma: "[| poly p \<noteq> poly [] ; poly q \<noteq> poly [] |] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
510 |
==> poly (p *** q) \<noteq> poly []" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
511 |
apply (auto simp add: poly_roots_finite) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
512 |
apply (rule_tac x = "N + Na" in exI) |
15251 | 513 |
apply (rule_tac x = "%n. if n < N then j n else ja (n - N)" in exI) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
514 |
apply (auto simp add: poly_mult_eq_zero_disj, force) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
515 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
516 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
517 |
lemma poly_entire: "(poly (p *** q) = poly []) = ((poly p = poly []) | (poly q = poly []))" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
518 |
apply (auto intro: ext dest: fun_cong simp add: poly_entire_lemma poly_mult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
519 |
apply (blast intro: ccontr dest: poly_entire_lemma poly_mult [THEN subst]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
520 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
521 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
522 |
lemma poly_entire_neg: "(poly (p *** q) \<noteq> poly []) = ((poly p \<noteq> poly []) & (poly q \<noteq> poly []))" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
523 |
by (simp add: poly_entire) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
524 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
525 |
lemma fun_eq: " (f = g) = (\<forall>x. f x = g x)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
526 |
by (auto intro!: ext) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
527 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
528 |
lemma poly_add_minus_zero_iff: "(poly (p +++ -- q) = poly []) = (poly p = poly q)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
529 |
by (auto simp add: poly_add poly_minus_def fun_eq poly_cmult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
530 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
531 |
lemma poly_add_minus_mult_eq: "poly (p *** q +++ --(p *** r)) = poly (p *** (q +++ -- r))" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
532 |
by (auto simp add: poly_add poly_minus_def fun_eq poly_mult poly_cmult right_distrib) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
533 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
534 |
lemma poly_mult_left_cancel: "(poly (p *** q) = poly (p *** r)) = (poly p = poly [] | poly q = poly r)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
535 |
apply (rule_tac p1 = "p *** q" in poly_add_minus_zero_iff [THEN subst]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
536 |
apply (auto intro: ext simp add: poly_add_minus_mult_eq poly_entire poly_add_minus_zero_iff) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
537 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
538 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
539 |
lemma real_mult_zero_disj_iff: "(x * y = 0) = (x = (0::real) | y = 0)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
540 |
by simp |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
541 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
542 |
lemma poly_exp_eq_zero: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
543 |
"(poly (p %^ n) = poly []) = (poly p = poly [] & n \<noteq> 0)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
544 |
apply (simp only: fun_eq add: all_simps [symmetric]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
545 |
apply (rule arg_cong [where f = All]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
546 |
apply (rule ext) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
547 |
apply (induct_tac "n") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
548 |
apply (auto simp add: poly_mult real_mult_zero_disj_iff) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
549 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
550 |
declare poly_exp_eq_zero [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
551 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
552 |
lemma poly_prime_eq_zero: "poly [a,1] \<noteq> poly []" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
553 |
apply (simp add: fun_eq) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
554 |
apply (rule_tac x = "1 - a" in exI, simp) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
555 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
556 |
declare poly_prime_eq_zero [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
557 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
558 |
lemma poly_exp_prime_eq_zero: "(poly ([a, 1] %^ n) \<noteq> poly [])" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
559 |
by auto |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
560 |
declare poly_exp_prime_eq_zero [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
561 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
562 |
text{*A more constructive notion of polynomials being trivial*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
563 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
564 |
lemma poly_zero_lemma: "poly (h # t) = poly [] ==> h = 0 & poly t = poly []" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
565 |
apply (simp add: fun_eq) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
566 |
apply (case_tac "h = 0") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
567 |
apply (drule_tac [2] x = 0 in spec, auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
568 |
apply (case_tac "poly t = poly []", simp) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
569 |
apply (auto simp add: poly_roots_finite real_mult_zero_disj_iff) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
570 |
apply (drule real_finite_lemma, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
571 |
apply (drule_tac x = "abs a + 1" in spec)+ |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
572 |
apply arith |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
573 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
574 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
575 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
576 |
lemma poly_zero: "(poly p = poly []) = list_all (%c. c = 0) p" |
15251 | 577 |
apply (induct "p", simp) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
578 |
apply (rule iffI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
579 |
apply (drule poly_zero_lemma, auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
580 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
581 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
582 |
declare real_mult_zero_disj_iff [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
583 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
584 |
lemma pderiv_aux_iszero [rule_format, simp]: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
585 |
"\<forall>n. list_all (%c. c = 0) (pderiv_aux (Suc n) p) = list_all (%c. c = 0) p" |
15251 | 586 |
by (induct "p", auto) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
587 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
588 |
lemma pderiv_aux_iszero_num: "(number_of n :: nat) \<noteq> 0 |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
589 |
==> (list_all (%c. c = 0) (pderiv_aux (number_of n) p) = |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
590 |
list_all (%c. c = 0) p)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
591 |
apply (rule_tac n1 = "number_of n" and m1 = 0 in less_imp_Suc_add [THEN exE], force) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
592 |
apply (rule_tac n1 = "0 + x" in pderiv_aux_iszero [THEN subst]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
593 |
apply (simp (no_asm_simp) del: pderiv_aux_iszero) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
594 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
595 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
596 |
lemma pderiv_iszero [rule_format]: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
597 |
"poly (pderiv p) = poly [] --> (\<exists>h. poly p = poly [h])" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
598 |
apply (simp add: poly_zero) |
15251 | 599 |
apply (induct "p", force) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
600 |
apply (simp add: pderiv_Cons pderiv_aux_iszero_num del: poly_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
601 |
apply (auto simp add: poly_zero [symmetric]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
602 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
603 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
604 |
lemma pderiv_zero_obj: "poly p = poly [] --> (poly (pderiv p) = poly [])" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
605 |
apply (simp add: poly_zero) |
15251 | 606 |
apply (induct "p", force) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
607 |
apply (simp add: pderiv_Cons pderiv_aux_iszero_num del: poly_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
608 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
609 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
610 |
lemma pderiv_zero: "poly p = poly [] ==> (poly (pderiv p) = poly [])" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
611 |
by (blast elim: pderiv_zero_obj [THEN impE]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
612 |
declare pderiv_zero [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
613 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
614 |
lemma poly_pderiv_welldef: "poly p = poly q ==> (poly (pderiv p) = poly (pderiv q))" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
615 |
apply (cut_tac p = "p +++ --q" in pderiv_zero_obj) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
616 |
apply (simp add: fun_eq poly_add poly_minus poly_pderiv_add poly_pderiv_minus del: pderiv_zero) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
617 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
618 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
619 |
text{*Basics of divisibility.*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
620 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
621 |
lemma poly_primes: "([a, 1] divides (p *** q)) = ([a, 1] divides p | [a, 1] divides q)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
622 |
apply (auto simp add: divides_def fun_eq poly_mult poly_add poly_cmult left_distrib [symmetric]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
623 |
apply (drule_tac x = "-a" in spec) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
624 |
apply (auto simp add: poly_linear_divides poly_add poly_cmult left_distrib [symmetric]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
625 |
apply (rule_tac x = "qa *** q" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
626 |
apply (rule_tac [2] x = "p *** qa" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
627 |
apply (auto simp add: poly_add poly_mult poly_cmult mult_ac) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
628 |
done |
12224 | 629 |
|
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
630 |
lemma poly_divides_refl: "p divides p" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
631 |
apply (simp add: divides_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
632 |
apply (rule_tac x = "[1]" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
633 |
apply (auto simp add: poly_mult fun_eq) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
634 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
635 |
declare poly_divides_refl [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
636 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
637 |
lemma poly_divides_trans: "[| p divides q; q divides r |] ==> p divides r" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
638 |
apply (simp add: divides_def, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
639 |
apply (rule_tac x = "qa *** qaa" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
640 |
apply (auto simp add: poly_mult fun_eq real_mult_assoc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
641 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
642 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
643 |
lemma le_iff_add: "(m::nat) \<le> n = (\<exists>d. n = m + d)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
644 |
by (auto simp add: le_eq_less_or_eq less_iff_Suc_add) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
645 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
646 |
lemma poly_divides_exp: "m \<le> n ==> (p %^ m) divides (p %^ n)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
647 |
apply (auto simp add: le_iff_add) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
648 |
apply (induct_tac "d") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
649 |
apply (rule_tac [2] poly_divides_trans) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
650 |
apply (auto simp add: divides_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
651 |
apply (rule_tac x = p in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
652 |
apply (auto simp add: poly_mult fun_eq mult_ac) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
653 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
654 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
655 |
lemma poly_exp_divides: "[| (p %^ n) divides q; m \<le> n |] ==> (p %^ m) divides q" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
656 |
by (blast intro: poly_divides_exp poly_divides_trans) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
657 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
658 |
lemma poly_divides_add: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
659 |
"[| p divides q; p divides r |] ==> p divides (q +++ r)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
660 |
apply (simp add: divides_def, auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
661 |
apply (rule_tac x = "qa +++ qaa" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
662 |
apply (auto simp add: poly_add fun_eq poly_mult right_distrib) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
663 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
664 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
665 |
lemma poly_divides_diff: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
666 |
"[| p divides q; p divides (q +++ r) |] ==> p divides r" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
667 |
apply (simp add: divides_def, auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
668 |
apply (rule_tac x = "qaa +++ -- qa" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
669 |
apply (auto simp add: poly_add fun_eq poly_mult poly_minus right_diff_distrib compare_rls add_ac) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
670 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
671 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
672 |
lemma poly_divides_diff2: "[| p divides r; p divides (q +++ r) |] ==> p divides q" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
673 |
apply (erule poly_divides_diff) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
674 |
apply (auto simp add: poly_add fun_eq poly_mult divides_def add_ac) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
675 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
676 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
677 |
lemma poly_divides_zero: "poly p = poly [] ==> q divides p" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
678 |
apply (simp add: divides_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
679 |
apply (auto simp add: fun_eq poly_mult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
680 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
681 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
682 |
lemma poly_divides_zero2: "q divides []" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
683 |
apply (simp add: divides_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
684 |
apply (rule_tac x = "[]" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
685 |
apply (auto simp add: fun_eq) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
686 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
687 |
declare poly_divides_zero2 [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
688 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
689 |
text{*At last, we can consider the order of a root.*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
690 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
691 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
692 |
lemma poly_order_exists_lemma [rule_format]: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
693 |
"\<forall>p. length p = d --> poly p \<noteq> poly [] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
694 |
--> (\<exists>n q. p = mulexp n [-a, 1] q & poly q a \<noteq> 0)" |
15251 | 695 |
apply (induct "d") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
696 |
apply (simp add: fun_eq, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
697 |
apply (case_tac "poly p a = 0") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
698 |
apply (drule_tac poly_linear_divides [THEN iffD1], safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
699 |
apply (drule_tac x = q in spec) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
700 |
apply (drule_tac poly_entire_neg [THEN iffD1], safe, force, blast) |
15251 | 701 |
apply (rule_tac x = "Suc n" in exI) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
702 |
apply (rule_tac x = qa in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
703 |
apply (simp del: pmult_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
704 |
apply (rule_tac x = 0 in exI, force) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
705 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
706 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
707 |
(* FIXME: Tidy up *) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
708 |
lemma poly_order_exists: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
709 |
"[| length p = d; poly p \<noteq> poly [] |] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
710 |
==> \<exists>n. ([-a, 1] %^ n) divides p & |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
711 |
~(([-a, 1] %^ (Suc n)) divides p)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
712 |
apply (drule poly_order_exists_lemma [where a=a], assumption, clarify) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
713 |
apply (rule_tac x = n in exI, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
714 |
apply (unfold divides_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
715 |
apply (rule_tac x = q in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
716 |
apply (induct_tac "n", simp) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
717 |
apply (simp (no_asm_simp) add: poly_add poly_cmult poly_mult right_distrib mult_ac) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
718 |
apply safe |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
719 |
apply (subgoal_tac "poly (mulexp n [- a, 1] q) \<noteq> poly ([- a, 1] %^ Suc n *** qa)") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
720 |
apply simp |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
721 |
apply (induct_tac "n") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
722 |
apply (simp del: pmult_Cons pexp_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
723 |
apply (erule_tac Pa = "poly q a = 0" in swap) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
724 |
apply (simp add: poly_add poly_cmult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
725 |
apply (rule pexp_Suc [THEN ssubst]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
726 |
apply (rule ccontr) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
727 |
apply (simp add: poly_mult_left_cancel poly_mult_assoc del: pmult_Cons pexp_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
728 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
729 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
730 |
lemma poly_one_divides: "[1] divides p" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
731 |
by (simp add: divides_def, auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
732 |
declare poly_one_divides [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
733 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
734 |
lemma poly_order: "poly p \<noteq> poly [] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
735 |
==> EX! n. ([-a, 1] %^ n) divides p & |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
736 |
~(([-a, 1] %^ (Suc n)) divides p)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
737 |
apply (auto intro: poly_order_exists simp add: less_linear simp del: pmult_Cons pexp_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
738 |
apply (cut_tac m = y and n = n in less_linear) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
739 |
apply (drule_tac m = n in poly_exp_divides) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
740 |
apply (auto dest: Suc_le_eq [THEN iffD2, THEN [2] poly_exp_divides] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
741 |
simp del: pmult_Cons pexp_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
742 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
743 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
744 |
text{*Order*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
745 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
746 |
lemma some1_equalityD: "[| n = (@n. P n); EX! n. P n |] ==> P n" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
747 |
by (blast intro: someI2) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
748 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
749 |
lemma order: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
750 |
"(([-a, 1] %^ n) divides p & |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
751 |
~(([-a, 1] %^ (Suc n)) divides p)) = |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
752 |
((n = order a p) & ~(poly p = poly []))" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
753 |
apply (unfold order_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
754 |
apply (rule iffI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
755 |
apply (blast dest: poly_divides_zero intro!: some1_equality [symmetric] poly_order) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
756 |
apply (blast intro!: poly_order [THEN [2] some1_equalityD]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
757 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
758 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
759 |
lemma order2: "[| poly p \<noteq> poly [] |] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
760 |
==> ([-a, 1] %^ (order a p)) divides p & |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
761 |
~(([-a, 1] %^ (Suc(order a p))) divides p)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
762 |
by (simp add: order del: pexp_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
763 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
764 |
lemma order_unique: "[| poly p \<noteq> poly []; ([-a, 1] %^ n) divides p; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
765 |
~(([-a, 1] %^ (Suc n)) divides p) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
766 |
|] ==> (n = order a p)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
767 |
by (insert order [of a n p], auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
768 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
769 |
lemma order_unique_lemma: "(poly p \<noteq> poly [] & ([-a, 1] %^ n) divides p & |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
770 |
~(([-a, 1] %^ (Suc n)) divides p)) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
771 |
==> (n = order a p)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
772 |
by (blast intro: order_unique) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
773 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
774 |
lemma order_poly: "poly p = poly q ==> order a p = order a q" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
775 |
by (auto simp add: fun_eq divides_def poly_mult order_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
776 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
777 |
lemma pexp_one: "p %^ (Suc 0) = p" |
15251 | 778 |
apply (induct "p") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
779 |
apply (auto simp add: numeral_1_eq_1) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
780 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
781 |
declare pexp_one [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
782 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
783 |
lemma lemma_order_root [rule_format]: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
784 |
"\<forall>p a. 0 < n & [- a, 1] %^ n divides p & ~ [- a, 1] %^ (Suc n) divides p |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
785 |
--> poly p a = 0" |
15251 | 786 |
apply (induct "n", blast) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
787 |
apply (auto simp add: divides_def poly_mult simp del: pmult_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
788 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
789 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
790 |
lemma order_root: "(poly p a = 0) = ((poly p = poly []) | order a p \<noteq> 0)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
791 |
apply (case_tac "poly p = poly []", auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
792 |
apply (simp add: poly_linear_divides del: pmult_Cons, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
793 |
apply (drule_tac [!] a = a in order2) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
794 |
apply (rule ccontr) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
795 |
apply (simp add: divides_def poly_mult fun_eq del: pmult_Cons, blast) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
796 |
apply (blast intro: lemma_order_root) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
797 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
798 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
799 |
lemma order_divides: "(([-a, 1] %^ n) divides p) = ((poly p = poly []) | n \<le> order a p)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
800 |
apply (case_tac "poly p = poly []", auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
801 |
apply (simp add: divides_def fun_eq poly_mult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
802 |
apply (rule_tac x = "[]" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
803 |
apply (auto dest!: order2 [where a=a] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
804 |
intro: poly_exp_divides simp del: pexp_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
805 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
806 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
807 |
lemma order_decomp: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
808 |
"poly p \<noteq> poly [] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
809 |
==> \<exists>q. (poly p = poly (([-a, 1] %^ (order a p)) *** q)) & |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
810 |
~([-a, 1] divides q)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
811 |
apply (unfold divides_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
812 |
apply (drule order2 [where a = a]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
813 |
apply (simp add: divides_def del: pexp_Suc pmult_Cons, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
814 |
apply (rule_tac x = q in exI, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
815 |
apply (drule_tac x = qa in spec) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
816 |
apply (auto simp add: poly_mult fun_eq poly_exp mult_ac simp del: pmult_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
817 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
818 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
819 |
text{*Important composition properties of orders.*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
820 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
821 |
lemma order_mult: "poly (p *** q) \<noteq> poly [] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
822 |
==> order a (p *** q) = order a p + order a q" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
823 |
apply (cut_tac a = a and p = "p***q" and n = "order a p + order a q" in order) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
824 |
apply (auto simp add: poly_entire simp del: pmult_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
825 |
apply (drule_tac a = a in order2)+ |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
826 |
apply safe |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
827 |
apply (simp add: divides_def fun_eq poly_exp_add poly_mult del: pmult_Cons, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
828 |
apply (rule_tac x = "qa *** qaa" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
829 |
apply (simp add: poly_mult mult_ac del: pmult_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
830 |
apply (drule_tac a = a in order_decomp)+ |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
831 |
apply safe |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
832 |
apply (subgoal_tac "[-a,1] divides (qa *** qaa) ") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
833 |
apply (simp add: poly_primes del: pmult_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
834 |
apply (auto simp add: divides_def simp del: pmult_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
835 |
apply (rule_tac x = qb in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
836 |
apply (subgoal_tac "poly ([-a, 1] %^ (order a p) *** (qa *** qaa)) = poly ([-a, 1] %^ (order a p) *** ([-a, 1] *** qb))") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
837 |
apply (drule poly_mult_left_cancel [THEN iffD1], force) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
838 |
apply (subgoal_tac "poly ([-a, 1] %^ (order a q) *** ([-a, 1] %^ (order a p) *** (qa *** qaa))) = poly ([-a, 1] %^ (order a q) *** ([-a, 1] %^ (order a p) *** ([-a, 1] *** qb))) ") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
839 |
apply (drule poly_mult_left_cancel [THEN iffD1], force) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
840 |
apply (simp add: fun_eq poly_exp_add poly_mult mult_ac del: pmult_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
841 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
842 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
843 |
(* FIXME: too too long! *) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
844 |
lemma lemma_order_pderiv [rule_format]: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
845 |
"\<forall>p q a. 0 < n & |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
846 |
poly (pderiv p) \<noteq> poly [] & |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
847 |
poly p = poly ([- a, 1] %^ n *** q) & ~ [- a, 1] divides q |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
848 |
--> n = Suc (order a (pderiv p))" |
15251 | 849 |
apply (induct "n", safe) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
850 |
apply (rule order_unique_lemma, rule conjI, assumption) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
851 |
apply (subgoal_tac "\<forall>r. r divides (pderiv p) = r divides (pderiv ([-a, 1] %^ Suc n *** q))") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
852 |
apply (drule_tac [2] poly_pderiv_welldef) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
853 |
prefer 2 apply (simp add: divides_def del: pmult_Cons pexp_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
854 |
apply (simp del: pmult_Cons pexp_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
855 |
apply (rule conjI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
856 |
apply (simp add: divides_def fun_eq del: pmult_Cons pexp_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
857 |
apply (rule_tac x = "[-a, 1] *** (pderiv q) +++ real (Suc n) %* q" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
858 |
apply (simp add: poly_pderiv_mult poly_pderiv_exp_prime poly_add poly_mult poly_cmult right_distrib mult_ac del: pmult_Cons pexp_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
859 |
apply (simp add: poly_mult right_distrib left_distrib mult_ac del: pmult_Cons) |
15251 | 860 |
apply (erule_tac V = "\<forall>r. r divides pderiv p = r divides pderiv ([- a, 1] %^ Suc n *** q)" in thin_rl) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
861 |
apply (unfold divides_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
862 |
apply (simp (no_asm) add: poly_pderiv_mult poly_pderiv_exp_prime fun_eq poly_add poly_mult del: pmult_Cons pexp_Suc) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
863 |
apply (rule swap, assumption) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
864 |
apply (rotate_tac 3, erule swap) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
865 |
apply (simp del: pmult_Cons pexp_Suc, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
866 |
apply (rule_tac x = "inverse (real (Suc n)) %* (qa +++ -- (pderiv q))" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
867 |
apply (subgoal_tac "poly ([-a, 1] %^ n *** q) = poly ([-a, 1] %^ n *** ([-a, 1] *** (inverse (real (Suc n)) %* (qa +++ -- (pderiv q))))) ") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
868 |
apply (drule poly_mult_left_cancel [THEN iffD1], simp) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
869 |
apply (simp add: fun_eq poly_mult poly_add poly_cmult poly_minus del: pmult_Cons mult_cancel_left field_mult_cancel_left, safe) |
15251 | 870 |
apply (rule_tac c1 = "real (Suc n)" in real_mult_left_cancel [THEN iffD1]) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
871 |
apply (simp (no_asm)) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
872 |
apply (subgoal_tac "real (Suc n) * (poly ([- a, 1] %^ n) xa * poly q xa) = |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
873 |
(poly qa xa + - poly (pderiv q) xa) * |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
874 |
(poly ([- a, 1] %^ n) xa * |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
875 |
((- a + xa) * (inverse (real (Suc n)) * real (Suc n))))") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
876 |
apply (simp only: mult_ac) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
877 |
apply (rotate_tac 2) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
878 |
apply (drule_tac x = xa in spec) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
879 |
apply (simp add: left_distrib mult_ac del: pmult_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
880 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
881 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
882 |
lemma order_pderiv: "[| poly (pderiv p) \<noteq> poly []; order a p \<noteq> 0 |] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
883 |
==> (order a p = Suc (order a (pderiv p)))" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
884 |
apply (case_tac "poly p = poly []") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
885 |
apply (auto dest: pderiv_zero) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
886 |
apply (drule_tac a = a and p = p in order_decomp) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
887 |
apply (blast intro: lemma_order_pderiv) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
888 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
889 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
890 |
text{*Now justify the standard squarefree decomposition, i.e. f / gcd(f,f'). *) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
891 |
(* `a la Harrison*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
892 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
893 |
lemma poly_squarefree_decomp_order: "[| poly (pderiv p) \<noteq> poly []; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
894 |
poly p = poly (q *** d); |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
895 |
poly (pderiv p) = poly (e *** d); |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
896 |
poly d = poly (r *** p +++ s *** pderiv p) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
897 |
|] ==> order a q = (if order a p = 0 then 0 else 1)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
898 |
apply (subgoal_tac "order a p = order a q + order a d") |
15251 | 899 |
apply (rule_tac [2] s = "order a (q *** d)" in trans) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
900 |
prefer 2 apply (blast intro: order_poly) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
901 |
apply (rule_tac [2] order_mult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
902 |
prefer 2 apply force |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
903 |
apply (case_tac "order a p = 0", simp) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
904 |
apply (subgoal_tac "order a (pderiv p) = order a e + order a d") |
15251 | 905 |
apply (rule_tac [2] s = "order a (e *** d)" in trans) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
906 |
prefer 2 apply (blast intro: order_poly) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
907 |
apply (rule_tac [2] order_mult) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
908 |
prefer 2 apply force |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
909 |
apply (case_tac "poly p = poly []") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
910 |
apply (drule_tac p = p in pderiv_zero, simp) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
911 |
apply (drule order_pderiv, assumption) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
912 |
apply (subgoal_tac "order a (pderiv p) \<le> order a d") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
913 |
apply (subgoal_tac [2] " ([-a, 1] %^ (order a (pderiv p))) divides d") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
914 |
prefer 2 apply (simp add: poly_entire order_divides) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
915 |
apply (subgoal_tac [2] " ([-a, 1] %^ (order a (pderiv p))) divides p & ([-a, 1] %^ (order a (pderiv p))) divides (pderiv p) ") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
916 |
prefer 3 apply (simp add: order_divides) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
917 |
prefer 2 apply (simp add: divides_def del: pexp_Suc pmult_Cons, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
918 |
apply (rule_tac x = "r *** qa +++ s *** qaa" in exI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
919 |
apply (simp add: fun_eq poly_add poly_mult left_distrib right_distrib mult_ac del: pexp_Suc pmult_Cons, auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
920 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
921 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
922 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
923 |
lemma poly_squarefree_decomp_order2: "[| poly (pderiv p) \<noteq> poly []; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
924 |
poly p = poly (q *** d); |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
925 |
poly (pderiv p) = poly (e *** d); |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
926 |
poly d = poly (r *** p +++ s *** pderiv p) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
927 |
|] ==> \<forall>a. order a q = (if order a p = 0 then 0 else 1)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
928 |
apply (blast intro: poly_squarefree_decomp_order) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
929 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
930 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
931 |
lemma order_root2: "poly p \<noteq> poly [] ==> (poly p a = 0) = (order a p \<noteq> 0)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
932 |
by (rule order_root [THEN ssubst], auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
933 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
934 |
lemma order_pderiv2: "[| poly (pderiv p) \<noteq> poly []; order a p \<noteq> 0 |] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
935 |
==> (order a (pderiv p) = n) = (order a p = Suc n)" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
936 |
apply (auto dest: order_pderiv) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
937 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
938 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
939 |
lemma rsquarefree_roots: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
940 |
"rsquarefree p = (\<forall>a. ~(poly p a = 0 & poly (pderiv p) a = 0))" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
941 |
apply (simp add: rsquarefree_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
942 |
apply (case_tac "poly p = poly []", simp, simp) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
943 |
apply (case_tac "poly (pderiv p) = poly []") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
944 |
apply simp |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
945 |
apply (drule pderiv_iszero, clarify) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
946 |
apply (subgoal_tac "\<forall>a. order a p = order a [h]") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
947 |
apply (simp add: fun_eq) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
948 |
apply (rule allI) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
949 |
apply (cut_tac p = "[h]" and a = a in order_root) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
950 |
apply (simp add: fun_eq) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
951 |
apply (blast intro: order_poly) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
952 |
apply (auto simp add: order_root order_pderiv2) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
953 |
apply (drule spec, auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
954 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
955 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
956 |
lemma pmult_one: "[1] *** p = p" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
957 |
by auto |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
958 |
declare pmult_one [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
959 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
960 |
lemma poly_Nil_zero: "poly [] = poly [0]" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
961 |
by (simp add: fun_eq) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
962 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
963 |
lemma rsquarefree_decomp: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
964 |
"[| rsquarefree p; poly p a = 0 |] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
965 |
==> \<exists>q. (poly p = poly ([-a, 1] *** q)) & poly q a \<noteq> 0" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
966 |
apply (simp add: rsquarefree_def, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
967 |
apply (frule_tac a = a in order_decomp) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
968 |
apply (drule_tac x = a in spec) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
969 |
apply (drule_tac a1 = a in order_root2 [symmetric]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
970 |
apply (auto simp del: pmult_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
971 |
apply (rule_tac x = q in exI, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
972 |
apply (simp add: poly_mult fun_eq) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
973 |
apply (drule_tac p1 = q in poly_linear_divides [THEN iffD1]) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
974 |
apply (simp add: divides_def del: pmult_Cons, safe) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
975 |
apply (drule_tac x = "[]" in spec) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
976 |
apply (auto simp add: fun_eq) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
977 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
978 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
979 |
lemma poly_squarefree_decomp: "[| poly (pderiv p) \<noteq> poly []; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
980 |
poly p = poly (q *** d); |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
981 |
poly (pderiv p) = poly (e *** d); |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
982 |
poly d = poly (r *** p +++ s *** pderiv p) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
983 |
|] ==> rsquarefree q & (\<forall>a. (poly q a = 0) = (poly p a = 0))" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
984 |
apply (frule poly_squarefree_decomp_order2, assumption+) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
985 |
apply (case_tac "poly p = poly []") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
986 |
apply (blast dest: pderiv_zero) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
987 |
apply (simp (no_asm) add: rsquarefree_def order_root del: pmult_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
988 |
apply (simp add: poly_entire del: pmult_Cons) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
989 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
990 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
991 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
992 |
text{*Normalization of a polynomial.*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
993 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
994 |
lemma poly_normalize: "poly (pnormalize p) = poly p" |
15251 | 995 |
apply (induct "p") |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
996 |
apply (auto simp add: fun_eq) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
997 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
998 |
declare poly_normalize [simp] |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
999 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1000 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1001 |
text{*The degree of a polynomial.*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1002 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1003 |
lemma lemma_degree_zero [rule_format]: |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1004 |
"list_all (%c. c = 0) p --> pnormalize p = []" |
15251 | 1005 |
by (induct "p", auto) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1006 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1007 |
lemma degree_zero: "poly p = poly [] ==> degree p = 0" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1008 |
apply (simp add: degree_def) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1009 |
apply (case_tac "pnormalize p = []") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1010 |
apply (auto dest: lemma_degree_zero simp add: poly_zero) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1011 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1012 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1013 |
text{*Tidier versions of finiteness of roots.*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1014 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1015 |
lemma poly_roots_finite_set: "poly p \<noteq> poly [] ==> finite {x. poly p x = 0}" |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1016 |
apply (auto simp add: poly_roots_finite) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1017 |
apply (rule_tac B = "{x::real. \<exists>n. (n::nat) < N & (x = j n) }" in finite_subset) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1018 |
apply (induct_tac [2] "N", auto) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1019 |
apply (subgoal_tac "{x::real. \<exists>na. na < Suc n & (x = j na) } = { (j n) } Un {x. \<exists>na. na < n & (x = j na) }") |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1020 |
apply (auto simp add: less_Suc_eq) |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1021 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1022 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1023 |
text{*bound for polynomial.*} |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1024 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1025 |
lemma poly_mono: "abs(x) \<le> k ==> abs(poly p x) \<le> poly (map abs p) k" |
15251 | 1026 |
apply (induct "p", auto) |
1027 |
apply (rule_tac j = "abs a + abs (x * poly p x)" in real_le_trans) |
|
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1028 |
apply (rule abs_triangle_ineq) |
15539 | 1029 |
apply (auto intro!: mult_mono, arith) |
14435
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1030 |
done |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1031 |
|
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1032 |
ML |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1033 |
{* |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1034 |
val padd_Nil2 = thm "padd_Nil2"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1035 |
val padd_Cons_Cons = thm "padd_Cons_Cons"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1036 |
val pminus_Nil = thm "pminus_Nil"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1037 |
val pmult_singleton = thm "pmult_singleton"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1038 |
val poly_ident_mult = thm "poly_ident_mult"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1039 |
val poly_simple_add_Cons = thm "poly_simple_add_Cons"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1040 |
val padd_commut = thm "padd_commut"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1041 |
val padd_assoc = thm "padd_assoc"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1042 |
val poly_cmult_distr = thm "poly_cmult_distr"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1043 |
val pmult_by_x = thm "pmult_by_x"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1044 |
val poly_add = thm "poly_add"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1045 |
val poly_cmult = thm "poly_cmult"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1046 |
val poly_minus = thm "poly_minus"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1047 |
val poly_mult = thm "poly_mult"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1048 |
val poly_exp = thm "poly_exp"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1049 |
val poly_add_rzero = thm "poly_add_rzero"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1050 |
val poly_mult_assoc = thm "poly_mult_assoc"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1051 |
val poly_mult_Nil2 = thm "poly_mult_Nil2"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1052 |
val poly_exp_add = thm "poly_exp_add"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1053 |
val pderiv_Nil = thm "pderiv_Nil"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1054 |
val pderiv_singleton = thm "pderiv_singleton"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1055 |
val pderiv_Cons = thm "pderiv_Cons"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1056 |
val DERIV_cmult2 = thm "DERIV_cmult2"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1057 |
val DERIV_pow2 = thm "DERIV_pow2"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1058 |
val lemma_DERIV_poly1 = thm "lemma_DERIV_poly1"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1059 |
val lemma_DERIV_poly = thm "lemma_DERIV_poly"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1060 |
val DERIV_add_const = thm "DERIV_add_const"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1061 |
val poly_DERIV = thm "poly_DERIV"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1062 |
val poly_differentiable = thm "poly_differentiable"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1063 |
val poly_isCont = thm "poly_isCont"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1064 |
val poly_IVT_pos = thm "poly_IVT_pos"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1065 |
val poly_IVT_neg = thm "poly_IVT_neg"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1066 |
val poly_MVT = thm "poly_MVT"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1067 |
val lemma_poly_pderiv_aux_add = thm "lemma_poly_pderiv_aux_add"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1068 |
val poly_pderiv_aux_add = thm "poly_pderiv_aux_add"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1069 |
val lemma_poly_pderiv_aux_cmult = thm "lemma_poly_pderiv_aux_cmult"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1070 |
val poly_pderiv_aux_cmult = thm "poly_pderiv_aux_cmult"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1071 |
val poly_pderiv_aux_minus = thm "poly_pderiv_aux_minus"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1072 |
val lemma_poly_pderiv_aux_mult1 = thm "lemma_poly_pderiv_aux_mult1"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1073 |
val lemma_poly_pderiv_aux_mult = thm "lemma_poly_pderiv_aux_mult"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1074 |
val lemma_poly_pderiv_add = thm "lemma_poly_pderiv_add"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1075 |
val poly_pderiv_add = thm "poly_pderiv_add"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1076 |
val poly_pderiv_cmult = thm "poly_pderiv_cmult"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1077 |
val poly_pderiv_minus = thm "poly_pderiv_minus"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1078 |
val lemma_poly_mult_pderiv = thm "lemma_poly_mult_pderiv"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1079 |
val poly_pderiv_mult = thm "poly_pderiv_mult"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1080 |
val poly_pderiv_exp = thm "poly_pderiv_exp"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1081 |
val poly_pderiv_exp_prime = thm "poly_pderiv_exp_prime"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1082 |
val lemma_poly_linear_rem = thm "lemma_poly_linear_rem"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1083 |
val poly_linear_rem = thm "poly_linear_rem"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1084 |
val poly_linear_divides = thm "poly_linear_divides"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1085 |
val lemma_poly_length_mult = thm "lemma_poly_length_mult"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1086 |
val lemma_poly_length_mult2 = thm "lemma_poly_length_mult2"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1087 |
val poly_length_mult = thm "poly_length_mult"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1088 |
val poly_cmult_length = thm "poly_cmult_length"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1089 |
val poly_add_length = thm "poly_add_length"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1090 |
val poly_root_mult_length = thm "poly_root_mult_length"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1091 |
val poly_mult_not_eq_poly_Nil = thm "poly_mult_not_eq_poly_Nil"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1092 |
val poly_mult_eq_zero_disj = thm "poly_mult_eq_zero_disj"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1093 |
val poly_normalized_nil = thm "poly_normalized_nil"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1094 |
val poly_roots_index_lemma = thm "poly_roots_index_lemma"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1095 |
val poly_roots_index_lemma2 = thms "poly_roots_index_lemma2"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1096 |
val poly_roots_index_length = thm "poly_roots_index_length"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1097 |
val poly_roots_finite_lemma = thm "poly_roots_finite_lemma"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1098 |
val real_finite_lemma = thm "real_finite_lemma"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1099 |
val poly_roots_finite = thm "poly_roots_finite"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1100 |
val poly_entire_lemma = thm "poly_entire_lemma"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1101 |
val poly_entire = thm "poly_entire"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1102 |
val poly_entire_neg = thm "poly_entire_neg"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1103 |
val fun_eq = thm "fun_eq"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1104 |
val poly_add_minus_zero_iff = thm "poly_add_minus_zero_iff"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1105 |
val poly_add_minus_mult_eq = thm "poly_add_minus_mult_eq"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1106 |
val poly_mult_left_cancel = thm "poly_mult_left_cancel"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1107 |
val real_mult_zero_disj_iff = thm "real_mult_zero_disj_iff"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1108 |
val poly_exp_eq_zero = thm "poly_exp_eq_zero"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1109 |
val poly_prime_eq_zero = thm "poly_prime_eq_zero"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1110 |
val poly_exp_prime_eq_zero = thm "poly_exp_prime_eq_zero"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1111 |
val poly_zero_lemma = thm "poly_zero_lemma"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1112 |
val poly_zero = thm "poly_zero"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1113 |
val pderiv_aux_iszero = thm "pderiv_aux_iszero"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1114 |
val pderiv_aux_iszero_num = thm "pderiv_aux_iszero_num"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1115 |
val pderiv_iszero = thm "pderiv_iszero"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1116 |
val pderiv_zero_obj = thm "pderiv_zero_obj"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1117 |
val pderiv_zero = thm "pderiv_zero"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1118 |
val poly_pderiv_welldef = thm "poly_pderiv_welldef"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1119 |
val poly_primes = thm "poly_primes"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1120 |
val poly_divides_refl = thm "poly_divides_refl"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1121 |
val poly_divides_trans = thm "poly_divides_trans"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1122 |
val le_iff_add = thm "le_iff_add"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1123 |
val poly_divides_exp = thm "poly_divides_exp"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1124 |
val poly_exp_divides = thm "poly_exp_divides"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1125 |
val poly_divides_add = thm "poly_divides_add"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1126 |
val poly_divides_diff = thm "poly_divides_diff"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1127 |
val poly_divides_diff2 = thm "poly_divides_diff2"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1128 |
val poly_divides_zero = thm "poly_divides_zero"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1129 |
val poly_divides_zero2 = thm "poly_divides_zero2"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1130 |
val poly_order_exists_lemma = thm "poly_order_exists_lemma"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1131 |
val poly_order_exists = thm "poly_order_exists"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1132 |
val poly_one_divides = thm "poly_one_divides"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1133 |
val poly_order = thm "poly_order"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1134 |
val some1_equalityD = thm "some1_equalityD"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1135 |
val order = thm "order"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1136 |
val order2 = thm "order2"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1137 |
val order_unique = thm "order_unique"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1138 |
val order_unique_lemma = thm "order_unique_lemma"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1139 |
val order_poly = thm "order_poly"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1140 |
val pexp_one = thm "pexp_one"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1141 |
val lemma_order_root = thm "lemma_order_root"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1142 |
val order_root = thm "order_root"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1143 |
val order_divides = thm "order_divides"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1144 |
val order_decomp = thm "order_decomp"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1145 |
val order_mult = thm "order_mult"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1146 |
val lemma_order_pderiv = thm "lemma_order_pderiv"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1147 |
val order_pderiv = thm "order_pderiv"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1148 |
val poly_squarefree_decomp_order = thm "poly_squarefree_decomp_order"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1149 |
val poly_squarefree_decomp_order2 = thm "poly_squarefree_decomp_order2"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1150 |
val order_root2 = thm "order_root2"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1151 |
val order_pderiv2 = thm "order_pderiv2"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1152 |
val rsquarefree_roots = thm "rsquarefree_roots"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1153 |
val pmult_one = thm "pmult_one"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1154 |
val poly_Nil_zero = thm "poly_Nil_zero"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1155 |
val rsquarefree_decomp = thm "rsquarefree_decomp"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1156 |
val poly_squarefree_decomp = thm "poly_squarefree_decomp"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1157 |
val poly_normalize = thm "poly_normalize"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1158 |
val lemma_degree_zero = thm "lemma_degree_zero"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1159 |
val degree_zero = thm "degree_zero"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1160 |
val poly_roots_finite_set = thm "poly_roots_finite_set"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1161 |
val poly_mono = thm "poly_mono"; |
9e22eeccf129
Conversion of Poly to Isar script, and other tidying of HOL/Hyperreal
paulson
parents:
12224
diff
changeset
|
1162 |
*} |
12224 | 1163 |
|
1164 |
end |