| author | wenzelm | 
| Sun, 26 Feb 2023 19:14:47 +0100 | |
| changeset 77379 | bd0028d1ece6 | 
| parent 76987 | 4c275405faae | 
| child 81438 | 95c9af7483b1 | 
| permissions | -rw-r--r-- | 
| 35849 | 1 | (* Title: HOL/Algebra/UnivPoly.thy | 
| 2 | Author: Clemens Ballarin, started 9 December 1996 | |
| 3 | Copyright: Clemens Ballarin | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 4 | |
| 27933 | 5 | Contributions, in particular on long division, by Jesus Aransay. | 
| 13940 | 6 | *) | 
| 7 | ||
| 28823 | 8 | theory UnivPoly | 
| 9 | imports Module RingHom | |
| 10 | begin | |
| 13940 | 11 | |
| 61382 | 12 | section \<open>Univariate Polynomials\<close> | 
| 13940 | 13 | |
| 61382 | 14 | text \<open> | 
| 14666 | 15 | Polynomials are formalised as modules with additional operations for | 
| 16 | extracting coefficients from polynomials and for obtaining monomials | |
| 63167 | 17 | from coefficients and exponents (record \<open>up_ring\<close>). The | 
| 14666 | 18 | carrier set is a set of bounded functions from Nat to the | 
| 19 | coefficient domain. Bounded means that these functions return zero | |
| 20 | above a certain bound (the degree). There is a chapter on the | |
| 76987 | 21 | formalisation of polynomials in the PhD thesis \<^cite>\<open>"Ballarin:1999"\<close>, | 
| 14706 | 22 | which was implemented with axiomatic type classes. This was later | 
| 23 | ported to Locales. | |
| 61382 | 24 | \<close> | 
| 14553 | 25 | |
| 14666 | 26 | |
| 61382 | 27 | subsection \<open>The Constructor for Univariate Polynomials\<close> | 
| 13940 | 28 | |
| 61382 | 29 | text \<open> | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 30 | Functions with finite support. | 
| 61382 | 31 | \<close> | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 32 | |
| 14666 | 33 | locale bound = | 
| 34 | fixes z :: 'a | |
| 35 | and n :: nat | |
| 36 | and f :: "nat => 'a" | |
| 37 | assumes bound: "!!m. n < m \<Longrightarrow> f m = z" | |
| 13940 | 38 | |
| 14666 | 39 | declare bound.intro [intro!] | 
| 40 | and bound.bound [dest] | |
| 13940 | 41 | |
| 42 | lemma bound_below: | |
| 14666 | 43 | assumes bound: "bound z m f" and nonzero: "f n \<noteq> z" shows "n \<le> m" | 
| 13940 | 44 | proof (rule classical) | 
| 67091 | 45 | assume "\<not> ?thesis" | 
| 13940 | 46 | then have "m < n" by arith | 
| 47 | with bound have "f n = z" .. | |
| 48 | with nonzero show ?thesis by contradiction | |
| 49 | qed | |
| 50 | ||
| 51 | record ('a, 'p) up_ring = "('a, 'p) module" +
 | |
| 52 | monom :: "['a, nat] => 'p" | |
| 53 | coeff :: "['p, nat] => 'a" | |
| 54 | ||
| 35848 
5443079512ea
slightly more uniform definitions -- eliminated old-style meta-equality;
 wenzelm parents: 
34915diff
changeset | 55 | definition | 
| 
5443079512ea
slightly more uniform definitions -- eliminated old-style meta-equality;
 wenzelm parents: 
34915diff
changeset | 56 |   up :: "('a, 'm) ring_scheme => (nat => 'a) set"
 | 
| 67091 | 57 |   where "up R = {f. f \<in> UNIV \<rightarrow> carrier R \<and> (\<exists>n. bound \<zero>\<^bsub>R\<^esub> n f)}"
 | 
| 27933 | 58 | |
| 59 | definition UP :: "('a, 'm) ring_scheme => ('a, nat => 'a) up_ring"
 | |
| 55926 | 60 | where "UP R = \<lparr> | 
| 27933 | 61 | carrier = up R, | 
| 64913 | 62 |    mult = (\<lambda>p\<in>up R. \<lambda>q\<in>up R. \<lambda>n. \<Oplus>\<^bsub>R\<^esub>i \<in> {..n}. p i \<otimes>\<^bsub>R\<^esub> q (n-i)),
 | 
| 63 | one = (\<lambda>i. if i=0 then \<one>\<^bsub>R\<^esub> else \<zero>\<^bsub>R\<^esub>), | |
| 64 | zero = (\<lambda>i. \<zero>\<^bsub>R\<^esub>), | |
| 65 | add = (\<lambda>p\<in>up R. \<lambda>q\<in>up R. \<lambda>i. p i \<oplus>\<^bsub>R\<^esub> q i), | |
| 66 | smult = (\<lambda>a\<in>carrier R. \<lambda>p\<in>up R. \<lambda>i. a \<otimes>\<^bsub>R\<^esub> p i), | |
| 67 | monom = (\<lambda>a\<in>carrier R. \<lambda>n i. if i=n then a else \<zero>\<^bsub>R\<^esub>), | |
| 68 | coeff = (\<lambda>p\<in>up R. \<lambda>n. p n)\<rparr>" | |
| 13940 | 69 | |
| 61382 | 70 | text \<open> | 
| 69597 | 71 | Properties of the set of polynomials \<^term>\<open>up\<close>. | 
| 61382 | 72 | \<close> | 
| 13940 | 73 | |
| 74 | lemma mem_upI [intro]: | |
| 67091 | 75 | "[| \<And>n. f n \<in> carrier R; \<exists>n. bound (zero R) n f |] ==> f \<in> up R" | 
| 13940 | 76 | by (simp add: up_def Pi_def) | 
| 77 | ||
| 78 | lemma mem_upD [dest]: | |
| 79 | "f \<in> up R ==> f n \<in> carrier R" | |
| 80 | by (simp add: up_def Pi_def) | |
| 81 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 82 | context ring | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 83 | begin | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 84 | |
| 67091 | 85 | lemma bound_upD [dest]: "f \<in> up R \<Longrightarrow> \<exists>n. bound \<zero> n f" by (simp add: up_def) | 
| 13940 | 86 | |
| 64913 | 87 | lemma up_one_closed: "(\<lambda>n. if n = 0 then \<one> else \<zero>) \<in> up R" using up_def by force | 
| 13940 | 88 | |
| 64913 | 89 | lemma up_smult_closed: "[| a \<in> carrier R; p \<in> up R |] ==> (\<lambda>i. a \<otimes> p i) \<in> up R" by force | 
| 13940 | 90 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 91 | lemma up_add_closed: | 
| 64913 | 92 | "[| p \<in> up R; q \<in> up R |] ==> (\<lambda>i. p i \<oplus> q i) \<in> up R" | 
| 13940 | 93 | proof | 
| 94 | fix n | |
| 95 | assume "p \<in> up R" and "q \<in> up R" | |
| 96 | then show "p n \<oplus> q n \<in> carrier R" | |
| 97 | by auto | |
| 98 | next | |
| 99 | assume UP: "p \<in> up R" "q \<in> up R" | |
| 67091 | 100 | show "\<exists>n. bound \<zero> n (\<lambda>i. p i \<oplus> q i)" | 
| 13940 | 101 | proof - | 
| 102 | from UP obtain n where boundn: "bound \<zero> n p" by fast | |
| 103 | from UP obtain m where boundm: "bound \<zero> m q" by fast | |
| 64913 | 104 | have "bound \<zero> (max n m) (\<lambda>i. p i \<oplus> q i)" | 
| 13940 | 105 | proof | 
| 106 | fix i | |
| 107 | assume "max n m < i" | |
| 44890 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 nipkow parents: 
44821diff
changeset | 108 | with boundn and boundm and UP show "p i \<oplus> q i = \<zero>" by fastforce | 
| 13940 | 109 | qed | 
| 110 | then show ?thesis .. | |
| 111 | qed | |
| 112 | qed | |
| 113 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 114 | lemma up_a_inv_closed: | 
| 64913 | 115 | "p \<in> up R ==> (\<lambda>i. \<ominus> (p i)) \<in> up R" | 
| 13940 | 116 | proof | 
| 117 | assume R: "p \<in> up R" | |
| 118 | then obtain n where "bound \<zero> n p" by auto | |
| 68445 
c183a6a69f2d
reorganisation of Algebra: new material from Baillon and Vilhena, removal of duplicate names, elimination of "More_" theories
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 119 | then have "bound \<zero> n (\<lambda>i. \<ominus> p i)" | 
| 
c183a6a69f2d
reorganisation of Algebra: new material from Baillon and Vilhena, removal of duplicate names, elimination of "More_" theories
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 120 | by (simp add: bound_def minus_equality) | 
| 67091 | 121 | then show "\<exists>n. bound \<zero> n (\<lambda>i. \<ominus> p i)" by auto | 
| 13940 | 122 | qed auto | 
| 123 | ||
| 27933 | 124 | lemma up_minus_closed: | 
| 64913 | 125 | "[| p \<in> up R; q \<in> up R |] ==> (\<lambda>i. p i \<ominus> q i) \<in> up R" | 
| 68445 
c183a6a69f2d
reorganisation of Algebra: new material from Baillon and Vilhena, removal of duplicate names, elimination of "More_" theories
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 126 | unfolding a_minus_def | 
| 
c183a6a69f2d
reorganisation of Algebra: new material from Baillon and Vilhena, removal of duplicate names, elimination of "More_" theories
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 127 | using mem_upD [of p R] mem_upD [of q R] up_add_closed up_a_inv_closed by auto | 
| 27933 | 128 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 129 | lemma up_mult_closed: | 
| 13940 | 130 | "[| p \<in> up R; q \<in> up R |] ==> | 
| 64913 | 131 |   (\<lambda>n. \<Oplus>i \<in> {..n}. p i \<otimes> q (n-i)) \<in> up R"
 | 
| 13940 | 132 | proof | 
| 133 | fix n | |
| 134 | assume "p \<in> up R" "q \<in> up R" | |
| 14666 | 135 |   then show "(\<Oplus>i \<in> {..n}. p i \<otimes> q (n-i)) \<in> carrier R"
 | 
| 13940 | 136 | by (simp add: mem_upD funcsetI) | 
| 137 | next | |
| 138 | assume UP: "p \<in> up R" "q \<in> up R" | |
| 67091 | 139 |   show "\<exists>n. bound \<zero> n (\<lambda>n. \<Oplus>i \<in> {..n}. p i \<otimes> q (n-i))"
 | 
| 13940 | 140 | proof - | 
| 141 | from UP obtain n where boundn: "bound \<zero> n p" by fast | |
| 142 | from UP obtain m where boundm: "bound \<zero> m q" by fast | |
| 64913 | 143 |     have "bound \<zero> (n + m) (\<lambda>n. \<Oplus>i \<in> {..n}. p i \<otimes> q (n - i))"
 | 
| 13940 | 144 | proof | 
| 14666 | 145 | fix k assume bound: "n + m < k" | 
| 13940 | 146 |       {
 | 
| 14666 | 147 | fix i | 
| 148 | have "p i \<otimes> q (k-i) = \<zero>" | |
| 149 | proof (cases "n < i") | |
| 150 | case True | |
| 151 | with boundn have "p i = \<zero>" by auto | |
| 13940 | 152 | moreover from UP have "q (k-i) \<in> carrier R" by auto | 
| 14666 | 153 | ultimately show ?thesis by simp | 
| 154 | next | |
| 155 | case False | |
| 156 | with bound have "m < k-i" by arith | |
| 157 | with boundm have "q (k-i) = \<zero>" by auto | |
| 158 | moreover from UP have "p i \<in> carrier R" by auto | |
| 159 | ultimately show ?thesis by simp | |
| 160 | qed | |
| 13940 | 161 | } | 
| 14666 | 162 |       then show "(\<Oplus>i \<in> {..k}. p i \<otimes> q (k-i)) = \<zero>"
 | 
| 163 | by (simp add: Pi_def) | |
| 13940 | 164 | qed | 
| 165 | then show ?thesis by fast | |
| 166 | qed | |
| 167 | qed | |
| 168 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 169 | end | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 170 | |
| 14666 | 171 | |
| 61382 | 172 | subsection \<open>Effect of Operations on Coefficients\<close> | 
| 13940 | 173 | |
| 19783 | 174 | locale UP = | 
| 175 | fixes R (structure) and P (structure) | |
| 13940 | 176 | defines P_def: "P == UP R" | 
| 177 | ||
| 61565 
352c73a689da
Qualifiers in locale expressions default to mandatory regardless of the command.
 ballarin parents: 
61520diff
changeset | 178 | locale UP_ring = UP + R?: ring R | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 179 | |
| 61565 
352c73a689da
Qualifiers in locale expressions default to mandatory regardless of the command.
 ballarin parents: 
61520diff
changeset | 180 | locale UP_cring = UP + R?: cring R | 
| 13940 | 181 | |
| 29237 | 182 | sublocale UP_cring < UP_ring | 
| 29240 | 183 | by intro_locales [1] (rule P_def) | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 184 | |
| 61565 
352c73a689da
Qualifiers in locale expressions default to mandatory regardless of the command.
 ballarin parents: 
61520diff
changeset | 185 | locale UP_domain = UP + R?: "domain" R | 
| 13940 | 186 | |
| 29237 | 187 | sublocale UP_domain < UP_cring | 
| 29240 | 188 | by intro_locales [1] (rule P_def) | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 189 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 190 | context UP | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 191 | begin | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 192 | |
| 61382 | 193 | text \<open>Temporarily declare @{thm P_def} as simp rule.\<close>
 | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 194 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 195 | declare P_def [simp] | 
| 13940 | 196 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 197 | lemma up_eqI: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 198 | assumes prem: "!!n. coeff P p n = coeff P q n" and R: "p \<in> carrier P" "q \<in> carrier P" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 199 | shows "p = q" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 200 | proof | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 201 | fix x | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 202 | from prem and R show "p x = q x" by (simp add: UP_def) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 203 | qed | 
| 13940 | 204 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 205 | lemma coeff_closed [simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 206 | "p \<in> carrier P ==> coeff P p n \<in> carrier R" by (auto simp add: UP_def) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 207 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 208 | end | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 209 | |
| 64913 | 210 | context UP_ring | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 211 | begin | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 212 | |
| 27933 | 213 | (* Theorems generalised from commutative rings to rings by Jesus Aransay. *) | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 214 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 215 | lemma coeff_monom [simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 216 | "a \<in> carrier R ==> coeff P (monom P a m) n = (if m=n then a else \<zero>)" | 
| 13940 | 217 | proof - | 
| 218 | assume R: "a \<in> carrier R" | |
| 64913 | 219 | then have "(\<lambda>n. if n = m then a else \<zero>) \<in> up R" | 
| 13940 | 220 | using up_def by force | 
| 221 | with R show ?thesis by (simp add: UP_def) | |
| 222 | qed | |
| 223 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 224 | lemma coeff_zero [simp]: "coeff P \<zero>\<^bsub>P\<^esub> n = \<zero>" by (auto simp add: UP_def) | 
| 13940 | 225 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 226 | lemma coeff_one [simp]: "coeff P \<one>\<^bsub>P\<^esub> n = (if n=0 then \<one> else \<zero>)" | 
| 13940 | 227 | using up_one_closed by (simp add: UP_def) | 
| 228 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 229 | lemma coeff_smult [simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 230 | "[| a \<in> carrier R; p \<in> carrier P |] ==> coeff P (a \<odot>\<^bsub>P\<^esub> p) n = a \<otimes> coeff P p n" | 
| 13940 | 231 | by (simp add: UP_def up_smult_closed) | 
| 232 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 233 | lemma coeff_add [simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 234 | "[| p \<in> carrier P; q \<in> carrier P |] ==> coeff P (p \<oplus>\<^bsub>P\<^esub> q) n = coeff P p n \<oplus> coeff P q n" | 
| 13940 | 235 | by (simp add: UP_def up_add_closed) | 
| 236 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 237 | lemma coeff_mult [simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 238 |   "[| p \<in> carrier P; q \<in> carrier P |] ==> coeff P (p \<otimes>\<^bsub>P\<^esub> q) n = (\<Oplus>i \<in> {..n}. coeff P p i \<otimes> coeff P q (n-i))"
 | 
| 13940 | 239 | by (simp add: UP_def up_mult_closed) | 
| 240 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 241 | end | 
| 14666 | 242 | |
| 20318 
0e0ea63fe768
Restructured algebra library, added ideals and quotient rings.
 ballarin parents: 
20282diff
changeset | 243 | |
| 61382 | 244 | subsection \<open>Polynomials Form a Ring.\<close> | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 245 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 246 | context UP_ring | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 247 | begin | 
| 13940 | 248 | |
| 69597 | 249 | text \<open>Operations are closed over \<^term>\<open>P\<close>.\<close> | 
| 13940 | 250 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 251 | lemma UP_mult_closed [simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 252 | "[| p \<in> carrier P; q \<in> carrier P |] ==> p \<otimes>\<^bsub>P\<^esub> q \<in> carrier P" by (simp add: UP_def up_mult_closed) | 
| 13940 | 253 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 254 | lemma UP_one_closed [simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 255 | "\<one>\<^bsub>P\<^esub> \<in> carrier P" by (simp add: UP_def up_one_closed) | 
| 13940 | 256 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 257 | lemma UP_zero_closed [intro, simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 258 | "\<zero>\<^bsub>P\<^esub> \<in> carrier P" by (auto simp add: UP_def) | 
| 13940 | 259 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 260 | lemma UP_a_closed [intro, simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 261 | "[| p \<in> carrier P; q \<in> carrier P |] ==> p \<oplus>\<^bsub>P\<^esub> q \<in> carrier P" by (simp add: UP_def up_add_closed) | 
| 13940 | 262 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 263 | lemma monom_closed [simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 264 | "a \<in> carrier R ==> monom P a n \<in> carrier P" by (auto simp add: UP_def up_def Pi_def) | 
| 13940 | 265 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 266 | lemma UP_smult_closed [simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 267 | "[| a \<in> carrier R; p \<in> carrier P |] ==> a \<odot>\<^bsub>P\<^esub> p \<in> carrier P" by (simp add: UP_def up_smult_closed) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 268 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 269 | end | 
| 13940 | 270 | |
| 271 | declare (in UP) P_def [simp del] | |
| 272 | ||
| 61382 | 273 | text \<open>Algebraic ring properties\<close> | 
| 13940 | 274 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 275 | context UP_ring | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 276 | begin | 
| 13940 | 277 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 278 | lemma UP_a_assoc: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 279 | assumes R: "p \<in> carrier P" "q \<in> carrier P" "r \<in> carrier P" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 280 | shows "(p \<oplus>\<^bsub>P\<^esub> q) \<oplus>\<^bsub>P\<^esub> r = p \<oplus>\<^bsub>P\<^esub> (q \<oplus>\<^bsub>P\<^esub> r)" by (rule up_eqI, simp add: a_assoc R, simp_all add: R) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 281 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 282 | lemma UP_l_zero [simp]: | 
| 13940 | 283 | assumes R: "p \<in> carrier P" | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 284 | shows "\<zero>\<^bsub>P\<^esub> \<oplus>\<^bsub>P\<^esub> p = p" by (rule up_eqI, simp_all add: R) | 
| 13940 | 285 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 286 | lemma UP_l_neg_ex: | 
| 13940 | 287 | assumes R: "p \<in> carrier P" | 
| 67613 | 288 | shows "\<exists>q \<in> carrier P. q \<oplus>\<^bsub>P\<^esub> p = \<zero>\<^bsub>P\<^esub>" | 
| 13940 | 289 | proof - | 
| 64913 | 290 | let ?q = "\<lambda>i. \<ominus> (p i)" | 
| 13940 | 291 | from R have closed: "?q \<in> carrier P" | 
| 292 | by (simp add: UP_def P_def up_a_inv_closed) | |
| 293 | from R have coeff: "!!n. coeff P ?q n = \<ominus> (coeff P p n)" | |
| 294 | by (simp add: UP_def P_def up_a_inv_closed) | |
| 295 | show ?thesis | |
| 296 | proof | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 297 | show "?q \<oplus>\<^bsub>P\<^esub> p = \<zero>\<^bsub>P\<^esub>" | 
| 13940 | 298 | by (auto intro!: up_eqI simp add: R closed coeff R.l_neg) | 
| 299 | qed (rule closed) | |
| 300 | qed | |
| 301 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 302 | lemma UP_a_comm: | 
| 13940 | 303 | assumes R: "p \<in> carrier P" "q \<in> carrier P" | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 304 | shows "p \<oplus>\<^bsub>P\<^esub> q = q \<oplus>\<^bsub>P\<^esub> p" by (rule up_eqI, simp add: a_comm R, simp_all add: R) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 305 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 306 | lemma UP_m_assoc: | 
| 13940 | 307 | assumes R: "p \<in> carrier P" "q \<in> carrier P" "r \<in> carrier P" | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 308 | shows "(p \<otimes>\<^bsub>P\<^esub> q) \<otimes>\<^bsub>P\<^esub> r = p \<otimes>\<^bsub>P\<^esub> (q \<otimes>\<^bsub>P\<^esub> r)" | 
| 13940 | 309 | proof (rule up_eqI) | 
| 310 | fix n | |
| 311 |   {
 | |
| 312 | fix k and a b c :: "nat=>'a" | |
| 61384 | 313 | assume R: "a \<in> UNIV \<rightarrow> carrier R" "b \<in> UNIV \<rightarrow> carrier R" | 
| 314 | "c \<in> UNIV \<rightarrow> carrier R" | |
| 13940 | 315 | then have "k <= n ==> | 
| 14666 | 316 |       (\<Oplus>j \<in> {..k}. (\<Oplus>i \<in> {..j}. a i \<otimes> b (j-i)) \<otimes> c (n-j)) =
 | 
| 317 |       (\<Oplus>j \<in> {..k}. a j \<otimes> (\<Oplus>i \<in> {..k-j}. b i \<otimes> c (n-j-i)))"
 | |
| 19582 | 318 | (is "_ \<Longrightarrow> ?eq k") | 
| 13940 | 319 | proof (induct k) | 
| 320 | case 0 then show ?case by (simp add: Pi_def m_assoc) | |
| 321 | next | |
| 322 | case (Suc k) | |
| 323 | then have "k <= n" by arith | |
| 23350 | 324 | from this R have "?eq k" by (rule Suc) | 
| 13940 | 325 | with R show ?case | 
| 14666 | 326 | by (simp cong: finsum_cong | 
| 13940 | 327 | add: Suc_diff_le Pi_def l_distr r_distr m_assoc) | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 328 | (simp cong: finsum_cong add: Pi_def a_ac finsum_ldistr m_assoc) | 
| 13940 | 329 | qed | 
| 330 | } | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 331 | with R show "coeff P ((p \<otimes>\<^bsub>P\<^esub> q) \<otimes>\<^bsub>P\<^esub> r) n = coeff P (p \<otimes>\<^bsub>P\<^esub> (q \<otimes>\<^bsub>P\<^esub> r)) n" | 
| 13940 | 332 | by (simp add: Pi_def) | 
| 333 | qed (simp_all add: R) | |
| 334 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 335 | lemma UP_r_one [simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 336 | assumes R: "p \<in> carrier P" shows "p \<otimes>\<^bsub>P\<^esub> \<one>\<^bsub>P\<^esub> = p" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 337 | proof (rule up_eqI) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 338 | fix n | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 339 | show "coeff P (p \<otimes>\<^bsub>P\<^esub> \<one>\<^bsub>P\<^esub>) n = coeff P p n" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 340 | proof (cases n) | 
| 64913 | 341 | case 0 | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 342 |     {
 | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 343 | with R show ?thesis by simp | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 344 | } | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 345 | next | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 346 | case Suc | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 347 |     {
 | 
| 27933 | 348 | (*JE: in the locale UP_cring the proof was solved only with "by (simp del: finsum_Suc add: finsum_Suc2 Pi_def)", but I did not get it to work here*) | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 349 | fix nn assume Succ: "n = Suc nn" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 350 | have "coeff P (p \<otimes>\<^bsub>P\<^esub> \<one>\<^bsub>P\<^esub>) (Suc nn) = coeff P p (Suc nn)" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 351 | proof - | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 352 |         have "coeff P (p \<otimes>\<^bsub>P\<^esub> \<one>\<^bsub>P\<^esub>) (Suc nn) = (\<Oplus>i\<in>{..Suc nn}. coeff P p i \<otimes> (if Suc nn \<le> i then \<one> else \<zero>))" using R by simp
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 353 |         also have "\<dots> = coeff P p (Suc nn) \<otimes> (if Suc nn \<le> Suc nn then \<one> else \<zero>) \<oplus> (\<Oplus>i\<in>{..nn}. coeff P p i \<otimes> (if Suc nn \<le> i then \<one> else \<zero>))"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 354 | using finsum_Suc [of "(\<lambda>i::nat. coeff P p i \<otimes> (if Suc nn \<le> i then \<one> else \<zero>))" "nn"] unfolding Pi_def using R by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 355 | also have "\<dots> = coeff P p (Suc nn) \<otimes> (if Suc nn \<le> Suc nn then \<one> else \<zero>)" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 356 | proof - | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 357 |           have "(\<Oplus>i\<in>{..nn}. coeff P p i \<otimes> (if Suc nn \<le> i then \<one> else \<zero>)) = (\<Oplus>i\<in>{..nn}. \<zero>)"
 | 
| 64913 | 358 |             using finsum_cong [of "{..nn}" "{..nn}" "(\<lambda>i::nat. coeff P p i \<otimes> (if Suc nn \<le> i then \<one> else \<zero>))" "(\<lambda>i::nat. \<zero>)"] using R
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 359 | unfolding Pi_def by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 360 | also have "\<dots> = \<zero>" by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 361 | finally show ?thesis using r_zero R by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 362 | qed | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 363 | also have "\<dots> = coeff P p (Suc nn)" using R by simp | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 364 | finally show ?thesis by simp | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 365 | qed | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 366 | then show ?thesis using Succ by simp | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 367 | } | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 368 | qed | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 369 | qed (simp_all add: R) | 
| 64913 | 370 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 371 | lemma UP_l_one [simp]: | 
| 13940 | 372 | assumes R: "p \<in> carrier P" | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 373 | shows "\<one>\<^bsub>P\<^esub> \<otimes>\<^bsub>P\<^esub> p = p" | 
| 13940 | 374 | proof (rule up_eqI) | 
| 375 | fix n | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 376 | show "coeff P (\<one>\<^bsub>P\<^esub> \<otimes>\<^bsub>P\<^esub> p) n = coeff P p n" | 
| 13940 | 377 | proof (cases n) | 
| 378 | case 0 with R show ?thesis by simp | |
| 379 | next | |
| 380 | case Suc with R show ?thesis | |
| 381 | by (simp del: finsum_Suc add: finsum_Suc2 Pi_def) | |
| 382 | qed | |
| 383 | qed (simp_all add: R) | |
| 384 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 385 | lemma UP_l_distr: | 
| 13940 | 386 | assumes R: "p \<in> carrier P" "q \<in> carrier P" "r \<in> carrier P" | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 387 | shows "(p \<oplus>\<^bsub>P\<^esub> q) \<otimes>\<^bsub>P\<^esub> r = (p \<otimes>\<^bsub>P\<^esub> r) \<oplus>\<^bsub>P\<^esub> (q \<otimes>\<^bsub>P\<^esub> r)" | 
| 13940 | 388 | by (rule up_eqI) (simp add: l_distr R Pi_def, simp_all add: R) | 
| 389 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 390 | lemma UP_r_distr: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 391 | assumes R: "p \<in> carrier P" "q \<in> carrier P" "r \<in> carrier P" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 392 | shows "r \<otimes>\<^bsub>P\<^esub> (p \<oplus>\<^bsub>P\<^esub> q) = (r \<otimes>\<^bsub>P\<^esub> p) \<oplus>\<^bsub>P\<^esub> (r \<otimes>\<^bsub>P\<^esub> q)" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 393 | by (rule up_eqI) (simp add: r_distr R Pi_def, simp_all add: R) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 394 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 395 | theorem UP_ring: "ring P" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 396 | by (auto intro!: ringI abelian_groupI monoidI UP_a_assoc) | 
| 27933 | 397 | (auto intro: UP_a_comm UP_l_neg_ex UP_m_assoc UP_l_distr UP_r_distr) | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 398 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 399 | end | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 400 | |
| 27933 | 401 | |
| 61382 | 402 | subsection \<open>Polynomials Form a Commutative Ring.\<close> | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 403 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 404 | context UP_cring | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 405 | begin | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 406 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 407 | lemma UP_m_comm: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 408 | assumes R1: "p \<in> carrier P" and R2: "q \<in> carrier P" shows "p \<otimes>\<^bsub>P\<^esub> q = q \<otimes>\<^bsub>P\<^esub> p" | 
| 13940 | 409 | proof (rule up_eqI) | 
| 14666 | 410 | fix n | 
| 13940 | 411 |   {
 | 
| 412 | fix k and a b :: "nat=>'a" | |
| 61384 | 413 | assume R: "a \<in> UNIV \<rightarrow> carrier R" "b \<in> UNIV \<rightarrow> carrier R" | 
| 14666 | 414 | then have "k <= n ==> | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 415 |       (\<Oplus>i \<in> {..k}. a i \<otimes> b (n-i)) = (\<Oplus>i \<in> {..k}. a (k-i) \<otimes> b (i+n-k))"
 | 
| 19582 | 416 | (is "_ \<Longrightarrow> ?eq k") | 
| 13940 | 417 | proof (induct k) | 
| 418 | case 0 then show ?case by (simp add: Pi_def) | |
| 419 | next | |
| 420 | case (Suc k) then show ?case | |
| 15944 | 421 | by (subst (2) finsum_Suc2) (simp add: Pi_def a_comm)+ | 
| 13940 | 422 | qed | 
| 423 | } | |
| 424 | note l = this | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 425 | from R1 R2 show "coeff P (p \<otimes>\<^bsub>P\<^esub> q) n = coeff P (q \<otimes>\<^bsub>P\<^esub> p) n" | 
| 64913 | 426 | unfolding coeff_mult [OF R1 R2, of n] | 
| 427 | unfolding coeff_mult [OF R2 R1, of n] | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 428 | using l [of "(\<lambda>i. coeff P p i)" "(\<lambda>i. coeff P q i)" "n"] by (simp add: Pi_def m_comm) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 429 | qed (simp_all add: R1 R2) | 
| 13940 | 430 | |
| 35849 | 431 | |
| 61382 | 432 | subsection \<open>Polynomials over a commutative ring for a commutative ring\<close> | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 433 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 434 | theorem UP_cring: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 435 | "cring P" using UP_ring unfolding cring_def by (auto intro!: comm_monoidI UP_m_assoc UP_m_comm) | 
| 13940 | 436 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 437 | end | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 438 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 439 | context UP_ring | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 440 | begin | 
| 14399 
dc677b35e54f
New lemmas about inversion of restricted functions.
 ballarin parents: 
13975diff
changeset | 441 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 442 | lemma UP_a_inv_closed [intro, simp]: | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 443 | "p \<in> carrier P ==> \<ominus>\<^bsub>P\<^esub> p \<in> carrier P" | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 444 | by (rule abelian_group.a_inv_closed [OF ring.is_abelian_group [OF UP_ring]]) | 
| 13940 | 445 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 446 | lemma coeff_a_inv [simp]: | 
| 13940 | 447 | assumes R: "p \<in> carrier P" | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 448 | shows "coeff P (\<ominus>\<^bsub>P\<^esub> p) n = \<ominus> (coeff P p n)" | 
| 13940 | 449 | proof - | 
| 450 | from R coeff_closed UP_a_inv_closed have | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 451 | "coeff P (\<ominus>\<^bsub>P\<^esub> p) n = \<ominus> coeff P p n \<oplus> (coeff P p n \<oplus> coeff P (\<ominus>\<^bsub>P\<^esub> p) n)" | 
| 13940 | 452 | by algebra | 
| 453 | also from R have "... = \<ominus> (coeff P p n)" | |
| 454 | by (simp del: coeff_add add: coeff_add [THEN sym] | |
| 14399 
dc677b35e54f
New lemmas about inversion of restricted functions.
 ballarin parents: 
13975diff
changeset | 455 | abelian_group.r_neg [OF ring.is_abelian_group [OF UP_ring]]) | 
| 13940 | 456 | finally show ?thesis . | 
| 457 | qed | |
| 458 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 459 | end | 
| 13940 | 460 | |
| 61565 
352c73a689da
Qualifiers in locale expressions default to mandatory regardless of the command.
 ballarin parents: 
61520diff
changeset | 461 | sublocale UP_ring < P?: ring P using UP_ring . | 
| 
352c73a689da
Qualifiers in locale expressions default to mandatory regardless of the command.
 ballarin parents: 
61520diff
changeset | 462 | sublocale UP_cring < P?: cring P using UP_cring . | 
| 13940 | 463 | |
| 14666 | 464 | |
| 61382 | 465 | subsection \<open>Polynomials Form an Algebra\<close> | 
| 13940 | 466 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 467 | context UP_ring | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 468 | begin | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 469 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 470 | lemma UP_smult_l_distr: | 
| 13940 | 471 | "[| a \<in> carrier R; b \<in> carrier R; p \<in> carrier P |] ==> | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 472 | (a \<oplus> b) \<odot>\<^bsub>P\<^esub> p = a \<odot>\<^bsub>P\<^esub> p \<oplus>\<^bsub>P\<^esub> b \<odot>\<^bsub>P\<^esub> p" | 
| 13940 | 473 | by (rule up_eqI) (simp_all add: R.l_distr) | 
| 474 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 475 | lemma UP_smult_r_distr: | 
| 13940 | 476 | "[| a \<in> carrier R; p \<in> carrier P; q \<in> carrier P |] ==> | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 477 | a \<odot>\<^bsub>P\<^esub> (p \<oplus>\<^bsub>P\<^esub> q) = a \<odot>\<^bsub>P\<^esub> p \<oplus>\<^bsub>P\<^esub> a \<odot>\<^bsub>P\<^esub> q" | 
| 13940 | 478 | by (rule up_eqI) (simp_all add: R.r_distr) | 
| 479 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 480 | lemma UP_smult_assoc1: | 
| 13940 | 481 | "[| a \<in> carrier R; b \<in> carrier R; p \<in> carrier P |] ==> | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 482 | (a \<otimes> b) \<odot>\<^bsub>P\<^esub> p = a \<odot>\<^bsub>P\<^esub> (b \<odot>\<^bsub>P\<^esub> p)" | 
| 13940 | 483 | by (rule up_eqI) (simp_all add: R.m_assoc) | 
| 484 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 485 | lemma UP_smult_zero [simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 486 | "p \<in> carrier P ==> \<zero> \<odot>\<^bsub>P\<^esub> p = \<zero>\<^bsub>P\<^esub>" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 487 | by (rule up_eqI) simp_all | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 488 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 489 | lemma UP_smult_one [simp]: | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 490 | "p \<in> carrier P ==> \<one> \<odot>\<^bsub>P\<^esub> p = p" | 
| 13940 | 491 | by (rule up_eqI) simp_all | 
| 492 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 493 | lemma UP_smult_assoc2: | 
| 13940 | 494 | "[| a \<in> carrier R; p \<in> carrier P; q \<in> carrier P |] ==> | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 495 | (a \<odot>\<^bsub>P\<^esub> p) \<otimes>\<^bsub>P\<^esub> q = a \<odot>\<^bsub>P\<^esub> (p \<otimes>\<^bsub>P\<^esub> q)" | 
| 13940 | 496 | by (rule up_eqI) (simp_all add: R.finsum_rdistr R.m_assoc Pi_def) | 
| 497 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 498 | end | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 499 | |
| 61382 | 500 | text \<open> | 
| 69597 | 501 | Interpretation of lemmas from \<^term>\<open>algebra\<close>. | 
| 61382 | 502 | \<close> | 
| 13940 | 503 | |
| 504 | lemma (in UP_cring) UP_algebra: | |
| 75963 
884dbbc8e1b3
avoid duplicate fact error on global_interpretation of residues
 haftmann parents: 
69597diff
changeset | 505 | "algebra R P" by (auto intro!: algebraI R.cring_axioms UP_cring UP_smult_l_distr UP_smult_r_distr | 
| 13940 | 506 | UP_smult_assoc1 UP_smult_assoc2) | 
| 507 | ||
| 29237 | 508 | sublocale UP_cring < algebra R P using UP_algebra . | 
| 13940 | 509 | |
| 510 | ||
| 61382 | 511 | subsection \<open>Further Lemmas Involving Monomials\<close> | 
| 13940 | 512 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 513 | context UP_ring | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 514 | begin | 
| 13940 | 515 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 516 | lemma monom_zero [simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 517 | "monom P \<zero> n = \<zero>\<^bsub>P\<^esub>" by (simp add: UP_def P_def) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 518 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 519 | lemma monom_mult_is_smult: | 
| 13940 | 520 | assumes R: "a \<in> carrier R" "p \<in> carrier P" | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 521 | shows "monom P a 0 \<otimes>\<^bsub>P\<^esub> p = a \<odot>\<^bsub>P\<^esub> p" | 
| 13940 | 522 | proof (rule up_eqI) | 
| 523 | fix n | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 524 | show "coeff P (monom P a 0 \<otimes>\<^bsub>P\<^esub> p) n = coeff P (a \<odot>\<^bsub>P\<^esub> p) n" | 
| 13940 | 525 | proof (cases n) | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 526 | case 0 with R show ?thesis by simp | 
| 13940 | 527 | next | 
| 528 | case Suc with R show ?thesis | |
| 57865 | 529 | using R.finsum_Suc2 by (simp del: R.finsum_Suc add: Pi_def) | 
| 13940 | 530 | qed | 
| 531 | qed (simp_all add: R) | |
| 532 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 533 | lemma monom_one [simp]: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 534 | "monom P \<one> 0 = \<one>\<^bsub>P\<^esub>" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 535 | by (rule up_eqI) simp_all | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 536 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 537 | lemma monom_add [simp]: | 
| 13940 | 538 | "[| a \<in> carrier R; b \<in> carrier R |] ==> | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 539 | monom P (a \<oplus> b) n = monom P a n \<oplus>\<^bsub>P\<^esub> monom P b n" | 
| 13940 | 540 | by (rule up_eqI) simp_all | 
| 541 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 542 | lemma monom_one_Suc: | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 543 | "monom P \<one> (Suc n) = monom P \<one> n \<otimes>\<^bsub>P\<^esub> monom P \<one> 1" | 
| 13940 | 544 | proof (rule up_eqI) | 
| 545 | fix k | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 546 | show "coeff P (monom P \<one> (Suc n)) k = coeff P (monom P \<one> n \<otimes>\<^bsub>P\<^esub> monom P \<one> 1) k" | 
| 13940 | 547 | proof (cases "k = Suc n") | 
| 548 | case True show ?thesis | |
| 549 | proof - | |
| 26934 | 550 | fix m | 
| 14666 | 551 | from True have less_add_diff: | 
| 552 | "!!i. [| n < i; i <= n + m |] ==> n + m - i < m" by arith | |
| 13940 | 553 | from True have "coeff P (monom P \<one> (Suc n)) k = \<one>" by simp | 
| 554 | also from True | |
| 15045 | 555 |       have "... = (\<Oplus>i \<in> {..<n} \<union> {n}. coeff P (monom P \<one> n) i \<otimes>
 | 
| 14666 | 556 | coeff P (monom P \<one> 1) (k - i))" | 
| 17094 | 557 | by (simp cong: R.finsum_cong add: Pi_def) | 
| 14666 | 558 |       also have "... = (\<Oplus>i \<in>  {..n}. coeff P (monom P \<one> n) i \<otimes>
 | 
| 559 | coeff P (monom P \<one> 1) (k - i))" | |
| 560 | by (simp only: ivl_disj_un_singleton) | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 561 | also from True | 
| 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 562 |       have "... = (\<Oplus>i \<in> {..n} \<union> {n<..k}. coeff P (monom P \<one> n) i \<otimes>
 | 
| 14666 | 563 | coeff P (monom P \<one> 1) (k - i))" | 
| 17094 | 564 | by (simp cong: R.finsum_cong add: R.finsum_Un_disjoint ivl_disj_int_one | 
| 14666 | 565 | order_less_imp_not_eq Pi_def) | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 566 | also from True have "... = coeff P (monom P \<one> n \<otimes>\<^bsub>P\<^esub> monom P \<one> 1) k" | 
| 14666 | 567 | by (simp add: ivl_disj_un_one) | 
| 13940 | 568 | finally show ?thesis . | 
| 569 | qed | |
| 570 | next | |
| 571 | case False | |
| 572 | note neq = False | |
| 573 | let ?s = | |
| 14666 | 574 | "\<lambda>i. (if n = i then \<one> else \<zero>) \<otimes> (if Suc 0 = k - i then \<one> else \<zero>)" | 
| 13940 | 575 | from neq have "coeff P (monom P \<one> (Suc n)) k = \<zero>" by simp | 
| 14666 | 576 |     also have "... = (\<Oplus>i \<in> {..k}. ?s i)"
 | 
| 13940 | 577 | proof - | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 578 |       have f1: "(\<Oplus>i \<in> {..<n}. ?s i) = \<zero>"
 | 
| 17094 | 579 | by (simp cong: R.finsum_cong add: Pi_def) | 
| 14666 | 580 |       from neq have f2: "(\<Oplus>i \<in> {n}. ?s i) = \<zero>"
 | 
| 20432 
07ec57376051
lin_arith_prover: splitting reverted because of performance loss
 webertj parents: 
20318diff
changeset | 581 | by (simp cong: R.finsum_cong add: Pi_def) arith | 
| 15045 | 582 |       have f3: "n < k ==> (\<Oplus>i \<in> {n<..k}. ?s i) = \<zero>"
 | 
| 17094 | 583 | by (simp cong: R.finsum_cong add: order_less_imp_not_eq Pi_def) | 
| 13940 | 584 | show ?thesis | 
| 585 | proof (cases "k < n") | |
| 17094 | 586 | case True then show ?thesis by (simp cong: R.finsum_cong add: Pi_def) | 
| 13940 | 587 | next | 
| 14666 | 588 | case False then have n_le_k: "n <= k" by arith | 
| 589 | show ?thesis | |
| 590 | proof (cases "n = k") | |
| 591 | case True | |
| 15045 | 592 |           then have "\<zero> = (\<Oplus>i \<in> {..<n} \<union> {n}. ?s i)"
 | 
| 32456 
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
 nipkow parents: 
32436diff
changeset | 593 | by (simp cong: R.finsum_cong add: Pi_def) | 
| 14666 | 594 |           also from True have "... = (\<Oplus>i \<in> {..k}. ?s i)"
 | 
| 595 | by (simp only: ivl_disj_un_singleton) | |
| 596 | finally show ?thesis . | |
| 597 | next | |
| 598 | case False with n_le_k have n_less_k: "n < k" by arith | |
| 15045 | 599 |           with neq have "\<zero> = (\<Oplus>i \<in> {..<n} \<union> {n}. ?s i)"
 | 
| 32456 
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
 nipkow parents: 
32436diff
changeset | 600 | by (simp add: R.finsum_Un_disjoint f1 f2 Pi_def del: Un_insert_right) | 
| 14666 | 601 |           also have "... = (\<Oplus>i \<in> {..n}. ?s i)"
 | 
| 602 | by (simp only: ivl_disj_un_singleton) | |
| 15045 | 603 |           also from n_less_k neq have "... = (\<Oplus>i \<in> {..n} \<union> {n<..k}. ?s i)"
 | 
| 17094 | 604 | by (simp add: R.finsum_Un_disjoint f3 ivl_disj_int_one Pi_def) | 
| 14666 | 605 |           also from n_less_k have "... = (\<Oplus>i \<in> {..k}. ?s i)"
 | 
| 606 | by (simp only: ivl_disj_un_one) | |
| 607 | finally show ?thesis . | |
| 608 | qed | |
| 13940 | 609 | qed | 
| 610 | qed | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 611 | also have "... = coeff P (monom P \<one> n \<otimes>\<^bsub>P\<^esub> monom P \<one> 1) k" by simp | 
| 13940 | 612 | finally show ?thesis . | 
| 613 | qed | |
| 614 | qed (simp_all) | |
| 615 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 616 | lemma monom_one_Suc2: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 617 | "monom P \<one> (Suc n) = monom P \<one> 1 \<otimes>\<^bsub>P\<^esub> monom P \<one> n" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 618 | proof (induct n) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 619 | case 0 show ?case by simp | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 620 | next | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 621 | case Suc | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 622 |   {
 | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 623 | fix k:: nat | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 624 | assume hypo: "monom P \<one> (Suc k) = monom P \<one> 1 \<otimes>\<^bsub>P\<^esub> monom P \<one> k" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 625 | then show "monom P \<one> (Suc (Suc k)) = monom P \<one> 1 \<otimes>\<^bsub>P\<^esub> monom P \<one> (Suc k)" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 626 | proof - | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 627 | have lhs: "monom P \<one> (Suc (Suc k)) = monom P \<one> 1 \<otimes>\<^bsub>P\<^esub> monom P \<one> k \<otimes>\<^bsub>P\<^esub> monom P \<one> 1" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 628 | unfolding monom_one_Suc [of "Suc k"] unfolding hypo .. | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 629 | note cl = monom_closed [OF R.one_closed, of 1] | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 630 | note clk = monom_closed [OF R.one_closed, of k] | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 631 | have rhs: "monom P \<one> 1 \<otimes>\<^bsub>P\<^esub> monom P \<one> (Suc k) = monom P \<one> 1 \<otimes>\<^bsub>P\<^esub> monom P \<one> k \<otimes>\<^bsub>P\<^esub> monom P \<one> 1" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 632 | unfolding monom_one_Suc [of k] unfolding sym [OF m_assoc [OF cl clk cl]] .. | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 633 | from lhs rhs show ?thesis by simp | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 634 | qed | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 635 | } | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 636 | qed | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 637 | |
| 64913 | 638 | text\<open>The following corollary follows from lemmas @{thm "monom_one_Suc"}
 | 
| 69597 | 639 |   and @{thm "monom_one_Suc2"}, and is trivial in \<^term>\<open>UP_cring\<close>\<close>
 | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 640 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 641 | corollary monom_one_comm: shows "monom P \<one> k \<otimes>\<^bsub>P\<^esub> monom P \<one> 1 = monom P \<one> 1 \<otimes>\<^bsub>P\<^esub> monom P \<one> k" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 642 | unfolding monom_one_Suc [symmetric] monom_one_Suc2 [symmetric] .. | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 643 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 644 | lemma monom_mult_smult: | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 645 | "[| a \<in> carrier R; b \<in> carrier R |] ==> monom P (a \<otimes> b) n = a \<odot>\<^bsub>P\<^esub> monom P b n" | 
| 13940 | 646 | by (rule up_eqI) simp_all | 
| 647 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 648 | lemma monom_one_mult: | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 649 | "monom P \<one> (n + m) = monom P \<one> n \<otimes>\<^bsub>P\<^esub> monom P \<one> m" | 
| 13940 | 650 | proof (induct n) | 
| 651 | case 0 show ?case by simp | |
| 652 | next | |
| 653 | case Suc then show ?case | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 654 | unfolding add_Suc unfolding monom_one_Suc unfolding Suc.hyps | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 655 | using m_assoc monom_one_comm [of m] by simp | 
| 13940 | 656 | qed | 
| 657 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 658 | lemma monom_one_mult_comm: "monom P \<one> n \<otimes>\<^bsub>P\<^esub> monom P \<one> m = monom P \<one> m \<otimes>\<^bsub>P\<^esub> monom P \<one> n" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 659 | unfolding monom_one_mult [symmetric] by (rule up_eqI) simp_all | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 660 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 661 | lemma monom_mult [simp]: | 
| 27933 | 662 | assumes a_in_R: "a \<in> carrier R" and b_in_R: "b \<in> carrier R" | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 663 | shows "monom P (a \<otimes> b) (n + m) = monom P a n \<otimes>\<^bsub>P\<^esub> monom P b m" | 
| 27933 | 664 | proof (rule up_eqI) | 
| 64913 | 665 | fix k | 
| 27933 | 666 | show "coeff P (monom P (a \<otimes> b) (n + m)) k = coeff P (monom P a n \<otimes>\<^bsub>P\<^esub> monom P b m) k" | 
| 667 | proof (cases "n + m = k") | |
| 64913 | 668 | case True | 
| 27933 | 669 |     {
 | 
| 670 | show ?thesis | |
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 671 | unfolding True [symmetric] | 
| 64913 | 672 | coeff_mult [OF monom_closed [OF a_in_R, of n] monom_closed [OF b_in_R, of m], of "n + m"] | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 673 | coeff_monom [OF a_in_R, of n] coeff_monom [OF b_in_R, of m] | 
| 64913 | 674 |         using R.finsum_cong [of "{.. n + m}" "{.. n + m}" "(\<lambda>i. (if n = i then a else \<zero>) \<otimes> (if m = n + m - i then b else \<zero>))"
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 675 | "(\<lambda>i. if n = i then a \<otimes> b else \<zero>)"] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 676 | a_in_R b_in_R | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 677 | unfolding simp_implies_def | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 678 |         using R.finsum_singleton [of n "{.. n + m}" "(\<lambda>i. a \<otimes> b)"]
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 679 | unfolding Pi_def by auto | 
| 27933 | 680 | } | 
| 681 | next | |
| 682 | case False | |
| 683 |     {
 | |
| 684 | show ?thesis | |
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 685 | unfolding coeff_monom [OF R.m_closed [OF a_in_R b_in_R], of "n + m" k] apply (simp add: False) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 686 | unfolding coeff_mult [OF monom_closed [OF a_in_R, of n] monom_closed [OF b_in_R, of m], of k] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 687 | unfolding coeff_monom [OF a_in_R, of n] unfolding coeff_monom [OF b_in_R, of m] using False | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 688 |         using R.finsum_cong [of "{..k}" "{..k}" "(\<lambda>i. (if n = i then a else \<zero>) \<otimes> (if m = k - i then b else \<zero>))" "(\<lambda>i. \<zero>)"]
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 689 | unfolding Pi_def simp_implies_def using a_in_R b_in_R by force | 
| 27933 | 690 | } | 
| 691 | qed | |
| 692 | qed (simp_all add: a_in_R b_in_R) | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 693 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 694 | lemma monom_a_inv [simp]: | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 695 | "a \<in> carrier R ==> monom P (\<ominus> a) n = \<ominus>\<^bsub>P\<^esub> monom P a n" | 
| 68445 
c183a6a69f2d
reorganisation of Algebra: new material from Baillon and Vilhena, removal of duplicate names, elimination of "More_" theories
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 696 | by (rule up_eqI) auto | 
| 13940 | 697 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 698 | lemma monom_inj: | 
| 64913 | 699 | "inj_on (\<lambda>a. monom P a n) (carrier R)" | 
| 13940 | 700 | proof (rule inj_onI) | 
| 701 | fix x y | |
| 702 | assume R: "x \<in> carrier R" "y \<in> carrier R" and eq: "monom P x n = monom P y n" | |
| 703 | then have "coeff P (monom P x n) n = coeff P (monom P y n) n" by simp | |
| 704 | with R show "x = y" by simp | |
| 705 | qed | |
| 706 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 707 | end | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 708 | |
| 17094 | 709 | |
| 61382 | 710 | subsection \<open>The Degree Function\<close> | 
| 13940 | 711 | |
| 35848 
5443079512ea
slightly more uniform definitions -- eliminated old-style meta-equality;
 wenzelm parents: 
34915diff
changeset | 712 | definition | 
| 
5443079512ea
slightly more uniform definitions -- eliminated old-style meta-equality;
 wenzelm parents: 
34915diff
changeset | 713 |   deg :: "[('a, 'm) ring_scheme, nat => 'a] => nat"
 | 
| 
5443079512ea
slightly more uniform definitions -- eliminated old-style meta-equality;
 wenzelm parents: 
34915diff
changeset | 714 | where "deg R p = (LEAST n. bound \<zero>\<^bsub>R\<^esub> n (coeff (UP R) p))" | 
| 13940 | 715 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 716 | context UP_ring | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 717 | begin | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 718 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 719 | lemma deg_aboveI: | 
| 14666 | 720 | "[| (!!m. n < m ==> coeff P p m = \<zero>); p \<in> carrier P |] ==> deg R p <= n" | 
| 13940 | 721 | by (unfold deg_def P_def) (fast intro: Least_le) | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 722 | |
| 13940 | 723 | (* | 
| 724 | lemma coeff_bound_ex: "EX n. bound n (coeff p)" | |
| 725 | proof - | |
| 64913 | 726 | have "(\<lambda>n. coeff p n) : UP" by (simp add: coeff_def Rep_UP) | 
| 13940 | 727 | then obtain n where "bound n (coeff p)" by (unfold UP_def) fast | 
| 728 | then show ?thesis .. | |
| 729 | qed | |
| 14666 | 730 | |
| 13940 | 731 | lemma bound_coeff_obtain: | 
| 732 | assumes prem: "(!!n. bound n (coeff p) ==> P)" shows "P" | |
| 733 | proof - | |
| 64913 | 734 | have "(\<lambda>n. coeff p n) : UP" by (simp add: coeff_def Rep_UP) | 
| 13940 | 735 | then obtain n where "bound n (coeff p)" by (unfold UP_def) fast | 
| 736 | with prem show P . | |
| 737 | qed | |
| 738 | *) | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 739 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 740 | lemma deg_aboveD: | 
| 23350 | 741 | assumes "deg R p < m" and "p \<in> carrier P" | 
| 742 | shows "coeff P p m = \<zero>" | |
| 13940 | 743 | proof - | 
| 61382 | 744 | from \<open>p \<in> carrier P\<close> obtain n where "bound \<zero> n (coeff P p)" | 
| 13940 | 745 | by (auto simp add: UP_def P_def) | 
| 746 | then have "bound \<zero> (deg R p) (coeff P p)" | |
| 747 | by (auto simp: deg_def P_def dest: LeastI) | |
| 61382 | 748 | from this and \<open>deg R p < m\<close> show ?thesis .. | 
| 13940 | 749 | qed | 
| 750 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 751 | lemma deg_belowI: | 
| 67091 | 752 | assumes non_zero: "n \<noteq> 0 \<Longrightarrow> coeff P p n \<noteq> \<zero>" | 
| 13940 | 753 | and R: "p \<in> carrier P" | 
| 67091 | 754 | shows "n \<le> deg R p" | 
| 63167 | 755 | \<comment> \<open>Logically, this is a slightly stronger version of | 
| 61382 | 756 |    @{thm [source] deg_aboveD}\<close>
 | 
| 13940 | 757 | proof (cases "n=0") | 
| 758 | case True then show ?thesis by simp | |
| 759 | next | |
| 67091 | 760 | case False then have "coeff P p n \<noteq> \<zero>" by (rule non_zero) | 
| 761 | then have "\<not> deg R p < n" by (fast dest: deg_aboveD intro: R) | |
| 13940 | 762 | then show ?thesis by arith | 
| 763 | qed | |
| 764 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 765 | lemma lcoeff_nonzero_deg: | 
| 67091 | 766 | assumes deg: "deg R p \<noteq> 0" and R: "p \<in> carrier P" | 
| 767 | shows "coeff P p (deg R p) \<noteq> \<zero>" | |
| 13940 | 768 | proof - | 
| 67091 | 769 | from R obtain m where "deg R p \<le> m" and m_coeff: "coeff P p m \<noteq> \<zero>" | 
| 13940 | 770 | proof - | 
| 67091 | 771 | have minus: "\<And>(n::nat) m. n \<noteq> 0 \<Longrightarrow> (n - Suc 0 < m) = (n \<le> m)" | 
| 13940 | 772 | by arith | 
| 773 | from deg have "deg R p - 1 < (LEAST n. bound \<zero> n (coeff P p))" | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 774 | by (unfold deg_def P_def) simp | 
| 67091 | 775 | then have "\<not> bound \<zero> (deg R p - 1) (coeff P p)" by (rule not_less_Least) | 
| 776 | then have "\<exists>m. deg R p - 1 < m \<and> coeff P p m \<noteq> \<zero>" | |
| 13940 | 777 | by (unfold bound_def) fast | 
| 67091 | 778 | then have "\<exists>m. deg R p \<le> m \<and> coeff P p m \<noteq> \<zero>" by (simp add: deg minus) | 
| 23350 | 779 | then show ?thesis by (auto intro: that) | 
| 13940 | 780 | qed | 
| 44890 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 nipkow parents: 
44821diff
changeset | 781 | with deg_belowI R have "deg R p = m" by fastforce | 
| 13940 | 782 | with m_coeff show ?thesis by simp | 
| 783 | qed | |
| 784 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 785 | lemma lcoeff_nonzero_nonzero: | 
| 67091 | 786 | assumes deg: "deg R p = 0" and nonzero: "p \<noteq> \<zero>\<^bsub>P\<^esub>" and R: "p \<in> carrier P" | 
| 787 | shows "coeff P p 0 \<noteq> \<zero>" | |
| 13940 | 788 | proof - | 
| 67091 | 789 | have "\<exists>m. coeff P p m \<noteq> \<zero>" | 
| 13940 | 790 | proof (rule classical) | 
| 67091 | 791 | assume "\<not> ?thesis" | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 792 | with R have "p = \<zero>\<^bsub>P\<^esub>" by (auto intro: up_eqI) | 
| 13940 | 793 | with nonzero show ?thesis by contradiction | 
| 794 | qed | |
| 67091 | 795 | then obtain m where coeff: "coeff P p m \<noteq> \<zero>" .. | 
| 796 | from this and R have "m \<le> deg R p" by (rule deg_belowI) | |
| 13940 | 797 | then have "m = 0" by (simp add: deg) | 
| 798 | with coeff show ?thesis by simp | |
| 799 | qed | |
| 800 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 801 | lemma lcoeff_nonzero: | 
| 67091 | 802 | assumes neq: "p \<noteq> \<zero>\<^bsub>P\<^esub>" and R: "p \<in> carrier P" | 
| 803 | shows "coeff P p (deg R p) \<noteq> \<zero>" | |
| 13940 | 804 | proof (cases "deg R p = 0") | 
| 805 | case True with neq R show ?thesis by (simp add: lcoeff_nonzero_nonzero) | |
| 806 | next | |
| 807 | case False with neq R show ?thesis by (simp add: lcoeff_nonzero_deg) | |
| 808 | qed | |
| 809 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 810 | lemma deg_eqI: | 
| 67091 | 811 | "[| \<And>m. n < m \<Longrightarrow> coeff P p m = \<zero>; | 
| 812 | \<And>n. n \<noteq> 0 \<Longrightarrow> coeff P p n \<noteq> \<zero>; p \<in> carrier P |] ==> deg R p = n" | |
| 33657 | 813 | by (fast intro: le_antisym deg_aboveI deg_belowI) | 
| 13940 | 814 | |
| 61382 | 815 | text \<open>Degree and polynomial operations\<close> | 
| 13940 | 816 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 817 | lemma deg_add [simp]: | 
| 32436 
10cd49e0c067
Turned "x <= y ==> sup x y = y" (and relatives) into simp rules
 nipkow parents: 
30729diff
changeset | 818 | "p \<in> carrier P \<Longrightarrow> q \<in> carrier P \<Longrightarrow> | 
| 67091 | 819 | deg R (p \<oplus>\<^bsub>P\<^esub> q) \<le> max (deg R p) (deg R q)" | 
| 32436 
10cd49e0c067
Turned "x <= y ==> sup x y = y" (and relatives) into simp rules
 nipkow parents: 
30729diff
changeset | 820 | by(rule deg_aboveI)(simp_all add: deg_aboveD) | 
| 13940 | 821 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 822 | lemma deg_monom_le: | 
| 67091 | 823 | "a \<in> carrier R \<Longrightarrow> deg R (monom P a n) \<le> n" | 
| 13940 | 824 | by (intro deg_aboveI) simp_all | 
| 825 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 826 | lemma deg_monom [simp]: | 
| 67091 | 827 | "[| a \<noteq> \<zero>; a \<in> carrier R |] ==> deg R (monom P a n) = n" | 
| 44890 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 nipkow parents: 
44821diff
changeset | 828 | by (fastforce intro: le_antisym deg_aboveI deg_belowI) | 
| 13940 | 829 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 830 | lemma deg_const [simp]: | 
| 13940 | 831 | assumes R: "a \<in> carrier R" shows "deg R (monom P a 0) = 0" | 
| 33657 | 832 | proof (rule le_antisym) | 
| 67091 | 833 | show "deg R (monom P a 0) \<le> 0" by (rule deg_aboveI) (simp_all add: R) | 
| 13940 | 834 | next | 
| 67091 | 835 | show "0 \<le> deg R (monom P a 0)" by (rule deg_belowI) (simp_all add: R) | 
| 13940 | 836 | qed | 
| 837 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 838 | lemma deg_zero [simp]: | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 839 | "deg R \<zero>\<^bsub>P\<^esub> = 0" | 
| 33657 | 840 | proof (rule le_antisym) | 
| 67091 | 841 | show "deg R \<zero>\<^bsub>P\<^esub> \<le> 0" by (rule deg_aboveI) simp_all | 
| 13940 | 842 | next | 
| 67091 | 843 | show "0 \<le> deg R \<zero>\<^bsub>P\<^esub>" by (rule deg_belowI) simp_all | 
| 13940 | 844 | qed | 
| 845 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 846 | lemma deg_one [simp]: | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 847 | "deg R \<one>\<^bsub>P\<^esub> = 0" | 
| 33657 | 848 | proof (rule le_antisym) | 
| 67091 | 849 | show "deg R \<one>\<^bsub>P\<^esub> \<le> 0" by (rule deg_aboveI) simp_all | 
| 13940 | 850 | next | 
| 67091 | 851 | show "0 \<le> deg R \<one>\<^bsub>P\<^esub>" by (rule deg_belowI) simp_all | 
| 13940 | 852 | qed | 
| 853 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 854 | lemma deg_uminus [simp]: | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 855 | assumes R: "p \<in> carrier P" shows "deg R (\<ominus>\<^bsub>P\<^esub> p) = deg R p" | 
| 33657 | 856 | proof (rule le_antisym) | 
| 67091 | 857 | show "deg R (\<ominus>\<^bsub>P\<^esub> p) \<le> deg R p" by (simp add: deg_aboveI deg_aboveD R) | 
| 13940 | 858 | next | 
| 67091 | 859 | show "deg R p \<le> deg R (\<ominus>\<^bsub>P\<^esub> p)" | 
| 13940 | 860 | by (simp add: deg_belowI lcoeff_nonzero_deg | 
| 61520 
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
 paulson <lp15@cam.ac.uk> parents: 
61384diff
changeset | 861 | inj_on_eq_iff [OF R.a_inv_inj, of _ "\<zero>", simplified] R) | 
| 13940 | 862 | qed | 
| 863 | ||
| 61382 | 864 | text\<open>The following lemma is later \emph{overwritten} by the most
 | 
| 63167 | 865 | specific one for domains, \<open>deg_smult\<close>.\<close> | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 866 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 867 | lemma deg_smult_ring [simp]: | 
| 13940 | 868 | "[| a \<in> carrier R; p \<in> carrier P |] ==> | 
| 67091 | 869 | deg R (a \<odot>\<^bsub>P\<^esub> p) \<le> (if a = \<zero> then 0 else deg R p)" | 
| 13940 | 870 | by (cases "a = \<zero>") (simp add: deg_aboveI deg_aboveD)+ | 
| 871 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 872 | end | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 873 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 874 | context UP_domain | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 875 | begin | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 876 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 877 | lemma deg_smult [simp]: | 
| 13940 | 878 | assumes R: "a \<in> carrier R" "p \<in> carrier P" | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 879 | shows "deg R (a \<odot>\<^bsub>P\<^esub> p) = (if a = \<zero> then 0 else deg R p)" | 
| 33657 | 880 | proof (rule le_antisym) | 
| 67091 | 881 | show "deg R (a \<odot>\<^bsub>P\<^esub> p) \<le> (if a = \<zero> then 0 else deg R p)" | 
| 23350 | 882 | using R by (rule deg_smult_ring) | 
| 13940 | 883 | next | 
| 67091 | 884 | show "(if a = \<zero> then 0 else deg R p) \<le> deg R (a \<odot>\<^bsub>P\<^esub> p)" | 
| 13940 | 885 | proof (cases "a = \<zero>") | 
| 886 | qed (simp, simp add: deg_belowI lcoeff_nonzero_deg integral_iff R) | |
| 887 | qed | |
| 888 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 889 | end | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 890 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 891 | context UP_ring | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 892 | begin | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 893 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 894 | lemma deg_mult_ring: | 
| 13940 | 895 | assumes R: "p \<in> carrier P" "q \<in> carrier P" | 
| 67091 | 896 | shows "deg R (p \<otimes>\<^bsub>P\<^esub> q) \<le> deg R p + deg R q" | 
| 13940 | 897 | proof (rule deg_aboveI) | 
| 898 | fix m | |
| 899 | assume boundm: "deg R p + deg R q < m" | |
| 900 |   {
 | |
| 901 | fix k i | |
| 902 | assume boundk: "deg R p + deg R q < k" | |
| 903 | then have "coeff P p i \<otimes> coeff P q (k - i) = \<zero>" | |
| 904 | proof (cases "deg R p < i") | |
| 905 | case True then show ?thesis by (simp add: deg_aboveD R) | |
| 906 | next | |
| 907 | case False with boundk have "deg R q < k - i" by arith | |
| 908 | then show ?thesis by (simp add: deg_aboveD R) | |
| 909 | qed | |
| 910 | } | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 911 | with boundm R show "coeff P (p \<otimes>\<^bsub>P\<^esub> q) m = \<zero>" by simp | 
| 13940 | 912 | qed (simp add: R) | 
| 913 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 914 | end | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 915 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 916 | context UP_domain | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 917 | begin | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 918 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 919 | lemma deg_mult [simp]: | 
| 67091 | 920 | "[| p \<noteq> \<zero>\<^bsub>P\<^esub>; q \<noteq> \<zero>\<^bsub>P\<^esub>; p \<in> carrier P; q \<in> carrier P |] ==> | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 921 | deg R (p \<otimes>\<^bsub>P\<^esub> q) = deg R p + deg R q" | 
| 33657 | 922 | proof (rule le_antisym) | 
| 13940 | 923 | assume "p \<in> carrier P" " q \<in> carrier P" | 
| 67091 | 924 | then show "deg R (p \<otimes>\<^bsub>P\<^esub> q) \<le> deg R p + deg R q" by (rule deg_mult_ring) | 
| 13940 | 925 | next | 
| 64913 | 926 | let ?s = "(\<lambda>i. coeff P p i \<otimes> coeff P q (deg R p + deg R q - i))" | 
| 67091 | 927 | assume R: "p \<in> carrier P" "q \<in> carrier P" and nz: "p \<noteq> \<zero>\<^bsub>P\<^esub>" "q \<noteq> \<zero>\<^bsub>P\<^esub>" | 
| 13940 | 928 | have less_add_diff: "!!(k::nat) n m. k < n ==> m < n + m - k" by arith | 
| 67091 | 929 | show "deg R p + deg R q \<le> deg R (p \<otimes>\<^bsub>P\<^esub> q)" | 
| 13940 | 930 | proof (rule deg_belowI, simp add: R) | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 931 |     have "(\<Oplus>i \<in> {.. deg R p + deg R q}. ?s i)
 | 
| 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 932 |       = (\<Oplus>i \<in> {..< deg R p} \<union> {deg R p .. deg R p + deg R q}. ?s i)"
 | 
| 13940 | 933 | by (simp only: ivl_disj_un_one) | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 934 |     also have "... = (\<Oplus>i \<in> {deg R p .. deg R p + deg R q}. ?s i)"
 | 
| 17094 | 935 | by (simp cong: R.finsum_cong add: R.finsum_Un_disjoint ivl_disj_int_one | 
| 13940 | 936 | deg_aboveD less_add_diff R Pi_def) | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 937 |     also have "...= (\<Oplus>i \<in> {deg R p} \<union> {deg R p <.. deg R p + deg R q}. ?s i)"
 | 
| 13940 | 938 | by (simp only: ivl_disj_un_singleton) | 
| 14666 | 939 | also have "... = coeff P p (deg R p) \<otimes> coeff P q (deg R q)" | 
| 32456 
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
 nipkow parents: 
32436diff
changeset | 940 | by (simp cong: R.finsum_cong add: deg_aboveD R Pi_def) | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 941 |     finally have "(\<Oplus>i \<in> {.. deg R p + deg R q}. ?s i)
 | 
| 13940 | 942 | = coeff P p (deg R p) \<otimes> coeff P q (deg R q)" . | 
| 67091 | 943 |     with nz show "(\<Oplus>i \<in> {.. deg R p + deg R q}. ?s i) \<noteq> \<zero>"
 | 
| 13940 | 944 | by (simp add: integral_iff lcoeff_nonzero R) | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 945 | qed (simp add: R) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 946 | qed | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 947 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 948 | end | 
| 13940 | 949 | |
| 69597 | 950 | text\<open>The following lemmas also can be lifted to \<^term>\<open>UP_ring\<close>.\<close> | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 951 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 952 | context UP_ring | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 953 | begin | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 954 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 955 | lemma coeff_finsum: | 
| 13940 | 956 | assumes fin: "finite A" | 
| 61384 | 957 | shows "p \<in> A \<rightarrow> carrier P ==> | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 958 | coeff P (finsum P p A) k = (\<Oplus>i \<in> A. coeff P (p i) k)" | 
| 13940 | 959 | using fin by induct (auto simp: Pi_def) | 
| 960 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 961 | lemma up_repr: | 
| 13940 | 962 | assumes R: "p \<in> carrier P" | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 963 |   shows "(\<Oplus>\<^bsub>P\<^esub> i \<in> {..deg R p}. monom P (coeff P p i) i) = p"
 | 
| 13940 | 964 | proof (rule up_eqI) | 
| 64913 | 965 | let ?s = "(\<lambda>i. monom P (coeff P p i) i)" | 
| 13940 | 966 | fix k | 
| 967 | from R have RR: "!!i. (if i = k then coeff P p i else \<zero>) \<in> carrier R" | |
| 968 | by simp | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 969 |   show "coeff P (\<Oplus>\<^bsub>P\<^esub> i \<in> {..deg R p}. ?s i) k = coeff P p k"
 | 
| 67091 | 970 | proof (cases "k \<le> deg R p") | 
| 13940 | 971 | case True | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 972 |     hence "coeff P (\<Oplus>\<^bsub>P\<^esub> i \<in> {..deg R p}. ?s i) k =
 | 
| 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 973 |           coeff P (\<Oplus>\<^bsub>P\<^esub> i \<in> {..k} \<union> {k<..deg R p}. ?s i) k"
 | 
| 13940 | 974 | by (simp only: ivl_disj_un_one) | 
| 975 | also from True | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 976 |     have "... = coeff P (\<Oplus>\<^bsub>P\<^esub> i \<in> {..k}. ?s i) k"
 | 
| 17094 | 977 | by (simp cong: R.finsum_cong add: R.finsum_Un_disjoint | 
| 14666 | 978 | ivl_disj_int_one order_less_imp_not_eq2 coeff_finsum R RR Pi_def) | 
| 13940 | 979 | also | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 980 |     have "... = coeff P (\<Oplus>\<^bsub>P\<^esub> i \<in> {..<k} \<union> {k}. ?s i) k"
 | 
| 13940 | 981 | by (simp only: ivl_disj_un_singleton) | 
| 982 | also have "... = coeff P p k" | |
| 32456 
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
 nipkow parents: 
32436diff
changeset | 983 | by (simp cong: R.finsum_cong add: coeff_finsum deg_aboveD R RR Pi_def) | 
| 13940 | 984 | finally show ?thesis . | 
| 985 | next | |
| 986 | case False | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 987 |     hence "coeff P (\<Oplus>\<^bsub>P\<^esub> i \<in> {..deg R p}. ?s i) k =
 | 
| 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 988 |           coeff P (\<Oplus>\<^bsub>P\<^esub> i \<in> {..<deg R p} \<union> {deg R p}. ?s i) k"
 | 
| 13940 | 989 | by (simp only: ivl_disj_un_singleton) | 
| 990 | also from False have "... = coeff P p k" | |
| 32456 
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
 nipkow parents: 
32436diff
changeset | 991 | by (simp cong: R.finsum_cong add: coeff_finsum deg_aboveD R Pi_def) | 
| 13940 | 992 | finally show ?thesis . | 
| 993 | qed | |
| 994 | qed (simp_all add: R Pi_def) | |
| 995 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 996 | lemma up_repr_le: | 
| 13940 | 997 | "[| deg R p <= n; p \<in> carrier P |] ==> | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 998 |   (\<Oplus>\<^bsub>P\<^esub> i \<in> {..n}. monom P (coeff P p i) i) = p"
 | 
| 13940 | 999 | proof - | 
| 64913 | 1000 | let ?s = "(\<lambda>i. monom P (coeff P p i) i)" | 
| 13940 | 1001 | assume R: "p \<in> carrier P" and "deg R p <= n" | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1002 |   then have "finsum P ?s {..n} = finsum P ?s ({..deg R p} \<union> {deg R p<..n})"
 | 
| 13940 | 1003 | by (simp only: ivl_disj_un_one) | 
| 1004 |   also have "... = finsum P ?s {..deg R p}"
 | |
| 17094 | 1005 | by (simp cong: P.finsum_cong add: P.finsum_Un_disjoint ivl_disj_int_one | 
| 13940 | 1006 | deg_aboveD R Pi_def) | 
| 23350 | 1007 | also have "... = p" using R by (rule up_repr) | 
| 13940 | 1008 | finally show ?thesis . | 
| 1009 | qed | |
| 1010 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1011 | end | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1012 | |
| 17094 | 1013 | |
| 61382 | 1014 | subsection \<open>Polynomials over Integral Domains\<close> | 
| 13940 | 1015 | |
| 1016 | lemma domainI: | |
| 1017 | assumes cring: "cring R" | |
| 67091 | 1018 | and one_not_zero: "one R \<noteq> zero R" | 
| 1019 | and integral: "\<And>a b. [| mult R a b = zero R; a \<in> carrier R; | |
| 1020 | b \<in> carrier R |] ==> a = zero R \<or> b = zero R" | |
| 13940 | 1021 | shows "domain R" | 
| 27714 
27b4d7c01f8b
Tuned (for the sake of a meaningless log entry).
 ballarin parents: 
27611diff
changeset | 1022 | by (auto intro!: domain.intro domain_axioms.intro cring.axioms assms | 
| 13940 | 1023 | del: disjCI) | 
| 1024 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1025 | context UP_domain | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1026 | begin | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1027 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1028 | lemma UP_one_not_zero: | 
| 67091 | 1029 | "\<one>\<^bsub>P\<^esub> \<noteq> \<zero>\<^bsub>P\<^esub>" | 
| 13940 | 1030 | proof | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1031 | assume "\<one>\<^bsub>P\<^esub> = \<zero>\<^bsub>P\<^esub>" | 
| 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1032 | hence "coeff P \<one>\<^bsub>P\<^esub> 0 = (coeff P \<zero>\<^bsub>P\<^esub> 0)" by simp | 
| 13940 | 1033 | hence "\<one> = \<zero>" by simp | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1034 | with R.one_not_zero show "False" by contradiction | 
| 13940 | 1035 | qed | 
| 1036 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1037 | lemma UP_integral: | 
| 67091 | 1038 | "[| p \<otimes>\<^bsub>P\<^esub> q = \<zero>\<^bsub>P\<^esub>; p \<in> carrier P; q \<in> carrier P |] ==> p = \<zero>\<^bsub>P\<^esub> \<or> q = \<zero>\<^bsub>P\<^esub>" | 
| 13940 | 1039 | proof - | 
| 1040 | fix p q | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1041 | assume pq: "p \<otimes>\<^bsub>P\<^esub> q = \<zero>\<^bsub>P\<^esub>" and R: "p \<in> carrier P" "q \<in> carrier P" | 
| 67091 | 1042 | show "p = \<zero>\<^bsub>P\<^esub> \<or> q = \<zero>\<^bsub>P\<^esub>" | 
| 13940 | 1043 | proof (rule classical) | 
| 67091 | 1044 | assume c: "\<not> (p = \<zero>\<^bsub>P\<^esub> \<or> q = \<zero>\<^bsub>P\<^esub>)" | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1045 | with R have "deg R p + deg R q = deg R (p \<otimes>\<^bsub>P\<^esub> q)" by simp | 
| 13940 | 1046 | also from pq have "... = 0" by simp | 
| 1047 | finally have "deg R p + deg R q = 0" . | |
| 67091 | 1048 | then have f1: "deg R p = 0 \<and> deg R q = 0" by simp | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1049 |     from f1 R have "p = (\<Oplus>\<^bsub>P\<^esub> i \<in> {..0}. monom P (coeff P p i) i)"
 | 
| 13940 | 1050 | by (simp only: up_repr_le) | 
| 1051 | also from R have "... = monom P (coeff P p 0) 0" by simp | |
| 1052 | finally have p: "p = monom P (coeff P p 0) 0" . | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1053 |     from f1 R have "q = (\<Oplus>\<^bsub>P\<^esub> i \<in> {..0}. monom P (coeff P q i) i)"
 | 
| 13940 | 1054 | by (simp only: up_repr_le) | 
| 1055 | also from R have "... = monom P (coeff P q 0) 0" by simp | |
| 1056 | finally have q: "q = monom P (coeff P q 0) 0" . | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1057 | from R have "coeff P p 0 \<otimes> coeff P q 0 = coeff P (p \<otimes>\<^bsub>P\<^esub> q) 0" by simp | 
| 13940 | 1058 | also from pq have "... = \<zero>" by simp | 
| 1059 | finally have "coeff P p 0 \<otimes> coeff P q 0 = \<zero>" . | |
| 67091 | 1060 | with R have "coeff P p 0 = \<zero> \<or> coeff P q 0 = \<zero>" | 
| 13940 | 1061 | by (simp add: R.integral_iff) | 
| 67091 | 1062 | with p q show "p = \<zero>\<^bsub>P\<^esub> \<or> q = \<zero>\<^bsub>P\<^esub>" by fastforce | 
| 13940 | 1063 | qed | 
| 1064 | qed | |
| 1065 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1066 | theorem UP_domain: | 
| 13940 | 1067 | "domain P" | 
| 1068 | by (auto intro!: domainI UP_cring UP_one_not_zero UP_integral del: disjCI) | |
| 1069 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1070 | end | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1071 | |
| 61382 | 1072 | text \<open> | 
| 69597 | 1073 | Interpretation of theorems from \<^term>\<open>domain\<close>. | 
| 61382 | 1074 | \<close> | 
| 13940 | 1075 | |
| 29237 | 1076 | sublocale UP_domain < "domain" P | 
| 19984 
29bb4659f80a
Method intro_locales replaced by intro_locales and unfold_locales.
 ballarin parents: 
19931diff
changeset | 1077 | by intro_locales (rule domain.axioms UP_domain)+ | 
| 13940 | 1078 | |
| 14666 | 1079 | |
| 61382 | 1080 | subsection \<open>The Evaluation Homomorphism and Universal Property\<close> | 
| 13940 | 1081 | |
| 14666 | 1082 | (* alternative congruence rule (possibly more efficient) | 
| 1083 | lemma (in abelian_monoid) finsum_cong2: | |
| 1084 | "[| !!i. i \<in> A ==> f i \<in> carrier G = True; A = B; | |
| 1085 | !!i. i \<in> B ==> f i = g i |] ==> finsum G f A = finsum G g B" | |
| 1086 | sorry*) | |
| 1087 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1088 | lemma (in abelian_monoid) boundD_carrier: | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1089 | "[| bound \<zero> n f; n < m |] ==> f m \<in> carrier G" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1090 | by auto | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1091 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1092 | context ring | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1093 | begin | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1094 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1095 | theorem diagonal_sum: | 
| 61384 | 1096 |   "[| f \<in> {..n + m::nat} \<rightarrow> carrier R; g \<in> {..n + m} \<rightarrow> carrier R |] ==>
 | 
| 14666 | 1097 |   (\<Oplus>k \<in> {..n + m}. \<Oplus>i \<in> {..k}. f i \<otimes> g (k - i)) =
 | 
| 1098 |   (\<Oplus>k \<in> {..n + m}. \<Oplus>i \<in> {..n + m - k}. f k \<otimes> g i)"
 | |
| 13940 | 1099 | proof - | 
| 61384 | 1100 |   assume Rf: "f \<in> {..n + m} \<rightarrow> carrier R" and Rg: "g \<in> {..n + m} \<rightarrow> carrier R"
 | 
| 13940 | 1101 |   {
 | 
| 1102 | fix j | |
| 1103 | have "j <= n + m ==> | |
| 14666 | 1104 |       (\<Oplus>k \<in> {..j}. \<Oplus>i \<in> {..k}. f i \<otimes> g (k - i)) =
 | 
| 1105 |       (\<Oplus>k \<in> {..j}. \<Oplus>i \<in> {..j - k}. f k \<otimes> g i)"
 | |
| 13940 | 1106 | proof (induct j) | 
| 1107 | case 0 from Rf Rg show ?case by (simp add: Pi_def) | |
| 1108 | next | |
| 14666 | 1109 | case (Suc j) | 
| 13940 | 1110 | have R6: "!!i k. [| k <= j; i <= Suc j - k |] ==> g i \<in> carrier R" | 
| 20217 
25b068a99d2b
linear arithmetic splits certain operators (e.g. min, max, abs)
 webertj parents: 
19984diff
changeset | 1111 | using Suc by (auto intro!: funcset_mem [OF Rg]) | 
| 13940 | 1112 | have R8: "!!i k. [| k <= Suc j; i <= k |] ==> g (k - i) \<in> carrier R" | 
| 20217 
25b068a99d2b
linear arithmetic splits certain operators (e.g. min, max, abs)
 webertj parents: 
19984diff
changeset | 1113 | using Suc by (auto intro!: funcset_mem [OF Rg]) | 
| 13940 | 1114 | have R9: "!!i k. [| k <= Suc j |] ==> f k \<in> carrier R" | 
| 14666 | 1115 | using Suc by (auto intro!: funcset_mem [OF Rf]) | 
| 13940 | 1116 | have R10: "!!i k. [| k <= Suc j; i <= Suc j - k |] ==> g i \<in> carrier R" | 
| 20217 
25b068a99d2b
linear arithmetic splits certain operators (e.g. min, max, abs)
 webertj parents: 
19984diff
changeset | 1117 | using Suc by (auto intro!: funcset_mem [OF Rg]) | 
| 13940 | 1118 | have R11: "g 0 \<in> carrier R" | 
| 14666 | 1119 | using Suc by (auto intro!: funcset_mem [OF Rg]) | 
| 13940 | 1120 | from Suc show ?case | 
| 14666 | 1121 | by (simp cong: finsum_cong add: Suc_diff_le a_ac | 
| 1122 | Pi_def R6 R8 R9 R10 R11) | |
| 13940 | 1123 | qed | 
| 1124 | } | |
| 1125 | then show ?thesis by fast | |
| 1126 | qed | |
| 1127 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1128 | theorem cauchy_product: | 
| 13940 | 1129 | assumes bf: "bound \<zero> n f" and bg: "bound \<zero> m g" | 
| 61384 | 1130 |     and Rf: "f \<in> {..n} \<rightarrow> carrier R" and Rg: "g \<in> {..m} \<rightarrow> carrier R"
 | 
| 14666 | 1131 |   shows "(\<Oplus>k \<in> {..n + m}. \<Oplus>i \<in> {..k}. f i \<otimes> g (k - i)) =
 | 
| 17094 | 1132 |     (\<Oplus>i \<in> {..n}. f i) \<otimes> (\<Oplus>i \<in> {..m}. g i)"      (* State reverse direction? *)
 | 
| 13940 | 1133 | proof - | 
| 1134 | have f: "!!x. f x \<in> carrier R" | |
| 1135 | proof - | |
| 1136 | fix x | |
| 1137 | show "f x \<in> carrier R" | |
| 1138 | using Rf bf boundD_carrier by (cases "x <= n") (auto simp: Pi_def) | |
| 1139 | qed | |
| 1140 | have g: "!!x. g x \<in> carrier R" | |
| 1141 | proof - | |
| 1142 | fix x | |
| 1143 | show "g x \<in> carrier R" | |
| 1144 | using Rg bg boundD_carrier by (cases "x <= m") (auto simp: Pi_def) | |
| 1145 | qed | |
| 14666 | 1146 |   from f g have "(\<Oplus>k \<in> {..n + m}. \<Oplus>i \<in> {..k}. f i \<otimes> g (k - i)) =
 | 
| 1147 |       (\<Oplus>k \<in> {..n + m}. \<Oplus>i \<in> {..n + m - k}. f k \<otimes> g i)"
 | |
| 13940 | 1148 | by (simp add: diagonal_sum Pi_def) | 
| 15045 | 1149 |   also have "... = (\<Oplus>k \<in> {..n} \<union> {n<..n + m}. \<Oplus>i \<in> {..n + m - k}. f k \<otimes> g i)"
 | 
| 13940 | 1150 | by (simp only: ivl_disj_un_one) | 
| 14666 | 1151 |   also from f g have "... = (\<Oplus>k \<in> {..n}. \<Oplus>i \<in> {..n + m - k}. f k \<otimes> g i)"
 | 
| 13940 | 1152 | by (simp cong: finsum_cong | 
| 14666 | 1153 | add: bound.bound [OF bf] finsum_Un_disjoint ivl_disj_int_one Pi_def) | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1154 | also from f g | 
| 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1155 |   have "... = (\<Oplus>k \<in> {..n}. \<Oplus>i \<in> {..m} \<union> {m<..n + m - k}. f k \<otimes> g i)"
 | 
| 13940 | 1156 | by (simp cong: finsum_cong add: ivl_disj_un_one le_add_diff Pi_def) | 
| 14666 | 1157 |   also from f g have "... = (\<Oplus>k \<in> {..n}. \<Oplus>i \<in> {..m}. f k \<otimes> g i)"
 | 
| 13940 | 1158 | by (simp cong: finsum_cong | 
| 14666 | 1159 | add: bound.bound [OF bg] finsum_Un_disjoint ivl_disj_int_one Pi_def) | 
| 1160 |   also from f g have "... = (\<Oplus>i \<in> {..n}. f i) \<otimes> (\<Oplus>i \<in> {..m}. g i)"
 | |
| 13940 | 1161 | by (simp add: finsum_ldistr diagonal_sum Pi_def, | 
| 1162 | simp cong: finsum_cong add: finsum_rdistr Pi_def) | |
| 1163 | finally show ?thesis . | |
| 1164 | qed | |
| 1165 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1166 | end | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1167 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1168 | lemma (in UP_ring) const_ring_hom: | 
| 64913 | 1169 | "(\<lambda>a. monom P a 0) \<in> ring_hom R P" | 
| 13940 | 1170 | by (auto intro!: ring_hom_memI intro: up_eqI simp: monom_mult_is_smult) | 
| 1171 | ||
| 27933 | 1172 | definition | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1173 |   eval :: "[('a, 'm) ring_scheme, ('b, 'n) ring_scheme,
 | 
| 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1174 | 'a => 'b, 'b, nat => 'a] => 'b" | 
| 35848 
5443079512ea
slightly more uniform definitions -- eliminated old-style meta-equality;
 wenzelm parents: 
34915diff
changeset | 1175 | where "eval R S phi s = (\<lambda>p \<in> carrier (UP R). | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1176 |     \<Oplus>\<^bsub>S\<^esub>i \<in> {..deg R p}. phi (coeff (UP R) p i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i)"
 | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1177 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1178 | context UP | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1179 | begin | 
| 14666 | 1180 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1181 | lemma eval_on_carrier: | 
| 19783 | 1182 | fixes S (structure) | 
| 17094 | 1183 | shows "p \<in> carrier P ==> | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1184 |   eval R S phi s p = (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R p}. phi (coeff P p i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i)"
 | 
| 13940 | 1185 | by (unfold eval_def, fold P_def) simp | 
| 1186 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1187 | lemma eval_extensional: | 
| 17094 | 1188 | "eval R S phi p \<in> extensional (carrier P)" | 
| 13940 | 1189 | by (unfold eval_def, fold P_def) simp | 
| 1190 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1191 | end | 
| 17094 | 1192 | |
| 61382 | 1193 | text \<open>The universal property of the polynomial ring\<close> | 
| 17094 | 1194 | |
| 29240 | 1195 | locale UP_pre_univ_prop = ring_hom_cring + UP_cring | 
| 1196 | ||
| 19783 | 1197 | locale UP_univ_prop = UP_pre_univ_prop + | 
| 1198 | fixes s and Eval | |
| 17094 | 1199 | assumes indet_img_carrier [simp, intro]: "s \<in> carrier S" | 
| 1200 | defines Eval_def: "Eval == eval R S h s" | |
| 1201 | ||
| 69597 | 1202 | text\<open>JE: I have moved the following lemma from Ring.thy and lifted then to the locale \<^term>\<open>ring_hom_ring\<close> from \<^term>\<open>ring_hom_cring\<close>.\<close> | 
| 64913 | 1203 | text\<open>JE: I was considering using it in \<open>eval_ring_hom\<close>, but that property does not hold for non commutative rings, so | 
| 61382 | 1204 | maybe it is not that necessary.\<close> | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1205 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1206 | lemma (in ring_hom_ring) hom_finsum [simp]: | 
| 67091 | 1207 | "f \<in> A \<rightarrow> carrier R \<Longrightarrow> | 
| 1208 | h (finsum R f A) = finsum S (h \<circ> f) A" | |
| 60112 
3eab4acaa035
finprod takes 1 in case of infinite sets => remove several "finite A" assumptions
 Rene Thiemann <rene.thiemann@uibk.ac.at> parents: 
58622diff
changeset | 1209 | by (induct A rule: infinite_finite_induct, auto simp: Pi_def) | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1210 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1211 | context UP_pre_univ_prop | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1212 | begin | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1213 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1214 | theorem eval_ring_hom: | 
| 17094 | 1215 | assumes S: "s \<in> carrier S" | 
| 1216 | shows "eval R S h s \<in> ring_hom P S" | |
| 13940 | 1217 | proof (rule ring_hom_memI) | 
| 1218 | fix p | |
| 17094 | 1219 | assume R: "p \<in> carrier P" | 
| 13940 | 1220 | then show "eval R S h s p \<in> carrier S" | 
| 17094 | 1221 | by (simp only: eval_on_carrier) (simp add: S Pi_def) | 
| 13940 | 1222 | next | 
| 1223 | fix p q | |
| 17094 | 1224 | assume R: "p \<in> carrier P" "q \<in> carrier P" | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1225 | then show "eval R S h s (p \<oplus>\<^bsub>P\<^esub> q) = eval R S h s p \<oplus>\<^bsub>S\<^esub> eval R S h s q" | 
| 17094 | 1226 | proof (simp only: eval_on_carrier P.a_closed) | 
| 1227 | from S R have | |
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1228 |       "(\<Oplus>\<^bsub>S \<^esub>i\<in>{..deg R (p \<oplus>\<^bsub>P\<^esub> q)}. h (coeff P (p \<oplus>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i) =
 | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1229 |       (\<Oplus>\<^bsub>S \<^esub>i\<in>{..deg R (p \<oplus>\<^bsub>P\<^esub> q)} \<union> {deg R (p \<oplus>\<^bsub>P\<^esub> q)<..max (deg R p) (deg R q)}.
 | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1230 | h (coeff P (p \<oplus>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i)" | 
| 17094 | 1231 | by (simp cong: S.finsum_cong | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1232 | add: deg_aboveD S.finsum_Un_disjoint ivl_disj_int_one Pi_def del: coeff_add) | 
| 17094 | 1233 | also from R have "... = | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1234 |         (\<Oplus>\<^bsub>S\<^esub> i \<in> {..max (deg R p) (deg R q)}.
 | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1235 | h (coeff P (p \<oplus>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i)" | 
| 13940 | 1236 | by (simp add: ivl_disj_un_one) | 
| 17094 | 1237 | also from R S have "... = | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1238 |       (\<Oplus>\<^bsub>S\<^esub>i\<in>{..max (deg R p) (deg R q)}. h (coeff P p i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i) \<oplus>\<^bsub>S\<^esub>
 | 
| 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1239 |       (\<Oplus>\<^bsub>S\<^esub>i\<in>{..max (deg R p) (deg R q)}. h (coeff P q i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i)"
 | 
| 17094 | 1240 | by (simp cong: S.finsum_cong | 
| 1241 | add: S.l_distr deg_aboveD ivl_disj_int_one Pi_def) | |
| 13940 | 1242 | also have "... = | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1243 |         (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R p} \<union> {deg R p<..max (deg R p) (deg R q)}.
 | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1244 | h (coeff P p i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i) \<oplus>\<^bsub>S\<^esub> | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1245 |         (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R q} \<union> {deg R q<..max (deg R p) (deg R q)}.
 | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1246 | h (coeff P q i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i)" | 
| 54863 
82acc20ded73
prefer more canonical names for lemmas on min/max
 haftmann parents: 
49962diff
changeset | 1247 | by (simp only: ivl_disj_un_one max.cobounded1 max.cobounded2) | 
| 17094 | 1248 | also from R S have "... = | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1249 |       (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R p}. h (coeff P p i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i) \<oplus>\<^bsub>S\<^esub>
 | 
| 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1250 |       (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R q}. h (coeff P q i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i)"
 | 
| 17094 | 1251 | by (simp cong: S.finsum_cong | 
| 1252 | add: deg_aboveD S.finsum_Un_disjoint ivl_disj_int_one Pi_def) | |
| 13940 | 1253 | finally show | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1254 |       "(\<Oplus>\<^bsub>S\<^esub>i \<in> {..deg R (p \<oplus>\<^bsub>P\<^esub> q)}. h (coeff P (p \<oplus>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i) =
 | 
| 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1255 |       (\<Oplus>\<^bsub>S\<^esub>i \<in> {..deg R p}. h (coeff P p i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i) \<oplus>\<^bsub>S\<^esub>
 | 
| 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1256 |       (\<Oplus>\<^bsub>S\<^esub>i \<in> {..deg R q}. h (coeff P q i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i)" .
 | 
| 13940 | 1257 | qed | 
| 1258 | next | |
| 17094 | 1259 | show "eval R S h s \<one>\<^bsub>P\<^esub> = \<one>\<^bsub>S\<^esub>" | 
| 13940 | 1260 | by (simp only: eval_on_carrier UP_one_closed) simp | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1261 | next | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1262 | fix p q | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1263 | assume R: "p \<in> carrier P" "q \<in> carrier P" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1264 | then show "eval R S h s (p \<otimes>\<^bsub>P\<^esub> q) = eval R S h s p \<otimes>\<^bsub>S\<^esub> eval R S h s q" | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1265 | proof (simp only: eval_on_carrier UP_mult_closed) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1266 | from R S have | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1267 |       "(\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R (p \<otimes>\<^bsub>P\<^esub> q)}. h (coeff P (p \<otimes>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i) =
 | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1268 |       (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R (p \<otimes>\<^bsub>P\<^esub> q)} \<union> {deg R (p \<otimes>\<^bsub>P\<^esub> q)<..deg R p + deg R q}.
 | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1269 | h (coeff P (p \<otimes>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i)" | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1270 | by (simp cong: S.finsum_cong | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1271 | add: deg_aboveD S.finsum_Un_disjoint ivl_disj_int_one Pi_def | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1272 | del: coeff_mult) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1273 | also from R have "... = | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1274 |       (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R p + deg R q}. h (coeff P (p \<otimes>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i)"
 | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1275 | by (simp only: ivl_disj_un_one deg_mult_ring) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1276 | also from R S have "... = | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1277 |       (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R p + deg R q}.
 | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1278 |          \<Oplus>\<^bsub>S\<^esub> k \<in> {..i}.
 | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1279 | h (coeff P p k) \<otimes>\<^bsub>S\<^esub> h (coeff P q (i - k)) \<otimes>\<^bsub>S\<^esub> | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1280 | (s [^]\<^bsub>S\<^esub> k \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> (i - k)))" | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1281 | by (simp cong: S.finsum_cong add: S.nat_pow_mult Pi_def | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1282 | S.m_ac S.finsum_rdistr) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1283 | also from R S have "... = | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1284 |       (\<Oplus>\<^bsub>S\<^esub> i\<in>{..deg R p}. h (coeff P p i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i) \<otimes>\<^bsub>S\<^esub>
 | 
| 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1285 |       (\<Oplus>\<^bsub>S\<^esub> i\<in>{..deg R q}. h (coeff P q i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i)"
 | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1286 | by (simp add: S.cauchy_product [THEN sym] bound.intro deg_aboveD S.m_ac | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1287 | Pi_def) | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1288 | finally show | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1289 |       "(\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R (p \<otimes>\<^bsub>P\<^esub> q)}. h (coeff P (p \<otimes>\<^bsub>P\<^esub> q) i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i) =
 | 
| 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1290 |       (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R p}. h (coeff P p i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i) \<otimes>\<^bsub>S\<^esub>
 | 
| 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1291 |       (\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R q}. h (coeff P q i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i)" .
 | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1292 | qed | 
| 13940 | 1293 | qed | 
| 1294 | ||
| 61382 | 1295 | text \<open> | 
| 63167 | 1296 | The following lemma could be proved in \<open>UP_cring\<close> with the additional | 
| 1297 | assumption that \<open>h\<close> is closed.\<close> | |
| 13940 | 1298 | |
| 17094 | 1299 | lemma (in UP_pre_univ_prop) eval_const: | 
| 13940 | 1300 | "[| s \<in> carrier S; r \<in> carrier R |] ==> eval R S h s (monom P r 0) = h r" | 
| 1301 | by (simp only: eval_on_carrier monom_closed) simp | |
| 1302 | ||
| 61382 | 1303 | text \<open>Further properties of the evaluation homomorphism.\<close> | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1304 | |
| 61382 | 1305 | text \<open>The following proof is complicated by the fact that in arbitrary | 
| 69597 | 1306 | rings one might have \<^term>\<open>one R = zero R\<close>.\<close> | 
| 13940 | 1307 | |
| 1308 | (* TODO: simplify by cases "one R = zero R" *) | |
| 1309 | ||
| 17094 | 1310 | lemma (in UP_pre_univ_prop) eval_monom1: | 
| 1311 | assumes S: "s \<in> carrier S" | |
| 1312 | shows "eval R S h s (monom P \<one> 1) = s" | |
| 13940 | 1313 | proof (simp only: eval_on_carrier monom_closed R.one_closed) | 
| 17094 | 1314 | from S have | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1315 |     "(\<Oplus>\<^bsub>S\<^esub> i\<in>{..deg R (monom P \<one> 1)}. h (coeff P (monom P \<one> 1) i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i) =
 | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1316 |     (\<Oplus>\<^bsub>S\<^esub> i\<in>{..deg R (monom P \<one> 1)} \<union> {deg R (monom P \<one> 1)<..1}.
 | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1317 | h (coeff P (monom P \<one> 1) i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i)" | 
| 17094 | 1318 | by (simp cong: S.finsum_cong del: coeff_monom | 
| 1319 | add: deg_aboveD S.finsum_Un_disjoint ivl_disj_int_one Pi_def) | |
| 14666 | 1320 | also have "... = | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1321 |     (\<Oplus>\<^bsub>S\<^esub> i \<in> {..1}. h (coeff P (monom P \<one> 1) i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i)"
 | 
| 13940 | 1322 | by (simp only: ivl_disj_un_one deg_monom_le R.one_closed) | 
| 1323 | also have "... = s" | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1324 | proof (cases "s = \<zero>\<^bsub>S\<^esub>") | 
| 13940 | 1325 | case True then show ?thesis by (simp add: Pi_def) | 
| 1326 | next | |
| 17094 | 1327 | case False then show ?thesis by (simp add: S Pi_def) | 
| 13940 | 1328 | qed | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1329 |   finally show "(\<Oplus>\<^bsub>S\<^esub> i \<in> {..deg R (monom P \<one> 1)}.
 | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1330 | h (coeff P (monom P \<one> 1) i) \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> i) = s" . | 
| 13940 | 1331 | qed | 
| 1332 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1333 | end | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1334 | |
| 61382 | 1335 | text \<open>Interpretation of ring homomorphism lemmas.\<close> | 
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1336 | |
| 29237 | 1337 | sublocale UP_univ_prop < ring_hom_cring P S Eval | 
| 36092 | 1338 | unfolding Eval_def | 
| 1339 | by unfold_locales (fast intro: eval_ring_hom) | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1340 | |
| 13940 | 1341 | lemma (in UP_cring) monom_pow: | 
| 1342 | assumes R: "a \<in> carrier R" | |
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1343 | shows "(monom P a n) [^]\<^bsub>P\<^esub> m = monom P (a [^] m) (n * m)" | 
| 13940 | 1344 | proof (induct m) | 
| 1345 | case 0 from R show ?case by simp | |
| 1346 | next | |
| 1347 | case Suc with R show ?case | |
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
55926diff
changeset | 1348 | by (simp del: monom_mult add: monom_mult [THEN sym] add.commute) | 
| 13940 | 1349 | qed | 
| 1350 | ||
| 1351 | lemma (in ring_hom_cring) hom_pow [simp]: | |
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1352 | "x \<in> carrier R ==> h (x [^] n) = h x [^]\<^bsub>S\<^esub> (n::nat)" | 
| 13940 | 1353 | by (induct n) simp_all | 
| 1354 | ||
| 17094 | 1355 | lemma (in UP_univ_prop) Eval_monom: | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1356 | "r \<in> carrier R ==> Eval (monom P r n) = h r \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> n" | 
| 13940 | 1357 | proof - | 
| 17094 | 1358 | assume R: "r \<in> carrier R" | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1359 | from R have "Eval (monom P r n) = Eval (monom P r 0 \<otimes>\<^bsub>P\<^esub> (monom P \<one> 1) [^]\<^bsub>P\<^esub> n)" | 
| 17094 | 1360 | by (simp del: monom_mult add: monom_mult [THEN sym] monom_pow) | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1361 | also | 
| 17094 | 1362 | from R eval_monom1 [where s = s, folded Eval_def] | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1363 | have "... = h r \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> n" | 
| 17094 | 1364 | by (simp add: eval_const [where s = s, folded Eval_def]) | 
| 13940 | 1365 | finally show ?thesis . | 
| 1366 | qed | |
| 1367 | ||
| 17094 | 1368 | lemma (in UP_pre_univ_prop) eval_monom: | 
| 1369 | assumes R: "r \<in> carrier R" and S: "s \<in> carrier S" | |
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1370 | shows "eval R S h s (monom P r n) = h r \<otimes>\<^bsub>S\<^esub> s [^]\<^bsub>S\<^esub> n" | 
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1371 | proof - | 
| 29237 | 1372 | interpret UP_univ_prop R S h P s "eval R S h s" | 
| 26202 | 1373 | using UP_pre_univ_prop_axioms P_def R S | 
| 22931 | 1374 | by (auto intro: UP_univ_prop.intro UP_univ_prop_axioms.intro) | 
| 17094 | 1375 | from R | 
| 1376 | show ?thesis by (rule Eval_monom) | |
| 1377 | qed | |
| 1378 | ||
| 1379 | lemma (in UP_univ_prop) Eval_smult: | |
| 1380 | "[| r \<in> carrier R; p \<in> carrier P |] ==> Eval (r \<odot>\<^bsub>P\<^esub> p) = h r \<otimes>\<^bsub>S\<^esub> Eval p" | |
| 1381 | proof - | |
| 1382 | assume R: "r \<in> carrier R" and P: "p \<in> carrier P" | |
| 1383 | then show ?thesis | |
| 1384 | by (simp add: monom_mult_is_smult [THEN sym] | |
| 1385 | eval_const [where s = s, folded Eval_def]) | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1386 | qed | 
| 13940 | 1387 | |
| 1388 | lemma ring_hom_cringI: | |
| 1389 | assumes "cring R" | |
| 1390 | and "cring S" | |
| 1391 | and "h \<in> ring_hom R S" | |
| 1392 | shows "ring_hom_cring R S h" | |
| 1393 | by (fast intro: ring_hom_cring.intro ring_hom_cring_axioms.intro | |
| 27714 
27b4d7c01f8b
Tuned (for the sake of a meaningless log entry).
 ballarin parents: 
27611diff
changeset | 1394 | cring.axioms assms) | 
| 13940 | 1395 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1396 | context UP_pre_univ_prop | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1397 | begin | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1398 | |
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1399 | lemma UP_hom_unique: | 
| 27611 | 1400 | assumes "ring_hom_cring P S Phi" | 
| 17094 | 1401 | assumes Phi: "Phi (monom P \<one> (Suc 0)) = s" | 
| 13940 | 1402 | "!!r. r \<in> carrier R ==> Phi (monom P r 0) = h r" | 
| 27611 | 1403 | assumes "ring_hom_cring P S Psi" | 
| 17094 | 1404 | assumes Psi: "Psi (monom P \<one> (Suc 0)) = s" | 
| 13940 | 1405 | "!!r. r \<in> carrier R ==> Psi (monom P r 0) = h r" | 
| 17094 | 1406 | and P: "p \<in> carrier P" and S: "s \<in> carrier S" | 
| 13940 | 1407 | shows "Phi p = Psi p" | 
| 1408 | proof - | |
| 29237 | 1409 | interpret ring_hom_cring P S Phi by fact | 
| 1410 | interpret ring_hom_cring P S Psi by fact | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1411 | have "Phi p = | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1412 |       Phi (\<Oplus>\<^bsub>P \<^esub>i \<in> {..deg R p}. monom P (coeff P p i) 0 \<otimes>\<^bsub>P\<^esub> monom P \<one> 1 [^]\<^bsub>P\<^esub> i)"
 | 
| 17094 | 1413 | by (simp add: up_repr P monom_mult [THEN sym] monom_pow del: monom_mult) | 
| 15696 | 1414 | also | 
| 1415 | have "... = | |
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1416 |       Psi (\<Oplus>\<^bsub>P \<^esub>i\<in>{..deg R p}. monom P (coeff P p i) 0 \<otimes>\<^bsub>P\<^esub> monom P \<one> 1 [^]\<^bsub>P\<^esub> i)"
 | 
| 17094 | 1417 | by (simp add: Phi Psi P Pi_def comp_def) | 
| 13940 | 1418 | also have "... = Psi p" | 
| 17094 | 1419 | by (simp add: up_repr P monom_mult [THEN sym] monom_pow del: monom_mult) | 
| 13940 | 1420 | finally show ?thesis . | 
| 1421 | qed | |
| 1422 | ||
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1423 | lemma ring_homD: | 
| 17094 | 1424 | assumes Phi: "Phi \<in> ring_hom P S" | 
| 1425 | shows "ring_hom_cring P S Phi" | |
| 36092 | 1426 | by unfold_locales (rule Phi) | 
| 17094 | 1427 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1428 | theorem UP_universal_property: | 
| 17094 | 1429 | assumes S: "s \<in> carrier S" | 
| 67091 | 1430 | shows "\<exists>!Phi. Phi \<in> ring_hom P S \<inter> extensional (carrier P) \<and> | 
| 1431 | Phi (monom P \<one> 1) = s \<and> | |
| 1432 | (\<forall>r \<in> carrier R. Phi (monom P r 0) = h r)" | |
| 17094 | 1433 | using S eval_monom1 | 
| 13940 | 1434 | apply (auto intro: eval_ring_hom eval_const eval_extensional) | 
| 14666 | 1435 | apply (rule extensionalityI) | 
| 17094 | 1436 | apply (auto intro: UP_hom_unique ring_homD) | 
| 14666 | 1437 | done | 
| 13940 | 1438 | |
| 27717 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1439 | end | 
| 
21bbd410ba04
Generalised polynomial lemmas from cring to ring.
 ballarin parents: 
27714diff
changeset | 1440 | |
| 61382 | 1441 | text\<open>JE: The following lemma was added by me; it might be even lifted to a simpler locale\<close> | 
| 27933 | 1442 | |
| 1443 | context monoid | |
| 1444 | begin | |
| 1445 | ||
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1446 | lemma nat_pow_eone[simp]: assumes x_in_G: "x \<in> carrier G" shows "x [^] (1::nat) = x" | 
| 27933 | 1447 | using nat_pow_Suc [of x 0] unfolding nat_pow_0 [of x] unfolding l_one [OF x_in_G] by simp | 
| 1448 | ||
| 1449 | end | |
| 1450 | ||
| 1451 | context UP_ring | |
| 1452 | begin | |
| 1453 | ||
| 1454 | abbreviation lcoeff :: "(nat =>'a) => 'a" where "lcoeff p == coeff P p (deg R p)" | |
| 1455 | ||
| 64913 | 1456 | lemma lcoeff_nonzero2: assumes p_in_R: "p \<in> carrier P" and p_not_zero: "p \<noteq> \<zero>\<^bsub>P\<^esub>" shows "lcoeff p \<noteq> \<zero>" | 
| 27933 | 1457 | using lcoeff_nonzero [OF p_not_zero p_in_R] . | 
| 1458 | ||
| 35849 | 1459 | |
| 61382 | 1460 | subsection\<open>The long division algorithm: some previous facts.\<close> | 
| 27933 | 1461 | |
| 1462 | lemma coeff_minus [simp]: | |
| 68445 
c183a6a69f2d
reorganisation of Algebra: new material from Baillon and Vilhena, removal of duplicate names, elimination of "More_" theories
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 1463 | assumes p: "p \<in> carrier P" and q: "q \<in> carrier P" | 
| 
c183a6a69f2d
reorganisation of Algebra: new material from Baillon and Vilhena, removal of duplicate names, elimination of "More_" theories
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 1464 | shows "coeff P (p \<ominus>\<^bsub>P\<^esub> q) n = coeff P p n \<ominus> coeff P q n" | 
| 
c183a6a69f2d
reorganisation of Algebra: new material from Baillon and Vilhena, removal of duplicate names, elimination of "More_" theories
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 1465 | by (simp add: a_minus_def p q) | 
| 27933 | 1466 | |
| 1467 | lemma lcoeff_closed [simp]: assumes p: "p \<in> carrier P" shows "lcoeff p \<in> carrier R" | |
| 1468 | using coeff_closed [OF p, of "deg R p"] by simp | |
| 1469 | ||
| 1470 | lemma deg_smult_decr: assumes a_in_R: "a \<in> carrier R" and f_in_P: "f \<in> carrier P" shows "deg R (a \<odot>\<^bsub>P\<^esub> f) \<le> deg R f" | |
| 1471 | using deg_smult_ring [OF a_in_R f_in_P] by (cases "a = \<zero>", auto) | |
| 1472 | ||
| 64913 | 1473 | lemma coeff_monom_mult: assumes R: "c \<in> carrier R" and P: "p \<in> carrier P" | 
| 27933 | 1474 | shows "coeff P (monom P c n \<otimes>\<^bsub>P\<^esub> p) (m + n) = c \<otimes> (coeff P p m)" | 
| 1475 | proof - | |
| 1476 |   have "coeff P (monom P c n \<otimes>\<^bsub>P\<^esub> p) (m + n) = (\<Oplus>i\<in>{..m + n}. (if n = i then c else \<zero>) \<otimes> coeff P p (m + n - i))"
 | |
| 1477 | unfolding coeff_mult [OF monom_closed [OF R, of n] P, of "m + n"] unfolding coeff_monom [OF R, of n] by simp | |
| 64913 | 1478 |   also have "(\<Oplus>i\<in>{..m + n}. (if n = i then c else \<zero>) \<otimes> coeff P p (m + n - i)) =
 | 
| 27933 | 1479 |     (\<Oplus>i\<in>{..m + n}. (if n = i then c \<otimes> coeff P p (m + n - i) else \<zero>))"
 | 
| 64913 | 1480 |     using  R.finsum_cong [of "{..m + n}" "{..m + n}" "(\<lambda>i::nat. (if n = i then c else \<zero>) \<otimes> coeff P p (m + n - i))"
 | 
| 27933 | 1481 | "(\<lambda>i::nat. (if n = i then c \<otimes> coeff P p (m + n - i) else \<zero>))"] | 
| 1482 | using coeff_closed [OF P] unfolding Pi_def simp_implies_def using R by auto | |
| 1483 |   also have "\<dots> = c \<otimes> coeff P p m" using R.finsum_singleton [of n "{..m + n}" "(\<lambda>i. c \<otimes> coeff P p (m + n - i))"]
 | |
| 1484 | unfolding Pi_def using coeff_closed [OF P] using P R by auto | |
| 1485 | finally show ?thesis by simp | |
| 1486 | qed | |
| 1487 | ||
| 64913 | 1488 | lemma deg_lcoeff_cancel: | 
| 1489 | assumes p_in_P: "p \<in> carrier P" and q_in_P: "q \<in> carrier P" and r_in_P: "r \<in> carrier P" | |
| 27933 | 1490 | and deg_r_nonzero: "deg R r \<noteq> 0" | 
| 64913 | 1491 | and deg_R_p: "deg R p \<le> deg R r" and deg_R_q: "deg R q \<le> deg R r" | 
| 27933 | 1492 | and coeff_R_p_eq_q: "coeff P p (deg R r) = \<ominus>\<^bsub>R\<^esub> (coeff P q (deg R r))" | 
| 1493 | shows "deg R (p \<oplus>\<^bsub>P\<^esub> q) < deg R r" | |
| 1494 | proof - | |
| 1495 | have deg_le: "deg R (p \<oplus>\<^bsub>P\<^esub> q) \<le> deg R r" | |
| 1496 | proof (rule deg_aboveI) | |
| 1497 | fix m | |
| 1498 | assume deg_r_le: "deg R r < m" | |
| 1499 | show "coeff P (p \<oplus>\<^bsub>P\<^esub> q) m = \<zero>" | |
| 1500 | proof - | |
| 1501 | have slp: "deg R p < m" and "deg R q < m" using deg_R_p deg_R_q using deg_r_le by auto | |
| 1502 | then have max_sl: "max (deg R p) (deg R q) < m" by simp | |
| 1503 | then have "deg R (p \<oplus>\<^bsub>P\<^esub> q) < m" using deg_add [OF p_in_P q_in_P] by arith | |
| 1504 | with deg_R_p deg_R_q show ?thesis using coeff_add [OF p_in_P q_in_P, of m] | |
| 64913 | 1505 | using deg_aboveD [of "p \<oplus>\<^bsub>P\<^esub> q" m] using p_in_P q_in_P by simp | 
| 27933 | 1506 | qed | 
| 1507 | qed (simp add: p_in_P q_in_P) | |
| 1508 | moreover have deg_ne: "deg R (p \<oplus>\<^bsub>P\<^esub> q) \<noteq> deg R r" | |
| 1509 | proof (rule ccontr) | |
| 1510 | assume nz: "\<not> deg R (p \<oplus>\<^bsub>P\<^esub> q) \<noteq> deg R r" then have deg_eq: "deg R (p \<oplus>\<^bsub>P\<^esub> q) = deg R r" by simp | |
| 1511 | from deg_r_nonzero have r_nonzero: "r \<noteq> \<zero>\<^bsub>P\<^esub>" by (cases "r = \<zero>\<^bsub>P\<^esub>", simp_all) | |
| 1512 | have "coeff P (p \<oplus>\<^bsub>P\<^esub> q) (deg R r) = \<zero>\<^bsub>R\<^esub>" using coeff_add [OF p_in_P q_in_P, of "deg R r"] using coeff_R_p_eq_q | |
| 1513 | using coeff_closed [OF p_in_P, of "deg R r"] coeff_closed [OF q_in_P, of "deg R r"] by algebra | |
| 1514 | with lcoeff_nonzero [OF r_nonzero r_in_P] and deg_eq show False using lcoeff_nonzero [of "p \<oplus>\<^bsub>P\<^esub> q"] using p_in_P q_in_P | |
| 1515 | using deg_r_nonzero by (cases "p \<oplus>\<^bsub>P\<^esub> q \<noteq> \<zero>\<^bsub>P\<^esub>", auto) | |
| 1516 | qed | |
| 1517 | ultimately show ?thesis by simp | |
| 1518 | qed | |
| 1519 | ||
| 64913 | 1520 | lemma monom_deg_mult: | 
| 27933 | 1521 | assumes f_in_P: "f \<in> carrier P" and g_in_P: "g \<in> carrier P" and deg_le: "deg R g \<le> deg R f" | 
| 1522 | and a_in_R: "a \<in> carrier R" | |
| 1523 | shows "deg R (g \<otimes>\<^bsub>P\<^esub> monom P a (deg R f - deg R g)) \<le> deg R f" | |
| 1524 | using deg_mult_ring [OF g_in_P monom_closed [OF a_in_R, of "deg R f - deg R g"]] | |
| 64913 | 1525 | apply (cases "a = \<zero>") using g_in_P apply simp | 
| 27933 | 1526 | using deg_monom [OF _ a_in_R, of "deg R f - deg R g"] using deg_le by simp | 
| 1527 | ||
| 1528 | lemma deg_zero_impl_monom: | |
| 64913 | 1529 | assumes f_in_P: "f \<in> carrier P" and deg_f: "deg R f = 0" | 
| 27933 | 1530 | shows "f = monom P (coeff P f 0) 0" | 
| 1531 | apply (rule up_eqI) using coeff_monom [OF coeff_closed [OF f_in_P], of 0 0] | |
| 1532 | using f_in_P deg_f using deg_aboveD [of f _] by auto | |
| 1533 | ||
| 1534 | end | |
| 1535 | ||
| 1536 | ||
| 61382 | 1537 | subsection \<open>The long division proof for commutative rings\<close> | 
| 27933 | 1538 | |
| 1539 | context UP_cring | |
| 1540 | begin | |
| 1541 | ||
| 64913 | 1542 | lemma exI3: assumes exist: "Pred x y z" | 
| 27933 | 1543 | shows "\<exists> x y z. Pred x y z" | 
| 1544 | using exist by blast | |
| 1545 | ||
| 61382 | 1546 | text \<open>Jacobson's Theorem 2.14\<close> | 
| 27933 | 1547 | |
| 64913 | 1548 | lemma long_div_theorem: | 
| 27933 | 1549 | assumes g_in_P [simp]: "g \<in> carrier P" and f_in_P [simp]: "f \<in> carrier P" | 
| 1550 | and g_not_zero: "g \<noteq> \<zero>\<^bsub>P\<^esub>" | |
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1551 | shows "\<exists>q r (k::nat). (q \<in> carrier P) \<and> (r \<in> carrier P) \<and> (lcoeff g)[^]\<^bsub>R\<^esub>k \<odot>\<^bsub>P\<^esub> f = g \<otimes>\<^bsub>P\<^esub> q \<oplus>\<^bsub>P\<^esub> r \<and> (r = \<zero>\<^bsub>P\<^esub> \<or> deg R r < deg R g)" | 
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1552 | using f_in_P | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1553 | proof (induct "deg R f" arbitrary: "f" rule: nat_less_induct) | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1554 | case (1 f) | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1555 | note f_in_P [simp] = "1.prems" | 
| 27933 | 1556 | let ?pred = "(\<lambda> q r (k::nat). | 
| 64913 | 1557 | (q \<in> carrier P) \<and> (r \<in> carrier P) | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1558 | \<and> (lcoeff g)[^]\<^bsub>R\<^esub>k \<odot>\<^bsub>P\<^esub> f = g \<otimes>\<^bsub>P\<^esub> q \<oplus>\<^bsub>P\<^esub> r \<and> (r = \<zero>\<^bsub>P\<^esub> \<or> deg R r < deg R g))" | 
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1559 | let ?lg = "lcoeff g" and ?lf = "lcoeff f" | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1560 | show ?case | 
| 27933 | 1561 | proof (cases "deg R f < deg R g") | 
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1562 | case True | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1563 | have "?pred \<zero>\<^bsub>P\<^esub> f 0" using True by force | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1564 | then show ?thesis by blast | 
| 27933 | 1565 | next | 
| 1566 | case False then have deg_g_le_deg_f: "deg R g \<le> deg R f" by simp | |
| 1567 |     {
 | |
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1568 | let ?k = "1::nat" | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1569 | let ?f1 = "(g \<otimes>\<^bsub>P\<^esub> (monom P (?lf) (deg R f - deg R g))) \<oplus>\<^bsub>P\<^esub> \<ominus>\<^bsub>P\<^esub> (?lg \<odot>\<^bsub>P\<^esub> f)" | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1570 | let ?q = "monom P (?lf) (deg R f - deg R g)" | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1571 | have f1_in_carrier: "?f1 \<in> carrier P" and q_in_carrier: "?q \<in> carrier P" by simp_all | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1572 | show ?thesis | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1573 | proof (cases "deg R f = 0") | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1574 | case True | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1575 |         {
 | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1576 | have deg_g: "deg R g = 0" using True using deg_g_le_deg_f by simp | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1577 | have "?pred f \<zero>\<^bsub>P\<^esub> 1" | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1578 | using deg_zero_impl_monom [OF g_in_P deg_g] | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1579 | using sym [OF monom_mult_is_smult [OF coeff_closed [OF g_in_P, of 0] f_in_P]] | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1580 | using deg_g by simp | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1581 | then show ?thesis by blast | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1582 | } | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1583 | next | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1584 | case False note deg_f_nzero = False | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1585 |         {
 | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1586 | have exist: "lcoeff g [^] ?k \<odot>\<^bsub>P\<^esub> f = g \<otimes>\<^bsub>P\<^esub> ?q \<oplus>\<^bsub>P\<^esub> \<ominus>\<^bsub>P\<^esub> ?f1" | 
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1587 | by (simp add: minus_add r_neg sym [ | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1588 | OF a_assoc [of "g \<otimes>\<^bsub>P\<^esub> ?q" "\<ominus>\<^bsub>P\<^esub> (g \<otimes>\<^bsub>P\<^esub> ?q)" "lcoeff g \<odot>\<^bsub>P\<^esub> f"]]) | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1589 | have deg_remainder_l_f: "deg R (\<ominus>\<^bsub>P\<^esub> ?f1) < deg R f" | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1590 | proof (unfold deg_uminus [OF f1_in_carrier]) | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1591 | show "deg R ?f1 < deg R f" | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1592 | proof (rule deg_lcoeff_cancel) | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1593 | show "deg R (\<ominus>\<^bsub>P\<^esub> (?lg \<odot>\<^bsub>P\<^esub> f)) \<le> deg R f" | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1594 | using deg_smult_ring [of ?lg f] | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1595 | using lcoeff_nonzero2 [OF g_in_P g_not_zero] by simp | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1596 | show "deg R (g \<otimes>\<^bsub>P\<^esub> ?q) \<le> deg R f" | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1597 | by (simp add: monom_deg_mult [OF f_in_P g_in_P deg_g_le_deg_f, of ?lf]) | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1598 | show "coeff P (g \<otimes>\<^bsub>P\<^esub> ?q) (deg R f) = \<ominus> coeff P (\<ominus>\<^bsub>P\<^esub> (?lg \<odot>\<^bsub>P\<^esub> f)) (deg R f)" | 
| 64913 | 1599 | unfolding coeff_mult [OF g_in_P monom_closed | 
| 1600 | [OF lcoeff_closed [OF f_in_P], | |
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1601 | of "deg R f - deg R g"], of "deg R f"] | 
| 64913 | 1602 | unfolding coeff_monom [OF lcoeff_closed | 
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1603 | [OF f_in_P], of "(deg R f - deg R g)"] | 
| 64913 | 1604 |                 using R.finsum_cong' [of "{..deg R f}" "{..deg R f}"
 | 
| 1605 | "(\<lambda>i. coeff P g i \<otimes> (if deg R f - deg R g = deg R f - i then ?lf else \<zero>))" | |
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1606 | "(\<lambda>i. if deg R g = i then coeff P g i \<otimes> ?lf else \<zero>)"] | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1607 |                 using R.finsum_singleton [of "deg R g" "{.. deg R f}" "(\<lambda>i. coeff P g i \<otimes> ?lf)"]
 | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1608 | unfolding Pi_def using deg_g_le_deg_f by force | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1609 | qed (simp_all add: deg_f_nzero) | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1610 | qed | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1611 | then obtain q' r' k' | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1612 | where rem_desc: "?lg [^] (k'::nat) \<odot>\<^bsub>P\<^esub> (\<ominus>\<^bsub>P\<^esub> ?f1) = g \<otimes>\<^bsub>P\<^esub> q' \<oplus>\<^bsub>P\<^esub> r'" | 
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1613 | and rem_deg: "(r' = \<zero>\<^bsub>P\<^esub> \<or> deg R r' < deg R g)" | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1614 | and q'_in_carrier: "q' \<in> carrier P" and r'_in_carrier: "r' \<in> carrier P" | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1615 | using "1.hyps" using f1_in_carrier by blast | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32456diff
changeset | 1616 | show ?thesis | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1617 | proof (rule exI3 [of _ "((?lg [^] k') \<odot>\<^bsub>P\<^esub> ?q \<oplus>\<^bsub>P\<^esub> q')" r' "Suc k'"], intro conjI) | 
| 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1618 | show "(?lg [^] (Suc k')) \<odot>\<^bsub>P\<^esub> f = g \<otimes>\<^bsub>P\<^esub> ((?lg [^] k') \<odot>\<^bsub>P\<^esub> ?q \<oplus>\<^bsub>P\<^esub> q') \<oplus>\<^bsub>P\<^esub> r'" | 
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1619 | proof - | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1620 | have "(?lg [^] (Suc k')) \<odot>\<^bsub>P\<^esub> f = (?lg [^] k') \<odot>\<^bsub>P\<^esub> (g \<otimes>\<^bsub>P\<^esub> ?q \<oplus>\<^bsub>P\<^esub> \<ominus>\<^bsub>P\<^esub> ?f1)" | 
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1621 | using smult_assoc1 [OF _ _ f_in_P] using exist by simp | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1622 | also have "\<dots> = (?lg [^] k') \<odot>\<^bsub>P\<^esub> (g \<otimes>\<^bsub>P\<^esub> ?q) \<oplus>\<^bsub>P\<^esub> ((?lg [^] k') \<odot>\<^bsub>P\<^esub> ( \<ominus>\<^bsub>P\<^esub> ?f1))" | 
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1623 | using UP_smult_r_distr by simp | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1624 | also have "\<dots> = (?lg [^] k') \<odot>\<^bsub>P\<^esub> (g \<otimes>\<^bsub>P\<^esub> ?q) \<oplus>\<^bsub>P\<^esub> (g \<otimes>\<^bsub>P\<^esub> q' \<oplus>\<^bsub>P\<^esub> r')" | 
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1625 | unfolding rem_desc .. | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1626 | also have "\<dots> = (?lg [^] k') \<odot>\<^bsub>P\<^esub> (g \<otimes>\<^bsub>P\<^esub> ?q) \<oplus>\<^bsub>P\<^esub> g \<otimes>\<^bsub>P\<^esub> q' \<oplus>\<^bsub>P\<^esub> r'" | 
| 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1627 | using sym [OF a_assoc [of "?lg [^] k' \<odot>\<^bsub>P\<^esub> (g \<otimes>\<^bsub>P\<^esub> ?q)" "g \<otimes>\<^bsub>P\<^esub> q'" "r'"]] | 
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1628 | using r'_in_carrier q'_in_carrier by simp | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1629 | also have "\<dots> = (?lg [^] k') \<odot>\<^bsub>P\<^esub> (?q \<otimes>\<^bsub>P\<^esub> g) \<oplus>\<^bsub>P\<^esub> q' \<otimes>\<^bsub>P\<^esub> g \<oplus>\<^bsub>P\<^esub> r'" | 
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1630 | using q'_in_carrier by (auto simp add: m_comm) | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1631 | also have "\<dots> = (((?lg [^] k') \<odot>\<^bsub>P\<^esub> ?q) \<otimes>\<^bsub>P\<^esub> g) \<oplus>\<^bsub>P\<^esub> q' \<otimes>\<^bsub>P\<^esub> g \<oplus>\<^bsub>P\<^esub> r'" | 
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1632 | using smult_assoc2 q'_in_carrier "1.prems" by auto | 
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1633 | also have "\<dots> = ((?lg [^] k') \<odot>\<^bsub>P\<^esub> ?q \<oplus>\<^bsub>P\<^esub> q') \<otimes>\<^bsub>P\<^esub> g \<oplus>\<^bsub>P\<^esub> r'" | 
| 38131 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1634 | using sym [OF l_distr] and q'_in_carrier by auto | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1635 | finally show ?thesis using m_comm q'_in_carrier by auto | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1636 | qed | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1637 | qed (simp_all add: rem_deg q'_in_carrier r'_in_carrier) | 
| 
df8fc03995a4
Revised proof of long division contributed by Jesus Aransay.
 ballarin parents: 
36096diff
changeset | 1638 | } | 
| 27933 | 1639 | qed | 
| 1640 | } | |
| 1641 | qed | |
| 1642 | qed | |
| 1643 | ||
| 1644 | end | |
| 1645 | ||
| 1646 | ||
| 61382 | 1647 | text \<open>The remainder theorem as corollary of the long division theorem.\<close> | 
| 27933 | 1648 | |
| 1649 | context UP_cring | |
| 1650 | begin | |
| 1651 | ||
| 1652 | lemma deg_minus_monom: | |
| 1653 | assumes a: "a \<in> carrier R" | |
| 1654 |   and R_not_trivial: "(carrier R \<noteq> {\<zero>})"
 | |
| 1655 | shows "deg R (monom P \<one>\<^bsub>R\<^esub> 1 \<ominus>\<^bsub>P\<^esub> monom P a 0) = 1" | |
| 1656 | (is "deg R ?g = 1") | |
| 1657 | proof - | |
| 1658 | have "deg R ?g \<le> 1" | |
| 1659 | proof (rule deg_aboveI) | |
| 1660 | fix m | |
| 64913 | 1661 | assume "(1::nat) < m" | 
| 1662 | then show "coeff P ?g m = \<zero>" | |
| 27933 | 1663 | using coeff_minus using a by auto algebra | 
| 1664 | qed (simp add: a) | |
| 1665 | moreover have "deg R ?g \<ge> 1" | |
| 1666 | proof (rule deg_belowI) | |
| 1667 | show "coeff P ?g 1 \<noteq> \<zero>" | |
| 1668 | using a using R.carrier_one_not_zero R_not_trivial by simp algebra | |
| 1669 | qed (simp add: a) | |
| 1670 | ultimately show ?thesis by simp | |
| 1671 | qed | |
| 1672 | ||
| 1673 | lemma lcoeff_monom: | |
| 1674 |   assumes a: "a \<in> carrier R" and R_not_trivial: "(carrier R \<noteq> {\<zero>})"
 | |
| 1675 | shows "lcoeff (monom P \<one>\<^bsub>R\<^esub> 1 \<ominus>\<^bsub>P\<^esub> monom P a 0) = \<one>" | |
| 1676 | using deg_minus_monom [OF a R_not_trivial] | |
| 1677 | using coeff_minus a by auto algebra | |
| 1678 | ||
| 1679 | lemma deg_nzero_nzero: | |
| 1680 | assumes deg_p_nzero: "deg R p \<noteq> 0" | |
| 1681 | shows "p \<noteq> \<zero>\<^bsub>P\<^esub>" | |
| 1682 | using deg_zero deg_p_nzero by auto | |
| 1683 | ||
| 1684 | lemma deg_monom_minus: | |
| 1685 | assumes a: "a \<in> carrier R" | |
| 1686 |   and R_not_trivial: "carrier R \<noteq> {\<zero>}"
 | |
| 1687 | shows "deg R (monom P \<one>\<^bsub>R\<^esub> 1 \<ominus>\<^bsub>P\<^esub> monom P a 0) = 1" | |
| 1688 | (is "deg R ?g = 1") | |
| 1689 | proof - | |
| 1690 | have "deg R ?g \<le> 1" | |
| 1691 | proof (rule deg_aboveI) | |
| 64913 | 1692 | fix m::nat assume "1 < m" then show "coeff P ?g m = \<zero>" | 
| 1693 | using coeff_minus [OF monom_closed [OF R.one_closed, of 1] monom_closed [OF a, of 0], of m] | |
| 27933 | 1694 | using coeff_monom [OF R.one_closed, of 1 m] using coeff_monom [OF a, of 0 m] by auto algebra | 
| 1695 | qed (simp add: a) | |
| 1696 | moreover have "1 \<le> deg R ?g" | |
| 1697 | proof (rule deg_belowI) | |
| 64913 | 1698 | show "coeff P ?g 1 \<noteq> \<zero>" | 
| 27933 | 1699 | using coeff_minus [OF monom_closed [OF R.one_closed, of 1] monom_closed [OF a, of 0], of 1] | 
| 64913 | 1700 | using coeff_monom [OF R.one_closed, of 1 1] using coeff_monom [OF a, of 0 1] | 
| 27933 | 1701 | using R_not_trivial using R.carrier_one_not_zero | 
| 1702 | by auto algebra | |
| 1703 | qed (simp add: a) | |
| 1704 | ultimately show ?thesis by simp | |
| 1705 | qed | |
| 1706 | ||
| 1707 | lemma eval_monom_expr: | |
| 1708 | assumes a: "a \<in> carrier R" | |
| 1709 | shows "eval R R id a (monom P \<one>\<^bsub>R\<^esub> 1 \<ominus>\<^bsub>P\<^esub> monom P a 0) = \<zero>" | |
| 1710 | (is "eval R R id a ?g = _") | |
| 1711 | proof - | |
| 36092 | 1712 | interpret UP_pre_univ_prop R R id by unfold_locales simp | 
| 27933 | 1713 | have eval_ring_hom: "eval R R id a \<in> ring_hom P R" using eval_ring_hom [OF a] by simp | 
| 36092 | 1714 | interpret ring_hom_cring P R "eval R R id a" by unfold_locales (rule eval_ring_hom) | 
| 64913 | 1715 | have mon1_closed: "monom P \<one>\<^bsub>R\<^esub> 1 \<in> carrier P" | 
| 1716 | and mon0_closed: "monom P a 0 \<in> carrier P" | |
| 27933 | 1717 | and min_mon0_closed: "\<ominus>\<^bsub>P\<^esub> monom P a 0 \<in> carrier P" | 
| 1718 | using a R.a_inv_closed by auto | |
| 1719 | have "eval R R id a ?g = eval R R id a (monom P \<one> 1) \<ominus> eval R R id a (monom P a 0)" | |
| 68445 
c183a6a69f2d
reorganisation of Algebra: new material from Baillon and Vilhena, removal of duplicate names, elimination of "More_" theories
 paulson <lp15@cam.ac.uk> parents: 
67613diff
changeset | 1720 | by (simp add: a_minus_def mon0_closed) | 
| 27933 | 1721 | also have "\<dots> = a \<ominus> a" | 
| 1722 | using eval_monom [OF R.one_closed a, of 1] using eval_monom [OF a a, of 0] using a by simp | |
| 1723 | also have "\<dots> = \<zero>" | |
| 1724 | using a by algebra | |
| 1725 | finally show ?thesis by simp | |
| 1726 | qed | |
| 1727 | ||
| 1728 | lemma remainder_theorem_exist: | |
| 1729 | assumes f: "f \<in> carrier P" and a: "a \<in> carrier R" | |
| 1730 |   and R_not_trivial: "carrier R \<noteq> {\<zero>}"
 | |
| 1731 | shows "\<exists> q r. (q \<in> carrier P) \<and> (r \<in> carrier P) \<and> f = (monom P \<one>\<^bsub>R\<^esub> 1 \<ominus>\<^bsub>P\<^esub> monom P a 0) \<otimes>\<^bsub>P\<^esub> q \<oplus>\<^bsub>P\<^esub> r \<and> (deg R r = 0)" | |
| 1732 | (is "\<exists> q r. (q \<in> carrier P) \<and> (r \<in> carrier P) \<and> f = ?g \<otimes>\<^bsub>P\<^esub> q \<oplus>\<^bsub>P\<^esub> r \<and> (deg R r = 0)") | |
| 1733 | proof - | |
| 1734 | let ?g = "monom P \<one>\<^bsub>R\<^esub> 1 \<ominus>\<^bsub>P\<^esub> monom P a 0" | |
| 1735 | from deg_minus_monom [OF a R_not_trivial] | |
| 1736 | have deg_g_nzero: "deg R ?g \<noteq> 0" by simp | |
| 1737 | have "\<exists>q r (k::nat). q \<in> carrier P \<and> r \<in> carrier P \<and> | |
| 67341 
df79ef3b3a41
Renamed (^) to [^] in preparation of the move from "op X" to (X)
 nipkow parents: 
67091diff
changeset | 1738 | lcoeff ?g [^] k \<odot>\<^bsub>P\<^esub> f = ?g \<otimes>\<^bsub>P\<^esub> q \<oplus>\<^bsub>P\<^esub> r \<and> (r = \<zero>\<^bsub>P\<^esub> \<or> deg R r < deg R ?g)" | 
| 27933 | 1739 | using long_div_theorem [OF _ f deg_nzero_nzero [OF deg_g_nzero]] a | 
| 1740 | by auto | |
| 1741 | then show ?thesis | |
| 1742 | unfolding lcoeff_monom [OF a R_not_trivial] | |
| 1743 | unfolding deg_monom_minus [OF a R_not_trivial] | |
| 1744 | using smult_one [OF f] using deg_zero by force | |
| 1745 | qed | |
| 1746 | ||
| 1747 | lemma remainder_theorem_expression: | |
| 1748 | assumes f [simp]: "f \<in> carrier P" and a [simp]: "a \<in> carrier R" | |
| 1749 | and q [simp]: "q \<in> carrier P" and r [simp]: "r \<in> carrier P" | |
| 1750 |   and R_not_trivial: "carrier R \<noteq> {\<zero>}"
 | |
| 1751 | and f_expr: "f = (monom P \<one>\<^bsub>R\<^esub> 1 \<ominus>\<^bsub>P\<^esub> monom P a 0) \<otimes>\<^bsub>P\<^esub> q \<oplus>\<^bsub>P\<^esub> r" | |
| 1752 | (is "f = ?g \<otimes>\<^bsub>P\<^esub> q \<oplus>\<^bsub>P\<^esub> r" is "f = ?gq \<oplus>\<^bsub>P\<^esub> r") | |
| 1753 | and deg_r_0: "deg R r = 0" | |
| 1754 | shows "r = monom P (eval R R id a f) 0" | |
| 1755 | proof - | |
| 61169 | 1756 | interpret UP_pre_univ_prop R R id P by standard simp | 
| 27933 | 1757 | have eval_ring_hom: "eval R R id a \<in> ring_hom P R" | 
| 1758 | using eval_ring_hom [OF a] by simp | |
| 1759 | have "eval R R id a f = eval R R id a ?gq \<oplus>\<^bsub>R\<^esub> eval R R id a r" | |
| 1760 | unfolding f_expr using ring_hom_add [OF eval_ring_hom] by auto | |
| 1761 | also have "\<dots> = ((eval R R id a ?g) \<otimes> (eval R R id a q)) \<oplus>\<^bsub>R\<^esub> eval R R id a r" | |
| 1762 | using ring_hom_mult [OF eval_ring_hom] by auto | |
| 1763 | also have "\<dots> = \<zero> \<oplus> eval R R id a r" | |
| 64913 | 1764 | unfolding eval_monom_expr [OF a] using eval_ring_hom | 
| 27933 | 1765 | unfolding ring_hom_def using q unfolding Pi_def by simp | 
| 1766 | also have "\<dots> = eval R R id a r" | |
| 1767 | using eval_ring_hom unfolding ring_hom_def using r unfolding Pi_def by simp | |
| 1768 | finally have eval_eq: "eval R R id a f = eval R R id a r" by simp | |
| 1769 | from deg_zero_impl_monom [OF r deg_r_0] | |
| 1770 | have "r = monom P (coeff P r 0) 0" by simp | |
| 64913 | 1771 | with eval_const [OF a, of "coeff P r 0"] eval_eq | 
| 27933 | 1772 | show ?thesis by auto | 
| 1773 | qed | |
| 1774 | ||
| 1775 | corollary remainder_theorem: | |
| 1776 | assumes f [simp]: "f \<in> carrier P" and a [simp]: "a \<in> carrier R" | |
| 1777 |   and R_not_trivial: "carrier R \<noteq> {\<zero>}"
 | |
| 64913 | 1778 | shows "\<exists> q r. (q \<in> carrier P) \<and> (r \<in> carrier P) \<and> | 
| 27933 | 1779 | f = (monom P \<one>\<^bsub>R\<^esub> 1 \<ominus>\<^bsub>P\<^esub> monom P a 0) \<otimes>\<^bsub>P\<^esub> q \<oplus>\<^bsub>P\<^esub> monom P (eval R R id a f) 0" | 
| 1780 | (is "\<exists> q r. (q \<in> carrier P) \<and> (r \<in> carrier P) \<and> f = ?g \<otimes>\<^bsub>P\<^esub> q \<oplus>\<^bsub>P\<^esub> monom P (eval R R id a f) 0") | |
| 1781 | proof - | |
| 1782 | from remainder_theorem_exist [OF f a R_not_trivial] | |
| 1783 | obtain q r | |
| 1784 | where q_r: "q \<in> carrier P \<and> r \<in> carrier P \<and> f = ?g \<otimes>\<^bsub>P\<^esub> q \<oplus>\<^bsub>P\<^esub> r" | |
| 1785 | and deg_r: "deg R r = 0" by force | |
| 1786 | with remainder_theorem_expression [OF f a _ _ R_not_trivial, of q r] | |
| 1787 | show ?thesis by auto | |
| 1788 | qed | |
| 1789 | ||
| 1790 | end | |
| 1791 | ||
| 17094 | 1792 | |
| 61382 | 1793 | subsection \<open>Sample Application of Evaluation Homomorphism\<close> | 
| 13940 | 1794 | |
| 17094 | 1795 | lemma UP_pre_univ_propI: | 
| 13940 | 1796 | assumes "cring R" | 
| 1797 | and "cring S" | |
| 1798 | and "h \<in> ring_hom R S" | |
| 19931 
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
 ballarin parents: 
19783diff
changeset | 1799 | shows "UP_pre_univ_prop R S h" | 
| 23350 | 1800 | using assms | 
| 19931 
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
 ballarin parents: 
19783diff
changeset | 1801 | by (auto intro!: UP_pre_univ_prop.intro ring_hom_cring.intro | 
| 
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
 ballarin parents: 
19783diff
changeset | 1802 | ring_hom_cring_axioms.intro UP_cring.intro) | 
| 13940 | 1803 | |
| 35848 
5443079512ea
slightly more uniform definitions -- eliminated old-style meta-equality;
 wenzelm parents: 
34915diff
changeset | 1804 | definition | 
| 
5443079512ea
slightly more uniform definitions -- eliminated old-style meta-equality;
 wenzelm parents: 
34915diff
changeset | 1805 | INTEG :: "int ring" | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
68445diff
changeset | 1806 | where "INTEG = \<lparr>carrier = UNIV, mult = (*), one = 1, zero = 0, add = (+)\<rparr>" | 
| 13975 | 1807 | |
| 35848 
5443079512ea
slightly more uniform definitions -- eliminated old-style meta-equality;
 wenzelm parents: 
34915diff
changeset | 1808 | lemma INTEG_cring: "cring INTEG" | 
| 13975 | 1809 | by (unfold INTEG_def) (auto intro!: cringI abelian_groupI comm_monoidI | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
44890diff
changeset | 1810 | left_minus distrib_right) | 
| 13975 | 1811 | |
| 15095 
63f5f4c265dd
Theories now take advantage of recent syntax improvements with (structure).
 ballarin parents: 
15076diff
changeset | 1812 | lemma INTEG_id_eval: | 
| 17094 | 1813 | "UP_pre_univ_prop INTEG INTEG id" | 
| 1814 | by (fast intro: UP_pre_univ_propI INTEG_cring id_ring_hom) | |
| 13940 | 1815 | |
| 61382 | 1816 | text \<open> | 
| 17094 | 1817 | Interpretation now enables to import all theorems and lemmas | 
| 69597 | 1818 | valid in the context of homomorphisms between \<^term>\<open>INTEG\<close> and \<^term>\<open>UP INTEG\<close> globally. | 
| 61382 | 1819 | \<close> | 
| 13940 | 1820 | |
| 30729 
461ee3e49ad3
interpretation/interpret: prefixes are mandatory by default;
 wenzelm parents: 
30363diff
changeset | 1821 | interpretation INTEG: UP_pre_univ_prop INTEG INTEG id "UP INTEG" | 
| 28823 | 1822 | using INTEG_id_eval by simp_all | 
| 15763 
b901a127ac73
Interpretation supports statically scoped attributes; documentation.
 ballarin parents: 
15696diff
changeset | 1823 | |
| 13940 | 1824 | lemma INTEG_closed [intro, simp]: | 
| 1825 | "z \<in> carrier INTEG" | |
| 1826 | by (unfold INTEG_def) simp | |
| 1827 | ||
| 1828 | lemma INTEG_mult [simp]: | |
| 1829 | "mult INTEG z w = z * w" | |
| 1830 | by (unfold INTEG_def) simp | |
| 1831 | ||
| 1832 | lemma INTEG_pow [simp]: | |
| 1833 | "pow INTEG z n = z ^ n" | |
| 1834 | by (induct n) (simp_all add: INTEG_def nat_pow_def) | |
| 1835 | ||
| 1836 | lemma "eval INTEG INTEG id 10 (monom (UP INTEG) 5 2) = 500" | |
| 15763 
b901a127ac73
Interpretation supports statically scoped attributes; documentation.
 ballarin parents: 
15696diff
changeset | 1837 | by (simp add: INTEG.eval_monom) | 
| 13940 | 1838 | |
| 14590 | 1839 | end |