| author | wenzelm | 
| Sun, 15 Oct 2017 21:30:21 +0200 | |
| changeset 66869 | 222a77470c0c | 
| parent 66816 | 212a3334e7da | 
| child 66937 | a1a4a5e2933a | 
| permissions | -rw-r--r-- | 
| 35050 
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
 haftmann parents: 
35043diff
changeset | 1 | (* Title: HOL/Rings.thy | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
30961diff
changeset | 2 | Author: Gertrud Bauer | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
30961diff
changeset | 3 | Author: Steven Obua | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
30961diff
changeset | 4 | Author: Tobias Nipkow | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
30961diff
changeset | 5 | Author: Lawrence C Paulson | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
30961diff
changeset | 6 | Author: Markus Wenzel | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
30961diff
changeset | 7 | Author: Jeremy Avigad | 
| 14265 
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
 paulson parents: diff
changeset | 8 | *) | 
| 
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
 paulson parents: diff
changeset | 9 | |
| 60758 | 10 | section \<open>Rings\<close> | 
| 14265 
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
 paulson parents: diff
changeset | 11 | |
| 35050 
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
 haftmann parents: 
35043diff
changeset | 12 | theory Rings | 
| 63588 | 13 | imports Groups Set | 
| 15131 | 14 | begin | 
| 14504 | 15 | |
| 22390 | 16 | class semiring = ab_semigroup_add + semigroup_mult + | 
| 58776 
95e58e04e534
use NO_MATCH-simproc for distribution rules in field_simps, otherwise field_simps on '(a / (c + d)) * (e + f)' can be non-terminating
 hoelzl parents: 
58649diff
changeset | 17 | assumes distrib_right[algebra_simps]: "(a + b) * c = a * c + b * c" | 
| 
95e58e04e534
use NO_MATCH-simproc for distribution rules in field_simps, otherwise field_simps on '(a / (c + d)) * (e + f)' can be non-terminating
 hoelzl parents: 
58649diff
changeset | 18 | assumes distrib_left[algebra_simps]: "a * (b + c) = a * b + a * c" | 
| 25152 | 19 | begin | 
| 20 | ||
| 63325 | 21 | text \<open>For the \<open>combine_numerals\<close> simproc\<close> | 
| 22 | lemma combine_common_factor: "a * e + (b * e + c) = (a + b) * e + c" | |
| 23 | by (simp add: distrib_right ac_simps) | |
| 25152 | 24 | |
| 25 | end | |
| 14504 | 26 | |
| 22390 | 27 | class mult_zero = times + zero + | 
| 25062 | 28 | assumes mult_zero_left [simp]: "0 * a = 0" | 
| 29 | assumes mult_zero_right [simp]: "a * 0 = 0" | |
| 58195 | 30 | begin | 
| 31 | ||
| 63325 | 32 | lemma mult_not_zero: "a * b \<noteq> 0 \<Longrightarrow> a \<noteq> 0 \<and> b \<noteq> 0" | 
| 58195 | 33 | by auto | 
| 34 | ||
| 35 | end | |
| 21199 
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
 krauss parents: 
20633diff
changeset | 36 | |
| 58198 | 37 | class semiring_0 = semiring + comm_monoid_add + mult_zero | 
| 38 | ||
| 29904 | 39 | class semiring_0_cancel = semiring + cancel_comm_monoid_add | 
| 25186 | 40 | begin | 
| 14504 | 41 | |
| 25186 | 42 | subclass semiring_0 | 
| 28823 | 43 | proof | 
| 21199 
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
 krauss parents: 
20633diff
changeset | 44 | fix a :: 'a | 
| 63588 | 45 | have "0 * a + 0 * a = 0 * a + 0" | 
| 46 | by (simp add: distrib_right [symmetric]) | |
| 47 | then show "0 * a = 0" | |
| 48 | by (simp only: add_left_cancel) | |
| 49 | have "a * 0 + a * 0 = a * 0 + 0" | |
| 50 | by (simp add: distrib_left [symmetric]) | |
| 51 | then show "a * 0 = 0" | |
| 52 | by (simp only: add_left_cancel) | |
| 21199 
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
 krauss parents: 
20633diff
changeset | 53 | qed | 
| 14940 | 54 | |
| 25186 | 55 | end | 
| 25152 | 56 | |
| 22390 | 57 | class comm_semiring = ab_semigroup_add + ab_semigroup_mult + | 
| 25062 | 58 | assumes distrib: "(a + b) * c = a * c + b * c" | 
| 25152 | 59 | begin | 
| 14504 | 60 | |
| 25152 | 61 | subclass semiring | 
| 28823 | 62 | proof | 
| 14738 | 63 | fix a b c :: 'a | 
| 63588 | 64 | show "(a + b) * c = a * c + b * c" | 
| 65 | by (simp add: distrib) | |
| 66 | have "a * (b + c) = (b + c) * a" | |
| 67 | by (simp add: ac_simps) | |
| 68 | also have "\<dots> = b * a + c * a" | |
| 69 | by (simp only: distrib) | |
| 70 | also have "\<dots> = a * b + a * c" | |
| 71 | by (simp add: ac_simps) | |
| 72 | finally show "a * (b + c) = a * b + a * c" | |
| 73 | by blast | |
| 14504 | 74 | qed | 
| 75 | ||
| 25152 | 76 | end | 
| 14504 | 77 | |
| 25152 | 78 | class comm_semiring_0 = comm_semiring + comm_monoid_add + mult_zero | 
| 79 | begin | |
| 80 | ||
| 27516 | 81 | subclass semiring_0 .. | 
| 25152 | 82 | |
| 83 | end | |
| 14504 | 84 | |
| 29904 | 85 | class comm_semiring_0_cancel = comm_semiring + cancel_comm_monoid_add | 
| 25186 | 86 | begin | 
| 14940 | 87 | |
| 27516 | 88 | subclass semiring_0_cancel .. | 
| 14940 | 89 | |
| 28141 
193c3ea0f63b
instances comm_semiring_0_cancel < comm_semiring_0, comm_ring < comm_semiring_0_cancel
 huffman parents: 
27651diff
changeset | 90 | subclass comm_semiring_0 .. | 
| 
193c3ea0f63b
instances comm_semiring_0_cancel < comm_semiring_0, comm_ring < comm_semiring_0_cancel
 huffman parents: 
27651diff
changeset | 91 | |
| 25186 | 92 | end | 
| 21199 
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
 krauss parents: 
20633diff
changeset | 93 | |
| 22390 | 94 | class zero_neq_one = zero + one + | 
| 25062 | 95 | assumes zero_neq_one [simp]: "0 \<noteq> 1" | 
| 26193 | 96 | begin | 
| 97 | ||
| 98 | lemma one_neq_zero [simp]: "1 \<noteq> 0" | |
| 63325 | 99 | by (rule not_sym) (rule zero_neq_one) | 
| 26193 | 100 | |
| 54225 | 101 | definition of_bool :: "bool \<Rightarrow> 'a" | 
| 63325 | 102 | where "of_bool p = (if p then 1 else 0)" | 
| 54225 | 103 | |
| 104 | lemma of_bool_eq [simp, code]: | |
| 105 | "of_bool False = 0" | |
| 106 | "of_bool True = 1" | |
| 107 | by (simp_all add: of_bool_def) | |
| 108 | ||
| 63325 | 109 | lemma of_bool_eq_iff: "of_bool p = of_bool q \<longleftrightarrow> p = q" | 
| 54225 | 110 | by (simp add: of_bool_def) | 
| 111 | ||
| 63325 | 112 | lemma split_of_bool [split]: "P (of_bool p) \<longleftrightarrow> (p \<longrightarrow> P 1) \<and> (\<not> p \<longrightarrow> P 0)" | 
| 55187 | 113 | by (cases p) simp_all | 
| 114 | ||
| 63325 | 115 | lemma split_of_bool_asm: "P (of_bool p) \<longleftrightarrow> \<not> (p \<and> \<not> P 1 \<or> \<not> p \<and> \<not> P 0)" | 
| 55187 | 116 | by (cases p) simp_all | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 117 | |
| 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 118 | end | 
| 14265 
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
 paulson parents: diff
changeset | 119 | |
| 22390 | 120 | class semiring_1 = zero_neq_one + semiring_0 + monoid_mult | 
| 66816 
212a3334e7da
more fundamental definition of div and mod on int
 haftmann parents: 
66810diff
changeset | 121 | begin | 
| 
212a3334e7da
more fundamental definition of div and mod on int
 haftmann parents: 
66810diff
changeset | 122 | |
| 
212a3334e7da
more fundamental definition of div and mod on int
 haftmann parents: 
66810diff
changeset | 123 | lemma (in semiring_1) of_bool_conj: | 
| 
212a3334e7da
more fundamental definition of div and mod on int
 haftmann parents: 
66810diff
changeset | 124 | "of_bool (P \<and> Q) = of_bool P * of_bool Q" | 
| 
212a3334e7da
more fundamental definition of div and mod on int
 haftmann parents: 
66810diff
changeset | 125 | by auto | 
| 
212a3334e7da
more fundamental definition of div and mod on int
 haftmann parents: 
66810diff
changeset | 126 | |
| 
212a3334e7da
more fundamental definition of div and mod on int
 haftmann parents: 
66810diff
changeset | 127 | end | 
| 14504 | 128 | |
| 60758 | 129 | text \<open>Abstract divisibility\<close> | 
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 130 | |
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 131 | class dvd = times | 
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 132 | begin | 
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 133 | |
| 63325 | 134 | definition dvd :: "'a \<Rightarrow> 'a \<Rightarrow> bool" (infix "dvd" 50) | 
| 135 | where "b dvd a \<longleftrightarrow> (\<exists>k. a = b * k)" | |
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 136 | |
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 137 | lemma dvdI [intro?]: "a = b * k \<Longrightarrow> b dvd a" | 
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 138 | unfolding dvd_def .. | 
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 139 | |
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 140 | lemma dvdE [elim?]: "b dvd a \<Longrightarrow> (\<And>k. a = b * k \<Longrightarrow> P) \<Longrightarrow> P" | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 141 | unfolding dvd_def by blast | 
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 142 | |
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 143 | end | 
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 144 | |
| 59009 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 145 | context comm_monoid_mult | 
| 25152 | 146 | begin | 
| 14738 | 147 | |
| 59009 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 148 | subclass dvd . | 
| 25152 | 149 | |
| 63325 | 150 | lemma dvd_refl [simp]: "a dvd a" | 
| 28559 | 151 | proof | 
| 152 | show "a = a * 1" by simp | |
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 153 | qed | 
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 154 | |
| 62349 
7c23469b5118
cleansed junk-producing interpretations for gcd/lcm on nat altogether
 haftmann parents: 
62347diff
changeset | 155 | lemma dvd_trans [trans]: | 
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 156 | assumes "a dvd b" and "b dvd c" | 
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 157 | shows "a dvd c" | 
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 158 | proof - | 
| 63588 | 159 | from assms obtain v where "b = a * v" | 
| 160 | by (auto elim!: dvdE) | |
| 161 | moreover from assms obtain w where "c = b * w" | |
| 162 | by (auto elim!: dvdE) | |
| 163 | ultimately have "c = a * (v * w)" | |
| 164 | by (simp add: mult.assoc) | |
| 28559 | 165 | then show ?thesis .. | 
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 166 | qed | 
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 167 | |
| 63325 | 168 | lemma subset_divisors_dvd: "{c. c dvd a} \<subseteq> {c. c dvd b} \<longleftrightarrow> a dvd b"
 | 
| 62366 | 169 | by (auto simp add: subset_iff intro: dvd_trans) | 
| 170 | ||
| 63325 | 171 | lemma strict_subset_divisors_dvd: "{c. c dvd a} \<subset> {c. c dvd b} \<longleftrightarrow> a dvd b \<and> \<not> b dvd a"
 | 
| 62366 | 172 | by (auto simp add: subset_iff intro: dvd_trans) | 
| 173 | ||
| 63325 | 174 | lemma one_dvd [simp]: "1 dvd a" | 
| 59009 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 175 | by (auto intro!: dvdI) | 
| 28559 | 176 | |
| 63325 | 177 | lemma dvd_mult [simp]: "a dvd c \<Longrightarrow> a dvd (b * c)" | 
| 59009 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 178 | by (auto intro!: mult.left_commute dvdI elim!: dvdE) | 
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 179 | |
| 63325 | 180 | lemma dvd_mult2 [simp]: "a dvd b \<Longrightarrow> a dvd (b * c)" | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 181 | using dvd_mult [of a b c] by (simp add: ac_simps) | 
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 182 | |
| 63325 | 183 | lemma dvd_triv_right [simp]: "a dvd b * a" | 
| 59009 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 184 | by (rule dvd_mult) (rule dvd_refl) | 
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 185 | |
| 63325 | 186 | lemma dvd_triv_left [simp]: "a dvd a * b" | 
| 59009 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 187 | by (rule dvd_mult2) (rule dvd_refl) | 
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 188 | |
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 189 | lemma mult_dvd_mono: | 
| 30042 | 190 | assumes "a dvd b" | 
| 191 | and "c dvd d" | |
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 192 | shows "a * c dvd b * d" | 
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 193 | proof - | 
| 60758 | 194 | from \<open>a dvd b\<close> obtain b' where "b = a * b'" .. | 
| 195 | moreover from \<open>c dvd d\<close> obtain d' where "d = c * d'" .. | |
| 63588 | 196 | ultimately have "b * d = (a * c) * (b' * d')" | 
| 197 | by (simp add: ac_simps) | |
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 198 | then show ?thesis .. | 
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 199 | qed | 
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 200 | |
| 63325 | 201 | lemma dvd_mult_left: "a * b dvd c \<Longrightarrow> a dvd c" | 
| 59009 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 202 | by (simp add: dvd_def mult.assoc) blast | 
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 203 | |
| 63325 | 204 | lemma dvd_mult_right: "a * b dvd c \<Longrightarrow> b dvd c" | 
| 59009 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 205 | using dvd_mult_left [of b a c] by (simp add: ac_simps) | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 206 | |
| 59009 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 207 | end | 
| 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 208 | |
| 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 209 | class comm_semiring_1 = zero_neq_one + comm_semiring_0 + comm_monoid_mult | 
| 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 210 | begin | 
| 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 211 | |
| 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 212 | subclass semiring_1 .. | 
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 213 | |
| 63325 | 214 | lemma dvd_0_left_iff [simp]: "0 dvd a \<longleftrightarrow> a = 0" | 
| 59009 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 215 | by (auto intro: dvd_refl elim!: dvdE) | 
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 216 | |
| 63325 | 217 | lemma dvd_0_right [iff]: "a dvd 0" | 
| 59009 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 218 | proof | 
| 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 219 | show "0 = a * 0" by simp | 
| 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 220 | qed | 
| 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 221 | |
| 63325 | 222 | lemma dvd_0_left: "0 dvd a \<Longrightarrow> a = 0" | 
| 59009 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 223 | by simp | 
| 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 224 | |
| 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 225 | lemma dvd_add [simp]: | 
| 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 226 | assumes "a dvd b" and "a dvd c" | 
| 
348561aa3869
generalized lemmas (particularly concerning dvd) as far as appropriate
 haftmann parents: 
59000diff
changeset | 227 | shows "a dvd (b + c)" | 
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 228 | proof - | 
| 60758 | 229 | from \<open>a dvd b\<close> obtain b' where "b = a * b'" .. | 
| 230 | moreover from \<open>a dvd c\<close> obtain c' where "c = a * c'" .. | |
| 63588 | 231 | ultimately have "b + c = a * (b' + c')" | 
| 232 | by (simp add: distrib_left) | |
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 233 | then show ?thesis .. | 
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 234 | qed | 
| 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 235 | |
| 25152 | 236 | end | 
| 14421 
ee97b6463cb4
new Ring_and_Field hierarchy, eliminating redundant axioms
 paulson parents: 
14398diff
changeset | 237 | |
| 29904 | 238 | class semiring_1_cancel = semiring + cancel_comm_monoid_add | 
| 239 | + zero_neq_one + monoid_mult | |
| 25267 | 240 | begin | 
| 14940 | 241 | |
| 27516 | 242 | subclass semiring_0_cancel .. | 
| 25512 
4134f7c782e2
using intro_locales instead of unfold_locales if appropriate
 haftmann parents: 
25450diff
changeset | 243 | |
| 27516 | 244 | subclass semiring_1 .. | 
| 25267 | 245 | |
| 246 | end | |
| 21199 
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
 krauss parents: 
20633diff
changeset | 247 | |
| 63325 | 248 | class comm_semiring_1_cancel = | 
| 249 | comm_semiring + cancel_comm_monoid_add + zero_neq_one + comm_monoid_mult + | |
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 250 | assumes right_diff_distrib' [algebra_simps]: "a * (b - c) = a * b - a * c" | 
| 25267 | 251 | begin | 
| 14738 | 252 | |
| 27516 | 253 | subclass semiring_1_cancel .. | 
| 254 | subclass comm_semiring_0_cancel .. | |
| 255 | subclass comm_semiring_1 .. | |
| 25267 | 256 | |
| 63325 | 257 | lemma left_diff_distrib' [algebra_simps]: "(b - c) * a = b * a - c * a" | 
| 59816 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 258 | by (simp add: algebra_simps) | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 259 | |
| 63325 | 260 | lemma dvd_add_times_triv_left_iff [simp]: "a dvd c * a + b \<longleftrightarrow> a dvd b" | 
| 59816 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 261 | proof - | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 262 | have "a dvd a * c + b \<longleftrightarrow> a dvd b" (is "?P \<longleftrightarrow> ?Q") | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 263 | proof | 
| 63325 | 264 | assume ?Q | 
| 265 | then show ?P by simp | |
| 59816 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 266 | next | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 267 | assume ?P | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 268 | then obtain d where "a * c + b = a * d" .. | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 269 | then have "a * c + b - a * c = a * d - a * c" by simp | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 270 | then have "b = a * d - a * c" by simp | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 271 | then have "b = a * (d - c)" by (simp add: algebra_simps) | 
| 59816 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 272 | then show ?Q .. | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 273 | qed | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 274 | then show "a dvd c * a + b \<longleftrightarrow> a dvd b" by (simp add: ac_simps) | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 275 | qed | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 276 | |
| 63325 | 277 | lemma dvd_add_times_triv_right_iff [simp]: "a dvd b + c * a \<longleftrightarrow> a dvd b" | 
| 59816 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 278 | using dvd_add_times_triv_left_iff [of a c b] by (simp add: ac_simps) | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 279 | |
| 63325 | 280 | lemma dvd_add_triv_left_iff [simp]: "a dvd a + b \<longleftrightarrow> a dvd b" | 
| 59816 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 281 | using dvd_add_times_triv_left_iff [of a 1 b] by simp | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 282 | |
| 63325 | 283 | lemma dvd_add_triv_right_iff [simp]: "a dvd b + a \<longleftrightarrow> a dvd b" | 
| 59816 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 284 | using dvd_add_times_triv_right_iff [of a b 1] by simp | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 285 | |
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 286 | lemma dvd_add_right_iff: | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 287 | assumes "a dvd b" | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 288 | shows "a dvd b + c \<longleftrightarrow> a dvd c" (is "?P \<longleftrightarrow> ?Q") | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 289 | proof | 
| 63325 | 290 | assume ?P | 
| 291 | then obtain d where "b + c = a * d" .. | |
| 60758 | 292 | moreover from \<open>a dvd b\<close> obtain e where "b = a * e" .. | 
| 59816 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 293 | ultimately have "a * e + c = a * d" by simp | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 294 | then have "a * e + c - a * e = a * d - a * e" by simp | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 295 | then have "c = a * d - a * e" by simp | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 296 | then have "c = a * (d - e)" by (simp add: algebra_simps) | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 297 | then show ?Q .. | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 298 | next | 
| 63325 | 299 | assume ?Q | 
| 300 | with assms show ?P by simp | |
| 59816 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 301 | qed | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 302 | |
| 63325 | 303 | lemma dvd_add_left_iff: "a dvd c \<Longrightarrow> a dvd b + c \<longleftrightarrow> a dvd b" | 
| 304 | using dvd_add_right_iff [of a c b] by (simp add: ac_simps) | |
| 59816 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 305 | |
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 306 | end | 
| 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 307 | |
| 22390 | 308 | class ring = semiring + ab_group_add | 
| 25267 | 309 | begin | 
| 25152 | 310 | |
| 27516 | 311 | subclass semiring_0_cancel .. | 
| 25152 | 312 | |
| 60758 | 313 | text \<open>Distribution rules\<close> | 
| 25152 | 314 | |
| 315 | lemma minus_mult_left: "- (a * b) = - a * b" | |
| 63325 | 316 | by (rule minus_unique) (simp add: distrib_right [symmetric]) | 
| 25152 | 317 | |
| 318 | lemma minus_mult_right: "- (a * b) = a * - b" | |
| 63325 | 319 | by (rule minus_unique) (simp add: distrib_left [symmetric]) | 
| 25152 | 320 | |
| 63325 | 321 | text \<open>Extract signs from products\<close> | 
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
52435diff
changeset | 322 | lemmas mult_minus_left [simp] = minus_mult_left [symmetric] | 
| 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
52435diff
changeset | 323 | lemmas mult_minus_right [simp] = minus_mult_right [symmetric] | 
| 29407 
5ef7e97fd9e4
move lemmas mult_minus{left,right} inside class ring
 huffman parents: 
29406diff
changeset | 324 | |
| 25152 | 325 | lemma minus_mult_minus [simp]: "- a * - b = a * b" | 
| 63325 | 326 | by simp | 
| 25152 | 327 | |
| 328 | lemma minus_mult_commute: "- a * b = a * - b" | |
| 63325 | 329 | by simp | 
| 29667 | 330 | |
| 63325 | 331 | lemma right_diff_distrib [algebra_simps]: "a * (b - c) = a * b - a * c" | 
| 54230 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
54225diff
changeset | 332 | using distrib_left [of a b "-c "] by simp | 
| 29667 | 333 | |
| 63325 | 334 | lemma left_diff_distrib [algebra_simps]: "(a - b) * c = a * c - b * c" | 
| 54230 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
54225diff
changeset | 335 | using distrib_right [of a "- b" c] by simp | 
| 25152 | 336 | |
| 63325 | 337 | lemmas ring_distribs = distrib_left distrib_right left_diff_distrib right_diff_distrib | 
| 25152 | 338 | |
| 63325 | 339 | lemma eq_add_iff1: "a * e + c = b * e + d \<longleftrightarrow> (a - b) * e + c = d" | 
| 340 | by (simp add: algebra_simps) | |
| 25230 | 341 | |
| 63325 | 342 | lemma eq_add_iff2: "a * e + c = b * e + d \<longleftrightarrow> c = (b - a) * e + d" | 
| 343 | by (simp add: algebra_simps) | |
| 25230 | 344 | |
| 25152 | 345 | end | 
| 346 | ||
| 63325 | 347 | lemmas ring_distribs = distrib_left distrib_right left_diff_distrib right_diff_distrib | 
| 25152 | 348 | |
| 22390 | 349 | class comm_ring = comm_semiring + ab_group_add | 
| 25267 | 350 | begin | 
| 14738 | 351 | |
| 27516 | 352 | subclass ring .. | 
| 28141 
193c3ea0f63b
instances comm_semiring_0_cancel < comm_semiring_0, comm_ring < comm_semiring_0_cancel
 huffman parents: 
27651diff
changeset | 353 | subclass comm_semiring_0_cancel .. | 
| 25267 | 354 | |
| 63325 | 355 | lemma square_diff_square_factored: "x * x - y * y = (x + y) * (x - y)" | 
| 44350 
63cddfbc5a09
replace lemma realpow_two_diff with new lemma square_diff_square_factored
 huffman parents: 
44346diff
changeset | 356 | by (simp add: algebra_simps) | 
| 
63cddfbc5a09
replace lemma realpow_two_diff with new lemma square_diff_square_factored
 huffman parents: 
44346diff
changeset | 357 | |
| 25267 | 358 | end | 
| 14738 | 359 | |
| 22390 | 360 | class ring_1 = ring + zero_neq_one + monoid_mult | 
| 25267 | 361 | begin | 
| 14265 
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
 paulson parents: diff
changeset | 362 | |
| 27516 | 363 | subclass semiring_1_cancel .. | 
| 25267 | 364 | |
| 63325 | 365 | lemma square_diff_one_factored: "x * x - 1 = (x + 1) * (x - 1)" | 
| 44346 
00dd3c4dabe0
rename real_squared_diff_one_factored to square_diff_one_factored and move to Rings.thy
 huffman parents: 
44064diff
changeset | 366 | by (simp add: algebra_simps) | 
| 
00dd3c4dabe0
rename real_squared_diff_one_factored to square_diff_one_factored and move to Rings.thy
 huffman parents: 
44064diff
changeset | 367 | |
| 25267 | 368 | end | 
| 25152 | 369 | |
| 22390 | 370 | class comm_ring_1 = comm_ring + zero_neq_one + comm_monoid_mult | 
| 25267 | 371 | begin | 
| 14738 | 372 | |
| 27516 | 373 | subclass ring_1 .. | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 374 | subclass comm_semiring_1_cancel | 
| 59816 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 haftmann parents: 
59557diff
changeset | 375 | by unfold_locales (simp add: algebra_simps) | 
| 58647 | 376 | |
| 29465 
b2cfb5d0a59e
change dvd_minus_iff, minus_dvd_iff from [iff] to [simp] (due to problems with Library/Primes.thy)
 huffman parents: 
29461diff
changeset | 377 | lemma dvd_minus_iff [simp]: "x dvd - y \<longleftrightarrow> x dvd y" | 
| 29408 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 378 | proof | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 379 | assume "x dvd - y" | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 380 | then have "x dvd - 1 * - y" by (rule dvd_mult) | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 381 | then show "x dvd y" by simp | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 382 | next | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 383 | assume "x dvd y" | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 384 | then have "x dvd - 1 * y" by (rule dvd_mult) | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 385 | then show "x dvd - y" by simp | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 386 | qed | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 387 | |
| 29465 
b2cfb5d0a59e
change dvd_minus_iff, minus_dvd_iff from [iff] to [simp] (due to problems with Library/Primes.thy)
 huffman parents: 
29461diff
changeset | 388 | lemma minus_dvd_iff [simp]: "- x dvd y \<longleftrightarrow> x dvd y" | 
| 29408 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 389 | proof | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 390 | assume "- x dvd y" | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 391 | then obtain k where "y = - x * k" .. | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 392 | then have "y = x * - k" by simp | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 393 | then show "x dvd y" .. | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 394 | next | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 395 | assume "x dvd y" | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 396 | then obtain k where "y = x * k" .. | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 397 | then have "y = - x * - k" by simp | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 398 | then show "- x dvd y" .. | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 399 | qed | 
| 
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
 huffman parents: 
29407diff
changeset | 400 | |
| 63325 | 401 | lemma dvd_diff [simp]: "x dvd y \<Longrightarrow> x dvd z \<Longrightarrow> x dvd (y - z)" | 
| 54230 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
54225diff
changeset | 402 | using dvd_add [of x y "- z"] by simp | 
| 29409 | 403 | |
| 25267 | 404 | end | 
| 25152 | 405 | |
| 59833 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 406 | class semiring_no_zero_divisors = semiring_0 + | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 407 | assumes no_zero_divisors: "a \<noteq> 0 \<Longrightarrow> b \<noteq> 0 \<Longrightarrow> a * b \<noteq> 0" | 
| 25230 | 408 | begin | 
| 409 | ||
| 59833 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 410 | lemma divisors_zero: | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 411 | assumes "a * b = 0" | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 412 | shows "a = 0 \<or> b = 0" | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 413 | proof (rule classical) | 
| 63325 | 414 | assume "\<not> ?thesis" | 
| 59833 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 415 | then have "a \<noteq> 0" and "b \<noteq> 0" by auto | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 416 | with no_zero_divisors have "a * b \<noteq> 0" by blast | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 417 | with assms show ?thesis by simp | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 418 | qed | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 419 | |
| 63325 | 420 | lemma mult_eq_0_iff [simp]: "a * b = 0 \<longleftrightarrow> a = 0 \<or> b = 0" | 
| 25230 | 421 | proof (cases "a = 0 \<or> b = 0") | 
| 63325 | 422 | case False | 
| 423 | then have "a \<noteq> 0" and "b \<noteq> 0" by auto | |
| 25230 | 424 | then show ?thesis using no_zero_divisors by simp | 
| 425 | next | |
| 63325 | 426 | case True | 
| 427 | then show ?thesis by auto | |
| 25230 | 428 | qed | 
| 429 | ||
| 58952 
5d82cdef6c1b
equivalence rules for structures without zero divisors
 haftmann parents: 
58889diff
changeset | 430 | end | 
| 
5d82cdef6c1b
equivalence rules for structures without zero divisors
 haftmann parents: 
58889diff
changeset | 431 | |
| 62481 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62390diff
changeset | 432 | class semiring_1_no_zero_divisors = semiring_1 + semiring_no_zero_divisors | 
| 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62390diff
changeset | 433 | |
| 60516 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 434 | class semiring_no_zero_divisors_cancel = semiring_no_zero_divisors + | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 435 | assumes mult_cancel_right [simp]: "a * c = b * c \<longleftrightarrow> c = 0 \<or> a = b" | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 436 | and mult_cancel_left [simp]: "c * a = c * b \<longleftrightarrow> c = 0 \<or> a = b" | 
| 58952 
5d82cdef6c1b
equivalence rules for structures without zero divisors
 haftmann parents: 
58889diff
changeset | 437 | begin | 
| 
5d82cdef6c1b
equivalence rules for structures without zero divisors
 haftmann parents: 
58889diff
changeset | 438 | |
| 63325 | 439 | lemma mult_left_cancel: "c \<noteq> 0 \<Longrightarrow> c * a = c * b \<longleftrightarrow> a = b" | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 440 | by simp | 
| 56217 
dc429a5b13c4
Some rationalisation of basic lemmas
 paulson <lp15@cam.ac.uk> parents: 
55912diff
changeset | 441 | |
| 63325 | 442 | lemma mult_right_cancel: "c \<noteq> 0 \<Longrightarrow> a * c = b * c \<longleftrightarrow> a = b" | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 443 | by simp | 
| 56217 
dc429a5b13c4
Some rationalisation of basic lemmas
 paulson <lp15@cam.ac.uk> parents: 
55912diff
changeset | 444 | |
| 25230 | 445 | end | 
| 22990 
775e9de3db48
added classes ring_no_zero_divisors and dom (non-commutative version of idom);
 huffman parents: 
22987diff
changeset | 446 | |
| 60516 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 447 | class ring_no_zero_divisors = ring + semiring_no_zero_divisors | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 448 | begin | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 449 | |
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 450 | subclass semiring_no_zero_divisors_cancel | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 451 | proof | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 452 | fix a b c | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 453 | have "a * c = b * c \<longleftrightarrow> (a - b) * c = 0" | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 454 | by (simp add: algebra_simps) | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 455 | also have "\<dots> \<longleftrightarrow> c = 0 \<or> a = b" | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 456 | by auto | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 457 | finally show "a * c = b * c \<longleftrightarrow> c = 0 \<or> a = b" . | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 458 | have "c * a = c * b \<longleftrightarrow> c * (a - b) = 0" | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 459 | by (simp add: algebra_simps) | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 460 | also have "\<dots> \<longleftrightarrow> c = 0 \<or> a = b" | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 461 | by auto | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 462 | finally show "c * a = c * b \<longleftrightarrow> c = 0 \<or> a = b" . | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 463 | qed | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 464 | |
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 465 | end | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 466 | |
| 23544 | 467 | class ring_1_no_zero_divisors = ring_1 + ring_no_zero_divisors | 
| 26274 | 468 | begin | 
| 469 | ||
| 62481 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62390diff
changeset | 470 | subclass semiring_1_no_zero_divisors .. | 
| 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62390diff
changeset | 471 | |
| 63325 | 472 | lemma square_eq_1_iff: "x * x = 1 \<longleftrightarrow> x = 1 \<or> x = - 1" | 
| 36821 
9207505d1ee5
move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
 huffman parents: 
36719diff
changeset | 473 | proof - | 
| 
9207505d1ee5
move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
 huffman parents: 
36719diff
changeset | 474 | have "(x - 1) * (x + 1) = x * x - 1" | 
| 
9207505d1ee5
move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
 huffman parents: 
36719diff
changeset | 475 | by (simp add: algebra_simps) | 
| 63325 | 476 | then have "x * x = 1 \<longleftrightarrow> (x - 1) * (x + 1) = 0" | 
| 36821 
9207505d1ee5
move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
 huffman parents: 
36719diff
changeset | 477 | by simp | 
| 63325 | 478 | then show ?thesis | 
| 36821 
9207505d1ee5
move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
 huffman parents: 
36719diff
changeset | 479 | by (simp add: eq_neg_iff_add_eq_0) | 
| 
9207505d1ee5
move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
 huffman parents: 
36719diff
changeset | 480 | qed | 
| 
9207505d1ee5
move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
 huffman parents: 
36719diff
changeset | 481 | |
| 63325 | 482 | lemma mult_cancel_right1 [simp]: "c = b * c \<longleftrightarrow> c = 0 \<or> b = 1" | 
| 483 | using mult_cancel_right [of 1 c b] by auto | |
| 26274 | 484 | |
| 63325 | 485 | lemma mult_cancel_right2 [simp]: "a * c = c \<longleftrightarrow> c = 0 \<or> a = 1" | 
| 486 | using mult_cancel_right [of a c 1] by simp | |
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 487 | |
| 63325 | 488 | lemma mult_cancel_left1 [simp]: "c = c * b \<longleftrightarrow> c = 0 \<or> b = 1" | 
| 489 | using mult_cancel_left [of c 1 b] by force | |
| 26274 | 490 | |
| 63325 | 491 | lemma mult_cancel_left2 [simp]: "c * a = c \<longleftrightarrow> c = 0 \<or> a = 1" | 
| 492 | using mult_cancel_left [of c a 1] by simp | |
| 26274 | 493 | |
| 494 | end | |
| 22990 
775e9de3db48
added classes ring_no_zero_divisors and dom (non-commutative version of idom);
 huffman parents: 
22987diff
changeset | 495 | |
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 496 | class semidom = comm_semiring_1_cancel + semiring_no_zero_divisors | 
| 62481 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62390diff
changeset | 497 | begin | 
| 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62390diff
changeset | 498 | |
| 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62390diff
changeset | 499 | subclass semiring_1_no_zero_divisors .. | 
| 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62390diff
changeset | 500 | |
| 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62390diff
changeset | 501 | end | 
| 59833 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 502 | |
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 503 | class idom = comm_ring_1 + semiring_no_zero_divisors | 
| 25186 | 504 | begin | 
| 14421 
ee97b6463cb4
new Ring_and_Field hierarchy, eliminating redundant axioms
 paulson parents: 
14398diff
changeset | 505 | |
| 59833 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 506 | subclass semidom .. | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 507 | |
| 27516 | 508 | subclass ring_1_no_zero_divisors .. | 
| 22990 
775e9de3db48
added classes ring_no_zero_divisors and dom (non-commutative version of idom);
 huffman parents: 
22987diff
changeset | 509 | |
| 63325 | 510 | lemma dvd_mult_cancel_right [simp]: "a * c dvd b * c \<longleftrightarrow> c = 0 \<or> a dvd b" | 
| 29981 
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
 huffman parents: 
29949diff
changeset | 511 | proof - | 
| 
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
 huffman parents: 
29949diff
changeset | 512 | have "a * c dvd b * c \<longleftrightarrow> (\<exists>k. b * c = (a * k) * c)" | 
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
57512diff
changeset | 513 | unfolding dvd_def by (simp add: ac_simps) | 
| 29981 
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
 huffman parents: 
29949diff
changeset | 514 | also have "(\<exists>k. b * c = (a * k) * c) \<longleftrightarrow> c = 0 \<or> a dvd b" | 
| 
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
 huffman parents: 
29949diff
changeset | 515 | unfolding dvd_def by simp | 
| 
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
 huffman parents: 
29949diff
changeset | 516 | finally show ?thesis . | 
| 
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
 huffman parents: 
29949diff
changeset | 517 | qed | 
| 
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
 huffman parents: 
29949diff
changeset | 518 | |
| 63325 | 519 | lemma dvd_mult_cancel_left [simp]: "c * a dvd c * b \<longleftrightarrow> c = 0 \<or> a dvd b" | 
| 29981 
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
 huffman parents: 
29949diff
changeset | 520 | proof - | 
| 
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
 huffman parents: 
29949diff
changeset | 521 | have "c * a dvd c * b \<longleftrightarrow> (\<exists>k. b * c = (a * k) * c)" | 
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
57512diff
changeset | 522 | unfolding dvd_def by (simp add: ac_simps) | 
| 29981 
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
 huffman parents: 
29949diff
changeset | 523 | also have "(\<exists>k. b * c = (a * k) * c) \<longleftrightarrow> c = 0 \<or> a dvd b" | 
| 
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
 huffman parents: 
29949diff
changeset | 524 | unfolding dvd_def by simp | 
| 
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
 huffman parents: 
29949diff
changeset | 525 | finally show ?thesis . | 
| 
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
 huffman parents: 
29949diff
changeset | 526 | qed | 
| 
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
 huffman parents: 
29949diff
changeset | 527 | |
| 60516 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 528 | lemma square_eq_iff: "a * a = b * b \<longleftrightarrow> a = b \<or> a = - b" | 
| 59833 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 529 | proof | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 530 | assume "a * a = b * b" | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 531 | then have "(a - b) * (a + b) = 0" | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 532 | by (simp add: algebra_simps) | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 533 | then show "a = b \<or> a = - b" | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 534 | by (simp add: eq_neg_iff_add_eq_0) | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 535 | next | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 536 | assume "a = b \<or> a = - b" | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 537 | then show "a * a = b * b" by auto | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 538 | qed | 
| 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 539 | |
| 25186 | 540 | end | 
| 25152 | 541 | |
| 64290 | 542 | class idom_abs_sgn = idom + abs + sgn + | 
| 543 | assumes sgn_mult_abs: "sgn a * \<bar>a\<bar> = a" | |
| 544 | and sgn_sgn [simp]: "sgn (sgn a) = sgn a" | |
| 545 | and abs_abs [simp]: "\<bar>\<bar>a\<bar>\<bar> = \<bar>a\<bar>" | |
| 546 | and abs_0 [simp]: "\<bar>0\<bar> = 0" | |
| 547 | and sgn_0 [simp]: "sgn 0 = 0" | |
| 548 | and sgn_1 [simp]: "sgn 1 = 1" | |
| 549 | and sgn_minus_1: "sgn (- 1) = - 1" | |
| 550 | and sgn_mult: "sgn (a * b) = sgn a * sgn b" | |
| 551 | begin | |
| 552 | ||
| 553 | lemma sgn_eq_0_iff: | |
| 554 | "sgn a = 0 \<longleftrightarrow> a = 0" | |
| 555 | proof - | |
| 556 |   { assume "sgn a = 0"
 | |
| 557 | then have "sgn a * \<bar>a\<bar> = 0" | |
| 558 | by simp | |
| 559 | then have "a = 0" | |
| 560 | by (simp add: sgn_mult_abs) | |
| 561 | } then show ?thesis | |
| 562 | by auto | |
| 563 | qed | |
| 564 | ||
| 565 | lemma abs_eq_0_iff: | |
| 566 | "\<bar>a\<bar> = 0 \<longleftrightarrow> a = 0" | |
| 567 | proof - | |
| 568 |   { assume "\<bar>a\<bar> = 0"
 | |
| 569 | then have "sgn a * \<bar>a\<bar> = 0" | |
| 570 | by simp | |
| 571 | then have "a = 0" | |
| 572 | by (simp add: sgn_mult_abs) | |
| 573 | } then show ?thesis | |
| 574 | by auto | |
| 575 | qed | |
| 576 | ||
| 577 | lemma abs_mult_sgn: | |
| 578 | "\<bar>a\<bar> * sgn a = a" | |
| 579 | using sgn_mult_abs [of a] by (simp add: ac_simps) | |
| 580 | ||
| 581 | lemma abs_1 [simp]: | |
| 582 | "\<bar>1\<bar> = 1" | |
| 583 | using sgn_mult_abs [of 1] by simp | |
| 584 | ||
| 585 | lemma sgn_abs [simp]: | |
| 586 | "\<bar>sgn a\<bar> = of_bool (a \<noteq> 0)" | |
| 587 | using sgn_mult_abs [of "sgn a"] mult_cancel_left [of "sgn a" "\<bar>sgn a\<bar>" 1] | |
| 588 | by (auto simp add: sgn_eq_0_iff) | |
| 589 | ||
| 590 | lemma abs_sgn [simp]: | |
| 591 | "sgn \<bar>a\<bar> = of_bool (a \<noteq> 0)" | |
| 592 | using sgn_mult_abs [of "\<bar>a\<bar>"] mult_cancel_right [of "sgn \<bar>a\<bar>" "\<bar>a\<bar>" 1] | |
| 593 | by (auto simp add: abs_eq_0_iff) | |
| 594 | ||
| 595 | lemma abs_mult: | |
| 596 | "\<bar>a * b\<bar> = \<bar>a\<bar> * \<bar>b\<bar>" | |
| 597 | proof (cases "a = 0 \<or> b = 0") | |
| 598 | case True | |
| 599 | then show ?thesis | |
| 600 | by auto | |
| 601 | next | |
| 602 | case False | |
| 603 | then have *: "sgn (a * b) \<noteq> 0" | |
| 604 | by (simp add: sgn_eq_0_iff) | |
| 605 | from abs_mult_sgn [of "a * b"] abs_mult_sgn [of a] abs_mult_sgn [of b] | |
| 606 | have "\<bar>a * b\<bar> * sgn (a * b) = \<bar>a\<bar> * sgn a * \<bar>b\<bar> * sgn b" | |
| 607 | by (simp add: ac_simps) | |
| 608 | then have "\<bar>a * b\<bar> * sgn (a * b) = \<bar>a\<bar> * \<bar>b\<bar> * sgn (a * b)" | |
| 609 | by (simp add: sgn_mult ac_simps) | |
| 610 | with * show ?thesis | |
| 611 | by simp | |
| 612 | qed | |
| 613 | ||
| 614 | lemma sgn_minus [simp]: | |
| 615 | "sgn (- a) = - sgn a" | |
| 616 | proof - | |
| 617 | from sgn_minus_1 have "sgn (- 1 * a) = - 1 * sgn a" | |
| 618 | by (simp only: sgn_mult) | |
| 619 | then show ?thesis | |
| 620 | by simp | |
| 621 | qed | |
| 622 | ||
| 623 | lemma abs_minus [simp]: | |
| 624 | "\<bar>- a\<bar> = \<bar>a\<bar>" | |
| 625 | proof - | |
| 626 | have [simp]: "\<bar>- 1\<bar> = 1" | |
| 627 | using sgn_mult_abs [of "- 1"] by simp | |
| 628 | then have "\<bar>- 1 * a\<bar> = 1 * \<bar>a\<bar>" | |
| 629 | by (simp only: abs_mult) | |
| 630 | then show ?thesis | |
| 631 | by simp | |
| 632 | qed | |
| 633 | ||
| 634 | end | |
| 635 | ||
| 60758 | 636 | text \<open> | 
| 35302 | 637 | The theory of partially ordered rings is taken from the books: | 
| 63325 | 638 | \<^item> \<^emph>\<open>Lattice Theory\<close> by Garret Birkhoff, American Mathematical Society, 1979 | 
| 639 | \<^item> \<^emph>\<open>Partially Ordered Algebraic Systems\<close>, Pergamon Press, 1963 | |
| 640 | ||
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 641 | Most of the used notions can also be looked up in | 
| 63680 | 642 | \<^item> \<^url>\<open>http://www.mathworld.com\<close> by Eric Weisstein et. al. | 
| 63325 | 643 | \<^item> \<^emph>\<open>Algebra I\<close> by van der Waerden, Springer | 
| 60758 | 644 | \<close> | 
| 35302 | 645 | |
| 63950 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 haftmann parents: 
63947diff
changeset | 646 | text \<open>Syntactic division operator\<close> | 
| 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 haftmann parents: 
63947diff
changeset | 647 | |
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 648 | class divide = | 
| 60429 
d3d1e185cd63
uniform _ div _ as infix syntax for ring division
 haftmann parents: 
60353diff
changeset | 649 | fixes divide :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "div" 70) | 
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 650 | |
| 60758 | 651 | setup \<open>Sign.add_const_constraint (@{const_name "divide"}, SOME @{typ "'a \<Rightarrow> 'a \<Rightarrow> 'a"})\<close>
 | 
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 652 | |
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 653 | context semiring | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 654 | begin | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 655 | |
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 656 | lemma [field_simps]: | 
| 60429 
d3d1e185cd63
uniform _ div _ as infix syntax for ring division
 haftmann parents: 
60353diff
changeset | 657 | shows distrib_left_NO_MATCH: "NO_MATCH (x div y) a \<Longrightarrow> a * (b + c) = a * b + a * c" | 
| 
d3d1e185cd63
uniform _ div _ as infix syntax for ring division
 haftmann parents: 
60353diff
changeset | 658 | and distrib_right_NO_MATCH: "NO_MATCH (x div y) c \<Longrightarrow> (a + b) * c = a * c + b * c" | 
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 659 | by (rule distrib_left distrib_right)+ | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 660 | |
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 661 | end | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 662 | |
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 663 | context ring | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 664 | begin | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 665 | |
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 666 | lemma [field_simps]: | 
| 60429 
d3d1e185cd63
uniform _ div _ as infix syntax for ring division
 haftmann parents: 
60353diff
changeset | 667 | shows left_diff_distrib_NO_MATCH: "NO_MATCH (x div y) c \<Longrightarrow> (a - b) * c = a * c - b * c" | 
| 
d3d1e185cd63
uniform _ div _ as infix syntax for ring division
 haftmann parents: 
60353diff
changeset | 668 | and right_diff_distrib_NO_MATCH: "NO_MATCH (x div y) a \<Longrightarrow> a * (b - c) = a * b - a * c" | 
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 669 | by (rule left_diff_distrib right_diff_distrib)+ | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 670 | |
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 671 | end | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 672 | |
| 60758 | 673 | setup \<open>Sign.add_const_constraint (@{const_name "divide"}, SOME @{typ "'a::divide \<Rightarrow> 'a \<Rightarrow> 'a"})\<close>
 | 
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 674 | |
| 63950 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 haftmann parents: 
63947diff
changeset | 675 | text \<open>Algebraic classes with division\<close> | 
| 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 haftmann parents: 
63947diff
changeset | 676 | |
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 677 | class semidom_divide = semidom + divide + | 
| 64240 | 678 | assumes nonzero_mult_div_cancel_right [simp]: "b \<noteq> 0 \<Longrightarrow> (a * b) div b = a" | 
| 679 | assumes div_by_0 [simp]: "a div 0 = 0" | |
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 680 | begin | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 681 | |
| 64240 | 682 | lemma nonzero_mult_div_cancel_left [simp]: "a \<noteq> 0 \<Longrightarrow> (a * b) div a = b" | 
| 683 | using nonzero_mult_div_cancel_right [of a b] by (simp add: ac_simps) | |
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 684 | |
| 60516 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 685 | subclass semiring_no_zero_divisors_cancel | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 686 | proof | 
| 63325 | 687 | show *: "a * c = b * c \<longleftrightarrow> c = 0 \<or> a = b" for a b c | 
| 688 | proof (cases "c = 0") | |
| 689 | case True | |
| 690 | then show ?thesis by simp | |
| 691 | next | |
| 692 | case False | |
| 63588 | 693 | have "a = b" if "a * c = b * c" | 
| 694 | proof - | |
| 695 | from that have "a * c div c = b * c div c" | |
| 63325 | 696 | by simp | 
| 63588 | 697 | with False show ?thesis | 
| 63325 | 698 | by simp | 
| 63588 | 699 | qed | 
| 63325 | 700 | then show ?thesis by auto | 
| 701 | qed | |
| 702 | show "c * a = c * b \<longleftrightarrow> c = 0 \<or> a = b" for a b c | |
| 703 | using * [of a c b] by (simp add: ac_simps) | |
| 60516 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 704 | qed | 
| 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 705 | |
| 63325 | 706 | lemma div_self [simp]: "a \<noteq> 0 \<Longrightarrow> a div a = 1" | 
| 64240 | 707 | using nonzero_mult_div_cancel_left [of a 1] by simp | 
| 60516 
0826b7025d07
generalized some theorems about integral domains and moved to HOL theories
 haftmann parents: 
60429diff
changeset | 708 | |
| 64240 | 709 | lemma div_0 [simp]: "0 div a = 0" | 
| 60570 | 710 | proof (cases "a = 0") | 
| 63325 | 711 | case True | 
| 712 | then show ?thesis by simp | |
| 60570 | 713 | next | 
| 63325 | 714 | case False | 
| 715 | then have "a * 0 div a = 0" | |
| 64240 | 716 | by (rule nonzero_mult_div_cancel_left) | 
| 60570 | 717 | then show ?thesis by simp | 
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 718 | qed | 
| 60570 | 719 | |
| 64240 | 720 | lemma div_by_1 [simp]: "a div 1 = a" | 
| 721 | using nonzero_mult_div_cancel_left [of 1 a] by simp | |
| 60690 | 722 | |
| 64591 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 723 | lemma dvd_div_eq_0_iff: | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 724 | assumes "b dvd a" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 725 | shows "a div b = 0 \<longleftrightarrow> a = 0" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 726 | using assms by (elim dvdE, cases "b = 0") simp_all | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 727 | |
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 728 | lemma dvd_div_eq_cancel: | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 729 | "a div c = b div c \<Longrightarrow> c dvd a \<Longrightarrow> c dvd b \<Longrightarrow> a = b" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 730 | by (elim dvdE, cases "c = 0") simp_all | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 731 | |
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 732 | lemma dvd_div_eq_iff: | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 733 | "c dvd a \<Longrightarrow> c dvd b \<Longrightarrow> a div c = b div c \<longleftrightarrow> a = b" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 734 | by (elim dvdE, cases "c = 0") simp_all | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 735 | |
| 60867 | 736 | end | 
| 737 | ||
| 738 | class idom_divide = idom + semidom_divide | |
| 64591 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 739 | begin | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 740 | |
| 64592 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 741 | lemma dvd_neg_div: | 
| 64591 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 742 | assumes "b dvd a" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 743 | shows "- a div b = - (a div b)" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 744 | proof (cases "b = 0") | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 745 | case True | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 746 | then show ?thesis by simp | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 747 | next | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 748 | case False | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 749 | from assms obtain c where "a = b * c" .. | 
| 64592 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 750 | then have "- a div b = (b * - c) div b" | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 751 | by simp | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 752 | from False also have "\<dots> = - c" | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 753 | by (rule nonzero_mult_div_cancel_left) | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 754 | with False \<open>a = b * c\<close> show ?thesis | 
| 64591 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 755 | by simp | 
| 64592 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 756 | qed | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 757 | |
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 758 | lemma dvd_div_neg: | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 759 | assumes "b dvd a" | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 760 | shows "a div - b = - (a div b)" | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 761 | proof (cases "b = 0") | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 762 | case True | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 763 | then show ?thesis by simp | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 764 | next | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 765 | case False | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 766 | then have "- b \<noteq> 0" | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 767 | by simp | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 768 | from assms obtain c where "a = b * c" .. | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 769 | then have "a div - b = (- b * - c) div - b" | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 770 | by simp | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 771 | from \<open>- b \<noteq> 0\<close> also have "\<dots> = - c" | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 772 | by (rule nonzero_mult_div_cancel_left) | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 773 | with False \<open>a = b * c\<close> show ?thesis | 
| 64591 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 774 | by simp | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 775 | qed | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 776 | |
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 777 | end | 
| 60867 | 778 | |
| 779 | class algebraic_semidom = semidom_divide | |
| 780 | begin | |
| 781 | ||
| 782 | text \<open> | |
| 783 |   Class @{class algebraic_semidom} enriches a integral domain
 | |
| 784 | by notions from algebra, like units in a ring. | |
| 785 | It is a separate class to avoid spoiling fields with notions | |
| 786 | which are degenerated there. | |
| 787 | \<close> | |
| 788 | ||
| 60690 | 789 | lemma dvd_times_left_cancel_iff [simp]: | 
| 790 | assumes "a \<noteq> 0" | |
| 63588 | 791 | shows "a * b dvd a * c \<longleftrightarrow> b dvd c" | 
| 792 | (is "?lhs \<longleftrightarrow> ?rhs") | |
| 60690 | 793 | proof | 
| 63588 | 794 | assume ?lhs | 
| 63325 | 795 | then obtain d where "a * c = a * b * d" .. | 
| 60690 | 796 | with assms have "c = b * d" by (simp add: ac_simps) | 
| 63588 | 797 | then show ?rhs .. | 
| 60690 | 798 | next | 
| 63588 | 799 | assume ?rhs | 
| 63325 | 800 | then obtain d where "c = b * d" .. | 
| 60690 | 801 | then have "a * c = a * b * d" by (simp add: ac_simps) | 
| 63588 | 802 | then show ?lhs .. | 
| 60690 | 803 | qed | 
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 804 | |
| 60690 | 805 | lemma dvd_times_right_cancel_iff [simp]: | 
| 806 | assumes "a \<noteq> 0" | |
| 63588 | 807 | shows "b * a dvd c * a \<longleftrightarrow> b dvd c" | 
| 63325 | 808 | using dvd_times_left_cancel_iff [of a b c] assms by (simp add: ac_simps) | 
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 809 | |
| 60690 | 810 | lemma div_dvd_iff_mult: | 
| 811 | assumes "b \<noteq> 0" and "b dvd a" | |
| 812 | shows "a div b dvd c \<longleftrightarrow> a dvd c * b" | |
| 813 | proof - | |
| 814 | from \<open>b dvd a\<close> obtain d where "a = b * d" .. | |
| 815 | with \<open>b \<noteq> 0\<close> show ?thesis by (simp add: ac_simps) | |
| 816 | qed | |
| 817 | ||
| 818 | lemma dvd_div_iff_mult: | |
| 819 | assumes "c \<noteq> 0" and "c dvd b" | |
| 820 | shows "a dvd b div c \<longleftrightarrow> a * c dvd b" | |
| 821 | proof - | |
| 822 | from \<open>c dvd b\<close> obtain d where "b = c * d" .. | |
| 823 | with \<open>c \<noteq> 0\<close> show ?thesis by (simp add: mult.commute [of a]) | |
| 824 | qed | |
| 825 | ||
| 60867 | 826 | lemma div_dvd_div [simp]: | 
| 827 | assumes "a dvd b" and "a dvd c" | |
| 828 | shows "b div a dvd c div a \<longleftrightarrow> b dvd c" | |
| 829 | proof (cases "a = 0") | |
| 63325 | 830 | case True | 
| 831 | with assms show ?thesis by simp | |
| 60867 | 832 | next | 
| 833 | case False | |
| 834 | moreover from assms obtain k l where "b = a * k" and "c = a * l" | |
| 835 | by (auto elim!: dvdE) | |
| 836 | ultimately show ?thesis by simp | |
| 837 | qed | |
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 838 | |
| 60867 | 839 | lemma div_add [simp]: | 
| 840 | assumes "c dvd a" and "c dvd b" | |
| 841 | shows "(a + b) div c = a div c + b div c" | |
| 842 | proof (cases "c = 0") | |
| 63325 | 843 | case True | 
| 844 | then show ?thesis by simp | |
| 60867 | 845 | next | 
| 846 | case False | |
| 847 | moreover from assms obtain k l where "a = c * k" and "b = c * l" | |
| 848 | by (auto elim!: dvdE) | |
| 849 | moreover have "c * k + c * l = c * (k + l)" | |
| 850 | by (simp add: algebra_simps) | |
| 851 | ultimately show ?thesis | |
| 852 | by simp | |
| 853 | qed | |
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 854 | |
| 60867 | 855 | lemma div_mult_div_if_dvd: | 
| 856 | assumes "b dvd a" and "d dvd c" | |
| 857 | shows "(a div b) * (c div d) = (a * c) div (b * d)" | |
| 858 | proof (cases "b = 0 \<or> c = 0") | |
| 63325 | 859 | case True | 
| 860 | with assms show ?thesis by auto | |
| 60867 | 861 | next | 
| 862 | case False | |
| 863 | moreover from assms obtain k l where "a = b * k" and "c = d * l" | |
| 864 | by (auto elim!: dvdE) | |
| 865 | moreover have "b * k * (d * l) div (b * d) = (b * d) * (k * l) div (b * d)" | |
| 866 | by (simp add: ac_simps) | |
| 867 | ultimately show ?thesis by simp | |
| 868 | qed | |
| 869 | ||
| 870 | lemma dvd_div_eq_mult: | |
| 871 | assumes "a \<noteq> 0" and "a dvd b" | |
| 872 | shows "b div a = c \<longleftrightarrow> b = c * a" | |
| 63588 | 873 | (is "?lhs \<longleftrightarrow> ?rhs") | 
| 60867 | 874 | proof | 
| 63588 | 875 | assume ?rhs | 
| 876 | then show ?lhs by (simp add: assms) | |
| 60867 | 877 | next | 
| 63588 | 878 | assume ?lhs | 
| 60867 | 879 | then have "b div a * a = c * a" by simp | 
| 63325 | 880 | moreover from assms have "b div a * a = b" | 
| 60867 | 881 | by (auto elim!: dvdE simp add: ac_simps) | 
| 63588 | 882 | ultimately show ?rhs by simp | 
| 60867 | 883 | qed | 
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 884 | |
| 63325 | 885 | lemma dvd_div_mult_self [simp]: "a dvd b \<Longrightarrow> b div a * a = b" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 886 | by (cases "a = 0") (auto elim: dvdE simp add: ac_simps) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 887 | |
| 63325 | 888 | lemma dvd_mult_div_cancel [simp]: "a dvd b \<Longrightarrow> a * (b div a) = b" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 889 | using dvd_div_mult_self [of a b] by (simp add: ac_simps) | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 890 | |
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 891 | lemma div_mult_swap: | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 892 | assumes "c dvd b" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 893 | shows "a * (b div c) = (a * b) div c" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 894 | proof (cases "c = 0") | 
| 63325 | 895 | case True | 
| 896 | then show ?thesis by simp | |
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 897 | next | 
| 63325 | 898 | case False | 
| 899 | from assms obtain d where "b = c * d" .. | |
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 900 | moreover from False have "a * divide (d * c) c = ((a * d) * c) div c" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 901 | by simp | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 902 | ultimately show ?thesis by (simp add: ac_simps) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 903 | qed | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 904 | |
| 63325 | 905 | lemma dvd_div_mult: "c dvd b \<Longrightarrow> b div c * a = (b * a) div c" | 
| 906 | using div_mult_swap [of c b a] by (simp add: ac_simps) | |
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 907 | |
| 60570 | 908 | lemma dvd_div_mult2_eq: | 
| 909 | assumes "b * c dvd a" | |
| 910 | shows "a div (b * c) = a div b div c" | |
| 63325 | 911 | proof - | 
| 912 | from assms obtain k where "a = b * c * k" .. | |
| 60570 | 913 | then show ?thesis | 
| 914 | by (cases "b = 0 \<or> c = 0") (auto, simp add: ac_simps) | |
| 915 | qed | |
| 916 | ||
| 60867 | 917 | lemma dvd_div_div_eq_mult: | 
| 918 | assumes "a \<noteq> 0" "c \<noteq> 0" and "a dvd b" "c dvd d" | |
| 63588 | 919 | shows "b div a = d div c \<longleftrightarrow> b * c = a * d" | 
| 920 | (is "?lhs \<longleftrightarrow> ?rhs") | |
| 60867 | 921 | proof - | 
| 922 | from assms have "a * c \<noteq> 0" by simp | |
| 63588 | 923 | then have "?lhs \<longleftrightarrow> b div a * (a * c) = d div c * (a * c)" | 
| 60867 | 924 | by simp | 
| 925 | also have "\<dots> \<longleftrightarrow> (a * (b div a)) * c = (c * (d div c)) * a" | |
| 926 | by (simp add: ac_simps) | |
| 927 | also have "\<dots> \<longleftrightarrow> (a * b div a) * c = (c * d div c) * a" | |
| 928 | using assms by (simp add: div_mult_swap) | |
| 63588 | 929 | also have "\<dots> \<longleftrightarrow> ?rhs" | 
| 60867 | 930 | using assms by (simp add: ac_simps) | 
| 931 | finally show ?thesis . | |
| 932 | qed | |
| 933 | ||
| 63359 | 934 | lemma dvd_mult_imp_div: | 
| 935 | assumes "a * c dvd b" | |
| 936 | shows "a dvd b div c" | |
| 937 | proof (cases "c = 0") | |
| 938 | case True then show ?thesis by simp | |
| 939 | next | |
| 940 | case False | |
| 941 | from \<open>a * c dvd b\<close> obtain d where "b = a * c * d" .. | |
| 63588 | 942 | with False show ?thesis | 
| 943 | by (simp add: mult.commute [of a] mult.assoc) | |
| 63359 | 944 | qed | 
| 945 | ||
| 64592 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 946 | lemma div_div_eq_right: | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 947 | assumes "c dvd b" "b dvd a" | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 948 | shows "a div (b div c) = a div b * c" | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 949 | proof (cases "c = 0 \<or> b = 0") | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 950 | case True | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 951 | then show ?thesis | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 952 | by auto | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 953 | next | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 954 | case False | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 955 | from assms obtain r s where "b = c * r" and "a = c * r * s" | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 956 | by (blast elim: dvdE) | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 957 | moreover with False have "r \<noteq> 0" | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 958 | by auto | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 959 | ultimately show ?thesis using False | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 960 | by simp (simp add: mult.commute [of _ r] mult.assoc mult.commute [of c]) | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 961 | qed | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 962 | |
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 963 | lemma div_div_div_same: | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 964 | assumes "d dvd b" "b dvd a" | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 965 | shows "(a div d) div (b div d) = a div b" | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 966 | proof (cases "b = 0 \<or> d = 0") | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 967 | case True | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 968 | with assms show ?thesis | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 969 | by auto | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 970 | next | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 971 | case False | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 972 | from assms obtain r s | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 973 | where "a = d * r * s" and "b = d * r" | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 974 | by (blast elim: dvdE) | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 975 | with False show ?thesis | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 976 | by simp (simp add: ac_simps) | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 977 | qed | 
| 
7759f1766189
more fine-grained type class hierarchy for div and mod
 haftmann parents: 
64591diff
changeset | 978 | |
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 979 | |
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 980 | text \<open>Units: invertible elements in a ring\<close> | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 981 | |
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 982 | abbreviation is_unit :: "'a \<Rightarrow> bool" | 
| 63325 | 983 | where "is_unit a \<equiv> a dvd 1" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 984 | |
| 63325 | 985 | lemma not_is_unit_0 [simp]: "\<not> is_unit 0" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 986 | by simp | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 987 | |
| 63325 | 988 | lemma unit_imp_dvd [dest]: "is_unit b \<Longrightarrow> b dvd a" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 989 | by (rule dvd_trans [of _ 1]) simp_all | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 990 | |
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 991 | lemma unit_dvdE: | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 992 | assumes "is_unit a" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 993 | obtains c where "a \<noteq> 0" and "b = a * c" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 994 | proof - | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 995 | from assms have "a dvd b" by auto | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 996 | then obtain c where "b = a * c" .. | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 997 | moreover from assms have "a \<noteq> 0" by auto | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 998 | ultimately show thesis using that by blast | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 999 | qed | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1000 | |
| 63325 | 1001 | lemma dvd_unit_imp_unit: "a dvd b \<Longrightarrow> is_unit b \<Longrightarrow> is_unit a" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1002 | by (rule dvd_trans) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1003 | |
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1004 | lemma unit_div_1_unit [simp, intro]: | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1005 | assumes "is_unit a" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1006 | shows "is_unit (1 div a)" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1007 | proof - | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1008 | from assms have "1 = 1 div a * a" by simp | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1009 | then show "is_unit (1 div a)" by (rule dvdI) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1010 | qed | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1011 | |
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1012 | lemma is_unitE [elim?]: | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1013 | assumes "is_unit a" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1014 | obtains b where "a \<noteq> 0" and "b \<noteq> 0" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1015 | and "is_unit b" and "1 div a = b" and "1 div b = a" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1016 | and "a * b = 1" and "c div a = c * b" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1017 | proof (rule that) | 
| 63040 | 1018 | define b where "b = 1 div a" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1019 | then show "1 div a = b" by simp | 
| 63325 | 1020 | from assms b_def show "is_unit b" by simp | 
| 1021 | with assms show "a \<noteq> 0" and "b \<noteq> 0" by auto | |
| 1022 | from assms b_def show "a * b = 1" by simp | |
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1023 | then have "1 = a * b" .. | 
| 60758 | 1024 | with b_def \<open>b \<noteq> 0\<close> show "1 div b = a" by simp | 
| 63325 | 1025 | from assms have "a dvd c" .. | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1026 | then obtain d where "c = a * d" .. | 
| 60758 | 1027 | with \<open>a \<noteq> 0\<close> \<open>a * b = 1\<close> show "c div a = c * b" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1028 | by (simp add: mult.assoc mult.left_commute [of a]) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1029 | qed | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1030 | |
| 63325 | 1031 | lemma unit_prod [intro]: "is_unit a \<Longrightarrow> is_unit b \<Longrightarrow> is_unit (a * b)" | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 1032 | by (subst mult_1_left [of 1, symmetric]) (rule mult_dvd_mono) | 
| 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 1033 | |
| 63325 | 1034 | lemma is_unit_mult_iff: "is_unit (a * b) \<longleftrightarrow> is_unit a \<and> is_unit b" | 
| 62366 | 1035 | by (auto dest: dvd_mult_left dvd_mult_right) | 
| 1036 | ||
| 63325 | 1037 | lemma unit_div [intro]: "is_unit a \<Longrightarrow> is_unit b \<Longrightarrow> is_unit (a div b)" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1038 | by (erule is_unitE [of b a]) (simp add: ac_simps unit_prod) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1039 | |
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1040 | lemma mult_unit_dvd_iff: | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1041 | assumes "is_unit b" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1042 | shows "a * b dvd c \<longleftrightarrow> a dvd c" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1043 | proof | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1044 | assume "a * b dvd c" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1045 | with assms show "a dvd c" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1046 | by (simp add: dvd_mult_left) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1047 | next | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1048 | assume "a dvd c" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1049 | then obtain k where "c = a * k" .. | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1050 | with assms have "c = (a * b) * (1 div b * k)" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1051 | by (simp add: mult_ac) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1052 | then show "a * b dvd c" by (rule dvdI) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1053 | qed | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1054 | |
| 63924 | 1055 | lemma mult_unit_dvd_iff': "is_unit a \<Longrightarrow> (a * b) dvd c \<longleftrightarrow> b dvd c" | 
| 1056 | using mult_unit_dvd_iff [of a b c] by (simp add: ac_simps) | |
| 1057 | ||
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1058 | lemma dvd_mult_unit_iff: | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1059 | assumes "is_unit b" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1060 | shows "a dvd c * b \<longleftrightarrow> a dvd c" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1061 | proof | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1062 | assume "a dvd c * b" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1063 | with assms have "c * b dvd c * (b * (1 div b))" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1064 | by (subst mult_assoc [symmetric]) simp | 
| 63325 | 1065 | also from assms have "b * (1 div b) = 1" | 
| 1066 | by (rule is_unitE) simp | |
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1067 | finally have "c * b dvd c" by simp | 
| 60758 | 1068 | with \<open>a dvd c * b\<close> show "a dvd c" by (rule dvd_trans) | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1069 | next | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1070 | assume "a dvd c" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1071 | then show "a dvd c * b" by simp | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1072 | qed | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1073 | |
| 63924 | 1074 | lemma dvd_mult_unit_iff': "is_unit b \<Longrightarrow> a dvd b * c \<longleftrightarrow> a dvd c" | 
| 1075 | using dvd_mult_unit_iff [of b a c] by (simp add: ac_simps) | |
| 1076 | ||
| 63325 | 1077 | lemma div_unit_dvd_iff: "is_unit b \<Longrightarrow> a div b dvd c \<longleftrightarrow> a dvd c" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1078 | by (erule is_unitE [of _ a]) (auto simp add: mult_unit_dvd_iff) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1079 | |
| 63325 | 1080 | lemma dvd_div_unit_iff: "is_unit b \<Longrightarrow> a dvd c div b \<longleftrightarrow> a dvd c" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1081 | by (erule is_unitE [of _ c]) (simp add: dvd_mult_unit_iff) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1082 | |
| 63924 | 1083 | lemmas unit_dvd_iff = mult_unit_dvd_iff mult_unit_dvd_iff' | 
| 1084 | dvd_mult_unit_iff dvd_mult_unit_iff' | |
| 1085 | div_unit_dvd_iff dvd_div_unit_iff (* FIXME consider named_theorems *) | |
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1086 | |
| 63325 | 1087 | lemma unit_mult_div_div [simp]: "is_unit a \<Longrightarrow> b * (1 div a) = b div a" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1088 | by (erule is_unitE [of _ b]) simp | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1089 | |
| 63325 | 1090 | lemma unit_div_mult_self [simp]: "is_unit a \<Longrightarrow> b div a * a = b" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1091 | by (rule dvd_div_mult_self) auto | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1092 | |
| 63325 | 1093 | lemma unit_div_1_div_1 [simp]: "is_unit a \<Longrightarrow> 1 div (1 div a) = a" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1094 | by (erule is_unitE) simp | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1095 | |
| 63325 | 1096 | lemma unit_div_mult_swap: "is_unit c \<Longrightarrow> a * (b div c) = (a * b) div c" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1097 | by (erule unit_dvdE [of _ b]) (simp add: mult.left_commute [of _ c]) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1098 | |
| 63325 | 1099 | lemma unit_div_commute: "is_unit b \<Longrightarrow> (a div b) * c = (a * c) div b" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1100 | using unit_div_mult_swap [of b c a] by (simp add: ac_simps) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1101 | |
| 63325 | 1102 | lemma unit_eq_div1: "is_unit b \<Longrightarrow> a div b = c \<longleftrightarrow> a = c * b" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1103 | by (auto elim: is_unitE) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1104 | |
| 63325 | 1105 | lemma unit_eq_div2: "is_unit b \<Longrightarrow> a = c div b \<longleftrightarrow> a * b = c" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1106 | using unit_eq_div1 [of b c a] by auto | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1107 | |
| 63325 | 1108 | lemma unit_mult_left_cancel: "is_unit a \<Longrightarrow> a * b = a * c \<longleftrightarrow> b = c" | 
| 1109 | using mult_cancel_left [of a b c] by auto | |
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1110 | |
| 63325 | 1111 | lemma unit_mult_right_cancel: "is_unit a \<Longrightarrow> b * a = c * a \<longleftrightarrow> b = c" | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1112 | using unit_mult_left_cancel [of a b c] by (auto simp add: ac_simps) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1113 | |
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1114 | lemma unit_div_cancel: | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1115 | assumes "is_unit a" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1116 | shows "b div a = c div a \<longleftrightarrow> b = c" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1117 | proof - | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1118 | from assms have "is_unit (1 div a)" by simp | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1119 | then have "b * (1 div a) = c * (1 div a) \<longleftrightarrow> b = c" | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1120 | by (rule unit_mult_right_cancel) | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1121 | with assms show ?thesis by simp | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1122 | qed | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 1123 | |
| 60570 | 1124 | lemma is_unit_div_mult2_eq: | 
| 1125 | assumes "is_unit b" and "is_unit c" | |
| 1126 | shows "a div (b * c) = a div b div c" | |
| 1127 | proof - | |
| 63325 | 1128 | from assms have "is_unit (b * c)" | 
| 1129 | by (simp add: unit_prod) | |
| 60570 | 1130 | then have "b * c dvd a" | 
| 1131 | by (rule unit_imp_dvd) | |
| 1132 | then show ?thesis | |
| 1133 | by (rule dvd_div_mult2_eq) | |
| 1134 | qed | |
| 1135 | ||
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 1136 | lemmas unit_simps = mult_unit_dvd_iff div_unit_dvd_iff dvd_mult_unit_iff | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1137 | dvd_div_unit_iff unit_div_mult_swap unit_div_commute | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 1138 | unit_mult_left_cancel unit_mult_right_cancel unit_div_cancel | 
| 60517 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1139 | unit_eq_div1 unit_eq_div2 | 
| 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 haftmann parents: 
60516diff
changeset | 1140 | |
| 64240 | 1141 | lemma is_unit_div_mult_cancel_left: | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1142 | assumes "a \<noteq> 0" and "is_unit b" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1143 | shows "a div (a * b) = 1 div b" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1144 | proof - | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1145 | from assms have "a div (a * b) = a div a div b" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1146 | by (simp add: mult_unit_dvd_iff dvd_div_mult2_eq) | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1147 | with assms show ?thesis by simp | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1148 | qed | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1149 | |
| 64240 | 1150 | lemma is_unit_div_mult_cancel_right: | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1151 | assumes "a \<noteq> 0" and "is_unit b" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1152 | shows "a div (b * a) = 1 div b" | 
| 64240 | 1153 | using assms is_unit_div_mult_cancel_left [of a b] by (simp add: ac_simps) | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1154 | |
| 64591 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1155 | lemma unit_div_eq_0_iff: | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1156 | assumes "is_unit b" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1157 | shows "a div b = 0 \<longleftrightarrow> a = 0" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1158 | by (rule dvd_div_eq_0_iff) (insert assms, auto) | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1159 | |
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1160 | lemma div_mult_unit2: | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1161 | "is_unit c \<Longrightarrow> b dvd a \<Longrightarrow> a div (b * c) = a div b div c" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1162 | by (rule dvd_div_mult2_eq) (simp_all add: mult_unit_dvd_iff) | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1163 | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1164 | end | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1165 | |
| 64848 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1166 | class unit_factor = | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1167 | fixes unit_factor :: "'a \<Rightarrow> 'a" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1168 | |
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1169 | class semidom_divide_unit_factor = semidom_divide + unit_factor + | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1170 | assumes unit_factor_0 [simp]: "unit_factor 0 = 0" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1171 | and is_unit_unit_factor: "a dvd 1 \<Longrightarrow> unit_factor a = a" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1172 | and unit_factor_is_unit: "a \<noteq> 0 \<Longrightarrow> unit_factor a dvd 1" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1173 | and unit_factor_mult: "unit_factor (a * b) = unit_factor a * unit_factor b" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1174 | -- \<open>This fine-grained hierarchy will later on allow lean normalization of polynomials\<close> | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1175 | |
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1176 | class normalization_semidom = algebraic_semidom + semidom_divide_unit_factor + | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1177 | fixes normalize :: "'a \<Rightarrow> 'a" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1178 | assumes unit_factor_mult_normalize [simp]: "unit_factor a * normalize a = a" | 
| 63588 | 1179 | and normalize_0 [simp]: "normalize 0 = 0" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1180 | begin | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1181 | |
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1182 | text \<open> | 
| 63588 | 1183 |   Class @{class normalization_semidom} cultivates the idea that each integral
 | 
| 1184 | domain can be split into equivalence classes whose representants are | |
| 1185 |   associated, i.e. divide each other. @{const normalize} specifies a canonical
 | |
| 1186 | representant for each equivalence class. The rationale behind this is that | |
| 1187 | it is easier to reason about equality than equivalences, hence we prefer to | |
| 1188 | think about equality of normalized values rather than associated elements. | |
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1189 | \<close> | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1190 | |
| 64848 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1191 | declare unit_factor_is_unit [iff] | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1192 | |
| 63325 | 1193 | lemma unit_factor_dvd [simp]: "a \<noteq> 0 \<Longrightarrow> unit_factor a dvd b" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1194 | by (rule unit_imp_dvd) simp | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1195 | |
| 63325 | 1196 | lemma unit_factor_self [simp]: "unit_factor a dvd a" | 
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 1197 | by (cases "a = 0") simp_all | 
| 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 1198 | |
| 63325 | 1199 | lemma normalize_mult_unit_factor [simp]: "normalize a * unit_factor a = a" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1200 | using unit_factor_mult_normalize [of a] by (simp add: ac_simps) | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1201 | |
| 63325 | 1202 | lemma normalize_eq_0_iff [simp]: "normalize a = 0 \<longleftrightarrow> a = 0" | 
| 63588 | 1203 | (is "?lhs \<longleftrightarrow> ?rhs") | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1204 | proof | 
| 63588 | 1205 | assume ?lhs | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1206 | moreover have "unit_factor a * normalize a = a" by simp | 
| 63588 | 1207 | ultimately show ?rhs by simp | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1208 | next | 
| 63588 | 1209 | assume ?rhs | 
| 1210 | then show ?lhs by simp | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1211 | qed | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1212 | |
| 63325 | 1213 | lemma unit_factor_eq_0_iff [simp]: "unit_factor a = 0 \<longleftrightarrow> a = 0" | 
| 63588 | 1214 | (is "?lhs \<longleftrightarrow> ?rhs") | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1215 | proof | 
| 63588 | 1216 | assume ?lhs | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1217 | moreover have "unit_factor a * normalize a = a" by simp | 
| 63588 | 1218 | ultimately show ?rhs by simp | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1219 | next | 
| 63588 | 1220 | assume ?rhs | 
| 1221 | then show ?lhs by simp | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1222 | qed | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1223 | |
| 64848 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1224 | lemma div_unit_factor [simp]: "a div unit_factor a = normalize a" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1225 | proof (cases "a = 0") | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1226 | case True | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1227 | then show ?thesis by simp | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1228 | next | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1229 | case False | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1230 | then have "unit_factor a \<noteq> 0" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1231 | by simp | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1232 | with nonzero_mult_div_cancel_left | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1233 | have "unit_factor a * normalize a div unit_factor a = normalize a" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1234 | by blast | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1235 | then show ?thesis by simp | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1236 | qed | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1237 | |
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1238 | lemma normalize_div [simp]: "normalize a div a = 1 div unit_factor a" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1239 | proof (cases "a = 0") | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1240 | case True | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1241 | then show ?thesis by simp | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1242 | next | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1243 | case False | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1244 | have "normalize a div a = normalize a div (unit_factor a * normalize a)" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1245 | by simp | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1246 | also have "\<dots> = 1 div unit_factor a" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1247 | using False by (subst is_unit_div_mult_cancel_right) simp_all | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1248 | finally show ?thesis . | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1249 | qed | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1250 | |
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1251 | lemma is_unit_normalize: | 
| 63325 | 1252 | assumes "is_unit a" | 
| 64848 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1253 | shows "normalize a = 1" | 
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 1254 | proof - | 
| 64848 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1255 | from assms have "unit_factor a = a" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1256 | by (rule is_unit_unit_factor) | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1257 | moreover from assms have "a \<noteq> 0" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1258 | by auto | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1259 | moreover have "normalize a = a div unit_factor a" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1260 | by simp | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1261 | ultimately show ?thesis | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1262 | by simp | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1263 | qed | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1264 | |
| 63325 | 1265 | lemma unit_factor_1 [simp]: "unit_factor 1 = 1" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1266 | by (rule is_unit_unit_factor) simp | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1267 | |
| 63325 | 1268 | lemma normalize_1 [simp]: "normalize 1 = 1" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1269 | by (rule is_unit_normalize) simp | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1270 | |
| 63325 | 1271 | lemma normalize_1_iff: "normalize a = 1 \<longleftrightarrow> is_unit a" | 
| 63588 | 1272 | (is "?lhs \<longleftrightarrow> ?rhs") | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1273 | proof | 
| 63588 | 1274 | assume ?rhs | 
| 1275 | then show ?lhs by (rule is_unit_normalize) | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1276 | next | 
| 63588 | 1277 | assume ?lhs | 
| 1278 | then have "unit_factor a * normalize a = unit_factor a * 1" | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1279 | by simp | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1280 | then have "unit_factor a = a" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1281 | by simp | 
| 63588 | 1282 | moreover | 
| 1283 | from \<open>?lhs\<close> have "a \<noteq> 0" by auto | |
| 1284 | then have "is_unit (unit_factor a)" by simp | |
| 1285 | ultimately show ?rhs by simp | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1286 | qed | 
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 1287 | |
| 63325 | 1288 | lemma div_normalize [simp]: "a div normalize a = unit_factor a" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1289 | proof (cases "a = 0") | 
| 63325 | 1290 | case True | 
| 1291 | then show ?thesis by simp | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1292 | next | 
| 63325 | 1293 | case False | 
| 1294 | then have "normalize a \<noteq> 0" by simp | |
| 64240 | 1295 | with nonzero_mult_div_cancel_right | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1296 | have "unit_factor a * normalize a div normalize a = unit_factor a" by blast | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1297 | then show ?thesis by simp | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1298 | qed | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1299 | |
| 63325 | 1300 | lemma mult_one_div_unit_factor [simp]: "a * (1 div unit_factor b) = a div unit_factor b" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1301 | by (cases "b = 0") simp_all | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1302 | |
| 63947 | 1303 | lemma inv_unit_factor_eq_0_iff [simp]: | 
| 1304 | "1 div unit_factor a = 0 \<longleftrightarrow> a = 0" | |
| 1305 | (is "?lhs \<longleftrightarrow> ?rhs") | |
| 1306 | proof | |
| 1307 | assume ?lhs | |
| 1308 | then have "a * (1 div unit_factor a) = a * 0" | |
| 1309 | by simp | |
| 1310 | then show ?rhs | |
| 1311 | by simp | |
| 1312 | next | |
| 1313 | assume ?rhs | |
| 1314 | then show ?lhs by simp | |
| 1315 | qed | |
| 1316 | ||
| 63325 | 1317 | lemma normalize_mult: "normalize (a * b) = normalize a * normalize b" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1318 | proof (cases "a = 0 \<or> b = 0") | 
| 63325 | 1319 | case True | 
| 1320 | then show ?thesis by auto | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1321 | next | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1322 | case False | 
| 63588 | 1323 | have "unit_factor (a * b) * normalize (a * b) = a * b" | 
| 1324 | by (rule unit_factor_mult_normalize) | |
| 63325 | 1325 | then have "normalize (a * b) = a * b div unit_factor (a * b)" | 
| 1326 | by simp | |
| 1327 | also have "\<dots> = a * b div unit_factor (b * a)" | |
| 1328 | by (simp add: ac_simps) | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1329 | also have "\<dots> = a * b div unit_factor b div unit_factor a" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1330 | using False by (simp add: unit_factor_mult is_unit_div_mult2_eq [symmetric]) | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1331 | also have "\<dots> = a * (b div unit_factor b) div unit_factor a" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1332 | using False by (subst unit_div_mult_swap) simp_all | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1333 | also have "\<dots> = normalize a * normalize b" | 
| 63325 | 1334 | using False | 
| 1335 | by (simp add: mult.commute [of a] mult.commute [of "normalize a"] unit_div_mult_swap [symmetric]) | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1336 | finally show ?thesis . | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1337 | qed | 
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 1338 | |
| 63325 | 1339 | lemma unit_factor_idem [simp]: "unit_factor (unit_factor a) = unit_factor a" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1340 | by (cases "a = 0") (auto intro: is_unit_unit_factor) | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1341 | |
| 63325 | 1342 | lemma normalize_unit_factor [simp]: "a \<noteq> 0 \<Longrightarrow> normalize (unit_factor a) = 1" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1343 | by (rule is_unit_normalize) simp | 
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 1344 | |
| 63325 | 1345 | lemma normalize_idem [simp]: "normalize (normalize a) = normalize a" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1346 | proof (cases "a = 0") | 
| 63325 | 1347 | case True | 
| 1348 | then show ?thesis by simp | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1349 | next | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1350 | case False | 
| 63325 | 1351 | have "normalize a = normalize (unit_factor a * normalize a)" | 
| 1352 | by simp | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1353 | also have "\<dots> = normalize (unit_factor a) * normalize (normalize a)" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1354 | by (simp only: normalize_mult) | 
| 63325 | 1355 | finally show ?thesis | 
| 1356 | using False by simp_all | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1357 | qed | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1358 | |
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1359 | lemma unit_factor_normalize [simp]: | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1360 | assumes "a \<noteq> 0" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1361 | shows "unit_factor (normalize a) = 1" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1362 | proof - | 
| 63325 | 1363 | from assms have *: "normalize a \<noteq> 0" | 
| 1364 | by simp | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1365 | have "unit_factor (normalize a) * normalize (normalize a) = normalize a" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1366 | by (simp only: unit_factor_mult_normalize) | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1367 | then have "unit_factor (normalize a) * normalize a = normalize a" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1368 | by simp | 
| 63325 | 1369 | with * have "unit_factor (normalize a) * normalize a div normalize a = normalize a div normalize a" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1370 | by simp | 
| 63325 | 1371 | with * show ?thesis | 
| 1372 | by simp | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1373 | qed | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1374 | |
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1375 | lemma dvd_unit_factor_div: | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1376 | assumes "b dvd a" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1377 | shows "unit_factor (a div b) = unit_factor a div unit_factor b" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1378 | proof - | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1379 | from assms have "a = a div b * b" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1380 | by simp | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1381 | then have "unit_factor a = unit_factor (a div b * b)" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1382 | by simp | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1383 | then show ?thesis | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1384 | by (cases "b = 0") (simp_all add: unit_factor_mult) | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1385 | qed | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1386 | |
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1387 | lemma dvd_normalize_div: | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1388 | assumes "b dvd a" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1389 | shows "normalize (a div b) = normalize a div normalize b" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1390 | proof - | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1391 | from assms have "a = a div b * b" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1392 | by simp | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1393 | then have "normalize a = normalize (a div b * b)" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1394 | by simp | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1395 | then show ?thesis | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1396 | by (cases "b = 0") (simp_all add: normalize_mult) | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1397 | qed | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1398 | |
| 63325 | 1399 | lemma normalize_dvd_iff [simp]: "normalize a dvd b \<longleftrightarrow> a dvd b" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1400 | proof - | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1401 | have "normalize a dvd b \<longleftrightarrow> unit_factor a * normalize a dvd b" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1402 | using mult_unit_dvd_iff [of "unit_factor a" "normalize a" b] | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1403 | by (cases "a = 0") simp_all | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1404 | then show ?thesis by simp | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1405 | qed | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1406 | |
| 63325 | 1407 | lemma dvd_normalize_iff [simp]: "a dvd normalize b \<longleftrightarrow> a dvd b" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1408 | proof - | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1409 | have "a dvd normalize b \<longleftrightarrow> a dvd normalize b * unit_factor b" | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1410 | using dvd_mult_unit_iff [of "unit_factor b" a "normalize b"] | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1411 | by (cases "b = 0") simp_all | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1412 | then show ?thesis by simp | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1413 | qed | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1414 | |
| 65811 | 1415 | lemma normalize_idem_imp_unit_factor_eq: | 
| 1416 | assumes "normalize a = a" | |
| 1417 | shows "unit_factor a = of_bool (a \<noteq> 0)" | |
| 1418 | proof (cases "a = 0") | |
| 1419 | case True | |
| 1420 | then show ?thesis | |
| 1421 | by simp | |
| 1422 | next | |
| 1423 | case False | |
| 1424 | then show ?thesis | |
| 1425 | using assms unit_factor_normalize [of a] by simp | |
| 1426 | qed | |
| 1427 | ||
| 1428 | lemma normalize_idem_imp_is_unit_iff: | |
| 1429 | assumes "normalize a = a" | |
| 1430 | shows "is_unit a \<longleftrightarrow> a = 1" | |
| 1431 | using assms by (cases "a = 0") (auto dest: is_unit_normalize) | |
| 1432 | ||
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1433 | text \<open> | 
| 63588 | 1434 | We avoid an explicit definition of associated elements but prefer explicit | 
| 1435 |   normalisation instead. In theory we could define an abbreviation like @{prop
 | |
| 1436 | "associated a b \<longleftrightarrow> normalize a = normalize b"} but this is counterproductive | |
| 1437 | without suggestive infix syntax, which we do not want to sacrifice for this | |
| 1438 | purpose here. | |
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1439 | \<close> | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1440 | |
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1441 | lemma associatedI: | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1442 | assumes "a dvd b" and "b dvd a" | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1443 | shows "normalize a = normalize b" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1444 | proof (cases "a = 0 \<or> b = 0") | 
| 63325 | 1445 | case True | 
| 1446 | with assms show ?thesis by auto | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1447 | next | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1448 | case False | 
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1449 | from \<open>a dvd b\<close> obtain c where b: "b = a * c" .. | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1450 | moreover from \<open>b dvd a\<close> obtain d where a: "a = b * d" .. | 
| 63325 | 1451 | ultimately have "b * 1 = b * (c * d)" | 
| 1452 | by (simp add: ac_simps) | |
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1453 | with False have "1 = c * d" | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1454 | unfolding mult_cancel_left by simp | 
| 63325 | 1455 | then have "is_unit c" and "is_unit d" | 
| 1456 | by auto | |
| 1457 | with a b show ?thesis | |
| 1458 | by (simp add: normalize_mult is_unit_normalize) | |
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1459 | qed | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1460 | |
| 63325 | 1461 | lemma associatedD1: "normalize a = normalize b \<Longrightarrow> a dvd b" | 
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1462 | using dvd_normalize_iff [of _ b, symmetric] normalize_dvd_iff [of a _, symmetric] | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1463 | by simp | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1464 | |
| 63325 | 1465 | lemma associatedD2: "normalize a = normalize b \<Longrightarrow> b dvd a" | 
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1466 | using dvd_normalize_iff [of _ a, symmetric] normalize_dvd_iff [of b _, symmetric] | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1467 | by simp | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1468 | |
| 63325 | 1469 | lemma associated_unit: "normalize a = normalize b \<Longrightarrow> is_unit a \<Longrightarrow> is_unit b" | 
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1470 | using dvd_unit_imp_unit by (auto dest!: associatedD1 associatedD2) | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1471 | |
| 63325 | 1472 | lemma associated_iff_dvd: "normalize a = normalize b \<longleftrightarrow> a dvd b \<and> b dvd a" | 
| 63588 | 1473 | (is "?lhs \<longleftrightarrow> ?rhs") | 
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1474 | proof | 
| 63588 | 1475 | assume ?rhs | 
| 1476 | then show ?lhs by (auto intro!: associatedI) | |
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1477 | next | 
| 63588 | 1478 | assume ?lhs | 
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1479 | then have "unit_factor a * normalize a = unit_factor a * normalize b" | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1480 | by simp | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1481 | then have *: "normalize b * unit_factor a = a" | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1482 | by (simp add: ac_simps) | 
| 63588 | 1483 | show ?rhs | 
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1484 | proof (cases "a = 0 \<or> b = 0") | 
| 63325 | 1485 | case True | 
| 63588 | 1486 | with \<open>?lhs\<close> show ?thesis by auto | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1487 | next | 
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 1488 | case False | 
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1489 | then have "b dvd normalize b * unit_factor a" and "normalize b * unit_factor a dvd b" | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1490 | by (simp_all add: mult_unit_dvd_iff dvd_mult_unit_iff) | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1491 | with * show ?thesis by simp | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1492 | qed | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1493 | qed | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1494 | |
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1495 | lemma associated_eqI: | 
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1496 | assumes "a dvd b" and "b dvd a" | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1497 | assumes "normalize a = a" and "normalize b = b" | 
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1498 | shows "a = b" | 
| 60688 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1499 | proof - | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1500 | from assms have "normalize a = normalize b" | 
| 
01488b559910
avoid explicit definition of the relation of associated elements in a ring -- prefer explicit normalization instead
 haftmann parents: 
60685diff
changeset | 1501 | unfolding associated_iff_dvd by simp | 
| 63588 | 1502 | with \<open>normalize a = a\<close> have "a = normalize b" | 
| 1503 | by simp | |
| 1504 | with \<open>normalize b = b\<close> show "a = b" | |
| 1505 | by simp | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1506 | qed | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1507 | |
| 64591 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1508 | lemma normalize_unit_factor_eqI: | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1509 | assumes "normalize a = normalize b" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1510 | and "unit_factor a = unit_factor b" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1511 | shows "a = b" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1512 | proof - | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1513 | from assms have "unit_factor a * normalize a = unit_factor b * normalize b" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1514 | by simp | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1515 | then show ?thesis | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1516 | by simp | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1517 | qed | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64290diff
changeset | 1518 | |
| 60685 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1519 | end | 
| 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 haftmann parents: 
60615diff
changeset | 1520 | |
| 64164 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1521 | |
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1522 | text \<open>Syntactic division remainder operator\<close> | 
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1523 | |
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1524 | class modulo = dvd + divide + | 
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1525 | fixes modulo :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "mod" 70) | 
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1526 | |
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1527 | text \<open>Arbitrary quotient and remainder partitions\<close> | 
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1528 | |
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1529 | class semiring_modulo = comm_semiring_1_cancel + divide + modulo + | 
| 64242 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1530 | assumes div_mult_mod_eq: "a div b * b + a mod b = a" | 
| 64164 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1531 | begin | 
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1532 | |
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1533 | lemma mod_div_decomp: | 
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1534 | fixes a b | 
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1535 | obtains q r where "q = a div b" and "r = a mod b" | 
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1536 | and "a = q * b + r" | 
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1537 | proof - | 
| 64242 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1538 | from div_mult_mod_eq have "a = a div b * b + a mod b" by simp | 
| 64164 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1539 | moreover have "a div b = a div b" .. | 
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1540 | moreover have "a mod b = a mod b" .. | 
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1541 | note that ultimately show thesis by blast | 
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1542 | qed | 
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1543 | |
| 64242 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1544 | lemma mult_div_mod_eq: "b * (a div b) + a mod b = a" | 
| 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1545 | using div_mult_mod_eq [of a b] by (simp add: ac_simps) | 
| 64164 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1546 | |
| 64242 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1547 | lemma mod_div_mult_eq: "a mod b + a div b * b = a" | 
| 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1548 | using div_mult_mod_eq [of a b] by (simp add: ac_simps) | 
| 64164 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1549 | |
| 64242 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1550 | lemma mod_mult_div_eq: "a mod b + b * (a div b) = a" | 
| 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1551 | using div_mult_mod_eq [of a b] by (simp add: ac_simps) | 
| 64164 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1552 | |
| 64242 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1553 | lemma minus_div_mult_eq_mod: "a - a div b * b = a mod b" | 
| 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1554 | by (rule add_implies_diff [symmetric]) (fact mod_div_mult_eq) | 
| 64164 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1555 | |
| 64242 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1556 | lemma minus_mult_div_eq_mod: "a - b * (a div b) = a mod b" | 
| 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1557 | by (rule add_implies_diff [symmetric]) (fact mod_mult_div_eq) | 
| 64164 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1558 | |
| 64242 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1559 | lemma minus_mod_eq_div_mult: "a - a mod b = a div b * b" | 
| 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1560 | by (rule add_implies_diff [symmetric]) (fact div_mult_mod_eq) | 
| 64164 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1561 | |
| 64242 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1562 | lemma minus_mod_eq_mult_div: "a - a mod b = b * (a div b)" | 
| 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1563 | by (rule add_implies_diff [symmetric]) (fact mult_div_mod_eq) | 
| 64164 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1564 | |
| 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1565 | end | 
| 64242 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 haftmann parents: 
64240diff
changeset | 1566 | |
| 64164 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 haftmann parents: 
63950diff
changeset | 1567 | |
| 66807 | 1568 | text \<open>Quotient and remainder in integral domains\<close> | 
| 1569 | ||
| 1570 | class semidom_modulo = algebraic_semidom + semiring_modulo | |
| 1571 | begin | |
| 1572 | ||
| 1573 | lemma mod_0 [simp]: "0 mod a = 0" | |
| 1574 | using div_mult_mod_eq [of 0 a] by simp | |
| 1575 | ||
| 1576 | lemma mod_by_0 [simp]: "a mod 0 = a" | |
| 1577 | using div_mult_mod_eq [of a 0] by simp | |
| 1578 | ||
| 1579 | lemma mod_by_1 [simp]: | |
| 1580 | "a mod 1 = 0" | |
| 1581 | proof - | |
| 1582 | from div_mult_mod_eq [of a one] div_by_1 have "a + a mod 1 = a" by simp | |
| 1583 | then have "a + a mod 1 = a + 0" by simp | |
| 1584 | then show ?thesis by (rule add_left_imp_eq) | |
| 1585 | qed | |
| 1586 | ||
| 1587 | lemma mod_self [simp]: | |
| 1588 | "a mod a = 0" | |
| 1589 | using div_mult_mod_eq [of a a] by simp | |
| 1590 | ||
| 1591 | lemma dvd_imp_mod_0 [simp]: | |
| 1592 | assumes "a dvd b" | |
| 1593 | shows "b mod a = 0" | |
| 1594 | using assms minus_div_mult_eq_mod [of b a] by simp | |
| 1595 | ||
| 1596 | lemma mod_0_imp_dvd: | |
| 1597 | assumes "a mod b = 0" | |
| 1598 | shows "b dvd a" | |
| 1599 | proof - | |
| 1600 | have "b dvd ((a div b) * b)" by simp | |
| 1601 | also have "(a div b) * b = a" | |
| 1602 | using div_mult_mod_eq [of a b] by (simp add: assms) | |
| 1603 | finally show ?thesis . | |
| 1604 | qed | |
| 1605 | ||
| 1606 | lemma mod_eq_0_iff_dvd: | |
| 1607 | "a mod b = 0 \<longleftrightarrow> b dvd a" | |
| 1608 | by (auto intro: mod_0_imp_dvd) | |
| 1609 | ||
| 1610 | lemma dvd_eq_mod_eq_0 [nitpick_unfold, code]: | |
| 1611 | "a dvd b \<longleftrightarrow> b mod a = 0" | |
| 1612 | by (simp add: mod_eq_0_iff_dvd) | |
| 1613 | ||
| 1614 | lemma dvd_mod_iff: | |
| 1615 | assumes "c dvd b" | |
| 1616 | shows "c dvd a mod b \<longleftrightarrow> c dvd a" | |
| 1617 | proof - | |
| 1618 | from assms have "(c dvd a mod b) \<longleftrightarrow> (c dvd ((a div b) * b + a mod b))" | |
| 1619 | by (simp add: dvd_add_right_iff) | |
| 1620 | also have "(a div b) * b + a mod b = a" | |
| 1621 | using div_mult_mod_eq [of a b] by simp | |
| 1622 | finally show ?thesis . | |
| 1623 | qed | |
| 1624 | ||
| 1625 | lemma dvd_mod_imp_dvd: | |
| 1626 | assumes "c dvd a mod b" and "c dvd b" | |
| 1627 | shows "c dvd a" | |
| 1628 | using assms dvd_mod_iff [of c b a] by simp | |
| 1629 | ||
| 66808 
1907167b6038
elementary definition of division on natural numbers
 haftmann parents: 
66807diff
changeset | 1630 | lemma dvd_minus_mod [simp]: | 
| 
1907167b6038
elementary definition of division on natural numbers
 haftmann parents: 
66807diff
changeset | 1631 | "b dvd a - a mod b" | 
| 
1907167b6038
elementary definition of division on natural numbers
 haftmann parents: 
66807diff
changeset | 1632 | by (simp add: minus_mod_eq_div_mult) | 
| 
1907167b6038
elementary definition of division on natural numbers
 haftmann parents: 
66807diff
changeset | 1633 | |
| 66810 | 1634 | lemma cancel_div_mod_rules: | 
| 1635 | "((a div b) * b + a mod b) + c = a + c" | |
| 1636 | "(b * (a div b) + a mod b) + c = a + c" | |
| 1637 | by (simp_all add: div_mult_mod_eq mult_div_mod_eq) | |
| 1638 | ||
| 66807 | 1639 | end | 
| 1640 | ||
| 66810 | 1641 | text \<open>Interlude: basic tool support for algebraic and arithmetic calculations\<close> | 
| 1642 | ||
| 1643 | named_theorems arith "arith facts -- only ground formulas" | |
| 1644 | ML_file "Tools/arith_data.ML" | |
| 1645 | ||
| 1646 | ML_file "~~/src/Provers/Arith/cancel_div_mod.ML" | |
| 1647 | ||
| 1648 | ML \<open> | |
| 1649 | structure Cancel_Div_Mod_Ring = Cancel_Div_Mod | |
| 1650 | ( | |
| 1651 |   val div_name = @{const_name divide};
 | |
| 1652 |   val mod_name = @{const_name modulo};
 | |
| 1653 | val mk_binop = HOLogic.mk_binop; | |
| 1654 | val mk_sum = Arith_Data.mk_sum; | |
| 1655 | val dest_sum = Arith_Data.dest_sum; | |
| 1656 | ||
| 1657 |   val div_mod_eqs = map mk_meta_eq @{thms cancel_div_mod_rules};
 | |
| 1658 | ||
| 1659 | val prove_eq_sums = Arith_Data.prove_conv2 all_tac (Arith_Data.simp_all_tac | |
| 1660 |     @{thms diff_conv_add_uminus add_0_left add_0_right ac_simps})
 | |
| 1661 | ) | |
| 1662 | \<close> | |
| 1663 | ||
| 1664 | simproc_setup cancel_div_mod_int ("(a::'a::semidom_modulo) + b") =
 | |
| 1665 | \<open>K Cancel_Div_Mod_Ring.proc\<close> | |
| 1666 | ||
| 66807 | 1667 | class idom_modulo = idom + semidom_modulo | 
| 1668 | begin | |
| 1669 | ||
| 1670 | subclass idom_divide .. | |
| 1671 | ||
| 1672 | lemma div_diff [simp]: | |
| 1673 | "c dvd a \<Longrightarrow> c dvd b \<Longrightarrow> (a - b) div c = a div c - b div c" | |
| 1674 | using div_add [of _ _ "- b"] by (simp add: dvd_neg_div) | |
| 1675 | ||
| 1676 | end | |
| 1677 | ||
| 1678 | ||
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 1679 | class ordered_semiring = semiring + ordered_comm_monoid_add + | 
| 38642 
8fa437809c67
dropped type classes mult_mono and mult_mono1; tuned names of technical rule duplicates
 haftmann parents: 
37767diff
changeset | 1680 | assumes mult_left_mono: "a \<le> b \<Longrightarrow> 0 \<le> c \<Longrightarrow> c * a \<le> c * b" | 
| 
8fa437809c67
dropped type classes mult_mono and mult_mono1; tuned names of technical rule duplicates
 haftmann parents: 
37767diff
changeset | 1681 | assumes mult_right_mono: "a \<le> b \<Longrightarrow> 0 \<le> c \<Longrightarrow> a * c \<le> b * c" | 
| 25230 | 1682 | begin | 
| 1683 | ||
| 63325 | 1684 | lemma mult_mono: "a \<le> b \<Longrightarrow> c \<le> d \<Longrightarrow> 0 \<le> b \<Longrightarrow> 0 \<le> c \<Longrightarrow> a * c \<le> b * d" | 
| 1685 | apply (erule (1) mult_right_mono [THEN order_trans]) | |
| 1686 | apply (erule (1) mult_left_mono) | |
| 1687 | done | |
| 25230 | 1688 | |
| 63325 | 1689 | lemma mult_mono': "a \<le> b \<Longrightarrow> c \<le> d \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 \<le> c \<Longrightarrow> a * c \<le> b * d" | 
| 63588 | 1690 | by (rule mult_mono) (fast intro: order_trans)+ | 
| 25230 | 1691 | |
| 1692 | end | |
| 21199 
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
 krauss parents: 
20633diff
changeset | 1693 | |
| 62377 
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
 hoelzl parents: 
62376diff
changeset | 1694 | class ordered_semiring_0 = semiring_0 + ordered_semiring | 
| 25267 | 1695 | begin | 
| 14268 
5cf13e80be0e
Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
 paulson parents: 
14267diff
changeset | 1696 | |
| 63325 | 1697 | lemma mult_nonneg_nonneg [simp]: "0 \<le> a \<Longrightarrow> 0 \<le> b \<Longrightarrow> 0 \<le> a * b" | 
| 1698 | using mult_left_mono [of 0 b a] by simp | |
| 25230 | 1699 | |
| 1700 | lemma mult_nonneg_nonpos: "0 \<le> a \<Longrightarrow> b \<le> 0 \<Longrightarrow> a * b \<le> 0" | |
| 63325 | 1701 | using mult_left_mono [of b 0 a] by simp | 
| 30692 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 1702 | |
| 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 1703 | lemma mult_nonpos_nonneg: "a \<le> 0 \<Longrightarrow> 0 \<le> b \<Longrightarrow> a * b \<le> 0" | 
| 63325 | 1704 | using mult_right_mono [of a 0 b] by simp | 
| 30692 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 1705 | |
| 63588 | 1706 | text \<open>Legacy -- use @{thm [source] mult_nonpos_nonneg}.\<close>
 | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 1707 | lemma mult_nonneg_nonpos2: "0 \<le> a \<Longrightarrow> b \<le> 0 \<Longrightarrow> b * a \<le> 0" | 
| 63588 | 1708 | by (drule mult_right_mono [of b 0]) auto | 
| 25230 | 1709 | |
| 62378 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 1710 | lemma split_mult_neg_le: "(0 \<le> a \<and> b \<le> 0) \<or> (a \<le> 0 \<and> 0 \<le> b) \<Longrightarrow> a * b \<le> 0" | 
| 63325 | 1711 | by (auto simp add: mult_nonneg_nonpos mult_nonneg_nonpos2) | 
| 25230 | 1712 | |
| 1713 | end | |
| 1714 | ||
| 62377 
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
 hoelzl parents: 
62376diff
changeset | 1715 | class ordered_cancel_semiring = ordered_semiring + cancel_comm_monoid_add | 
| 
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
 hoelzl parents: 
62376diff
changeset | 1716 | begin | 
| 
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
 hoelzl parents: 
62376diff
changeset | 1717 | |
| 
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
 hoelzl parents: 
62376diff
changeset | 1718 | subclass semiring_0_cancel .. | 
| 63588 | 1719 | |
| 62377 
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
 hoelzl parents: 
62376diff
changeset | 1720 | subclass ordered_semiring_0 .. | 
| 
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
 hoelzl parents: 
62376diff
changeset | 1721 | |
| 
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
 hoelzl parents: 
62376diff
changeset | 1722 | end | 
| 
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
 hoelzl parents: 
62376diff
changeset | 1723 | |
| 38642 
8fa437809c67
dropped type classes mult_mono and mult_mono1; tuned names of technical rule duplicates
 haftmann parents: 
37767diff
changeset | 1724 | class linordered_semiring = ordered_semiring + linordered_cancel_ab_semigroup_add | 
| 25267 | 1725 | begin | 
| 25230 | 1726 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 1727 | subclass ordered_cancel_semiring .. | 
| 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 1728 | |
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 1729 | subclass ordered_cancel_comm_monoid_add .. | 
| 25304 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 1730 | |
| 63456 
3365c8ec67bd
sharing simp rules between ordered monoids and rings
 fleury <Mathias.Fleury@mpi-inf.mpg.de> parents: 
63359diff
changeset | 1731 | subclass ordered_ab_semigroup_monoid_add_imp_le .. | 
| 
3365c8ec67bd
sharing simp rules between ordered monoids and rings
 fleury <Mathias.Fleury@mpi-inf.mpg.de> parents: 
63359diff
changeset | 1732 | |
| 63325 | 1733 | lemma mult_left_less_imp_less: "c * a < c * b \<Longrightarrow> 0 \<le> c \<Longrightarrow> a < b" | 
| 1734 | by (force simp add: mult_left_mono not_le [symmetric]) | |
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 1735 | |
| 63325 | 1736 | lemma mult_right_less_imp_less: "a * c < b * c \<Longrightarrow> 0 \<le> c \<Longrightarrow> a < b" | 
| 1737 | by (force simp add: mult_right_mono not_le [symmetric]) | |
| 23521 | 1738 | |
| 25186 | 1739 | end | 
| 25152 | 1740 | |
| 35043 
07dbdf60d5ad
dropped accidental duplication of "lin" prefix from cs. 108662d50512
 haftmann parents: 
35032diff
changeset | 1741 | class linordered_semiring_1 = linordered_semiring + semiring_1 | 
| 36622 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1742 | begin | 
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1743 | |
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1744 | lemma convex_bound_le: | 
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1745 | assumes "x \<le> a" "y \<le> a" "0 \<le> u" "0 \<le> v" "u + v = 1" | 
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1746 | shows "u * x + v * y \<le> a" | 
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1747 | proof- | 
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1748 | from assms have "u * x + v * y \<le> u * a + v * a" | 
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1749 | by (simp add: add_mono mult_left_mono) | 
| 63325 | 1750 | with assms show ?thesis | 
| 1751 | unfolding distrib_right[symmetric] by simp | |
| 36622 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1752 | qed | 
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1753 | |
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1754 | end | 
| 35043 
07dbdf60d5ad
dropped accidental duplication of "lin" prefix from cs. 108662d50512
 haftmann parents: 
35032diff
changeset | 1755 | |
| 
07dbdf60d5ad
dropped accidental duplication of "lin" prefix from cs. 108662d50512
 haftmann parents: 
35032diff
changeset | 1756 | class linordered_semiring_strict = semiring + comm_monoid_add + linordered_cancel_ab_semigroup_add + | 
| 25062 | 1757 | assumes mult_strict_left_mono: "a < b \<Longrightarrow> 0 < c \<Longrightarrow> c * a < c * b" | 
| 1758 | assumes mult_strict_right_mono: "a < b \<Longrightarrow> 0 < c \<Longrightarrow> a * c < b * c" | |
| 25267 | 1759 | begin | 
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14334diff
changeset | 1760 | |
| 27516 | 1761 | subclass semiring_0_cancel .. | 
| 14940 | 1762 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 1763 | subclass linordered_semiring | 
| 28823 | 1764 | proof | 
| 23550 | 1765 | fix a b c :: 'a | 
| 63588 | 1766 | assume *: "a \<le> b" "0 \<le> c" | 
| 1767 | then show "c * a \<le> c * b" | |
| 25186 | 1768 | unfolding le_less | 
| 1769 | using mult_strict_left_mono by (cases "c = 0") auto | |
| 63588 | 1770 | from * show "a * c \<le> b * c" | 
| 25152 | 1771 | unfolding le_less | 
| 25186 | 1772 | using mult_strict_right_mono by (cases "c = 0") auto | 
| 25152 | 1773 | qed | 
| 1774 | ||
| 63325 | 1775 | lemma mult_left_le_imp_le: "c * a \<le> c * b \<Longrightarrow> 0 < c \<Longrightarrow> a \<le> b" | 
| 1776 | by (auto simp add: mult_strict_left_mono _not_less [symmetric]) | |
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 1777 | |
| 63325 | 1778 | lemma mult_right_le_imp_le: "a * c \<le> b * c \<Longrightarrow> 0 < c \<Longrightarrow> a \<le> b" | 
| 1779 | by (auto simp add: mult_strict_right_mono not_less [symmetric]) | |
| 25230 | 1780 | |
| 56544 | 1781 | lemma mult_pos_pos[simp]: "0 < a \<Longrightarrow> 0 < b \<Longrightarrow> 0 < a * b" | 
| 63325 | 1782 | using mult_strict_left_mono [of 0 b a] by simp | 
| 30692 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 1783 | |
| 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 1784 | lemma mult_pos_neg: "0 < a \<Longrightarrow> b < 0 \<Longrightarrow> a * b < 0" | 
| 63325 | 1785 | using mult_strict_left_mono [of b 0 a] by simp | 
| 30692 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 1786 | |
| 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 1787 | lemma mult_neg_pos: "a < 0 \<Longrightarrow> 0 < b \<Longrightarrow> a * b < 0" | 
| 63325 | 1788 | using mult_strict_right_mono [of a 0 b] by simp | 
| 30692 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 1789 | |
| 63588 | 1790 | text \<open>Legacy -- use @{thm [source] mult_neg_pos}.\<close>
 | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 1791 | lemma mult_pos_neg2: "0 < a \<Longrightarrow> b < 0 \<Longrightarrow> b * a < 0" | 
| 63588 | 1792 | by (drule mult_strict_right_mono [of b 0]) auto | 
| 25230 | 1793 | |
| 63325 | 1794 | lemma zero_less_mult_pos: "0 < a * b \<Longrightarrow> 0 < a \<Longrightarrow> 0 < b" | 
| 1795 | apply (cases "b \<le> 0") | |
| 1796 | apply (auto simp add: le_less not_less) | |
| 1797 | apply (drule_tac mult_pos_neg [of a b]) | |
| 1798 | apply (auto dest: less_not_sym) | |
| 1799 | done | |
| 25230 | 1800 | |
| 63325 | 1801 | lemma zero_less_mult_pos2: "0 < b * a \<Longrightarrow> 0 < a \<Longrightarrow> 0 < b" | 
| 1802 | apply (cases "b \<le> 0") | |
| 1803 | apply (auto simp add: le_less not_less) | |
| 1804 | apply (drule_tac mult_pos_neg2 [of a b]) | |
| 1805 | apply (auto dest: less_not_sym) | |
| 1806 | done | |
| 1807 | ||
| 1808 | text \<open>Strict monotonicity in both arguments\<close> | |
| 26193 | 1809 | lemma mult_strict_mono: | 
| 1810 | assumes "a < b" and "c < d" and "0 < b" and "0 \<le> c" | |
| 1811 | shows "a * c < b * d" | |
| 63325 | 1812 | using assms | 
| 1813 | apply (cases "c = 0") | |
| 63588 | 1814 | apply simp | 
| 26193 | 1815 | apply (erule mult_strict_right_mono [THEN less_trans]) | 
| 63588 | 1816 | apply (auto simp add: le_less) | 
| 63325 | 1817 | apply (erule (1) mult_strict_left_mono) | 
| 26193 | 1818 | done | 
| 1819 | ||
| 63325 | 1820 | text \<open>This weaker variant has more natural premises\<close> | 
| 26193 | 1821 | lemma mult_strict_mono': | 
| 1822 | assumes "a < b" and "c < d" and "0 \<le> a" and "0 \<le> c" | |
| 1823 | shows "a * c < b * d" | |
| 63325 | 1824 | by (rule mult_strict_mono) (insert assms, auto) | 
| 26193 | 1825 | |
| 1826 | lemma mult_less_le_imp_less: | |
| 1827 | assumes "a < b" and "c \<le> d" and "0 \<le> a" and "0 < c" | |
| 1828 | shows "a * c < b * d" | |
| 63325 | 1829 | using assms | 
| 1830 | apply (subgoal_tac "a * c < b * c") | |
| 63588 | 1831 | apply (erule less_le_trans) | 
| 1832 | apply (erule mult_left_mono) | |
| 1833 | apply simp | |
| 63325 | 1834 | apply (erule (1) mult_strict_right_mono) | 
| 26193 | 1835 | done | 
| 1836 | ||
| 1837 | lemma mult_le_less_imp_less: | |
| 1838 | assumes "a \<le> b" and "c < d" and "0 < a" and "0 \<le> c" | |
| 1839 | shows "a * c < b * d" | |
| 63325 | 1840 | using assms | 
| 1841 | apply (subgoal_tac "a * c \<le> b * c") | |
| 63588 | 1842 | apply (erule le_less_trans) | 
| 1843 | apply (erule mult_strict_left_mono) | |
| 1844 | apply simp | |
| 63325 | 1845 | apply (erule (1) mult_right_mono) | 
| 26193 | 1846 | done | 
| 1847 | ||
| 25230 | 1848 | end | 
| 1849 | ||
| 35097 
4554bb2abfa3
dropped last occurence of the linlinordered accident
 haftmann parents: 
35092diff
changeset | 1850 | class linordered_semiring_1_strict = linordered_semiring_strict + semiring_1 | 
| 36622 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1851 | begin | 
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1852 | |
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1853 | subclass linordered_semiring_1 .. | 
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1854 | |
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1855 | lemma convex_bound_lt: | 
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1856 | assumes "x < a" "y < a" "0 \<le> u" "0 \<le> v" "u + v = 1" | 
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1857 | shows "u * x + v * y < a" | 
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1858 | proof - | 
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1859 | from assms have "u * x + v * y < u * a + v * a" | 
| 63325 | 1860 | by (cases "u = 0") (auto intro!: add_less_le_mono mult_strict_left_mono mult_left_mono) | 
| 1861 | with assms show ?thesis | |
| 1862 | unfolding distrib_right[symmetric] by simp | |
| 36622 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1863 | qed | 
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1864 | |
| 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 1865 | end | 
| 33319 | 1866 | |
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 1867 | class ordered_comm_semiring = comm_semiring_0 + ordered_ab_semigroup_add + | 
| 38642 
8fa437809c67
dropped type classes mult_mono and mult_mono1; tuned names of technical rule duplicates
 haftmann parents: 
37767diff
changeset | 1868 | assumes comm_mult_left_mono: "a \<le> b \<Longrightarrow> 0 \<le> c \<Longrightarrow> c * a \<le> c * b" | 
| 25186 | 1869 | begin | 
| 25152 | 1870 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 1871 | subclass ordered_semiring | 
| 28823 | 1872 | proof | 
| 21199 
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
 krauss parents: 
20633diff
changeset | 1873 | fix a b c :: 'a | 
| 23550 | 1874 | assume "a \<le> b" "0 \<le> c" | 
| 63325 | 1875 | then show "c * a \<le> c * b" by (rule comm_mult_left_mono) | 
| 1876 | then show "a * c \<le> b * c" by (simp only: mult.commute) | |
| 21199 
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
 krauss parents: 
20633diff
changeset | 1877 | qed | 
| 14265 
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
 paulson parents: diff
changeset | 1878 | |
| 25267 | 1879 | end | 
| 1880 | ||
| 38642 
8fa437809c67
dropped type classes mult_mono and mult_mono1; tuned names of technical rule duplicates
 haftmann parents: 
37767diff
changeset | 1881 | class ordered_cancel_comm_semiring = ordered_comm_semiring + cancel_comm_monoid_add | 
| 25267 | 1882 | begin | 
| 14265 
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
 paulson parents: diff
changeset | 1883 | |
| 38642 
8fa437809c67
dropped type classes mult_mono and mult_mono1; tuned names of technical rule duplicates
 haftmann parents: 
37767diff
changeset | 1884 | subclass comm_semiring_0_cancel .. | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 1885 | subclass ordered_comm_semiring .. | 
| 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 1886 | subclass ordered_cancel_semiring .. | 
| 25267 | 1887 | |
| 1888 | end | |
| 1889 | ||
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 1890 | class linordered_comm_semiring_strict = comm_semiring_0 + linordered_cancel_ab_semigroup_add + | 
| 38642 
8fa437809c67
dropped type classes mult_mono and mult_mono1; tuned names of technical rule duplicates
 haftmann parents: 
37767diff
changeset | 1891 | assumes comm_mult_strict_left_mono: "a < b \<Longrightarrow> 0 < c \<Longrightarrow> c * a < c * b" | 
| 25267 | 1892 | begin | 
| 1893 | ||
| 35043 
07dbdf60d5ad
dropped accidental duplication of "lin" prefix from cs. 108662d50512
 haftmann parents: 
35032diff
changeset | 1894 | subclass linordered_semiring_strict | 
| 28823 | 1895 | proof | 
| 23550 | 1896 | fix a b c :: 'a | 
| 1897 | assume "a < b" "0 < c" | |
| 63588 | 1898 | then show "c * a < c * b" | 
| 1899 | by (rule comm_mult_strict_left_mono) | |
| 1900 | then show "a * c < b * c" | |
| 1901 | by (simp only: mult.commute) | |
| 23550 | 1902 | qed | 
| 14272 
5efbb548107d
Tidying of the integer development; towards removing the
 paulson parents: 
14270diff
changeset | 1903 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 1904 | subclass ordered_cancel_comm_semiring | 
| 28823 | 1905 | proof | 
| 23550 | 1906 | fix a b c :: 'a | 
| 1907 | assume "a \<le> b" "0 \<le> c" | |
| 63325 | 1908 | then show "c * a \<le> c * b" | 
| 25186 | 1909 | unfolding le_less | 
| 26193 | 1910 | using mult_strict_left_mono by (cases "c = 0") auto | 
| 23550 | 1911 | qed | 
| 14272 
5efbb548107d
Tidying of the integer development; towards removing the
 paulson parents: 
14270diff
changeset | 1912 | |
| 25267 | 1913 | end | 
| 25230 | 1914 | |
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 1915 | class ordered_ring = ring + ordered_cancel_semiring | 
| 25267 | 1916 | begin | 
| 25230 | 1917 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 1918 | subclass ordered_ab_group_add .. | 
| 14270 | 1919 | |
| 63325 | 1920 | lemma less_add_iff1: "a * e + c < b * e + d \<longleftrightarrow> (a - b) * e + c < d" | 
| 1921 | by (simp add: algebra_simps) | |
| 25230 | 1922 | |
| 63325 | 1923 | lemma less_add_iff2: "a * e + c < b * e + d \<longleftrightarrow> c < (b - a) * e + d" | 
| 1924 | by (simp add: algebra_simps) | |
| 25230 | 1925 | |
| 63325 | 1926 | lemma le_add_iff1: "a * e + c \<le> b * e + d \<longleftrightarrow> (a - b) * e + c \<le> d" | 
| 1927 | by (simp add: algebra_simps) | |
| 25230 | 1928 | |
| 63325 | 1929 | lemma le_add_iff2: "a * e + c \<le> b * e + d \<longleftrightarrow> c \<le> (b - a) * e + d" | 
| 1930 | by (simp add: algebra_simps) | |
| 25230 | 1931 | |
| 63325 | 1932 | lemma mult_left_mono_neg: "b \<le> a \<Longrightarrow> c \<le> 0 \<Longrightarrow> c * a \<le> c * b" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1933 | apply (drule mult_left_mono [of _ _ "- c"]) | 
| 35216 | 1934 | apply simp_all | 
| 25230 | 1935 | done | 
| 1936 | ||
| 63325 | 1937 | lemma mult_right_mono_neg: "b \<le> a \<Longrightarrow> c \<le> 0 \<Longrightarrow> a * c \<le> b * c" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1938 | apply (drule mult_right_mono [of _ _ "- c"]) | 
| 35216 | 1939 | apply simp_all | 
| 25230 | 1940 | done | 
| 1941 | ||
| 30692 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 1942 | lemma mult_nonpos_nonpos: "a \<le> 0 \<Longrightarrow> b \<le> 0 \<Longrightarrow> 0 \<le> a * b" | 
| 63325 | 1943 | using mult_right_mono_neg [of a 0 b] by simp | 
| 25230 | 1944 | |
| 63325 | 1945 | lemma split_mult_pos_le: "(0 \<le> a \<and> 0 \<le> b) \<or> (a \<le> 0 \<and> b \<le> 0) \<Longrightarrow> 0 \<le> a * b" | 
| 1946 | by (auto simp add: mult_nonpos_nonpos) | |
| 25186 | 1947 | |
| 1948 | end | |
| 14270 | 1949 | |
| 64290 | 1950 | class abs_if = minus + uminus + ord + zero + abs + | 
| 1951 | assumes abs_if: "\<bar>a\<bar> = (if a < 0 then - a else a)" | |
| 1952 | ||
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 1953 | class linordered_ring = ring + linordered_semiring + linordered_ab_group_add + abs_if | 
| 25304 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 1954 | begin | 
| 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 1955 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 1956 | subclass ordered_ring .. | 
| 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 1957 | |
| 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 1958 | subclass ordered_ab_group_add_abs | 
| 28823 | 1959 | proof | 
| 25304 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 1960 | fix a b | 
| 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 1961 | show "\<bar>a + b\<bar> \<le> \<bar>a\<bar> + \<bar>b\<bar>" | 
| 63325 | 1962 | by (auto simp add: abs_if not_le not_less algebra_simps | 
| 1963 | simp del: add.commute dest: add_neg_neg add_nonneg_nonneg) | |
| 63588 | 1964 | qed (auto simp: abs_if) | 
| 25304 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 1965 | |
| 35631 
0b8a5fd339ab
generalize some lemmas from class linordered_ring_strict to linordered_ring
 huffman parents: 
35302diff
changeset | 1966 | lemma zero_le_square [simp]: "0 \<le> a * a" | 
| 63325 | 1967 | using linear [of 0 a] by (auto simp add: mult_nonpos_nonpos) | 
| 35631 
0b8a5fd339ab
generalize some lemmas from class linordered_ring_strict to linordered_ring
 huffman parents: 
35302diff
changeset | 1968 | |
| 
0b8a5fd339ab
generalize some lemmas from class linordered_ring_strict to linordered_ring
 huffman parents: 
35302diff
changeset | 1969 | lemma not_square_less_zero [simp]: "\<not> (a * a < 0)" | 
| 
0b8a5fd339ab
generalize some lemmas from class linordered_ring_strict to linordered_ring
 huffman parents: 
35302diff
changeset | 1970 | by (simp add: not_less) | 
| 
0b8a5fd339ab
generalize some lemmas from class linordered_ring_strict to linordered_ring
 huffman parents: 
35302diff
changeset | 1971 | |
| 61944 | 1972 | proposition abs_eq_iff: "\<bar>x\<bar> = \<bar>y\<bar> \<longleftrightarrow> x = y \<or> x = -y" | 
| 62390 | 1973 | by (auto simp add: abs_if split: if_split_asm) | 
| 61762 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61649diff
changeset | 1974 | |
| 64848 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1975 | lemma abs_eq_iff': | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1976 | "\<bar>a\<bar> = b \<longleftrightarrow> b \<ge> 0 \<and> (a = b \<or> a = - b)" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1977 | by (cases "a \<ge> 0") auto | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1978 | |
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1979 | lemma eq_abs_iff': | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1980 | "a = \<bar>b\<bar> \<longleftrightarrow> a \<ge> 0 \<and> (b = a \<or> b = - a)" | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1981 | using abs_eq_iff' [of b a] by auto | 
| 
c50db2128048
slightly generalized type class hierarchy concerning unit factors, to allow for lean polynomial normalization
 haftmann parents: 
64713diff
changeset | 1982 | |
| 63325 | 1983 | lemma sum_squares_ge_zero: "0 \<le> x * x + y * y" | 
| 62347 | 1984 | by (intro add_nonneg_nonneg zero_le_square) | 
| 1985 | ||
| 63325 | 1986 | lemma not_sum_squares_lt_zero: "\<not> x * x + y * y < 0" | 
| 62347 | 1987 | by (simp add: not_less sum_squares_ge_zero) | 
| 1988 | ||
| 25304 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 1989 | end | 
| 23521 | 1990 | |
| 35043 
07dbdf60d5ad
dropped accidental duplication of "lin" prefix from cs. 108662d50512
 haftmann parents: 
35032diff
changeset | 1991 | class linordered_ring_strict = ring + linordered_semiring_strict | 
| 25304 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 1992 | + ordered_ab_group_add + abs_if | 
| 25230 | 1993 | begin | 
| 14348 
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
 paulson parents: 
14341diff
changeset | 1994 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 1995 | subclass linordered_ring .. | 
| 25304 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 1996 | |
| 30692 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 1997 | lemma mult_strict_left_mono_neg: "b < a \<Longrightarrow> c < 0 \<Longrightarrow> c * a < c * b" | 
| 63325 | 1998 | using mult_strict_left_mono [of b a "- c"] by simp | 
| 30692 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 1999 | |
| 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 2000 | lemma mult_strict_right_mono_neg: "b < a \<Longrightarrow> c < 0 \<Longrightarrow> a * c < b * c" | 
| 63325 | 2001 | using mult_strict_right_mono [of b a "- c"] by simp | 
| 30692 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 2002 | |
| 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 2003 | lemma mult_neg_neg: "a < 0 \<Longrightarrow> b < 0 \<Longrightarrow> 0 < a * b" | 
| 63325 | 2004 | using mult_strict_right_mono_neg [of a 0 b] by simp | 
| 14738 | 2005 | |
| 25917 | 2006 | subclass ring_no_zero_divisors | 
| 28823 | 2007 | proof | 
| 25917 | 2008 | fix a b | 
| 63325 | 2009 | assume "a \<noteq> 0" | 
| 63588 | 2010 | then have a: "a < 0 \<or> 0 < a" by (simp add: neq_iff) | 
| 63325 | 2011 | assume "b \<noteq> 0" | 
| 63588 | 2012 | then have b: "b < 0 \<or> 0 < b" by (simp add: neq_iff) | 
| 25917 | 2013 | have "a * b < 0 \<or> 0 < a * b" | 
| 2014 | proof (cases "a < 0") | |
| 63588 | 2015 | case True | 
| 63325 | 2016 | show ?thesis | 
| 2017 | proof (cases "b < 0") | |
| 2018 | case True | |
| 63588 | 2019 | with \<open>a < 0\<close> show ?thesis by (auto dest: mult_neg_neg) | 
| 25917 | 2020 | next | 
| 63325 | 2021 | case False | 
| 63588 | 2022 | with b have "0 < b" by auto | 
| 2023 | with \<open>a < 0\<close> show ?thesis by (auto dest: mult_strict_right_mono) | |
| 25917 | 2024 | qed | 
| 2025 | next | |
| 63325 | 2026 | case False | 
| 63588 | 2027 | with a have "0 < a" by auto | 
| 63325 | 2028 | show ?thesis | 
| 2029 | proof (cases "b < 0") | |
| 2030 | case True | |
| 63588 | 2031 | with \<open>0 < a\<close> show ?thesis | 
| 63325 | 2032 | by (auto dest: mult_strict_right_mono_neg) | 
| 25917 | 2033 | next | 
| 63325 | 2034 | case False | 
| 63588 | 2035 | with b have "0 < b" by auto | 
| 2036 | with \<open>0 < a\<close> show ?thesis by auto | |
| 25917 | 2037 | qed | 
| 2038 | qed | |
| 63325 | 2039 | then show "a * b \<noteq> 0" | 
| 2040 | by (simp add: neq_iff) | |
| 25917 | 2041 | qed | 
| 25304 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 2042 | |
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56217diff
changeset | 2043 | lemma zero_less_mult_iff: "0 < a * b \<longleftrightarrow> 0 < a \<and> 0 < b \<or> a < 0 \<and> b < 0" | 
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56217diff
changeset | 2044 | by (cases a 0 b 0 rule: linorder_cases[case_product linorder_cases]) | 
| 56544 | 2045 | (auto simp add: mult_neg_neg not_less le_less dest: zero_less_mult_pos zero_less_mult_pos2) | 
| 22990 
775e9de3db48
added classes ring_no_zero_divisors and dom (non-commutative version of idom);
 huffman parents: 
22987diff
changeset | 2046 | |
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56217diff
changeset | 2047 | lemma zero_le_mult_iff: "0 \<le> a * b \<longleftrightarrow> 0 \<le> a \<and> 0 \<le> b \<or> a \<le> 0 \<and> b \<le> 0" | 
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56217diff
changeset | 2048 | by (auto simp add: eq_commute [of 0] le_less not_less zero_less_mult_iff) | 
| 14265 
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
 paulson parents: diff
changeset | 2049 | |
| 63325 | 2050 | lemma mult_less_0_iff: "a * b < 0 \<longleftrightarrow> 0 < a \<and> b < 0 \<or> a < 0 \<and> 0 < b" | 
| 2051 | using zero_less_mult_iff [of "- a" b] by auto | |
| 14265 
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
 paulson parents: diff
changeset | 2052 | |
| 63325 | 2053 | lemma mult_le_0_iff: "a * b \<le> 0 \<longleftrightarrow> 0 \<le> a \<and> b \<le> 0 \<or> a \<le> 0 \<and> 0 \<le> b" | 
| 2054 | using zero_le_mult_iff [of "- a" b] by auto | |
| 25917 | 2055 | |
| 63325 | 2056 | text \<open> | 
| 2057 |   Cancellation laws for @{term "c * a < c * b"} and @{term "a * c < b * c"},
 | |
| 2058 | also with the relations \<open>\<le>\<close> and equality. | |
| 2059 | \<close> | |
| 26193 | 2060 | |
| 63325 | 2061 | text \<open> | 
| 2062 | These ``disjunction'' versions produce two cases when the comparison is | |
| 2063 | an assumption, but effectively four when the comparison is a goal. | |
| 2064 | \<close> | |
| 26193 | 2065 | |
| 63325 | 2066 | lemma mult_less_cancel_right_disj: "a * c < b * c \<longleftrightarrow> 0 < c \<and> a < b \<or> c < 0 \<and> b < a" | 
| 26193 | 2067 | apply (cases "c = 0") | 
| 63588 | 2068 | apply (auto simp add: neq_iff mult_strict_right_mono mult_strict_right_mono_neg) | 
| 2069 | apply (auto simp add: not_less not_le [symmetric, of "a*c"] not_le [symmetric, of a]) | |
| 2070 | apply (erule_tac [!] notE) | |
| 2071 | apply (auto simp add: less_imp_le mult_right_mono mult_right_mono_neg) | |
| 26193 | 2072 | done | 
| 2073 | ||
| 63325 | 2074 | lemma mult_less_cancel_left_disj: "c * a < c * b \<longleftrightarrow> 0 < c \<and> a < b \<or> c < 0 \<and> b < a" | 
| 26193 | 2075 | apply (cases "c = 0") | 
| 63588 | 2076 | apply (auto simp add: neq_iff mult_strict_left_mono mult_strict_left_mono_neg) | 
| 2077 | apply (auto simp add: not_less not_le [symmetric, of "c * a"] not_le [symmetric, of a]) | |
| 2078 | apply (erule_tac [!] notE) | |
| 2079 | apply (auto simp add: less_imp_le mult_left_mono mult_left_mono_neg) | |
| 26193 | 2080 | done | 
| 2081 | ||
| 63325 | 2082 | text \<open> | 
| 2083 | The ``conjunction of implication'' lemmas produce two cases when the | |
| 2084 | comparison is a goal, but give four when the comparison is an assumption. | |
| 2085 | \<close> | |
| 26193 | 2086 | |
| 63325 | 2087 | lemma mult_less_cancel_right: "a * c < b * c \<longleftrightarrow> (0 \<le> c \<longrightarrow> a < b) \<and> (c \<le> 0 \<longrightarrow> b < a)" | 
| 26193 | 2088 | using mult_less_cancel_right_disj [of a c b] by auto | 
| 2089 | ||
| 63325 | 2090 | lemma mult_less_cancel_left: "c * a < c * b \<longleftrightarrow> (0 \<le> c \<longrightarrow> a < b) \<and> (c \<le> 0 \<longrightarrow> b < a)" | 
| 26193 | 2091 | using mult_less_cancel_left_disj [of c a b] by auto | 
| 2092 | ||
| 63325 | 2093 | lemma mult_le_cancel_right: "a * c \<le> b * c \<longleftrightarrow> (0 < c \<longrightarrow> a \<le> b) \<and> (c < 0 \<longrightarrow> b \<le> a)" | 
| 2094 | by (simp add: not_less [symmetric] mult_less_cancel_right_disj) | |
| 26193 | 2095 | |
| 63325 | 2096 | lemma mult_le_cancel_left: "c * a \<le> c * b \<longleftrightarrow> (0 < c \<longrightarrow> a \<le> b) \<and> (c < 0 \<longrightarrow> b \<le> a)" | 
| 2097 | by (simp add: not_less [symmetric] mult_less_cancel_left_disj) | |
| 26193 | 2098 | |
| 63325 | 2099 | lemma mult_le_cancel_left_pos: "0 < c \<Longrightarrow> c * a \<le> c * b \<longleftrightarrow> a \<le> b" | 
| 2100 | by (auto simp: mult_le_cancel_left) | |
| 30649 
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
 nipkow parents: 
30242diff
changeset | 2101 | |
| 63325 | 2102 | lemma mult_le_cancel_left_neg: "c < 0 \<Longrightarrow> c * a \<le> c * b \<longleftrightarrow> b \<le> a" | 
| 2103 | by (auto simp: mult_le_cancel_left) | |
| 30649 
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
 nipkow parents: 
30242diff
changeset | 2104 | |
| 63325 | 2105 | lemma mult_less_cancel_left_pos: "0 < c \<Longrightarrow> c * a < c * b \<longleftrightarrow> a < b" | 
| 2106 | by (auto simp: mult_less_cancel_left) | |
| 30649 
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
 nipkow parents: 
30242diff
changeset | 2107 | |
| 63325 | 2108 | lemma mult_less_cancel_left_neg: "c < 0 \<Longrightarrow> c * a < c * b \<longleftrightarrow> b < a" | 
| 2109 | by (auto simp: mult_less_cancel_left) | |
| 30649 
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
 nipkow parents: 
30242diff
changeset | 2110 | |
| 25917 | 2111 | end | 
| 14265 
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
 paulson parents: diff
changeset | 2112 | |
| 30692 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 2113 | lemmas mult_sign_intros = | 
| 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 2114 | mult_nonneg_nonneg mult_nonneg_nonpos | 
| 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 2115 | mult_nonpos_nonneg mult_nonpos_nonpos | 
| 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 2116 | mult_pos_pos mult_pos_neg | 
| 
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
 huffman parents: 
30650diff
changeset | 2117 | mult_neg_pos mult_neg_neg | 
| 25230 | 2118 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 2119 | class ordered_comm_ring = comm_ring + ordered_comm_semiring | 
| 25267 | 2120 | begin | 
| 25230 | 2121 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 2122 | subclass ordered_ring .. | 
| 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 2123 | subclass ordered_cancel_comm_semiring .. | 
| 25230 | 2124 | |
| 25267 | 2125 | end | 
| 25230 | 2126 | |
| 62378 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2127 | class zero_less_one = order + zero + one + | 
| 25230 | 2128 | assumes zero_less_one [simp]: "0 < 1" | 
| 62378 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2129 | |
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2130 | class linordered_nonzero_semiring = ordered_comm_semiring + monoid_mult + linorder + zero_less_one | 
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2131 | begin | 
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2132 | |
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2133 | subclass zero_neq_one | 
| 63325 | 2134 | by standard (insert zero_less_one, blast) | 
| 62378 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2135 | |
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2136 | subclass comm_semiring_1 | 
| 63325 | 2137 | by standard (rule mult_1_left) | 
| 62378 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2138 | |
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2139 | lemma zero_le_one [simp]: "0 \<le> 1" | 
| 63325 | 2140 | by (rule zero_less_one [THEN less_imp_le]) | 
| 62378 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2141 | |
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2142 | lemma not_one_le_zero [simp]: "\<not> 1 \<le> 0" | 
| 63325 | 2143 | by (simp add: not_le) | 
| 62378 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2144 | |
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2145 | lemma not_one_less_zero [simp]: "\<not> 1 < 0" | 
| 63325 | 2146 | by (simp add: not_less) | 
| 62378 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2147 | |
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2148 | lemma mult_left_le: "c \<le> 1 \<Longrightarrow> 0 \<le> a \<Longrightarrow> a * c \<le> a" | 
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2149 | using mult_left_mono[of c 1 a] by simp | 
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2150 | |
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2151 | lemma mult_le_one: "a \<le> 1 \<Longrightarrow> 0 \<le> b \<Longrightarrow> b \<le> 1 \<Longrightarrow> a * b \<le> 1" | 
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2152 | using mult_mono[of a 1 b 1] by simp | 
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2153 | |
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2154 | lemma zero_less_two: "0 < 1 + 1" | 
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2155 | using add_pos_pos[OF zero_less_one zero_less_one] . | 
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2156 | |
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2157 | end | 
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2158 | |
| 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2159 | class linordered_semidom = semidom + linordered_comm_semiring_strict + zero_less_one + | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 2160 | assumes le_add_diff_inverse2 [simp]: "b \<le> a \<Longrightarrow> a - b + b = a" | 
| 25230 | 2161 | begin | 
| 2162 | ||
| 63325 | 2163 | subclass linordered_nonzero_semiring .. | 
| 62378 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2164 | |
| 60758 | 2165 | text \<open>Addition is the inverse of subtraction.\<close> | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 2166 | |
| 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 2167 | lemma le_add_diff_inverse [simp]: "b \<le> a \<Longrightarrow> b + (a - b) = a" | 
| 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 2168 | by (frule le_add_diff_inverse2) (simp add: add.commute) | 
| 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 2169 | |
| 62378 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2170 | lemma add_diff_inverse: "\<not> a < b \<Longrightarrow> b + (a - b) = a" | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 2171 | by simp | 
| 60615 
e5fa1d5d3952
Useful lemmas. The theorem concerning swapping the variables in a double integral.
 paulson <lp15@cam.ac.uk> parents: 
60570diff
changeset | 2172 | |
| 63325 | 2173 | lemma add_le_imp_le_diff: "i + k \<le> n \<Longrightarrow> i \<le> n - k" | 
| 60615 
e5fa1d5d3952
Useful lemmas. The theorem concerning swapping the variables in a double integral.
 paulson <lp15@cam.ac.uk> parents: 
60570diff
changeset | 2174 | apply (subst add_le_cancel_right [where c=k, symmetric]) | 
| 
e5fa1d5d3952
Useful lemmas. The theorem concerning swapping the variables in a double integral.
 paulson <lp15@cam.ac.uk> parents: 
60570diff
changeset | 2175 | apply (frule le_add_diff_inverse2) | 
| 
e5fa1d5d3952
Useful lemmas. The theorem concerning swapping the variables in a double integral.
 paulson <lp15@cam.ac.uk> parents: 
60570diff
changeset | 2176 | apply (simp only: add.assoc [symmetric]) | 
| 63588 | 2177 | using add_implies_diff | 
| 2178 | apply fastforce | |
| 63325 | 2179 | done | 
| 60615 
e5fa1d5d3952
Useful lemmas. The theorem concerning swapping the variables in a double integral.
 paulson <lp15@cam.ac.uk> parents: 
60570diff
changeset | 2180 | |
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 2181 | lemma add_le_add_imp_diff_le: | 
| 63325 | 2182 | assumes 1: "i + k \<le> n" | 
| 2183 | and 2: "n \<le> j + k" | |
| 2184 | shows "i + k \<le> n \<Longrightarrow> n \<le> j + k \<Longrightarrow> n - k \<le> j" | |
| 60615 
e5fa1d5d3952
Useful lemmas. The theorem concerning swapping the variables in a double integral.
 paulson <lp15@cam.ac.uk> parents: 
60570diff
changeset | 2185 | proof - | 
| 
e5fa1d5d3952
Useful lemmas. The theorem concerning swapping the variables in a double integral.
 paulson <lp15@cam.ac.uk> parents: 
60570diff
changeset | 2186 | have "n - (i + k) + (i + k) = n" | 
| 63325 | 2187 | using 1 by simp | 
| 60615 
e5fa1d5d3952
Useful lemmas. The theorem concerning swapping the variables in a double integral.
 paulson <lp15@cam.ac.uk> parents: 
60570diff
changeset | 2188 | moreover have "n - k = n - k - i + i" | 
| 63325 | 2189 | using 1 by (simp add: add_le_imp_le_diff) | 
| 60615 
e5fa1d5d3952
Useful lemmas. The theorem concerning swapping the variables in a double integral.
 paulson <lp15@cam.ac.uk> parents: 
60570diff
changeset | 2190 | ultimately show ?thesis | 
| 63325 | 2191 | using 2 | 
| 60615 
e5fa1d5d3952
Useful lemmas. The theorem concerning swapping the variables in a double integral.
 paulson <lp15@cam.ac.uk> parents: 
60570diff
changeset | 2192 | apply (simp add: add.assoc [symmetric]) | 
| 63325 | 2193 | apply (rule add_le_imp_le_diff [of _ k "j + k", simplified add_diff_cancel_right']) | 
| 2194 | apply (simp add: add.commute diff_diff_add) | |
| 2195 | done | |
| 60615 
e5fa1d5d3952
Useful lemmas. The theorem concerning swapping the variables in a double integral.
 paulson <lp15@cam.ac.uk> parents: 
60570diff
changeset | 2196 | qed | 
| 
e5fa1d5d3952
Useful lemmas. The theorem concerning swapping the variables in a double integral.
 paulson <lp15@cam.ac.uk> parents: 
60570diff
changeset | 2197 | |
| 63325 | 2198 | lemma less_1_mult: "1 < m \<Longrightarrow> 1 < n \<Longrightarrow> 1 < m * n" | 
| 62378 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2199 | using mult_strict_mono [of 1 m 1 n] by (simp add: less_trans [OF zero_less_one]) | 
| 59000 | 2200 | |
| 25230 | 2201 | end | 
| 2202 | ||
| 62378 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 hoelzl parents: 
62377diff
changeset | 2203 | class linordered_idom = | 
| 64290 | 2204 | comm_ring_1 + linordered_comm_semiring_strict + ordered_ab_group_add + abs_if + sgn + | 
| 2205 | assumes sgn_if: "sgn x = (if x = 0 then 0 else if 0 < x then 1 else - 1)" | |
| 25917 | 2206 | begin | 
| 2207 | ||
| 36622 
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
 hoelzl parents: 
36348diff
changeset | 2208 | subclass linordered_semiring_1_strict .. | 
| 35043 
07dbdf60d5ad
dropped accidental duplication of "lin" prefix from cs. 108662d50512
 haftmann parents: 
35032diff
changeset | 2209 | subclass linordered_ring_strict .. | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 2210 | subclass ordered_comm_ring .. | 
| 27516 | 2211 | subclass idom .. | 
| 25917 | 2212 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 2213 | subclass linordered_semidom | 
| 28823 | 2214 | proof | 
| 26193 | 2215 | have "0 \<le> 1 * 1" by (rule zero_le_square) | 
| 63325 | 2216 | then show "0 < 1" by (simp add: le_less) | 
| 63588 | 2217 | show "b \<le> a \<Longrightarrow> a - b + b = a" for a b by simp | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 2218 | qed | 
| 25917 | 2219 | |
| 64290 | 2220 | subclass idom_abs_sgn | 
| 2221 | by standard | |
| 2222 | (auto simp add: sgn_if abs_if zero_less_mult_iff) | |
| 2223 | ||
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 2224 | lemma linorder_neqE_linordered_idom: | 
| 63325 | 2225 | assumes "x \<noteq> y" | 
| 2226 | obtains "x < y" | "y < x" | |
| 26193 | 2227 | using assms by (rule neqE) | 
| 2228 | ||
| 63588 | 2229 | text \<open>These cancellation simp rules also produce two cases when the comparison is a goal.\<close> | 
| 26274 | 2230 | |
| 63325 | 2231 | lemma mult_le_cancel_right1: "c \<le> b * c \<longleftrightarrow> (0 < c \<longrightarrow> 1 \<le> b) \<and> (c < 0 \<longrightarrow> b \<le> 1)" | 
| 2232 | using mult_le_cancel_right [of 1 c b] by simp | |
| 26274 | 2233 | |
| 63325 | 2234 | lemma mult_le_cancel_right2: "a * c \<le> c \<longleftrightarrow> (0 < c \<longrightarrow> a \<le> 1) \<and> (c < 0 \<longrightarrow> 1 \<le> a)" | 
| 2235 | using mult_le_cancel_right [of a c 1] by simp | |
| 26274 | 2236 | |
| 63325 | 2237 | lemma mult_le_cancel_left1: "c \<le> c * b \<longleftrightarrow> (0 < c \<longrightarrow> 1 \<le> b) \<and> (c < 0 \<longrightarrow> b \<le> 1)" | 
| 2238 | using mult_le_cancel_left [of c 1 b] by simp | |
| 26274 | 2239 | |
| 63325 | 2240 | lemma mult_le_cancel_left2: "c * a \<le> c \<longleftrightarrow> (0 < c \<longrightarrow> a \<le> 1) \<and> (c < 0 \<longrightarrow> 1 \<le> a)" | 
| 2241 | using mult_le_cancel_left [of c a 1] by simp | |
| 26274 | 2242 | |
| 63325 | 2243 | lemma mult_less_cancel_right1: "c < b * c \<longleftrightarrow> (0 \<le> c \<longrightarrow> 1 < b) \<and> (c \<le> 0 \<longrightarrow> b < 1)" | 
| 2244 | using mult_less_cancel_right [of 1 c b] by simp | |
| 26274 | 2245 | |
| 63325 | 2246 | lemma mult_less_cancel_right2: "a * c < c \<longleftrightarrow> (0 \<le> c \<longrightarrow> a < 1) \<and> (c \<le> 0 \<longrightarrow> 1 < a)" | 
| 2247 | using mult_less_cancel_right [of a c 1] by simp | |
| 26274 | 2248 | |
| 63325 | 2249 | lemma mult_less_cancel_left1: "c < c * b \<longleftrightarrow> (0 \<le> c \<longrightarrow> 1 < b) \<and> (c \<le> 0 \<longrightarrow> b < 1)" | 
| 2250 | using mult_less_cancel_left [of c 1 b] by simp | |
| 26274 | 2251 | |
| 63325 | 2252 | lemma mult_less_cancel_left2: "c * a < c \<longleftrightarrow> (0 \<le> c \<longrightarrow> a < 1) \<and> (c \<le> 0 \<longrightarrow> 1 < a)" | 
| 2253 | using mult_less_cancel_left [of c a 1] by simp | |
| 26274 | 2254 | |
| 63325 | 2255 | lemma sgn_0_0: "sgn a = 0 \<longleftrightarrow> a = 0" | 
| 64290 | 2256 | by (fact sgn_eq_0_iff) | 
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 2257 | |
| 63325 | 2258 | lemma sgn_1_pos: "sgn a = 1 \<longleftrightarrow> a > 0" | 
| 2259 | unfolding sgn_if by simp | |
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 2260 | |
| 63325 | 2261 | lemma sgn_1_neg: "sgn a = - 1 \<longleftrightarrow> a < 0" | 
| 2262 | unfolding sgn_if by auto | |
| 27651 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 haftmann parents: 
27516diff
changeset | 2263 | |
| 63325 | 2264 | lemma sgn_pos [simp]: "0 < a \<Longrightarrow> sgn a = 1" | 
| 2265 | by (simp only: sgn_1_pos) | |
| 29940 | 2266 | |
| 63325 | 2267 | lemma sgn_neg [simp]: "a < 0 \<Longrightarrow> sgn a = - 1" | 
| 2268 | by (simp only: sgn_1_neg) | |
| 29940 | 2269 | |
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2270 | lemma abs_sgn: "\<bar>k\<bar> = k * sgn k" | 
| 63325 | 2271 | unfolding sgn_if abs_if by auto | 
| 29700 | 2272 | |
| 63325 | 2273 | lemma sgn_greater [simp]: "0 < sgn a \<longleftrightarrow> 0 < a" | 
| 29940 | 2274 | unfolding sgn_if by auto | 
| 2275 | ||
| 63325 | 2276 | lemma sgn_less [simp]: "sgn a < 0 \<longleftrightarrow> a < 0" | 
| 29940 | 2277 | unfolding sgn_if by auto | 
| 2278 | ||
| 64239 | 2279 | lemma abs_sgn_eq_1 [simp]: | 
| 2280 | "a \<noteq> 0 \<Longrightarrow> \<bar>sgn a\<bar> = 1" | |
| 64290 | 2281 | by simp | 
| 64239 | 2282 | |
| 63325 | 2283 | lemma abs_sgn_eq: "\<bar>sgn a\<bar> = (if a = 0 then 0 else 1)" | 
| 62347 | 2284 | by (simp add: sgn_if) | 
| 2285 | ||
| 64713 | 2286 | lemma sgn_mult_self_eq [simp]: | 
| 2287 | "sgn a * sgn a = of_bool (a \<noteq> 0)" | |
| 2288 | by (cases "a > 0") simp_all | |
| 2289 | ||
| 2290 | lemma abs_mult_self_eq [simp]: | |
| 2291 | "\<bar>a\<bar> * \<bar>a\<bar> = a * a" | |
| 2292 | by (cases "a > 0") simp_all | |
| 2293 | ||
| 2294 | lemma same_sgn_sgn_add: | |
| 2295 | "sgn (a + b) = sgn a" if "sgn b = sgn a" | |
| 2296 | proof (cases a 0 rule: linorder_cases) | |
| 2297 | case equal | |
| 2298 | with that show ?thesis | |
| 2299 | by simp | |
| 2300 | next | |
| 2301 | case less | |
| 2302 | with that have "b < 0" | |
| 2303 | by (simp add: sgn_1_neg) | |
| 2304 | with \<open>a < 0\<close> have "a + b < 0" | |
| 2305 | by (rule add_neg_neg) | |
| 2306 | with \<open>a < 0\<close> show ?thesis | |
| 2307 | by simp | |
| 2308 | next | |
| 2309 | case greater | |
| 2310 | with that have "b > 0" | |
| 2311 | by (simp add: sgn_1_pos) | |
| 2312 | with \<open>a > 0\<close> have "a + b > 0" | |
| 2313 | by (rule add_pos_pos) | |
| 2314 | with \<open>a > 0\<close> show ?thesis | |
| 2315 | by simp | |
| 2316 | qed | |
| 2317 | ||
| 2318 | lemma same_sgn_abs_add: | |
| 2319 | "\<bar>a + b\<bar> = \<bar>a\<bar> + \<bar>b\<bar>" if "sgn b = sgn a" | |
| 2320 | proof - | |
| 2321 | have "a + b = sgn a * \<bar>a\<bar> + sgn b * \<bar>b\<bar>" | |
| 2322 | by (simp add: sgn_mult_abs) | |
| 2323 | also have "\<dots> = sgn a * (\<bar>a\<bar> + \<bar>b\<bar>)" | |
| 2324 | using that by (simp add: algebra_simps) | |
| 2325 | finally show ?thesis | |
| 2326 | by (auto simp add: abs_mult) | |
| 2327 | qed | |
| 2328 | ||
| 66816 
212a3334e7da
more fundamental definition of div and mod on int
 haftmann parents: 
66810diff
changeset | 2329 | lemma sgn_not_eq_imp: | 
| 
212a3334e7da
more fundamental definition of div and mod on int
 haftmann parents: 
66810diff
changeset | 2330 | "sgn a = - sgn b" if "sgn b \<noteq> sgn a" and "sgn a \<noteq> 0" and "sgn b \<noteq> 0" | 
| 
212a3334e7da
more fundamental definition of div and mod on int
 haftmann parents: 
66810diff
changeset | 2331 | using that by (cases "a < 0") (auto simp add: sgn_0_0 sgn_1_pos sgn_1_neg) | 
| 
212a3334e7da
more fundamental definition of div and mod on int
 haftmann parents: 
66810diff
changeset | 2332 | |
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2333 | lemma abs_dvd_iff [simp]: "\<bar>m\<bar> dvd k \<longleftrightarrow> m dvd k" | 
| 29949 | 2334 | by (simp add: abs_if) | 
| 2335 | ||
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2336 | lemma dvd_abs_iff [simp]: "m dvd \<bar>k\<bar> \<longleftrightarrow> m dvd k" | 
| 29949 | 2337 | by (simp add: abs_if) | 
| 29653 | 2338 | |
| 63325 | 2339 | lemma dvd_if_abs_eq: "\<bar>l\<bar> = \<bar>k\<bar> \<Longrightarrow> l dvd k" | 
| 2340 | by (subst abs_dvd_iff [symmetric]) simp | |
| 33676 
802f5e233e48
moved lemma from Algebra/IntRing to Ring_and_Field
 nipkow parents: 
33364diff
changeset | 2341 | |
| 63325 | 2342 | text \<open> | 
| 2343 | The following lemmas can be proven in more general structures, but | |
| 2344 |   are dangerous as simp rules in absence of @{thm neg_equal_zero},
 | |
| 2345 |   @{thm neg_less_pos}, @{thm neg_less_eq_nonneg}.
 | |
| 2346 | \<close> | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54250diff
changeset | 2347 | |
| 63325 | 2348 | lemma equation_minus_iff_1 [simp, no_atp]: "1 = - a \<longleftrightarrow> a = - 1" | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54250diff
changeset | 2349 | by (fact equation_minus_iff) | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54250diff
changeset | 2350 | |
| 63325 | 2351 | lemma minus_equation_iff_1 [simp, no_atp]: "- a = 1 \<longleftrightarrow> a = - 1" | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54250diff
changeset | 2352 | by (subst minus_equation_iff, auto) | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54250diff
changeset | 2353 | |
| 63325 | 2354 | lemma le_minus_iff_1 [simp, no_atp]: "1 \<le> - b \<longleftrightarrow> b \<le> - 1" | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54250diff
changeset | 2355 | by (fact le_minus_iff) | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54250diff
changeset | 2356 | |
| 63325 | 2357 | lemma minus_le_iff_1 [simp, no_atp]: "- a \<le> 1 \<longleftrightarrow> - 1 \<le> a" | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54250diff
changeset | 2358 | by (fact minus_le_iff) | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54250diff
changeset | 2359 | |
| 63325 | 2360 | lemma less_minus_iff_1 [simp, no_atp]: "1 < - b \<longleftrightarrow> b < - 1" | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54250diff
changeset | 2361 | by (fact less_minus_iff) | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54250diff
changeset | 2362 | |
| 63325 | 2363 | lemma minus_less_iff_1 [simp, no_atp]: "- a < 1 \<longleftrightarrow> - 1 < a" | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54250diff
changeset | 2364 | by (fact minus_less_iff) | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54250diff
changeset | 2365 | |
| 66793 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
65811diff
changeset | 2366 | lemma add_less_zeroD: | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
65811diff
changeset | 2367 | shows "x+y < 0 \<Longrightarrow> x<0 \<or> y<0" | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
65811diff
changeset | 2368 | by (auto simp: not_less intro: le_less_trans [of _ "x+y"]) | 
| 
deabce3ccf1f
new material about connectedness, etc.
 paulson <lp15@cam.ac.uk> parents: 
65811diff
changeset | 2369 | |
| 25917 | 2370 | end | 
| 25230 | 2371 | |
| 60758 | 2372 | text \<open>Simprules for comparisons where common factors can be cancelled.\<close> | 
| 15234 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 2373 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
52435diff
changeset | 2374 | lemmas mult_compare_simps = | 
| 63325 | 2375 | mult_le_cancel_right mult_le_cancel_left | 
| 2376 | mult_le_cancel_right1 mult_le_cancel_right2 | |
| 2377 | mult_le_cancel_left1 mult_le_cancel_left2 | |
| 2378 | mult_less_cancel_right mult_less_cancel_left | |
| 2379 | mult_less_cancel_right1 mult_less_cancel_right2 | |
| 2380 | mult_less_cancel_left1 mult_less_cancel_left2 | |
| 2381 | mult_cancel_right mult_cancel_left | |
| 2382 | mult_cancel_right1 mult_cancel_right2 | |
| 2383 | mult_cancel_left1 mult_cancel_left2 | |
| 2384 | ||
| 15234 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 2385 | |
| 60758 | 2386 | text \<open>Reasoning about inequalities with division\<close> | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 2387 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 2388 | context linordered_semidom | 
| 25193 | 2389 | begin | 
| 2390 | ||
| 2391 | lemma less_add_one: "a < a + 1" | |
| 14293 | 2392 | proof - | 
| 25193 | 2393 | have "a + 0 < a + 1" | 
| 23482 | 2394 | by (blast intro: zero_less_one add_strict_left_mono) | 
| 63325 | 2395 | then show ?thesis by simp | 
| 14293 | 2396 | qed | 
| 2397 | ||
| 25193 | 2398 | end | 
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: 
14353diff
changeset | 2399 | |
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2400 | context linordered_idom | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2401 | begin | 
| 15234 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 2402 | |
| 63325 | 2403 | lemma mult_right_le_one_le: "0 \<le> x \<Longrightarrow> 0 \<le> y \<Longrightarrow> y \<le> 1 \<Longrightarrow> x * y \<le> x" | 
| 59833 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 haftmann parents: 
59832diff
changeset | 2404 | by (rule mult_left_le) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2405 | |
| 63325 | 2406 | lemma mult_left_le_one_le: "0 \<le> x \<Longrightarrow> 0 \<le> y \<Longrightarrow> y \<le> 1 \<Longrightarrow> y * x \<le> x" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2407 | by (auto simp add: mult_le_cancel_right2) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2408 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2409 | end | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2410 | |
| 60758 | 2411 | text \<open>Absolute Value\<close> | 
| 14293 | 2412 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 2413 | context linordered_idom | 
| 25304 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 2414 | begin | 
| 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 2415 | |
| 63325 | 2416 | lemma mult_sgn_abs: "sgn x * \<bar>x\<bar> = x" | 
| 64290 | 2417 | by (fact sgn_mult_abs) | 
| 25304 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 2418 | |
| 64290 | 2419 | lemma abs_one: "\<bar>1\<bar> = 1" | 
| 2420 | by (fact abs_1) | |
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2421 | |
| 25304 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 2422 | end | 
| 24491 | 2423 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 2424 | class ordered_ring_abs = ordered_ring + ordered_ab_group_add_abs + | 
| 25304 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 2425 | assumes abs_eq_mult: | 
| 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 2426 | "(0 \<le> a \<or> a \<le> 0) \<and> (0 \<le> b \<or> b \<le> 0) \<Longrightarrow> \<bar>a * b\<bar> = \<bar>a\<bar> * \<bar>b\<bar>" | 
| 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 2427 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34146diff
changeset | 2428 | context linordered_idom | 
| 30961 | 2429 | begin | 
| 2430 | ||
| 63325 | 2431 | subclass ordered_ring_abs | 
| 63588 | 2432 | by standard (auto simp: abs_if not_less mult_less_0_iff) | 
| 30961 | 2433 | |
| 63325 | 2434 | lemma abs_mult_self [simp]: "\<bar>a\<bar> * \<bar>a\<bar> = a * a" | 
| 60562 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 paulson <lp15@cam.ac.uk> parents: 
60529diff
changeset | 2435 | by (simp add: abs_if) | 
| 30961 | 2436 | |
| 14294 
f4d806fd72ce
absolute value theorems moved to HOL/Ring_and_Field
 paulson parents: 
14293diff
changeset | 2437 | lemma abs_mult_less: | 
| 63325 | 2438 | assumes ac: "\<bar>a\<bar> < c" | 
| 2439 | and bd: "\<bar>b\<bar> < d" | |
| 2440 | shows "\<bar>a\<bar> * \<bar>b\<bar> < c * d" | |
| 14294 
f4d806fd72ce
absolute value theorems moved to HOL/Ring_and_Field
 paulson parents: 
14293diff
changeset | 2441 | proof - | 
| 63325 | 2442 | from ac have "0 < c" | 
| 2443 | by (blast intro: le_less_trans abs_ge_zero) | |
| 2444 | with bd show ?thesis by (simp add: ac mult_strict_mono) | |
| 14294 
f4d806fd72ce
absolute value theorems moved to HOL/Ring_and_Field
 paulson parents: 
14293diff
changeset | 2445 | qed | 
| 14293 | 2446 | |
| 63325 | 2447 | lemma abs_less_iff: "\<bar>a\<bar> < b \<longleftrightarrow> a < b \<and> - a < b" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2448 | by (simp add: less_le abs_le_iff) (auto simp add: abs_if) | 
| 14738 | 2449 | |
| 63325 | 2450 | lemma abs_mult_pos: "0 \<le> x \<Longrightarrow> \<bar>y\<bar> * x = \<bar>y * x\<bar>" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2451 | by (simp add: abs_mult) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2452 | |
| 63325 | 2453 | lemma abs_diff_less_iff: "\<bar>x - a\<bar> < r \<longleftrightarrow> a - r < x \<and> x < a + r" | 
| 51520 
e9b361845809
move real_isLub_unique to isLub_unique in Lubs; real_sum_of_halves to RealDef; abs_diff_less_iff to Rings
 hoelzl parents: 
50420diff
changeset | 2454 | by (auto simp add: diff_less_eq ac_simps abs_less_iff) | 
| 
e9b361845809
move real_isLub_unique to isLub_unique in Lubs; real_sum_of_halves to RealDef; abs_diff_less_iff to Rings
 hoelzl parents: 
50420diff
changeset | 2455 | |
| 63325 | 2456 | lemma abs_diff_le_iff: "\<bar>x - a\<bar> \<le> r \<longleftrightarrow> a - r \<le> x \<and> x \<le> a + r" | 
| 59865 
8a20dd967385
rationalised and generalised some theorems concerning abs and x^2.
 paulson <lp15@cam.ac.uk> parents: 
59833diff
changeset | 2457 | by (auto simp add: diff_le_eq ac_simps abs_le_iff) | 
| 
8a20dd967385
rationalised and generalised some theorems concerning abs and x^2.
 paulson <lp15@cam.ac.uk> parents: 
59833diff
changeset | 2458 | |
| 62626 
de25474ce728
Contractible sets. Also removal of obsolete theorems and refactoring
 paulson <lp15@cam.ac.uk> parents: 
62608diff
changeset | 2459 | lemma abs_add_one_gt_zero: "0 < 1 + \<bar>x\<bar>" | 
| 63325 | 2460 | by (auto simp: abs_if not_less intro: zero_less_one add_strict_increasing less_trans) | 
| 62626 
de25474ce728
Contractible sets. Also removal of obsolete theorems and refactoring
 paulson <lp15@cam.ac.uk> parents: 
62608diff
changeset | 2461 | |
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 2462 | end | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 2463 | |
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 2464 | subsection \<open>Dioids\<close> | 
| 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 2465 | |
| 63325 | 2466 | text \<open> | 
| 2467 | Dioids are the alternative extensions of semirings, a semiring can | |
| 2468 | either be a ring or a dioid but never both. | |
| 2469 | \<close> | |
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 2470 | |
| 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 2471 | class dioid = semiring_1 + canonically_ordered_monoid_add | 
| 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 2472 | begin | 
| 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 2473 | |
| 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 2474 | subclass ordered_semiring | 
| 63325 | 2475 | by standard (auto simp: le_iff_add distrib_left distrib_right) | 
| 62376 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 2476 | |
| 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 2477 | end | 
| 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 2478 | |
| 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 hoelzl parents: 
62366diff
changeset | 2479 | |
| 59557 | 2480 | hide_fact (open) comm_mult_left_mono comm_mult_strict_left_mono distrib | 
| 2481 | ||
| 52435 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
51520diff
changeset | 2482 | code_identifier | 
| 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
51520diff
changeset | 2483 | code_module Rings \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith | 
| 33364 | 2484 | |
| 14265 
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
 paulson parents: diff
changeset | 2485 | end |