author | paulson |
Wed, 25 Feb 2004 16:22:36 +0100 | |
changeset 14413 | 7ce47ab455eb |
parent 14399 | dc677b35e54f |
child 14553 | 4740fc2da7bb |
permissions | -rw-r--r-- |
13940 | 1 |
(* |
2 |
Title: Univariate Polynomials |
|
3 |
Id: $Id$ |
|
4 |
Author: Clemens Ballarin, started 9 December 1996 |
|
5 |
Copyright: Clemens Ballarin |
|
6 |
*) |
|
7 |
||
8 |
theory UnivPoly = Module: |
|
9 |
||
10 |
section {* Univariate Polynomials *} |
|
11 |
||
13949
0ce528cd6f19
HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents:
13940
diff
changeset
|
12 |
subsection {* The Constructor for Univariate Polynomials *} |
13940 | 13 |
|
14 |
(* Could alternatively use locale ... |
|
15 |
locale bound = cring + var bound + |
|
16 |
defines ... |
|
17 |
*) |
|
18 |
||
19 |
constdefs |
|
20 |
bound :: "['a, nat, nat => 'a] => bool" |
|
21 |
"bound z n f == (ALL i. n < i --> f i = z)" |
|
22 |
||
23 |
lemma boundI [intro!]: |
|
24 |
"[| !! m. n < m ==> f m = z |] ==> bound z n f" |
|
25 |
by (unfold bound_def) fast |
|
26 |
||
27 |
lemma boundE [elim?]: |
|
28 |
"[| bound z n f; (!! m. n < m ==> f m = z) ==> P |] ==> P" |
|
29 |
by (unfold bound_def) fast |
|
30 |
||
31 |
lemma boundD [dest]: |
|
32 |
"[| bound z n f; n < m |] ==> f m = z" |
|
33 |
by (unfold bound_def) fast |
|
34 |
||
35 |
lemma bound_below: |
|
36 |
assumes bound: "bound z m f" and nonzero: "f n ~= z" shows "n <= m" |
|
37 |
proof (rule classical) |
|
38 |
assume "~ ?thesis" |
|
39 |
then have "m < n" by arith |
|
40 |
with bound have "f n = z" .. |
|
41 |
with nonzero show ?thesis by contradiction |
|
42 |
qed |
|
43 |
||
44 |
record ('a, 'p) up_ring = "('a, 'p) module" + |
|
45 |
monom :: "['a, nat] => 'p" |
|
46 |
coeff :: "['p, nat] => 'a" |
|
47 |
||
48 |
constdefs |
|
49 |
up :: "('a, 'm) ring_scheme => (nat => 'a) set" |
|
50 |
"up R == {f. f \<in> UNIV -> carrier R & (EX n. bound (zero R) n f)}" |
|
51 |
UP :: "('a, 'm) ring_scheme => ('a, nat => 'a) up_ring" |
|
52 |
"UP R == (| |
|
53 |
carrier = up R, |
|
54 |
mult = (%p:up R. %q:up R. %n. finsum R (%i. mult R (p i) (q (n-i))) {..n}), |
|
55 |
one = (%i. if i=0 then one R else zero R), |
|
56 |
zero = (%i. zero R), |
|
57 |
add = (%p:up R. %q:up R. %i. add R (p i) (q i)), |
|
58 |
smult = (%a:carrier R. %p:up R. %i. mult R a (p i)), |
|
59 |
monom = (%a:carrier R. %n i. if i=n then a else zero R), |
|
60 |
coeff = (%p:up R. %n. p n) |)" |
|
61 |
||
62 |
text {* |
|
63 |
Properties of the set of polynomials @{term up}. |
|
64 |
*} |
|
65 |
||
66 |
lemma mem_upI [intro]: |
|
67 |
"[| !!n. f n \<in> carrier R; EX n. bound (zero R) n f |] ==> f \<in> up R" |
|
68 |
by (simp add: up_def Pi_def) |
|
69 |
||
70 |
lemma mem_upD [dest]: |
|
71 |
"f \<in> up R ==> f n \<in> carrier R" |
|
72 |
by (simp add: up_def Pi_def) |
|
73 |
||
74 |
lemma (in cring) bound_upD [dest]: |
|
75 |
"f \<in> up R ==> EX n. bound \<zero> n f" |
|
76 |
by (simp add: up_def) |
|
77 |
||
78 |
lemma (in cring) up_one_closed: |
|
79 |
"(%n. if n = 0 then \<one> else \<zero>) \<in> up R" |
|
80 |
using up_def by force |
|
81 |
||
82 |
lemma (in cring) up_smult_closed: |
|
83 |
"[| a \<in> carrier R; p \<in> up R |] ==> (%i. a \<otimes> p i) \<in> up R" |
|
84 |
by force |
|
85 |
||
86 |
lemma (in cring) up_add_closed: |
|
87 |
"[| p \<in> up R; q \<in> up R |] ==> (%i. p i \<oplus> q i) \<in> up R" |
|
88 |
proof |
|
89 |
fix n |
|
90 |
assume "p \<in> up R" and "q \<in> up R" |
|
91 |
then show "p n \<oplus> q n \<in> carrier R" |
|
92 |
by auto |
|
93 |
next |
|
94 |
assume UP: "p \<in> up R" "q \<in> up R" |
|
95 |
show "EX n. bound \<zero> n (%i. p i \<oplus> q i)" |
|
96 |
proof - |
|
97 |
from UP obtain n where boundn: "bound \<zero> n p" by fast |
|
98 |
from UP obtain m where boundm: "bound \<zero> m q" by fast |
|
99 |
have "bound \<zero> (max n m) (%i. p i \<oplus> q i)" |
|
100 |
proof |
|
101 |
fix i |
|
102 |
assume "max n m < i" |
|
103 |
with boundn and boundm and UP show "p i \<oplus> q i = \<zero>" by fastsimp |
|
104 |
qed |
|
105 |
then show ?thesis .. |
|
106 |
qed |
|
107 |
qed |
|
108 |
||
109 |
lemma (in cring) up_a_inv_closed: |
|
110 |
"p \<in> up R ==> (%i. \<ominus> (p i)) \<in> up R" |
|
111 |
proof |
|
112 |
assume R: "p \<in> up R" |
|
113 |
then obtain n where "bound \<zero> n p" by auto |
|
114 |
then have "bound \<zero> n (%i. \<ominus> p i)" by auto |
|
115 |
then show "EX n. bound \<zero> n (%i. \<ominus> p i)" by auto |
|
116 |
qed auto |
|
117 |
||
118 |
lemma (in cring) up_mult_closed: |
|
119 |
"[| p \<in> up R; q \<in> up R |] ==> |
|
120 |
(%n. finsum R (%i. p i \<otimes> q (n-i)) {..n}) \<in> up R" |
|
121 |
proof |
|
122 |
fix n |
|
123 |
assume "p \<in> up R" "q \<in> up R" |
|
124 |
then show "finsum R (%i. p i \<otimes> q (n-i)) {..n} \<in> carrier R" |
|
125 |
by (simp add: mem_upD funcsetI) |
|
126 |
next |
|
127 |
assume UP: "p \<in> up R" "q \<in> up R" |
|
128 |
show "EX n. bound \<zero> n (%n. finsum R (%i. p i \<otimes> q (n - i)) {..n})" |
|
129 |
proof - |
|
130 |
from UP obtain n where boundn: "bound \<zero> n p" by fast |
|
131 |
from UP obtain m where boundm: "bound \<zero> m q" by fast |
|
132 |
have "bound \<zero> (n + m) (%n. finsum R (%i. p i \<otimes> q (n - i)) {..n})" |
|
133 |
proof |
|
134 |
fix k |
|
135 |
assume bound: "n + m < k" |
|
136 |
{ |
|
137 |
fix i |
|
138 |
have "p i \<otimes> q (k-i) = \<zero>" |
|
139 |
proof (cases "n < i") |
|
140 |
case True |
|
141 |
with boundn have "p i = \<zero>" by auto |
|
142 |
moreover from UP have "q (k-i) \<in> carrier R" by auto |
|
143 |
ultimately show ?thesis by simp |
|
144 |
next |
|
145 |
case False |
|
146 |
with bound have "m < k-i" by arith |
|
147 |
with boundm have "q (k-i) = \<zero>" by auto |
|
148 |
moreover from UP have "p i \<in> carrier R" by auto |
|
149 |
ultimately show ?thesis by simp |
|
150 |
qed |
|
151 |
} |
|
152 |
then show "finsum R (%i. p i \<otimes> q (k-i)) {..k} = \<zero>" |
|
153 |
by (simp add: Pi_def) |
|
154 |
qed |
|
155 |
then show ?thesis by fast |
|
156 |
qed |
|
157 |
qed |
|
158 |
||
159 |
subsection {* Effect of operations on coefficients *} |
|
160 |
||
161 |
locale UP = struct R + struct P + |
|
162 |
defines P_def: "P == UP R" |
|
163 |
||
164 |
locale UP_cring = UP + cring R |
|
165 |
||
166 |
locale UP_domain = UP_cring + "domain" R |
|
167 |
||
168 |
text {* |
|
169 |
Temporarily declare UP.P\_def as simp rule. |
|
170 |
*} |
|
171 |
(* TODO: use antiquotation once text (in locale) is supported. *) |
|
172 |
||
173 |
declare (in UP) P_def [simp] |
|
174 |
||
175 |
lemma (in UP_cring) coeff_monom [simp]: |
|
176 |
"a \<in> carrier R ==> |
|
177 |
coeff P (monom P a m) n = (if m=n then a else \<zero>)" |
|
178 |
proof - |
|
179 |
assume R: "a \<in> carrier R" |
|
180 |
then have "(%n. if n = m then a else \<zero>) \<in> up R" |
|
181 |
using up_def by force |
|
182 |
with R show ?thesis by (simp add: UP_def) |
|
183 |
qed |
|
184 |
||
185 |
lemma (in UP_cring) coeff_zero [simp]: |
|
186 |
"coeff P \<zero>\<^sub>2 n = \<zero>" |
|
187 |
by (auto simp add: UP_def) |
|
188 |
||
189 |
lemma (in UP_cring) coeff_one [simp]: |
|
190 |
"coeff P \<one>\<^sub>2 n = (if n=0 then \<one> else \<zero>)" |
|
191 |
using up_one_closed by (simp add: UP_def) |
|
192 |
||
193 |
lemma (in UP_cring) coeff_smult [simp]: |
|
194 |
"[| a \<in> carrier R; p \<in> carrier P |] ==> |
|
195 |
coeff P (a \<odot>\<^sub>2 p) n = a \<otimes> coeff P p n" |
|
196 |
by (simp add: UP_def up_smult_closed) |
|
197 |
||
198 |
lemma (in UP_cring) coeff_add [simp]: |
|
199 |
"[| p \<in> carrier P; q \<in> carrier P |] ==> |
|
200 |
coeff P (p \<oplus>\<^sub>2 q) n = coeff P p n \<oplus> coeff P q n" |
|
201 |
by (simp add: UP_def up_add_closed) |
|
202 |
||
203 |
lemma (in UP_cring) coeff_mult [simp]: |
|
204 |
"[| p \<in> carrier P; q \<in> carrier P |] ==> |
|
205 |
coeff P (p \<otimes>\<^sub>2 q) n = finsum R (%i. coeff P p i \<otimes> coeff P q (n-i)) {..n}" |
|
206 |
by (simp add: UP_def up_mult_closed) |
|
207 |
||
208 |
lemma (in UP) up_eqI: |
|
209 |
assumes prem: "!!n. coeff P p n = coeff P q n" |
|
210 |
and R: "p \<in> carrier P" "q \<in> carrier P" |
|
211 |
shows "p = q" |
|
212 |
proof |
|
213 |
fix x |
|
214 |
from prem and R show "p x = q x" by (simp add: UP_def) |
|
215 |
qed |
|
216 |
||
217 |
subsection {* Polynomials form a commutative ring. *} |
|
218 |
||
219 |
text {* Operations are closed over @{term "P"}. *} |
|
220 |
||
221 |
lemma (in UP_cring) UP_mult_closed [simp]: |
|
222 |
"[| p \<in> carrier P; q \<in> carrier P |] ==> p \<otimes>\<^sub>2 q \<in> carrier P" |
|
223 |
by (simp add: UP_def up_mult_closed) |
|
224 |
||
225 |
lemma (in UP_cring) UP_one_closed [simp]: |
|
226 |
"\<one>\<^sub>2 \<in> carrier P" |
|
227 |
by (simp add: UP_def up_one_closed) |
|
228 |
||
229 |
lemma (in UP_cring) UP_zero_closed [intro, simp]: |
|
230 |
"\<zero>\<^sub>2 \<in> carrier P" |
|
231 |
by (auto simp add: UP_def) |
|
232 |
||
233 |
lemma (in UP_cring) UP_a_closed [intro, simp]: |
|
234 |
"[| p \<in> carrier P; q \<in> carrier P |] ==> p \<oplus>\<^sub>2 q \<in> carrier P" |
|
235 |
by (simp add: UP_def up_add_closed) |
|
236 |
||
237 |
lemma (in UP_cring) monom_closed [simp]: |
|
238 |
"a \<in> carrier R ==> monom P a n \<in> carrier P" |
|
239 |
by (auto simp add: UP_def up_def Pi_def) |
|
240 |
||
241 |
lemma (in UP_cring) UP_smult_closed [simp]: |
|
242 |
"[| a \<in> carrier R; p \<in> carrier P |] ==> a \<odot>\<^sub>2 p \<in> carrier P" |
|
243 |
by (simp add: UP_def up_smult_closed) |
|
244 |
||
245 |
lemma (in UP) coeff_closed [simp]: |
|
246 |
"p \<in> carrier P ==> coeff P p n \<in> carrier R" |
|
247 |
by (auto simp add: UP_def) |
|
248 |
||
249 |
declare (in UP) P_def [simp del] |
|
250 |
||
251 |
text {* Algebraic ring properties *} |
|
252 |
||
253 |
lemma (in UP_cring) UP_a_assoc: |
|
254 |
assumes R: "p \<in> carrier P" "q \<in> carrier P" "r \<in> carrier P" |
|
255 |
shows "(p \<oplus>\<^sub>2 q) \<oplus>\<^sub>2 r = p \<oplus>\<^sub>2 (q \<oplus>\<^sub>2 r)" |
|
256 |
by (rule up_eqI, simp add: a_assoc R, simp_all add: R) |
|
257 |
||
258 |
lemma (in UP_cring) UP_l_zero [simp]: |
|
259 |
assumes R: "p \<in> carrier P" |
|
260 |
shows "\<zero>\<^sub>2 \<oplus>\<^sub>2 p = p" |
|
261 |
by (rule up_eqI, simp_all add: R) |
|
262 |
||
263 |
lemma (in UP_cring) UP_l_neg_ex: |
|
264 |
assumes R: "p \<in> carrier P" |
|
265 |
shows "EX q : carrier P. q \<oplus>\<^sub>2 p = \<zero>\<^sub>2" |
|
266 |
proof - |
|
267 |
let ?q = "%i. \<ominus> (p i)" |
|
268 |
from R have closed: "?q \<in> carrier P" |
|
269 |
by (simp add: UP_def P_def up_a_inv_closed) |
|
270 |
from R have coeff: "!!n. coeff P ?q n = \<ominus> (coeff P p n)" |
|
271 |
by (simp add: UP_def P_def up_a_inv_closed) |
|
272 |
show ?thesis |
|
273 |
proof |
|
274 |
show "?q \<oplus>\<^sub>2 p = \<zero>\<^sub>2" |
|
275 |
by (auto intro!: up_eqI simp add: R closed coeff R.l_neg) |
|
276 |
qed (rule closed) |
|
277 |
qed |
|
278 |
||
279 |
lemma (in UP_cring) UP_a_comm: |
|
280 |
assumes R: "p \<in> carrier P" "q \<in> carrier P" |
|
281 |
shows "p \<oplus>\<^sub>2 q = q \<oplus>\<^sub>2 p" |
|
282 |
by (rule up_eqI, simp add: a_comm R, simp_all add: R) |
|
283 |
||
284 |
ML_setup {* |
|
285 |
Context.>> (fn thy => (simpset_ref_of thy := |
|
286 |
simpset_of thy setsubgoaler asm_full_simp_tac; thy)) *} |
|
287 |
||
288 |
lemma (in UP_cring) UP_m_assoc: |
|
289 |
assumes R: "p \<in> carrier P" "q \<in> carrier P" "r \<in> carrier P" |
|
290 |
shows "(p \<otimes>\<^sub>2 q) \<otimes>\<^sub>2 r = p \<otimes>\<^sub>2 (q \<otimes>\<^sub>2 r)" |
|
291 |
proof (rule up_eqI) |
|
292 |
fix n |
|
293 |
{ |
|
294 |
fix k and a b c :: "nat=>'a" |
|
295 |
assume R: "a \<in> UNIV -> carrier R" "b \<in> UNIV -> carrier R" |
|
296 |
"c \<in> UNIV -> carrier R" |
|
297 |
then have "k <= n ==> |
|
298 |
finsum R (%j. finsum R (%i. a i \<otimes> b (j-i)) {..j} \<otimes> c (n-j)) {..k} = |
|
299 |
finsum R (%j. a j \<otimes> finsum R (%i. b i \<otimes> c (n-j-i)) {..k-j}) {..k}" |
|
300 |
(is "_ ==> ?eq k") |
|
301 |
proof (induct k) |
|
302 |
case 0 then show ?case by (simp add: Pi_def m_assoc) |
|
303 |
next |
|
304 |
case (Suc k) |
|
305 |
then have "k <= n" by arith |
|
306 |
then have "?eq k" by (rule Suc) |
|
307 |
with R show ?case |
|
308 |
by (simp cong: finsum_cong |
|
309 |
add: Suc_diff_le Pi_def l_distr r_distr m_assoc) |
|
310 |
(simp cong: finsum_cong add: Pi_def a_ac finsum_ldistr m_assoc) |
|
311 |
qed |
|
312 |
} |
|
313 |
with R show "coeff P ((p \<otimes>\<^sub>2 q) \<otimes>\<^sub>2 r) n = coeff P (p \<otimes>\<^sub>2 (q \<otimes>\<^sub>2 r)) n" |
|
314 |
by (simp add: Pi_def) |
|
315 |
qed (simp_all add: R) |
|
316 |
||
317 |
ML_setup {* |
|
318 |
Context.>> (fn thy => (simpset_ref_of thy := |
|
319 |
simpset_of thy setsubgoaler asm_simp_tac; thy)) *} |
|
320 |
||
321 |
lemma (in UP_cring) UP_l_one [simp]: |
|
322 |
assumes R: "p \<in> carrier P" |
|
323 |
shows "\<one>\<^sub>2 \<otimes>\<^sub>2 p = p" |
|
324 |
proof (rule up_eqI) |
|
325 |
fix n |
|
326 |
show "coeff P (\<one>\<^sub>2 \<otimes>\<^sub>2 p) n = coeff P p n" |
|
327 |
proof (cases n) |
|
328 |
case 0 with R show ?thesis by simp |
|
329 |
next |
|
330 |
case Suc with R show ?thesis |
|
331 |
by (simp del: finsum_Suc add: finsum_Suc2 Pi_def) |
|
332 |
qed |
|
333 |
qed (simp_all add: R) |
|
334 |
||
335 |
lemma (in UP_cring) UP_l_distr: |
|
336 |
assumes R: "p \<in> carrier P" "q \<in> carrier P" "r \<in> carrier P" |
|
337 |
shows "(p \<oplus>\<^sub>2 q) \<otimes>\<^sub>2 r = (p \<otimes>\<^sub>2 r) \<oplus>\<^sub>2 (q \<otimes>\<^sub>2 r)" |
|
338 |
by (rule up_eqI) (simp add: l_distr R Pi_def, simp_all add: R) |
|
339 |
||
340 |
lemma (in UP_cring) UP_m_comm: |
|
341 |
assumes R: "p \<in> carrier P" "q \<in> carrier P" |
|
342 |
shows "p \<otimes>\<^sub>2 q = q \<otimes>\<^sub>2 p" |
|
343 |
proof (rule up_eqI) |
|
344 |
fix n |
|
345 |
{ |
|
346 |
fix k and a b :: "nat=>'a" |
|
347 |
assume R: "a \<in> UNIV -> carrier R" "b \<in> UNIV -> carrier R" |
|
348 |
then have "k <= n ==> |
|
349 |
finsum R (%i. a i \<otimes> b (n-i)) {..k} = |
|
350 |
finsum R (%i. a (k-i) \<otimes> b (i+n-k)) {..k}" |
|
351 |
(is "_ ==> ?eq k") |
|
352 |
proof (induct k) |
|
353 |
case 0 then show ?case by (simp add: Pi_def) |
|
354 |
next |
|
355 |
case (Suc k) then show ?case |
|
356 |
by (subst finsum_Suc2) (simp add: Pi_def a_comm)+ |
|
357 |
qed |
|
358 |
} |
|
359 |
note l = this |
|
360 |
from R show "coeff P (p \<otimes>\<^sub>2 q) n = coeff P (q \<otimes>\<^sub>2 p) n" |
|
361 |
apply (simp add: Pi_def) |
|
362 |
apply (subst l) |
|
363 |
apply (auto simp add: Pi_def) |
|
364 |
apply (simp add: m_comm) |
|
365 |
done |
|
366 |
qed (simp_all add: R) |
|
367 |
||
368 |
theorem (in UP_cring) UP_cring: |
|
369 |
"cring P" |
|
370 |
by (auto intro!: cringI abelian_groupI comm_monoidI UP_a_assoc UP_l_zero |
|
371 |
UP_l_neg_ex UP_a_comm UP_m_assoc UP_l_one UP_m_comm UP_l_distr) |
|
372 |
||
14399
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13975
diff
changeset
|
373 |
lemma (in UP_cring) UP_ring: (* preliminary *) |
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13975
diff
changeset
|
374 |
"ring P" |
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13975
diff
changeset
|
375 |
by (auto intro: ring.intro cring.axioms UP_cring) |
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13975
diff
changeset
|
376 |
|
13940 | 377 |
lemma (in UP_cring) UP_a_inv_closed [intro, simp]: |
378 |
"p \<in> carrier P ==> \<ominus>\<^sub>2 p \<in> carrier P" |
|
379 |
by (rule abelian_group.a_inv_closed |
|
14399
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13975
diff
changeset
|
380 |
[OF ring.is_abelian_group [OF UP_ring]]) |
13940 | 381 |
|
382 |
lemma (in UP_cring) coeff_a_inv [simp]: |
|
383 |
assumes R: "p \<in> carrier P" |
|
384 |
shows "coeff P (\<ominus>\<^sub>2 p) n = \<ominus> (coeff P p n)" |
|
385 |
proof - |
|
386 |
from R coeff_closed UP_a_inv_closed have |
|
387 |
"coeff P (\<ominus>\<^sub>2 p) n = \<ominus> coeff P p n \<oplus> (coeff P p n \<oplus> coeff P (\<ominus>\<^sub>2 p) n)" |
|
388 |
by algebra |
|
389 |
also from R have "... = \<ominus> (coeff P p n)" |
|
390 |
by (simp del: coeff_add add: coeff_add [THEN sym] |
|
14399
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13975
diff
changeset
|
391 |
abelian_group.r_neg [OF ring.is_abelian_group [OF UP_ring]]) |
13940 | 392 |
finally show ?thesis . |
393 |
qed |
|
394 |
||
395 |
text {* |
|
396 |
Instantiation of lemmas from @{term cring}. |
|
397 |
*} |
|
398 |
||
399 |
lemma (in UP_cring) UP_monoid: |
|
400 |
"monoid P" |
|
401 |
by (fast intro!: cring.is_comm_monoid comm_monoid.axioms monoid.intro |
|
402 |
UP_cring) |
|
403 |
(* TODO: provide cring.is_monoid *) |
|
404 |
||
405 |
lemma (in UP_cring) UP_comm_semigroup: |
|
406 |
"comm_semigroup P" |
|
407 |
by (fast intro!: cring.is_comm_monoid comm_monoid.axioms comm_semigroup.intro |
|
408 |
UP_cring) |
|
409 |
||
410 |
lemma (in UP_cring) UP_comm_monoid: |
|
411 |
"comm_monoid P" |
|
412 |
by (fast intro!: cring.is_comm_monoid UP_cring) |
|
413 |
||
414 |
lemma (in UP_cring) UP_abelian_monoid: |
|
415 |
"abelian_monoid P" |
|
14399
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13975
diff
changeset
|
416 |
by (fast intro!: abelian_group.axioms ring.is_abelian_group UP_ring) |
13940 | 417 |
|
418 |
lemma (in UP_cring) UP_abelian_group: |
|
419 |
"abelian_group P" |
|
14399
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13975
diff
changeset
|
420 |
by (fast intro!: ring.is_abelian_group UP_ring) |
13940 | 421 |
|
422 |
lemmas (in UP_cring) UP_r_one [simp] = |
|
423 |
monoid.r_one [OF UP_monoid] |
|
424 |
||
425 |
lemmas (in UP_cring) UP_nat_pow_closed [intro, simp] = |
|
426 |
monoid.nat_pow_closed [OF UP_monoid] |
|
427 |
||
428 |
lemmas (in UP_cring) UP_nat_pow_0 [simp] = |
|
429 |
monoid.nat_pow_0 [OF UP_monoid] |
|
430 |
||
431 |
lemmas (in UP_cring) UP_nat_pow_Suc [simp] = |
|
432 |
monoid.nat_pow_Suc [OF UP_monoid] |
|
433 |
||
434 |
lemmas (in UP_cring) UP_nat_pow_one [simp] = |
|
435 |
monoid.nat_pow_one [OF UP_monoid] |
|
436 |
||
437 |
lemmas (in UP_cring) UP_nat_pow_mult = |
|
438 |
monoid.nat_pow_mult [OF UP_monoid] |
|
439 |
||
440 |
lemmas (in UP_cring) UP_nat_pow_pow = |
|
441 |
monoid.nat_pow_pow [OF UP_monoid] |
|
442 |
||
443 |
lemmas (in UP_cring) UP_m_lcomm = |
|
444 |
comm_semigroup.m_lcomm [OF UP_comm_semigroup] |
|
445 |
||
446 |
lemmas (in UP_cring) UP_m_ac = UP_m_assoc UP_m_comm UP_m_lcomm |
|
447 |
||
448 |
lemmas (in UP_cring) UP_nat_pow_distr = |
|
449 |
comm_monoid.nat_pow_distr [OF UP_comm_monoid] |
|
450 |
||
451 |
lemmas (in UP_cring) UP_a_lcomm = abelian_monoid.a_lcomm [OF UP_abelian_monoid] |
|
452 |
||
453 |
lemmas (in UP_cring) UP_r_zero [simp] = |
|
454 |
abelian_monoid.r_zero [OF UP_abelian_monoid] |
|
455 |
||
456 |
lemmas (in UP_cring) UP_a_ac = UP_a_assoc UP_a_comm UP_a_lcomm |
|
457 |
||
458 |
lemmas (in UP_cring) UP_finsum_empty [simp] = |
|
459 |
abelian_monoid.finsum_empty [OF UP_abelian_monoid] |
|
460 |
||
461 |
lemmas (in UP_cring) UP_finsum_insert [simp] = |
|
462 |
abelian_monoid.finsum_insert [OF UP_abelian_monoid] |
|
463 |
||
464 |
lemmas (in UP_cring) UP_finsum_zero [simp] = |
|
465 |
abelian_monoid.finsum_zero [OF UP_abelian_monoid] |
|
466 |
||
467 |
lemmas (in UP_cring) UP_finsum_closed [simp] = |
|
468 |
abelian_monoid.finsum_closed [OF UP_abelian_monoid] |
|
469 |
||
470 |
lemmas (in UP_cring) UP_finsum_Un_Int = |
|
471 |
abelian_monoid.finsum_Un_Int [OF UP_abelian_monoid] |
|
472 |
||
473 |
lemmas (in UP_cring) UP_finsum_Un_disjoint = |
|
474 |
abelian_monoid.finsum_Un_disjoint [OF UP_abelian_monoid] |
|
475 |
||
476 |
lemmas (in UP_cring) UP_finsum_addf = |
|
477 |
abelian_monoid.finsum_addf [OF UP_abelian_monoid] |
|
478 |
||
479 |
lemmas (in UP_cring) UP_finsum_cong' = |
|
480 |
abelian_monoid.finsum_cong' [OF UP_abelian_monoid] |
|
481 |
||
482 |
lemmas (in UP_cring) UP_finsum_0 [simp] = |
|
483 |
abelian_monoid.finsum_0 [OF UP_abelian_monoid] |
|
484 |
||
485 |
lemmas (in UP_cring) UP_finsum_Suc [simp] = |
|
486 |
abelian_monoid.finsum_Suc [OF UP_abelian_monoid] |
|
487 |
||
488 |
lemmas (in UP_cring) UP_finsum_Suc2 = |
|
489 |
abelian_monoid.finsum_Suc2 [OF UP_abelian_monoid] |
|
490 |
||
491 |
lemmas (in UP_cring) UP_finsum_add [simp] = |
|
492 |
abelian_monoid.finsum_add [OF UP_abelian_monoid] |
|
493 |
||
494 |
lemmas (in UP_cring) UP_finsum_cong = |
|
495 |
abelian_monoid.finsum_cong [OF UP_abelian_monoid] |
|
496 |
||
497 |
lemmas (in UP_cring) UP_minus_closed [intro, simp] = |
|
498 |
abelian_group.minus_closed [OF UP_abelian_group] |
|
499 |
||
500 |
lemmas (in UP_cring) UP_a_l_cancel [simp] = |
|
501 |
abelian_group.a_l_cancel [OF UP_abelian_group] |
|
502 |
||
503 |
lemmas (in UP_cring) UP_a_r_cancel [simp] = |
|
504 |
abelian_group.a_r_cancel [OF UP_abelian_group] |
|
505 |
||
506 |
lemmas (in UP_cring) UP_l_neg = |
|
507 |
abelian_group.l_neg [OF UP_abelian_group] |
|
508 |
||
509 |
lemmas (in UP_cring) UP_r_neg = |
|
510 |
abelian_group.r_neg [OF UP_abelian_group] |
|
511 |
||
512 |
lemmas (in UP_cring) UP_minus_zero [simp] = |
|
513 |
abelian_group.minus_zero [OF UP_abelian_group] |
|
514 |
||
515 |
lemmas (in UP_cring) UP_minus_minus [simp] = |
|
516 |
abelian_group.minus_minus [OF UP_abelian_group] |
|
517 |
||
518 |
lemmas (in UP_cring) UP_minus_add = |
|
519 |
abelian_group.minus_add [OF UP_abelian_group] |
|
520 |
||
521 |
lemmas (in UP_cring) UP_r_neg2 = |
|
522 |
abelian_group.r_neg2 [OF UP_abelian_group] |
|
523 |
||
524 |
lemmas (in UP_cring) UP_r_neg1 = |
|
525 |
abelian_group.r_neg1 [OF UP_abelian_group] |
|
526 |
||
527 |
lemmas (in UP_cring) UP_r_distr = |
|
14399
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13975
diff
changeset
|
528 |
ring.r_distr [OF UP_ring] |
13940 | 529 |
|
530 |
lemmas (in UP_cring) UP_l_null [simp] = |
|
14399
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13975
diff
changeset
|
531 |
ring.l_null [OF UP_ring] |
13940 | 532 |
|
533 |
lemmas (in UP_cring) UP_r_null [simp] = |
|
14399
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13975
diff
changeset
|
534 |
ring.r_null [OF UP_ring] |
13940 | 535 |
|
536 |
lemmas (in UP_cring) UP_l_minus = |
|
14399
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13975
diff
changeset
|
537 |
ring.l_minus [OF UP_ring] |
13940 | 538 |
|
539 |
lemmas (in UP_cring) UP_r_minus = |
|
14399
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13975
diff
changeset
|
540 |
ring.r_minus [OF UP_ring] |
13940 | 541 |
|
542 |
lemmas (in UP_cring) UP_finsum_ldistr = |
|
543 |
cring.finsum_ldistr [OF UP_cring] |
|
544 |
||
545 |
lemmas (in UP_cring) UP_finsum_rdistr = |
|
546 |
cring.finsum_rdistr [OF UP_cring] |
|
547 |
||
548 |
subsection {* Polynomials form an Algebra *} |
|
549 |
||
550 |
lemma (in UP_cring) UP_smult_l_distr: |
|
551 |
"[| a \<in> carrier R; b \<in> carrier R; p \<in> carrier P |] ==> |
|
552 |
(a \<oplus> b) \<odot>\<^sub>2 p = a \<odot>\<^sub>2 p \<oplus>\<^sub>2 b \<odot>\<^sub>2 p" |
|
553 |
by (rule up_eqI) (simp_all add: R.l_distr) |
|
554 |
||
555 |
lemma (in UP_cring) UP_smult_r_distr: |
|
556 |
"[| a \<in> carrier R; p \<in> carrier P; q \<in> carrier P |] ==> |
|
557 |
a \<odot>\<^sub>2 (p \<oplus>\<^sub>2 q) = a \<odot>\<^sub>2 p \<oplus>\<^sub>2 a \<odot>\<^sub>2 q" |
|
558 |
by (rule up_eqI) (simp_all add: R.r_distr) |
|
559 |
||
560 |
lemma (in UP_cring) UP_smult_assoc1: |
|
561 |
"[| a \<in> carrier R; b \<in> carrier R; p \<in> carrier P |] ==> |
|
562 |
(a \<otimes> b) \<odot>\<^sub>2 p = a \<odot>\<^sub>2 (b \<odot>\<^sub>2 p)" |
|
563 |
by (rule up_eqI) (simp_all add: R.m_assoc) |
|
564 |
||
565 |
lemma (in UP_cring) UP_smult_one [simp]: |
|
566 |
"p \<in> carrier P ==> \<one> \<odot>\<^sub>2 p = p" |
|
567 |
by (rule up_eqI) simp_all |
|
568 |
||
569 |
lemma (in UP_cring) UP_smult_assoc2: |
|
570 |
"[| a \<in> carrier R; p \<in> carrier P; q \<in> carrier P |] ==> |
|
571 |
(a \<odot>\<^sub>2 p) \<otimes>\<^sub>2 q = a \<odot>\<^sub>2 (p \<otimes>\<^sub>2 q)" |
|
572 |
by (rule up_eqI) (simp_all add: R.finsum_rdistr R.m_assoc Pi_def) |
|
573 |
||
574 |
text {* |
|
575 |
Instantiation of lemmas from @{term algebra}. |
|
576 |
*} |
|
577 |
||
578 |
(* TODO: move to CRing.thy, really a fact missing from the locales package *) |
|
579 |
||
580 |
lemma (in cring) cring: |
|
581 |
"cring R" |
|
582 |
by (fast intro: cring.intro prems) |
|
583 |
||
584 |
lemma (in UP_cring) UP_algebra: |
|
585 |
"algebra R P" |
|
586 |
by (auto intro: algebraI cring UP_cring UP_smult_l_distr UP_smult_r_distr |
|
587 |
UP_smult_assoc1 UP_smult_assoc2) |
|
588 |
||
589 |
lemmas (in UP_cring) UP_smult_l_null [simp] = |
|
590 |
algebra.smult_l_null [OF UP_algebra] |
|
591 |
||
592 |
lemmas (in UP_cring) UP_smult_r_null [simp] = |
|
593 |
algebra.smult_r_null [OF UP_algebra] |
|
594 |
||
595 |
lemmas (in UP_cring) UP_smult_l_minus = |
|
596 |
algebra.smult_l_minus [OF UP_algebra] |
|
597 |
||
598 |
lemmas (in UP_cring) UP_smult_r_minus = |
|
599 |
algebra.smult_r_minus [OF UP_algebra] |
|
600 |
||
13949
0ce528cd6f19
HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents:
13940
diff
changeset
|
601 |
subsection {* Further lemmas involving monomials *} |
13940 | 602 |
|
603 |
lemma (in UP_cring) monom_zero [simp]: |
|
604 |
"monom P \<zero> n = \<zero>\<^sub>2" |
|
605 |
by (simp add: UP_def P_def) |
|
606 |
||
607 |
ML_setup {* |
|
608 |
Context.>> (fn thy => (simpset_ref_of thy := |
|
609 |
simpset_of thy setsubgoaler asm_full_simp_tac; thy)) *} |
|
610 |
||
611 |
lemma (in UP_cring) monom_mult_is_smult: |
|
612 |
assumes R: "a \<in> carrier R" "p \<in> carrier P" |
|
613 |
shows "monom P a 0 \<otimes>\<^sub>2 p = a \<odot>\<^sub>2 p" |
|
614 |
proof (rule up_eqI) |
|
615 |
fix n |
|
616 |
have "coeff P (p \<otimes>\<^sub>2 monom P a 0) n = coeff P (a \<odot>\<^sub>2 p) n" |
|
617 |
proof (cases n) |
|
618 |
case 0 with R show ?thesis by (simp add: R.m_comm) |
|
619 |
next |
|
620 |
case Suc with R show ?thesis |
|
621 |
by (simp cong: finsum_cong add: R.r_null Pi_def) |
|
622 |
(simp add: m_comm) |
|
623 |
qed |
|
624 |
with R show "coeff P (monom P a 0 \<otimes>\<^sub>2 p) n = coeff P (a \<odot>\<^sub>2 p) n" |
|
625 |
by (simp add: UP_m_comm) |
|
626 |
qed (simp_all add: R) |
|
627 |
||
628 |
ML_setup {* |
|
629 |
Context.>> (fn thy => (simpset_ref_of thy := |
|
630 |
simpset_of thy setsubgoaler asm_simp_tac; thy)) *} |
|
631 |
||
632 |
lemma (in UP_cring) monom_add [simp]: |
|
633 |
"[| a \<in> carrier R; b \<in> carrier R |] ==> |
|
634 |
monom P (a \<oplus> b) n = monom P a n \<oplus>\<^sub>2 monom P b n" |
|
635 |
by (rule up_eqI) simp_all |
|
636 |
||
637 |
ML_setup {* |
|
638 |
Context.>> (fn thy => (simpset_ref_of thy := |
|
639 |
simpset_of thy setsubgoaler asm_full_simp_tac; thy)) *} |
|
640 |
||
641 |
lemma (in UP_cring) monom_one_Suc: |
|
642 |
"monom P \<one> (Suc n) = monom P \<one> n \<otimes>\<^sub>2 monom P \<one> 1" |
|
643 |
proof (rule up_eqI) |
|
644 |
fix k |
|
645 |
show "coeff P (monom P \<one> (Suc n)) k = coeff P (monom P \<one> n \<otimes>\<^sub>2 monom P \<one> 1) k" |
|
646 |
proof (cases "k = Suc n") |
|
647 |
case True show ?thesis |
|
648 |
proof - |
|
649 |
from True have less_add_diff: |
|
650 |
"!!i. [| n < i; i <= n + m |] ==> n + m - i < m" by arith |
|
651 |
from True have "coeff P (monom P \<one> (Suc n)) k = \<one>" by simp |
|
652 |
also from True |
|
653 |
have "... = finsum R (%i. coeff P (monom P \<one> n) i \<otimes> |
|
654 |
coeff P (monom P \<one> 1) (k - i)) ({..n(} Un {n})" |
|
655 |
by (simp cong: finsum_cong add: finsum_Un_disjoint Pi_def) |
|
656 |
also have "... = finsum R (%i. coeff P (monom P \<one> n) i \<otimes> |
|
657 |
coeff P (monom P \<one> 1) (k - i)) {..n}" |
|
658 |
by (simp only: ivl_disj_un_singleton) |
|
659 |
also from True have "... = finsum R (%i. coeff P (monom P \<one> n) i \<otimes> |
|
660 |
coeff P (monom P \<one> 1) (k - i)) ({..n} Un {)n..k})" |
|
661 |
by (simp cong: finsum_cong add: finsum_Un_disjoint ivl_disj_int_one |
|
662 |
order_less_imp_not_eq Pi_def) |
|
663 |
also from True have "... = coeff P (monom P \<one> n \<otimes>\<^sub>2 monom P \<one> 1) k" |
|
664 |
by (simp add: ivl_disj_un_one) |
|
665 |
finally show ?thesis . |
|
666 |
qed |
|
667 |
next |
|
668 |
case False |
|
669 |
note neq = False |
|
670 |
let ?s = |
|
671 |
"(\<lambda>i. (if n = i then \<one> else \<zero>) \<otimes> (if Suc 0 = k - i then \<one> else \<zero>))" |
|
672 |
from neq have "coeff P (monom P \<one> (Suc n)) k = \<zero>" by simp |
|
673 |
also have "... = finsum R ?s {..k}" |
|
674 |
proof - |
|
675 |
have f1: "finsum R ?s {..n(} = \<zero>" by (simp cong: finsum_cong add: Pi_def) |
|
676 |
from neq have f2: "finsum R ?s {n} = \<zero>" |
|
677 |
by (simp cong: finsum_cong add: Pi_def) arith |
|
678 |
have f3: "n < k ==> finsum R ?s {)n..k} = \<zero>" |
|
679 |
by (simp cong: finsum_cong add: order_less_imp_not_eq Pi_def) |
|
680 |
show ?thesis |
|
681 |
proof (cases "k < n") |
|
682 |
case True then show ?thesis by (simp cong: finsum_cong add: Pi_def) |
|
683 |
next |
|
684 |
case False then have n_le_k: "n <= k" by arith |
|
685 |
show ?thesis |
|
686 |
proof (cases "n = k") |
|
687 |
case True |
|
688 |
then have "\<zero> = finsum R ?s ({..n(} \<union> {n})" |
|
689 |
by (simp cong: finsum_cong add: finsum_Un_disjoint |
|
690 |
ivl_disj_int_singleton Pi_def) |
|
691 |
also from True have "... = finsum R ?s {..k}" |
|
692 |
by (simp only: ivl_disj_un_singleton) |
|
693 |
finally show ?thesis . |
|
694 |
next |
|
695 |
case False with n_le_k have n_less_k: "n < k" by arith |
|
696 |
with neq have "\<zero> = finsum R ?s ({..n(} \<union> {n})" |
|
697 |
by (simp add: finsum_Un_disjoint f1 f2 |
|
698 |
ivl_disj_int_singleton Pi_def del: Un_insert_right) |
|
699 |
also have "... = finsum R ?s {..n}" |
|
700 |
by (simp only: ivl_disj_un_singleton) |
|
701 |
also from n_less_k neq have "... = finsum R ?s ({..n} \<union> {)n..k})" |
|
702 |
by (simp add: finsum_Un_disjoint f3 ivl_disj_int_one Pi_def) |
|
703 |
also from n_less_k have "... = finsum R ?s {..k}" |
|
704 |
by (simp only: ivl_disj_un_one) |
|
705 |
finally show ?thesis . |
|
706 |
qed |
|
707 |
qed |
|
708 |
qed |
|
709 |
also have "... = coeff P (monom P \<one> n \<otimes>\<^sub>2 monom P \<one> 1) k" by simp |
|
710 |
finally show ?thesis . |
|
711 |
qed |
|
712 |
qed (simp_all) |
|
713 |
||
714 |
ML_setup {* |
|
715 |
Context.>> (fn thy => (simpset_ref_of thy := |
|
716 |
simpset_of thy setsubgoaler asm_simp_tac; thy)) *} |
|
717 |
||
718 |
lemma (in UP_cring) monom_mult_smult: |
|
719 |
"[| a \<in> carrier R; b \<in> carrier R |] ==> monom P (a \<otimes> b) n = a \<odot>\<^sub>2 monom P b n" |
|
720 |
by (rule up_eqI) simp_all |
|
721 |
||
722 |
lemma (in UP_cring) monom_one [simp]: |
|
723 |
"monom P \<one> 0 = \<one>\<^sub>2" |
|
724 |
by (rule up_eqI) simp_all |
|
725 |
||
726 |
lemma (in UP_cring) monom_one_mult: |
|
727 |
"monom P \<one> (n + m) = monom P \<one> n \<otimes>\<^sub>2 monom P \<one> m" |
|
728 |
proof (induct n) |
|
729 |
case 0 show ?case by simp |
|
730 |
next |
|
731 |
case Suc then show ?case |
|
732 |
by (simp only: add_Suc monom_one_Suc) (simp add: UP_m_ac) |
|
733 |
qed |
|
734 |
||
735 |
lemma (in UP_cring) monom_mult [simp]: |
|
736 |
assumes R: "a \<in> carrier R" "b \<in> carrier R" |
|
737 |
shows "monom P (a \<otimes> b) (n + m) = monom P a n \<otimes>\<^sub>2 monom P b m" |
|
738 |
proof - |
|
739 |
from R have "monom P (a \<otimes> b) (n + m) = monom P (a \<otimes> b \<otimes> \<one>) (n + m)" by simp |
|
740 |
also from R have "... = a \<otimes> b \<odot>\<^sub>2 monom P \<one> (n + m)" |
|
741 |
by (simp add: monom_mult_smult del: r_one) |
|
742 |
also have "... = a \<otimes> b \<odot>\<^sub>2 (monom P \<one> n \<otimes>\<^sub>2 monom P \<one> m)" |
|
743 |
by (simp only: monom_one_mult) |
|
744 |
also from R have "... = a \<odot>\<^sub>2 (b \<odot>\<^sub>2 (monom P \<one> n \<otimes>\<^sub>2 monom P \<one> m))" |
|
745 |
by (simp add: UP_smult_assoc1) |
|
746 |
also from R have "... = a \<odot>\<^sub>2 (b \<odot>\<^sub>2 (monom P \<one> m \<otimes>\<^sub>2 monom P \<one> n))" |
|
747 |
by (simp add: UP_m_comm) |
|
748 |
also from R have "... = a \<odot>\<^sub>2 ((b \<odot>\<^sub>2 monom P \<one> m) \<otimes>\<^sub>2 monom P \<one> n)" |
|
749 |
by (simp add: UP_smult_assoc2) |
|
750 |
also from R have "... = a \<odot>\<^sub>2 (monom P \<one> n \<otimes>\<^sub>2 (b \<odot>\<^sub>2 monom P \<one> m))" |
|
751 |
by (simp add: UP_m_comm) |
|
752 |
also from R have "... = (a \<odot>\<^sub>2 monom P \<one> n) \<otimes>\<^sub>2 (b \<odot>\<^sub>2 monom P \<one> m)" |
|
753 |
by (simp add: UP_smult_assoc2) |
|
754 |
also from R have "... = monom P (a \<otimes> \<one>) n \<otimes>\<^sub>2 monom P (b \<otimes> \<one>) m" |
|
755 |
by (simp add: monom_mult_smult del: r_one) |
|
756 |
also from R have "... = monom P a n \<otimes>\<^sub>2 monom P b m" by simp |
|
757 |
finally show ?thesis . |
|
758 |
qed |
|
759 |
||
760 |
lemma (in UP_cring) monom_a_inv [simp]: |
|
761 |
"a \<in> carrier R ==> monom P (\<ominus> a) n = \<ominus>\<^sub>2 monom P a n" |
|
762 |
by (rule up_eqI) simp_all |
|
763 |
||
764 |
lemma (in UP_cring) monom_inj: |
|
765 |
"inj_on (%a. monom P a n) (carrier R)" |
|
766 |
proof (rule inj_onI) |
|
767 |
fix x y |
|
768 |
assume R: "x \<in> carrier R" "y \<in> carrier R" and eq: "monom P x n = monom P y n" |
|
769 |
then have "coeff P (monom P x n) n = coeff P (monom P y n) n" by simp |
|
770 |
with R show "x = y" by simp |
|
771 |
qed |
|
772 |
||
13949
0ce528cd6f19
HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents:
13940
diff
changeset
|
773 |
subsection {* The degree function *} |
13940 | 774 |
|
775 |
constdefs |
|
776 |
deg :: "[('a, 'm) ring_scheme, nat => 'a] => nat" |
|
777 |
"deg R p == LEAST n. bound (zero R) n (coeff (UP R) p)" |
|
778 |
||
779 |
lemma (in UP_cring) deg_aboveI: |
|
780 |
"[| (!!m. n < m ==> coeff P p m = \<zero>); p \<in> carrier P |] ==> deg R p <= n" |
|
781 |
by (unfold deg_def P_def) (fast intro: Least_le) |
|
782 |
(* |
|
783 |
lemma coeff_bound_ex: "EX n. bound n (coeff p)" |
|
784 |
proof - |
|
785 |
have "(%n. coeff p n) : UP" by (simp add: coeff_def Rep_UP) |
|
786 |
then obtain n where "bound n (coeff p)" by (unfold UP_def) fast |
|
787 |
then show ?thesis .. |
|
788 |
qed |
|
789 |
||
790 |
lemma bound_coeff_obtain: |
|
791 |
assumes prem: "(!!n. bound n (coeff p) ==> P)" shows "P" |
|
792 |
proof - |
|
793 |
have "(%n. coeff p n) : UP" by (simp add: coeff_def Rep_UP) |
|
794 |
then obtain n where "bound n (coeff p)" by (unfold UP_def) fast |
|
795 |
with prem show P . |
|
796 |
qed |
|
797 |
*) |
|
798 |
lemma (in UP_cring) deg_aboveD: |
|
799 |
"[| deg R p < m; p \<in> carrier P |] ==> coeff P p m = \<zero>" |
|
800 |
proof - |
|
801 |
assume R: "p \<in> carrier P" and "deg R p < m" |
|
802 |
from R obtain n where "bound \<zero> n (coeff P p)" |
|
803 |
by (auto simp add: UP_def P_def) |
|
804 |
then have "bound \<zero> (deg R p) (coeff P p)" |
|
805 |
by (auto simp: deg_def P_def dest: LeastI) |
|
806 |
then show ?thesis by (rule boundD) |
|
807 |
qed |
|
808 |
||
809 |
lemma (in UP_cring) deg_belowI: |
|
810 |
assumes non_zero: "n ~= 0 ==> coeff P p n ~= \<zero>" |
|
811 |
and R: "p \<in> carrier P" |
|
812 |
shows "n <= deg R p" |
|
813 |
-- {* Logically, this is a slightly stronger version of |
|
814 |
@{thm [source] deg_aboveD} *} |
|
815 |
proof (cases "n=0") |
|
816 |
case True then show ?thesis by simp |
|
817 |
next |
|
818 |
case False then have "coeff P p n ~= \<zero>" by (rule non_zero) |
|
819 |
then have "~ deg R p < n" by (fast dest: deg_aboveD intro: R) |
|
820 |
then show ?thesis by arith |
|
821 |
qed |
|
822 |
||
823 |
lemma (in UP_cring) lcoeff_nonzero_deg: |
|
824 |
assumes deg: "deg R p ~= 0" and R: "p \<in> carrier P" |
|
825 |
shows "coeff P p (deg R p) ~= \<zero>" |
|
826 |
proof - |
|
827 |
from R obtain m where "deg R p <= m" and m_coeff: "coeff P p m ~= \<zero>" |
|
828 |
proof - |
|
829 |
have minus: "!!(n::nat) m. n ~= 0 ==> (n - Suc 0 < m) = (n <= m)" |
|
830 |
by arith |
|
831 |
(* TODO: why does proof not work with "1" *) |
|
832 |
from deg have "deg R p - 1 < (LEAST n. bound \<zero> n (coeff P p))" |
|
833 |
by (unfold deg_def P_def) arith |
|
834 |
then have "~ bound \<zero> (deg R p - 1) (coeff P p)" by (rule not_less_Least) |
|
835 |
then have "EX m. deg R p - 1 < m & coeff P p m ~= \<zero>" |
|
836 |
by (unfold bound_def) fast |
|
837 |
then have "EX m. deg R p <= m & coeff P p m ~= \<zero>" by (simp add: deg minus) |
|
838 |
then show ?thesis by auto |
|
839 |
qed |
|
840 |
with deg_belowI R have "deg R p = m" by fastsimp |
|
841 |
with m_coeff show ?thesis by simp |
|
842 |
qed |
|
843 |
||
844 |
lemma (in UP_cring) lcoeff_nonzero_nonzero: |
|
845 |
assumes deg: "deg R p = 0" and nonzero: "p ~= \<zero>\<^sub>2" and R: "p \<in> carrier P" |
|
846 |
shows "coeff P p 0 ~= \<zero>" |
|
847 |
proof - |
|
848 |
have "EX m. coeff P p m ~= \<zero>" |
|
849 |
proof (rule classical) |
|
850 |
assume "~ ?thesis" |
|
851 |
with R have "p = \<zero>\<^sub>2" by (auto intro: up_eqI) |
|
852 |
with nonzero show ?thesis by contradiction |
|
853 |
qed |
|
854 |
then obtain m where coeff: "coeff P p m ~= \<zero>" .. |
|
855 |
then have "m <= deg R p" by (rule deg_belowI) |
|
856 |
then have "m = 0" by (simp add: deg) |
|
857 |
with coeff show ?thesis by simp |
|
858 |
qed |
|
859 |
||
860 |
lemma (in UP_cring) lcoeff_nonzero: |
|
861 |
assumes neq: "p ~= \<zero>\<^sub>2" and R: "p \<in> carrier P" |
|
862 |
shows "coeff P p (deg R p) ~= \<zero>" |
|
863 |
proof (cases "deg R p = 0") |
|
864 |
case True with neq R show ?thesis by (simp add: lcoeff_nonzero_nonzero) |
|
865 |
next |
|
866 |
case False with neq R show ?thesis by (simp add: lcoeff_nonzero_deg) |
|
867 |
qed |
|
868 |
||
869 |
lemma (in UP_cring) deg_eqI: |
|
870 |
"[| !!m. n < m ==> coeff P p m = \<zero>; |
|
871 |
!!n. n ~= 0 ==> coeff P p n ~= \<zero>; p \<in> carrier P |] ==> deg R p = n" |
|
872 |
by (fast intro: le_anti_sym deg_aboveI deg_belowI) |
|
873 |
||
874 |
(* Degree and polynomial operations *) |
|
875 |
||
876 |
lemma (in UP_cring) deg_add [simp]: |
|
877 |
assumes R: "p \<in> carrier P" "q \<in> carrier P" |
|
878 |
shows "deg R (p \<oplus>\<^sub>2 q) <= max (deg R p) (deg R q)" |
|
879 |
proof (cases "deg R p <= deg R q") |
|
880 |
case True show ?thesis |
|
881 |
by (rule deg_aboveI) (simp_all add: True R deg_aboveD) |
|
882 |
next |
|
883 |
case False show ?thesis |
|
884 |
by (rule deg_aboveI) (simp_all add: False R deg_aboveD) |
|
885 |
qed |
|
886 |
||
887 |
lemma (in UP_cring) deg_monom_le: |
|
888 |
"a \<in> carrier R ==> deg R (monom P a n) <= n" |
|
889 |
by (intro deg_aboveI) simp_all |
|
890 |
||
891 |
lemma (in UP_cring) deg_monom [simp]: |
|
892 |
"[| a ~= \<zero>; a \<in> carrier R |] ==> deg R (monom P a n) = n" |
|
893 |
by (fastsimp intro: le_anti_sym deg_aboveI deg_belowI) |
|
894 |
||
895 |
lemma (in UP_cring) deg_const [simp]: |
|
896 |
assumes R: "a \<in> carrier R" shows "deg R (monom P a 0) = 0" |
|
897 |
proof (rule le_anti_sym) |
|
898 |
show "deg R (monom P a 0) <= 0" by (rule deg_aboveI) (simp_all add: R) |
|
899 |
next |
|
900 |
show "0 <= deg R (monom P a 0)" by (rule deg_belowI) (simp_all add: R) |
|
901 |
qed |
|
902 |
||
903 |
lemma (in UP_cring) deg_zero [simp]: |
|
904 |
"deg R \<zero>\<^sub>2 = 0" |
|
905 |
proof (rule le_anti_sym) |
|
906 |
show "deg R \<zero>\<^sub>2 <= 0" by (rule deg_aboveI) simp_all |
|
907 |
next |
|
908 |
show "0 <= deg R \<zero>\<^sub>2" by (rule deg_belowI) simp_all |
|
909 |
qed |
|
910 |
||
911 |
lemma (in UP_cring) deg_one [simp]: |
|
912 |
"deg R \<one>\<^sub>2 = 0" |
|
913 |
proof (rule le_anti_sym) |
|
914 |
show "deg R \<one>\<^sub>2 <= 0" by (rule deg_aboveI) simp_all |
|
915 |
next |
|
916 |
show "0 <= deg R \<one>\<^sub>2" by (rule deg_belowI) simp_all |
|
917 |
qed |
|
918 |
||
919 |
lemma (in UP_cring) deg_uminus [simp]: |
|
920 |
assumes R: "p \<in> carrier P" shows "deg R (\<ominus>\<^sub>2 p) = deg R p" |
|
921 |
proof (rule le_anti_sym) |
|
922 |
show "deg R (\<ominus>\<^sub>2 p) <= deg R p" by (simp add: deg_aboveI deg_aboveD R) |
|
923 |
next |
|
924 |
show "deg R p <= deg R (\<ominus>\<^sub>2 p)" |
|
925 |
by (simp add: deg_belowI lcoeff_nonzero_deg |
|
926 |
inj_on_iff [OF a_inv_inj, of _ "\<zero>", simplified] R) |
|
927 |
qed |
|
928 |
||
929 |
lemma (in UP_domain) deg_smult_ring: |
|
930 |
"[| a \<in> carrier R; p \<in> carrier P |] ==> |
|
931 |
deg R (a \<odot>\<^sub>2 p) <= (if a = \<zero> then 0 else deg R p)" |
|
932 |
by (cases "a = \<zero>") (simp add: deg_aboveI deg_aboveD)+ |
|
933 |
||
934 |
lemma (in UP_domain) deg_smult [simp]: |
|
935 |
assumes R: "a \<in> carrier R" "p \<in> carrier P" |
|
936 |
shows "deg R (a \<odot>\<^sub>2 p) = (if a = \<zero> then 0 else deg R p)" |
|
937 |
proof (rule le_anti_sym) |
|
938 |
show "deg R (a \<odot>\<^sub>2 p) <= (if a = \<zero> then 0 else deg R p)" |
|
939 |
by (rule deg_smult_ring) |
|
940 |
next |
|
941 |
show "(if a = \<zero> then 0 else deg R p) <= deg R (a \<odot>\<^sub>2 p)" |
|
942 |
proof (cases "a = \<zero>") |
|
943 |
qed (simp, simp add: deg_belowI lcoeff_nonzero_deg integral_iff R) |
|
944 |
qed |
|
945 |
||
946 |
lemma (in UP_cring) deg_mult_cring: |
|
947 |
assumes R: "p \<in> carrier P" "q \<in> carrier P" |
|
948 |
shows "deg R (p \<otimes>\<^sub>2 q) <= deg R p + deg R q" |
|
949 |
proof (rule deg_aboveI) |
|
950 |
fix m |
|
951 |
assume boundm: "deg R p + deg R q < m" |
|
952 |
{ |
|
953 |
fix k i |
|
954 |
assume boundk: "deg R p + deg R q < k" |
|
955 |
then have "coeff P p i \<otimes> coeff P q (k - i) = \<zero>" |
|
956 |
proof (cases "deg R p < i") |
|
957 |
case True then show ?thesis by (simp add: deg_aboveD R) |
|
958 |
next |
|
959 |
case False with boundk have "deg R q < k - i" by arith |
|
960 |
then show ?thesis by (simp add: deg_aboveD R) |
|
961 |
qed |
|
962 |
} |
|
963 |
with boundm R show "coeff P (p \<otimes>\<^sub>2 q) m = \<zero>" by simp |
|
964 |
qed (simp add: R) |
|
965 |
||
966 |
ML_setup {* |
|
967 |
Context.>> (fn thy => (simpset_ref_of thy := |
|
968 |
simpset_of thy setsubgoaler asm_full_simp_tac; thy)) *} |
|
969 |
||
970 |
lemma (in UP_domain) deg_mult [simp]: |
|
971 |
"[| p ~= \<zero>\<^sub>2; q ~= \<zero>\<^sub>2; p \<in> carrier P; q \<in> carrier P |] ==> |
|
972 |
deg R (p \<otimes>\<^sub>2 q) = deg R p + deg R q" |
|
973 |
proof (rule le_anti_sym) |
|
974 |
assume "p \<in> carrier P" " q \<in> carrier P" |
|
975 |
show "deg R (p \<otimes>\<^sub>2 q) <= deg R p + deg R q" by (rule deg_mult_cring) |
|
976 |
next |
|
977 |
let ?s = "(%i. coeff P p i \<otimes> coeff P q (deg R p + deg R q - i))" |
|
978 |
assume R: "p \<in> carrier P" "q \<in> carrier P" and nz: "p ~= \<zero>\<^sub>2" "q ~= \<zero>\<^sub>2" |
|
979 |
have less_add_diff: "!!(k::nat) n m. k < n ==> m < n + m - k" by arith |
|
980 |
show "deg R p + deg R q <= deg R (p \<otimes>\<^sub>2 q)" |
|
981 |
proof (rule deg_belowI, simp add: R) |
|
982 |
have "finsum R ?s {.. deg R p + deg R q} |
|
983 |
= finsum R ?s ({.. deg R p(} Un {deg R p .. deg R p + deg R q})" |
|
984 |
by (simp only: ivl_disj_un_one) |
|
985 |
also have "... = finsum R ?s {deg R p .. deg R p + deg R q}" |
|
986 |
by (simp cong: finsum_cong add: finsum_Un_disjoint ivl_disj_int_one |
|
987 |
deg_aboveD less_add_diff R Pi_def) |
|
988 |
also have "...= finsum R ?s ({deg R p} Un {)deg R p .. deg R p + deg R q})" |
|
989 |
by (simp only: ivl_disj_un_singleton) |
|
990 |
also have "... = coeff P p (deg R p) \<otimes> coeff P q (deg R q)" |
|
991 |
by (simp cong: finsum_cong add: finsum_Un_disjoint |
|
992 |
ivl_disj_int_singleton deg_aboveD R Pi_def) |
|
993 |
finally have "finsum R ?s {.. deg R p + deg R q} |
|
994 |
= coeff P p (deg R p) \<otimes> coeff P q (deg R q)" . |
|
995 |
with nz show "finsum R ?s {.. deg R p + deg R q} ~= \<zero>" |
|
996 |
by (simp add: integral_iff lcoeff_nonzero R) |
|
997 |
qed (simp add: R) |
|
998 |
qed |
|
999 |
||
1000 |
lemma (in UP_cring) coeff_finsum: |
|
1001 |
assumes fin: "finite A" |
|
1002 |
shows "p \<in> A -> carrier P ==> |
|
1003 |
coeff P (finsum P p A) k == finsum R (%i. coeff P (p i) k) A" |
|
1004 |
using fin by induct (auto simp: Pi_def) |
|
1005 |
||
1006 |
ML_setup {* |
|
1007 |
Context.>> (fn thy => (simpset_ref_of thy := |
|
1008 |
simpset_of thy setsubgoaler asm_full_simp_tac; thy)) *} |
|
1009 |
||
1010 |
lemma (in UP_cring) up_repr: |
|
1011 |
assumes R: "p \<in> carrier P" |
|
1012 |
shows "finsum P (%i. monom P (coeff P p i) i) {..deg R p} = p" |
|
1013 |
proof (rule up_eqI) |
|
1014 |
let ?s = "(%i. monom P (coeff P p i) i)" |
|
1015 |
fix k |
|
1016 |
from R have RR: "!!i. (if i = k then coeff P p i else \<zero>) \<in> carrier R" |
|
1017 |
by simp |
|
1018 |
show "coeff P (finsum P ?s {..deg R p}) k = coeff P p k" |
|
1019 |
proof (cases "k <= deg R p") |
|
1020 |
case True |
|
1021 |
hence "coeff P (finsum P ?s {..deg R p}) k = |
|
1022 |
coeff P (finsum P ?s ({..k} Un {)k..deg R p})) k" |
|
1023 |
by (simp only: ivl_disj_un_one) |
|
1024 |
also from True |
|
1025 |
have "... = coeff P (finsum P ?s {..k}) k" |
|
1026 |
by (simp cong: finsum_cong add: finsum_Un_disjoint |
|
1027 |
ivl_disj_int_one order_less_imp_not_eq2 coeff_finsum R RR Pi_def) |
|
1028 |
also |
|
1029 |
have "... = coeff P (finsum P ?s ({..k(} Un {k})) k" |
|
1030 |
by (simp only: ivl_disj_un_singleton) |
|
1031 |
also have "... = coeff P p k" |
|
1032 |
by (simp cong: finsum_cong add: setsum_Un_disjoint |
|
1033 |
ivl_disj_int_singleton coeff_finsum deg_aboveD R RR Pi_def) |
|
1034 |
finally show ?thesis . |
|
1035 |
next |
|
1036 |
case False |
|
1037 |
hence "coeff P (finsum P ?s {..deg R p}) k = |
|
1038 |
coeff P (finsum P ?s ({..deg R p(} Un {deg R p})) k" |
|
1039 |
by (simp only: ivl_disj_un_singleton) |
|
1040 |
also from False have "... = coeff P p k" |
|
1041 |
by (simp cong: finsum_cong add: setsum_Un_disjoint ivl_disj_int_singleton |
|
1042 |
coeff_finsum deg_aboveD R Pi_def) |
|
1043 |
finally show ?thesis . |
|
1044 |
qed |
|
1045 |
qed (simp_all add: R Pi_def) |
|
1046 |
||
1047 |
lemma (in UP_cring) up_repr_le: |
|
1048 |
"[| deg R p <= n; p \<in> carrier P |] ==> |
|
1049 |
finsum P (%i. monom P (coeff P p i) i) {..n} = p" |
|
1050 |
proof - |
|
1051 |
let ?s = "(%i. monom P (coeff P p i) i)" |
|
1052 |
assume R: "p \<in> carrier P" and "deg R p <= n" |
|
1053 |
then have "finsum P ?s {..n} = finsum P ?s ({..deg R p} Un {)deg R p..n})" |
|
1054 |
by (simp only: ivl_disj_un_one) |
|
1055 |
also have "... = finsum P ?s {..deg R p}" |
|
1056 |
by (simp cong: UP_finsum_cong add: UP_finsum_Un_disjoint ivl_disj_int_one |
|
1057 |
deg_aboveD R Pi_def) |
|
1058 |
also have "... = p" by (rule up_repr) |
|
1059 |
finally show ?thesis . |
|
1060 |
qed |
|
1061 |
||
1062 |
ML_setup {* |
|
1063 |
Context.>> (fn thy => (simpset_ref_of thy := |
|
1064 |
simpset_of thy setsubgoaler asm_simp_tac; thy)) *} |
|
1065 |
||
13949
0ce528cd6f19
HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents:
13940
diff
changeset
|
1066 |
subsection {* Polynomials over an integral domain form an integral domain *} |
13940 | 1067 |
|
1068 |
lemma domainI: |
|
1069 |
assumes cring: "cring R" |
|
1070 |
and one_not_zero: "one R ~= zero R" |
|
1071 |
and integral: "!!a b. [| mult R a b = zero R; a \<in> carrier R; |
|
1072 |
b \<in> carrier R |] ==> a = zero R | b = zero R" |
|
1073 |
shows "domain R" |
|
1074 |
by (auto intro!: domain.intro domain_axioms.intro cring.axioms prems |
|
1075 |
del: disjCI) |
|
1076 |
||
1077 |
lemma (in UP_domain) UP_one_not_zero: |
|
1078 |
"\<one>\<^sub>2 ~= \<zero>\<^sub>2" |
|
1079 |
proof |
|
1080 |
assume "\<one>\<^sub>2 = \<zero>\<^sub>2" |
|
1081 |
hence "coeff P \<one>\<^sub>2 0 = (coeff P \<zero>\<^sub>2 0)" by simp |
|
1082 |
hence "\<one> = \<zero>" by simp |
|
1083 |
with one_not_zero show "False" by contradiction |
|
1084 |
qed |
|
1085 |
||
1086 |
lemma (in UP_domain) UP_integral: |
|
1087 |
"[| p \<otimes>\<^sub>2 q = \<zero>\<^sub>2; p \<in> carrier P; q \<in> carrier P |] ==> p = \<zero>\<^sub>2 | q = \<zero>\<^sub>2" |
|
1088 |
proof - |
|
1089 |
fix p q |
|
1090 |
assume pq: "p \<otimes>\<^sub>2 q = \<zero>\<^sub>2" and R: "p \<in> carrier P" "q \<in> carrier P" |
|
1091 |
show "p = \<zero>\<^sub>2 | q = \<zero>\<^sub>2" |
|
1092 |
proof (rule classical) |
|
1093 |
assume c: "~ (p = \<zero>\<^sub>2 | q = \<zero>\<^sub>2)" |
|
1094 |
with R have "deg R p + deg R q = deg R (p \<otimes>\<^sub>2 q)" by simp |
|
1095 |
also from pq have "... = 0" by simp |
|
1096 |
finally have "deg R p + deg R q = 0" . |
|
1097 |
then have f1: "deg R p = 0 & deg R q = 0" by simp |
|
1098 |
from f1 R have "p = finsum P (%i. (monom P (coeff P p i) i)) {..0}" |
|
1099 |
by (simp only: up_repr_le) |
|
1100 |
also from R have "... = monom P (coeff P p 0) 0" by simp |
|
1101 |
finally have p: "p = monom P (coeff P p 0) 0" . |
|
1102 |
from f1 R have "q = finsum P (%i. (monom P (coeff P q i) i)) {..0}" |
|
1103 |
by (simp only: up_repr_le) |
|
1104 |
also from R have "... = monom P (coeff P q 0) 0" by simp |
|
1105 |
finally have q: "q = monom P (coeff P q 0) 0" . |
|
1106 |
from R have "coeff P p 0 \<otimes> coeff P q 0 = coeff P (p \<otimes>\<^sub>2 q) 0" by simp |
|
1107 |
also from pq have "... = \<zero>" by simp |
|
1108 |
finally have "coeff P p 0 \<otimes> coeff P q 0 = \<zero>" . |
|
1109 |
with R have "coeff P p 0 = \<zero> | coeff P q 0 = \<zero>" |
|
1110 |
by (simp add: R.integral_iff) |
|
1111 |
with p q show "p = \<zero>\<^sub>2 | q = \<zero>\<^sub>2" by fastsimp |
|
1112 |
qed |
|
1113 |
qed |
|
1114 |
||
1115 |
theorem (in UP_domain) UP_domain: |
|
1116 |
"domain P" |
|
1117 |
by (auto intro!: domainI UP_cring UP_one_not_zero UP_integral del: disjCI) |
|
1118 |
||
1119 |
text {* |
|
1120 |
Instantiation of results from @{term domain}. |
|
1121 |
*} |
|
1122 |
||
1123 |
lemmas (in UP_domain) UP_zero_not_one [simp] = |
|
1124 |
domain.zero_not_one [OF UP_domain] |
|
1125 |
||
1126 |
lemmas (in UP_domain) UP_integral_iff = |
|
1127 |
domain.integral_iff [OF UP_domain] |
|
1128 |
||
1129 |
lemmas (in UP_domain) UP_m_lcancel = |
|
1130 |
domain.m_lcancel [OF UP_domain] |
|
1131 |
||
1132 |
lemmas (in UP_domain) UP_m_rcancel = |
|
1133 |
domain.m_rcancel [OF UP_domain] |
|
1134 |
||
1135 |
lemma (in UP_domain) smult_integral: |
|
1136 |
"[| a \<odot>\<^sub>2 p = \<zero>\<^sub>2; a \<in> carrier R; p \<in> carrier P |] ==> a = \<zero> | p = \<zero>\<^sub>2" |
|
1137 |
by (simp add: monom_mult_is_smult [THEN sym] UP_integral_iff |
|
1138 |
inj_on_iff [OF monom_inj, of _ "\<zero>", simplified]) |
|
1139 |
||
13949
0ce528cd6f19
HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents:
13940
diff
changeset
|
1140 |
subsection {* Evaluation Homomorphism and Universal Property*} |
13940 | 1141 |
|
1142 |
ML_setup {* |
|
1143 |
Context.>> (fn thy => (simpset_ref_of thy := |
|
1144 |
simpset_of thy setsubgoaler asm_full_simp_tac; thy)) *} |
|
1145 |
||
13949
0ce528cd6f19
HOL-Algebra complete for release Isabelle2003 (modulo section headers).
ballarin
parents:
13940
diff
changeset
|
1146 |
(* alternative congruence rule (possibly more efficient) |
13940 | 1147 |
lemma (in abelian_monoid) finsum_cong2: |
1148 |
"[| !!i. i \<in> A ==> f i \<in> carrier G = True; A = B; |
|
1149 |
!!i. i \<in> B ==> f i = g i |] ==> finsum G f A = finsum G g B" |
|
1150 |
sorry |
|
1151 |
*) |
|
1152 |
||
1153 |
theorem (in cring) diagonal_sum: |
|
1154 |
"[| f \<in> {..n + m::nat} -> carrier R; g \<in> {..n + m} -> carrier R |] ==> |
|
1155 |
finsum R (%k. finsum R (%i. f i \<otimes> g (k - i)) {..k}) {..n + m} = |
|
1156 |
finsum R (%k. finsum R (%i. f k \<otimes> g i) {..n + m - k}) {..n + m}" |
|
1157 |
proof - |
|
1158 |
assume Rf: "f \<in> {..n + m} -> carrier R" and Rg: "g \<in> {..n + m} -> carrier R" |
|
1159 |
{ |
|
1160 |
fix j |
|
1161 |
have "j <= n + m ==> |
|
1162 |
finsum R (%k. finsum R (%i. f i \<otimes> g (k - i)) {..k}) {..j} = |
|
1163 |
finsum R (%k. finsum R (%i. f k \<otimes> g i) {..j - k}) {..j}" |
|
1164 |
proof (induct j) |
|
1165 |
case 0 from Rf Rg show ?case by (simp add: Pi_def) |
|
1166 |
next |
|
1167 |
case (Suc j) |
|
1168 |
(* The following could be simplified if there was a reasoner for |
|
1169 |
total orders integrated with simip. *) |
|
1170 |
have R6: "!!i k. [| k <= j; i <= Suc j - k |] ==> g i \<in> carrier R" |
|
1171 |
using Suc by (auto intro!: funcset_mem [OF Rg]) arith |
|
1172 |
have R8: "!!i k. [| k <= Suc j; i <= k |] ==> g (k - i) \<in> carrier R" |
|
1173 |
using Suc by (auto intro!: funcset_mem [OF Rg]) arith |
|
1174 |
have R9: "!!i k. [| k <= Suc j |] ==> f k \<in> carrier R" |
|
1175 |
using Suc by (auto intro!: funcset_mem [OF Rf]) |
|
1176 |
have R10: "!!i k. [| k <= Suc j; i <= Suc j - k |] ==> g i \<in> carrier R" |
|
1177 |
using Suc by (auto intro!: funcset_mem [OF Rg]) arith |
|
1178 |
have R11: "g 0 \<in> carrier R" |
|
1179 |
using Suc by (auto intro!: funcset_mem [OF Rg]) |
|
1180 |
from Suc show ?case |
|
1181 |
by (simp cong: finsum_cong add: Suc_diff_le a_ac |
|
1182 |
Pi_def R6 R8 R9 R10 R11) |
|
1183 |
qed |
|
1184 |
} |
|
1185 |
then show ?thesis by fast |
|
1186 |
qed |
|
1187 |
||
1188 |
lemma (in abelian_monoid) boundD_carrier: |
|
1189 |
"[| bound \<zero> n f; n < m |] ==> f m \<in> carrier G" |
|
1190 |
by auto |
|
1191 |
||
1192 |
theorem (in cring) cauchy_product: |
|
1193 |
assumes bf: "bound \<zero> n f" and bg: "bound \<zero> m g" |
|
1194 |
and Rf: "f \<in> {..n} -> carrier R" and Rg: "g \<in> {..m} -> carrier R" |
|
1195 |
shows "finsum R (%k. finsum R (%i. f i \<otimes> g (k-i)) {..k}) {..n + m} = |
|
1196 |
finsum R f {..n} \<otimes> finsum R g {..m}" |
|
1197 |
(* State revese direction? *) |
|
1198 |
proof - |
|
1199 |
have f: "!!x. f x \<in> carrier R" |
|
1200 |
proof - |
|
1201 |
fix x |
|
1202 |
show "f x \<in> carrier R" |
|
1203 |
using Rf bf boundD_carrier by (cases "x <= n") (auto simp: Pi_def) |
|
1204 |
qed |
|
1205 |
have g: "!!x. g x \<in> carrier R" |
|
1206 |
proof - |
|
1207 |
fix x |
|
1208 |
show "g x \<in> carrier R" |
|
1209 |
using Rg bg boundD_carrier by (cases "x <= m") (auto simp: Pi_def) |
|
1210 |
qed |
|
1211 |
from f g have "finsum R (%k. finsum R (%i. f i \<otimes> g (k-i)) {..k}) {..n + m} = |
|
1212 |
finsum R (%k. finsum R (%i. f k \<otimes> g i) {..n + m - k}) {..n + m}" |
|
1213 |
by (simp add: diagonal_sum Pi_def) |
|
1214 |
also have "... = finsum R |
|
1215 |
(%k. finsum R (%i. f k \<otimes> g i) {..n + m - k}) ({..n} Un {)n..n + m})" |
|
1216 |
by (simp only: ivl_disj_un_one) |
|
1217 |
also from f g have "... = finsum R |
|
1218 |
(%k. finsum R (%i. f k \<otimes> g i) {..n + m - k}) {..n}" |
|
1219 |
by (simp cong: finsum_cong |
|
1220 |
add: boundD [OF bf] finsum_Un_disjoint ivl_disj_int_one Pi_def) |
|
1221 |
also from f g have "... = finsum R |
|
1222 |
(%k. finsum R (%i. f k \<otimes> g i) ({..m} Un {)m..n + m - k})) {..n}" |
|
1223 |
by (simp cong: finsum_cong add: ivl_disj_un_one le_add_diff Pi_def) |
|
1224 |
also from f g have "... = finsum R |
|
1225 |
(%k. finsum R (%i. f k \<otimes> g i) {..m}) {..n}" |
|
1226 |
by (simp cong: finsum_cong |
|
1227 |
add: boundD [OF bg] finsum_Un_disjoint ivl_disj_int_one Pi_def) |
|
1228 |
also from f g have "... = finsum R f {..n} \<otimes> finsum R g {..m}" |
|
1229 |
by (simp add: finsum_ldistr diagonal_sum Pi_def, |
|
1230 |
simp cong: finsum_cong add: finsum_rdistr Pi_def) |
|
1231 |
finally show ?thesis . |
|
1232 |
qed |
|
1233 |
||
1234 |
lemma (in UP_cring) const_ring_hom: |
|
1235 |
"(%a. monom P a 0) \<in> ring_hom R P" |
|
1236 |
by (auto intro!: ring_hom_memI intro: up_eqI simp: monom_mult_is_smult) |
|
1237 |
||
1238 |
constdefs |
|
1239 |
eval :: "[('a, 'm) ring_scheme, ('b, 'n) ring_scheme, |
|
1240 |
'a => 'b, 'b, nat => 'a] => 'b" |
|
1241 |
"eval R S phi s == (\<lambda>p \<in> carrier (UP R). |
|
1242 |
finsum S (%i. mult S (phi (coeff (UP R) p i)) (pow S s i)) {..deg R p})" |
|
1243 |
(* |
|
1244 |
"eval R S phi s p == if p \<in> carrier (UP R) |
|
1245 |
then finsum S (%i. mult S (phi (coeff (UP R) p i)) (pow S s i)) {..deg R p} |
|
1246 |
else arbitrary" |
|
1247 |
*) |
|
1248 |
||
1249 |
locale ring_hom_UP_cring = ring_hom_cring R S + UP_cring R |
|
1250 |
||
1251 |
lemma (in ring_hom_UP_cring) eval_on_carrier: |
|
1252 |
"p \<in> carrier P ==> |
|
1253 |
eval R S phi s p = |
|
1254 |
finsum S (%i. mult S (phi (coeff P p i)) (pow S s i)) {..deg R p}" |
|
1255 |
by (unfold eval_def, fold P_def) simp |
|
1256 |
||
1257 |
lemma (in ring_hom_UP_cring) eval_extensional: |
|
1258 |
"eval R S phi s \<in> extensional (carrier P)" |
|
1259 |
by (unfold eval_def, fold P_def) simp |
|
1260 |
||
1261 |
theorem (in ring_hom_UP_cring) eval_ring_hom: |
|
1262 |
"s \<in> carrier S ==> eval R S h s \<in> ring_hom P S" |
|
1263 |
proof (rule ring_hom_memI) |
|
1264 |
fix p |
|
1265 |
assume RS: "p \<in> carrier P" "s \<in> carrier S" |
|
1266 |
then show "eval R S h s p \<in> carrier S" |
|
1267 |
by (simp only: eval_on_carrier) (simp add: Pi_def) |
|
1268 |
next |
|
1269 |
fix p q |
|
1270 |
assume RS: "p \<in> carrier P" "q \<in> carrier P" "s \<in> carrier S" |
|
1271 |
then show "eval R S h s (p \<otimes>\<^sub>3 q) = eval R S h s p \<otimes>\<^sub>2 eval R S h s q" |
|
1272 |
proof (simp only: eval_on_carrier UP_mult_closed) |
|
1273 |
from RS have |
|
1274 |
"finsum S (%i. h (coeff P (p \<otimes>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..deg R (p \<otimes>\<^sub>3 q)} = |
|
1275 |
finsum S (%i. h (coeff P (p \<otimes>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) |
|
1276 |
({..deg R (p \<otimes>\<^sub>3 q)} Un {)deg R (p \<otimes>\<^sub>3 q)..deg R p + deg R q})" |
|
1277 |
by (simp cong: finsum_cong |
|
1278 |
add: deg_aboveD finsum_Un_disjoint ivl_disj_int_one Pi_def |
|
1279 |
del: coeff_mult) |
|
1280 |
also from RS have "... = |
|
1281 |
finsum S (%i. h (coeff P (p \<otimes>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..deg R p + deg R q}" |
|
1282 |
by (simp only: ivl_disj_un_one deg_mult_cring) |
|
1283 |
also from RS have "... = |
|
1284 |
finsum S (%i. |
|
1285 |
finsum S (%k. |
|
1286 |
(h (coeff P p k) \<otimes>\<^sub>2 h (coeff P q (i-k))) \<otimes>\<^sub>2 (s (^)\<^sub>2 k \<otimes>\<^sub>2 s (^)\<^sub>2 (i-k))) |
|
1287 |
{..i}) {..deg R p + deg R q}" |
|
1288 |
by (simp cong: finsum_cong add: nat_pow_mult Pi_def |
|
1289 |
S.m_ac S.finsum_rdistr) |
|
1290 |
also from RS have "... = |
|
1291 |
finsum S (%i. h (coeff P p i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..deg R p} \<otimes>\<^sub>2 |
|
1292 |
finsum S (%i. h (coeff P q i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..deg R q}" |
|
1293 |
by (simp add: S.cauchy_product [THEN sym] boundI deg_aboveD S.m_ac |
|
1294 |
Pi_def) |
|
1295 |
finally show |
|
1296 |
"finsum S (%i. h (coeff P (p \<otimes>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..deg R (p \<otimes>\<^sub>3 q)} = |
|
1297 |
finsum S (%i. h (coeff P p i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..deg R p} \<otimes>\<^sub>2 |
|
1298 |
finsum S (%i. h (coeff P q i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..deg R q}" . |
|
1299 |
qed |
|
1300 |
next |
|
1301 |
fix p q |
|
1302 |
assume RS: "p \<in> carrier P" "q \<in> carrier P" "s \<in> carrier S" |
|
1303 |
then show "eval R S h s (p \<oplus>\<^sub>3 q) = eval R S h s p \<oplus>\<^sub>2 eval R S h s q" |
|
1304 |
proof (simp only: eval_on_carrier UP_a_closed) |
|
1305 |
from RS have |
|
1306 |
"finsum S (%i. h (coeff P (p \<oplus>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..deg R (p \<oplus>\<^sub>3 q)} = |
|
1307 |
finsum S (%i. h (coeff P (p \<oplus>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) |
|
1308 |
({..deg R (p \<oplus>\<^sub>3 q)} Un {)deg R (p \<oplus>\<^sub>3 q)..max (deg R p) (deg R q)})" |
|
1309 |
by (simp cong: finsum_cong |
|
1310 |
add: deg_aboveD finsum_Un_disjoint ivl_disj_int_one Pi_def |
|
1311 |
del: coeff_add) |
|
1312 |
also from RS have "... = |
|
1313 |
finsum S (%i. h (coeff P (p \<oplus>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) |
|
1314 |
{..max (deg R p) (deg R q)}" |
|
1315 |
by (simp add: ivl_disj_un_one) |
|
1316 |
also from RS have "... = |
|
1317 |
finsum S (%i. h (coeff P p i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..max (deg R p) (deg R q)} \<oplus>\<^sub>2 |
|
1318 |
finsum S (%i. h (coeff P q i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..max (deg R p) (deg R q)}" |
|
1319 |
by (simp cong: finsum_cong |
|
1320 |
add: l_distr deg_aboveD finsum_Un_disjoint ivl_disj_int_one Pi_def) |
|
1321 |
also have "... = |
|
1322 |
finsum S (%i. h (coeff P p i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) |
|
1323 |
({..deg R p} Un {)deg R p..max (deg R p) (deg R q)}) \<oplus>\<^sub>2 |
|
1324 |
finsum S (%i. h (coeff P q i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) |
|
1325 |
({..deg R q} Un {)deg R q..max (deg R p) (deg R q)})" |
|
1326 |
by (simp only: ivl_disj_un_one le_maxI1 le_maxI2) |
|
1327 |
also from RS have "... = |
|
1328 |
finsum S (%i. h (coeff P p i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..deg R p} \<oplus>\<^sub>2 |
|
1329 |
finsum S (%i. h (coeff P q i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..deg R q}" |
|
1330 |
by (simp cong: finsum_cong |
|
1331 |
add: deg_aboveD finsum_Un_disjoint ivl_disj_int_one Pi_def) |
|
1332 |
finally show |
|
1333 |
"finsum S (%i. h (coeff P (p \<oplus>\<^sub>3 q) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..deg R (p \<oplus>\<^sub>3 q)} = |
|
1334 |
finsum S (%i. h (coeff P p i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..deg R p} \<oplus>\<^sub>2 |
|
1335 |
finsum S (%i. h (coeff P q i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..deg R q}" |
|
1336 |
. |
|
1337 |
qed |
|
1338 |
next |
|
1339 |
assume S: "s \<in> carrier S" |
|
1340 |
then show "eval R S h s \<one>\<^sub>3 = \<one>\<^sub>2" |
|
1341 |
by (simp only: eval_on_carrier UP_one_closed) simp |
|
1342 |
qed |
|
1343 |
||
1344 |
text {* Instantiation of ring homomorphism lemmas. *} |
|
1345 |
||
1346 |
lemma (in ring_hom_UP_cring) ring_hom_cring_P_S: |
|
1347 |
"s \<in> carrier S ==> ring_hom_cring P S (eval R S h s)" |
|
1348 |
by (fast intro!: ring_hom_cring.intro UP_cring cring.axioms prems |
|
1349 |
intro: ring_hom_cring_axioms.intro eval_ring_hom) |
|
1350 |
||
1351 |
lemma (in ring_hom_UP_cring) UP_hom_closed [intro, simp]: |
|
1352 |
"[| s \<in> carrier S; p \<in> carrier P |] ==> eval R S h s p \<in> carrier S" |
|
1353 |
by (rule ring_hom_cring.hom_closed [OF ring_hom_cring_P_S]) |
|
1354 |
||
1355 |
lemma (in ring_hom_UP_cring) UP_hom_mult [simp]: |
|
1356 |
"[| s \<in> carrier S; p \<in> carrier P; q \<in> carrier P |] ==> |
|
1357 |
eval R S h s (p \<otimes>\<^sub>3 q) = eval R S h s p \<otimes>\<^sub>2 eval R S h s q" |
|
1358 |
by (rule ring_hom_cring.hom_mult [OF ring_hom_cring_P_S]) |
|
1359 |
||
1360 |
lemma (in ring_hom_UP_cring) UP_hom_add [simp]: |
|
1361 |
"[| s \<in> carrier S; p \<in> carrier P; q \<in> carrier P |] ==> |
|
1362 |
eval R S h s (p \<oplus>\<^sub>3 q) = eval R S h s p \<oplus>\<^sub>2 eval R S h s q" |
|
1363 |
by (rule ring_hom_cring.hom_add [OF ring_hom_cring_P_S]) |
|
1364 |
||
1365 |
lemma (in ring_hom_UP_cring) UP_hom_one [simp]: |
|
1366 |
"s \<in> carrier S ==> eval R S h s \<one>\<^sub>3 = \<one>\<^sub>2" |
|
1367 |
by (rule ring_hom_cring.hom_one [OF ring_hom_cring_P_S]) |
|
1368 |
||
1369 |
lemma (in ring_hom_UP_cring) UP_hom_zero [simp]: |
|
1370 |
"s \<in> carrier S ==> eval R S h s \<zero>\<^sub>3 = \<zero>\<^sub>2" |
|
1371 |
by (rule ring_hom_cring.hom_zero [OF ring_hom_cring_P_S]) |
|
1372 |
||
1373 |
lemma (in ring_hom_UP_cring) UP_hom_a_inv [simp]: |
|
1374 |
"[| s \<in> carrier S; p \<in> carrier P |] ==> |
|
1375 |
(eval R S h s) (\<ominus>\<^sub>3 p) = \<ominus>\<^sub>2 (eval R S h s) p" |
|
1376 |
by (rule ring_hom_cring.hom_a_inv [OF ring_hom_cring_P_S]) |
|
1377 |
||
1378 |
lemma (in ring_hom_UP_cring) UP_hom_finsum [simp]: |
|
1379 |
"[| s \<in> carrier S; finite A; f \<in> A -> carrier P |] ==> |
|
1380 |
(eval R S h s) (finsum P f A) = finsum S (eval R S h s o f) A" |
|
1381 |
by (rule ring_hom_cring.hom_finsum [OF ring_hom_cring_P_S]) |
|
1382 |
||
1383 |
lemma (in ring_hom_UP_cring) UP_hom_finprod [simp]: |
|
1384 |
"[| s \<in> carrier S; finite A; f \<in> A -> carrier P |] ==> |
|
1385 |
(eval R S h s) (finprod P f A) = finprod S (eval R S h s o f) A" |
|
1386 |
by (rule ring_hom_cring.hom_finprod [OF ring_hom_cring_P_S]) |
|
1387 |
||
1388 |
text {* Further properties of the evaluation homomorphism. *} |
|
1389 |
||
1390 |
(* The following lemma could be proved in UP\_cring with the additional |
|
1391 |
assumption that h is closed. *) |
|
1392 |
||
1393 |
lemma (in ring_hom_UP_cring) eval_const: |
|
1394 |
"[| s \<in> carrier S; r \<in> carrier R |] ==> eval R S h s (monom P r 0) = h r" |
|
1395 |
by (simp only: eval_on_carrier monom_closed) simp |
|
1396 |
||
1397 |
text {* The following proof is complicated by the fact that in arbitrary |
|
1398 |
rings one might have @{term "one R = zero R"}. *} |
|
1399 |
||
1400 |
(* TODO: simplify by cases "one R = zero R" *) |
|
1401 |
||
1402 |
lemma (in ring_hom_UP_cring) eval_monom1: |
|
1403 |
"s \<in> carrier S ==> eval R S h s (monom P \<one> 1) = s" |
|
1404 |
proof (simp only: eval_on_carrier monom_closed R.one_closed) |
|
1405 |
assume S: "s \<in> carrier S" |
|
1406 |
then have "finsum S (\<lambda>i. h (coeff P (monom P \<one> 1) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) |
|
1407 |
{..deg R (monom P \<one> 1)} = |
|
1408 |
finsum S (\<lambda>i. h (coeff P (monom P \<one> 1) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) |
|
1409 |
({..deg R (monom P \<one> 1)} Un {)deg R (monom P \<one> 1)..1})" |
|
1410 |
by (simp cong: finsum_cong del: coeff_monom |
|
1411 |
add: deg_aboveD finsum_Un_disjoint ivl_disj_int_one Pi_def) |
|
1412 |
also have "... = |
|
1413 |
finsum S (\<lambda>i. h (coeff P (monom P \<one> 1) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) {..1}" |
|
1414 |
by (simp only: ivl_disj_un_one deg_monom_le R.one_closed) |
|
1415 |
also have "... = s" |
|
1416 |
proof (cases "s = \<zero>\<^sub>2") |
|
1417 |
case True then show ?thesis by (simp add: Pi_def) |
|
1418 |
next |
|
1419 |
case False with S show ?thesis by (simp add: Pi_def) |
|
1420 |
qed |
|
1421 |
finally show "finsum S (\<lambda>i. h (coeff P (monom P \<one> 1) i) \<otimes>\<^sub>2 s (^)\<^sub>2 i) |
|
1422 |
{..deg R (monom P \<one> 1)} = s" . |
|
1423 |
qed |
|
1424 |
||
1425 |
lemma (in UP_cring) monom_pow: |
|
1426 |
assumes R: "a \<in> carrier R" |
|
1427 |
shows "(monom P a n) (^)\<^sub>2 m = monom P (a (^) m) (n * m)" |
|
1428 |
proof (induct m) |
|
1429 |
case 0 from R show ?case by simp |
|
1430 |
next |
|
1431 |
case Suc with R show ?case |
|
1432 |
by (simp del: monom_mult add: monom_mult [THEN sym] add_commute) |
|
1433 |
qed |
|
1434 |
||
1435 |
lemma (in ring_hom_cring) hom_pow [simp]: |
|
1436 |
"x \<in> carrier R ==> h (x (^) n) = h x (^)\<^sub>2 (n::nat)" |
|
1437 |
by (induct n) simp_all |
|
1438 |
||
1439 |
lemma (in ring_hom_UP_cring) UP_hom_pow [simp]: |
|
1440 |
"[| s \<in> carrier S; p \<in> carrier P |] ==> |
|
1441 |
(eval R S h s) (p (^)\<^sub>3 n) = eval R S h s p (^)\<^sub>2 (n::nat)" |
|
1442 |
by (rule ring_hom_cring.hom_pow [OF ring_hom_cring_P_S]) |
|
1443 |
||
1444 |
lemma (in ring_hom_UP_cring) eval_monom: |
|
1445 |
"[| s \<in> carrier S; r \<in> carrier R |] ==> |
|
1446 |
eval R S h s (monom P r n) = h r \<otimes>\<^sub>2 s (^)\<^sub>2 n" |
|
1447 |
proof - |
|
1448 |
assume RS: "s \<in> carrier S" "r \<in> carrier R" |
|
1449 |
then have "eval R S h s (monom P r n) = |
|
1450 |
eval R S h s (monom P r 0 \<otimes>\<^sub>3 (monom P \<one> 1) (^)\<^sub>3 n)" |
|
1451 |
by (simp del: monom_mult UP_hom_mult UP_hom_pow |
|
1452 |
add: monom_mult [THEN sym] monom_pow) |
|
1453 |
also from RS eval_monom1 have "... = h r \<otimes>\<^sub>2 s (^)\<^sub>2 n" |
|
1454 |
by (simp add: eval_const) |
|
1455 |
finally show ?thesis . |
|
1456 |
qed |
|
1457 |
||
1458 |
lemma (in ring_hom_UP_cring) eval_smult: |
|
1459 |
"[| s \<in> carrier S; r \<in> carrier R; p \<in> carrier P |] ==> |
|
1460 |
eval R S h s (r \<odot>\<^sub>3 p) = h r \<otimes>\<^sub>2 eval R S h s p" |
|
1461 |
by (simp add: monom_mult_is_smult [THEN sym] eval_const) |
|
1462 |
||
1463 |
lemma ring_hom_cringI: |
|
1464 |
assumes "cring R" |
|
1465 |
and "cring S" |
|
1466 |
and "h \<in> ring_hom R S" |
|
1467 |
shows "ring_hom_cring R S h" |
|
1468 |
by (fast intro: ring_hom_cring.intro ring_hom_cring_axioms.intro |
|
1469 |
cring.axioms prems) |
|
1470 |
||
1471 |
lemma (in ring_hom_UP_cring) UP_hom_unique: |
|
1472 |
assumes Phi: "Phi \<in> ring_hom P S" "Phi (monom P \<one> (Suc 0)) = s" |
|
1473 |
"!!r. r \<in> carrier R ==> Phi (monom P r 0) = h r" |
|
1474 |
and Psi: "Psi \<in> ring_hom P S" "Psi (monom P \<one> (Suc 0)) = s" |
|
1475 |
"!!r. r \<in> carrier R ==> Psi (monom P r 0) = h r" |
|
1476 |
and RS: "s \<in> carrier S" "p \<in> carrier P" |
|
1477 |
shows "Phi p = Psi p" |
|
1478 |
proof - |
|
1479 |
have Phi_hom: "ring_hom_cring P S Phi" |
|
1480 |
by (auto intro: ring_hom_cringI UP_cring S.cring Phi) |
|
1481 |
have Psi_hom: "ring_hom_cring P S Psi" |
|
1482 |
by (auto intro: ring_hom_cringI UP_cring S.cring Psi) |
|
1483 |
thm monom_mult |
|
1484 |
have "Phi p = Phi (finsum P |
|
1485 |
(%i. monom P (coeff P p i) 0 \<otimes>\<^sub>3 (monom P \<one> 1) (^)\<^sub>3 i) {..deg R p})" |
|
1486 |
by (simp add: up_repr RS monom_mult [THEN sym] monom_pow del: monom_mult) |
|
1487 |
also have "... = Psi (finsum P |
|
1488 |
(%i. monom P (coeff P p i) 0 \<otimes>\<^sub>3 (monom P \<one> 1) (^)\<^sub>3 i) {..deg R p})" |
|
1489 |
by (simp add: ring_hom_cring.hom_finsum [OF Phi_hom] |
|
1490 |
ring_hom_cring.hom_mult [OF Phi_hom] |
|
1491 |
ring_hom_cring.hom_pow [OF Phi_hom] Phi |
|
1492 |
ring_hom_cring.hom_finsum [OF Psi_hom] |
|
1493 |
ring_hom_cring.hom_mult [OF Psi_hom] |
|
1494 |
ring_hom_cring.hom_pow [OF Psi_hom] Psi RS Pi_def comp_def) |
|
1495 |
also have "... = Psi p" |
|
1496 |
by (simp add: up_repr RS monom_mult [THEN sym] monom_pow del: monom_mult) |
|
1497 |
finally show ?thesis . |
|
1498 |
qed |
|
1499 |
||
1500 |
||
1501 |
theorem (in ring_hom_UP_cring) UP_universal_property: |
|
1502 |
"s \<in> carrier S ==> |
|
1503 |
EX! Phi. Phi \<in> ring_hom P S \<inter> extensional (carrier P) & |
|
1504 |
Phi (monom P \<one> 1) = s & |
|
1505 |
(ALL r : carrier R. Phi (monom P r 0) = h r)" |
|
1506 |
using eval_monom1 |
|
1507 |
apply (auto intro: eval_ring_hom eval_const eval_extensional) |
|
1508 |
apply (rule extensionalityI) |
|
1509 |
apply (auto intro: UP_hom_unique) |
|
1510 |
done |
|
1511 |
||
1512 |
subsection {* Sample application of evaluation homomorphism *} |
|
1513 |
||
1514 |
lemma ring_hom_UP_cringI: |
|
1515 |
assumes "cring R" |
|
1516 |
and "cring S" |
|
1517 |
and "h \<in> ring_hom R S" |
|
1518 |
shows "ring_hom_UP_cring R S h" |
|
1519 |
by (fast intro: ring_hom_UP_cring.intro ring_hom_cring_axioms.intro |
|
1520 |
cring.axioms prems) |
|
1521 |
||
13975 | 1522 |
constdefs |
1523 |
INTEG :: "int ring" |
|
1524 |
"INTEG == (| carrier = UNIV, mult = op *, one = 1, zero = 0, add = op + |)" |
|
1525 |
||
1526 |
lemma cring_INTEG: |
|
1527 |
"cring INTEG" |
|
1528 |
by (unfold INTEG_def) (auto intro!: cringI abelian_groupI comm_monoidI |
|
1529 |
zadd_zminus_inverse2 zadd_zmult_distrib) |
|
1530 |
||
13940 | 1531 |
lemma INTEG_id: |
1532 |
"ring_hom_UP_cring INTEG INTEG id" |
|
1533 |
by (fast intro: ring_hom_UP_cringI cring_INTEG id_ring_hom) |
|
1534 |
||
1535 |
text {* |
|
1536 |
An instantiation mechanism would now import all theorems and lemmas |
|
1537 |
valid in the context of homomorphisms between @{term INTEG} and @{term |
|
1538 |
"UP INTEG"}. *} |
|
1539 |
||
1540 |
lemma INTEG_closed [intro, simp]: |
|
1541 |
"z \<in> carrier INTEG" |
|
1542 |
by (unfold INTEG_def) simp |
|
1543 |
||
1544 |
lemma INTEG_mult [simp]: |
|
1545 |
"mult INTEG z w = z * w" |
|
1546 |
by (unfold INTEG_def) simp |
|
1547 |
||
1548 |
lemma INTEG_pow [simp]: |
|
1549 |
"pow INTEG z n = z ^ n" |
|
1550 |
by (induct n) (simp_all add: INTEG_def nat_pow_def) |
|
1551 |
||
1552 |
lemma "eval INTEG INTEG id 10 (monom (UP INTEG) 5 2) = 500" |
|
1553 |
by (simp add: ring_hom_UP_cring.eval_monom [OF INTEG_id]) |
|
1554 |
||
1555 |
-- {* Calculates @{term "x = 500"} *} |
|
1556 |
||
1557 |
||
1558 |
end |