| author | haftmann |
| Tue, 04 May 2010 08:55:39 +0200 | |
| changeset 36634 | f9b43d197d16 |
| parent 36622 | e393a91f86df |
| child 36719 | d396f6f63d94 |
| permissions | -rw-r--r-- |
|
35050
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents:
35043
diff
changeset
|
1 |
(* Title: HOL/Rings.thy |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
30961
diff
changeset
|
2 |
Author: Gertrud Bauer |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
30961
diff
changeset
|
3 |
Author: Steven Obua |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
30961
diff
changeset
|
4 |
Author: Tobias Nipkow |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
30961
diff
changeset
|
5 |
Author: Lawrence C Paulson |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
30961
diff
changeset
|
6 |
Author: Markus Wenzel |
|
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
30961
diff
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 |
|
|
35050
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents:
35043
diff
changeset
|
10 |
header {* Rings *}
|
|
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:
35043
diff
changeset
|
12 |
theory Rings |
|
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents:
35043
diff
changeset
|
13 |
imports Groups |
| 15131 | 14 |
begin |
| 14504 | 15 |
|
| 22390 | 16 |
class semiring = ab_semigroup_add + semigroup_mult + |
|
36348
89c54f51f55a
dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents:
36304
diff
changeset
|
17 |
assumes left_distrib[algebra_simps, field_simps]: "(a + b) * c = a * c + b * c" |
|
89c54f51f55a
dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents:
36304
diff
changeset
|
18 |
assumes right_distrib[algebra_simps, field_simps]: "a * (b + c) = a * b + a * c" |
| 25152 | 19 |
begin |
20 |
||
21 |
text{*For the @{text combine_numerals} simproc*}
|
|
22 |
lemma combine_common_factor: |
|
23 |
"a * e + (b * e + c) = (a + b) * e + c" |
|
| 29667 | 24 |
by (simp add: left_distrib add_ac) |
| 25152 | 25 |
|
26 |
end |
|
| 14504 | 27 |
|
| 22390 | 28 |
class mult_zero = times + zero + |
| 25062 | 29 |
assumes mult_zero_left [simp]: "0 * a = 0" |
30 |
assumes mult_zero_right [simp]: "a * 0 = 0" |
|
|
21199
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents:
20633
diff
changeset
|
31 |
|
| 22390 | 32 |
class semiring_0 = semiring + comm_monoid_add + mult_zero |
|
21199
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents:
20633
diff
changeset
|
33 |
|
| 29904 | 34 |
class semiring_0_cancel = semiring + cancel_comm_monoid_add |
| 25186 | 35 |
begin |
| 14504 | 36 |
|
| 25186 | 37 |
subclass semiring_0 |
| 28823 | 38 |
proof |
|
21199
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents:
20633
diff
changeset
|
39 |
fix a :: 'a |
| 29667 | 40 |
have "0 * a + 0 * a = 0 * a + 0" by (simp add: left_distrib [symmetric]) |
41 |
thus "0 * a = 0" by (simp only: add_left_cancel) |
|
| 25152 | 42 |
next |
43 |
fix a :: 'a |
|
| 29667 | 44 |
have "a * 0 + a * 0 = a * 0 + 0" by (simp add: right_distrib [symmetric]) |
45 |
thus "a * 0 = 0" by (simp only: add_left_cancel) |
|
|
21199
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents:
20633
diff
changeset
|
46 |
qed |
| 14940 | 47 |
|
| 25186 | 48 |
end |
| 25152 | 49 |
|
| 22390 | 50 |
class comm_semiring = ab_semigroup_add + ab_semigroup_mult + |
| 25062 | 51 |
assumes distrib: "(a + b) * c = a * c + b * c" |
| 25152 | 52 |
begin |
| 14504 | 53 |
|
| 25152 | 54 |
subclass semiring |
| 28823 | 55 |
proof |
| 14738 | 56 |
fix a b c :: 'a |
57 |
show "(a + b) * c = a * c + b * c" by (simp add: distrib) |
|
58 |
have "a * (b + c) = (b + c) * a" by (simp add: mult_ac) |
|
59 |
also have "... = b * a + c * a" by (simp only: distrib) |
|
60 |
also have "... = a * b + a * c" by (simp add: mult_ac) |
|
61 |
finally show "a * (b + c) = a * b + a * c" by blast |
|
| 14504 | 62 |
qed |
63 |
||
| 25152 | 64 |
end |
| 14504 | 65 |
|
| 25152 | 66 |
class comm_semiring_0 = comm_semiring + comm_monoid_add + mult_zero |
67 |
begin |
|
68 |
||
| 27516 | 69 |
subclass semiring_0 .. |
| 25152 | 70 |
|
71 |
end |
|
| 14504 | 72 |
|
| 29904 | 73 |
class comm_semiring_0_cancel = comm_semiring + cancel_comm_monoid_add |
| 25186 | 74 |
begin |
| 14940 | 75 |
|
| 27516 | 76 |
subclass semiring_0_cancel .. |
| 14940 | 77 |
|
|
28141
193c3ea0f63b
instances comm_semiring_0_cancel < comm_semiring_0, comm_ring < comm_semiring_0_cancel
huffman
parents:
27651
diff
changeset
|
78 |
subclass comm_semiring_0 .. |
|
193c3ea0f63b
instances comm_semiring_0_cancel < comm_semiring_0, comm_ring < comm_semiring_0_cancel
huffman
parents:
27651
diff
changeset
|
79 |
|
| 25186 | 80 |
end |
|
21199
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents:
20633
diff
changeset
|
81 |
|
| 22390 | 82 |
class zero_neq_one = zero + one + |
| 25062 | 83 |
assumes zero_neq_one [simp]: "0 \<noteq> 1" |
| 26193 | 84 |
begin |
85 |
||
86 |
lemma one_neq_zero [simp]: "1 \<noteq> 0" |
|
| 29667 | 87 |
by (rule not_sym) (rule zero_neq_one) |
| 26193 | 88 |
|
89 |
end |
|
|
14265
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff
changeset
|
90 |
|
| 22390 | 91 |
class semiring_1 = zero_neq_one + semiring_0 + monoid_mult |
| 14504 | 92 |
|
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
93 |
text {* Abstract divisibility *}
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
94 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
95 |
class dvd = times |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
96 |
begin |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
97 |
|
| 28559 | 98 |
definition dvd :: "'a \<Rightarrow> 'a \<Rightarrow> bool" (infixl "dvd" 50) where |
99 |
[code del]: "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:
27516
diff
changeset
|
100 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
101 |
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:
27516
diff
changeset
|
102 |
unfolding dvd_def .. |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
103 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
104 |
lemma dvdE [elim?]: "b dvd a \<Longrightarrow> (\<And>k. a = b * k \<Longrightarrow> P) \<Longrightarrow> P" |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
105 |
unfolding dvd_def by blast |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
106 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
107 |
end |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
108 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
109 |
class comm_semiring_1 = zero_neq_one + comm_semiring_0 + comm_monoid_mult + dvd |
| 22390 | 110 |
(*previously almost_semiring*) |
| 25152 | 111 |
begin |
| 14738 | 112 |
|
| 27516 | 113 |
subclass semiring_1 .. |
| 25152 | 114 |
|
| 29925 | 115 |
lemma dvd_refl[simp]: "a dvd a" |
| 28559 | 116 |
proof |
117 |
show "a = a * 1" by simp |
|
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
118 |
qed |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
119 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
120 |
lemma dvd_trans: |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
121 |
assumes "a dvd b" and "b dvd c" |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
122 |
shows "a dvd c" |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
123 |
proof - |
| 28559 | 124 |
from assms obtain v where "b = a * v" by (auto elim!: dvdE) |
125 |
moreover from assms obtain w where "c = b * w" by (auto elim!: dvdE) |
|
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
126 |
ultimately have "c = a * (v * w)" by (simp add: mult_assoc) |
| 28559 | 127 |
then show ?thesis .. |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
128 |
qed |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
129 |
|
|
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35631
diff
changeset
|
130 |
lemma dvd_0_left_iff [no_atp, simp]: "0 dvd a \<longleftrightarrow> a = 0" |
| 29667 | 131 |
by (auto intro: dvd_refl elim!: dvdE) |
| 28559 | 132 |
|
133 |
lemma dvd_0_right [iff]: "a dvd 0" |
|
134 |
proof |
|
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
135 |
show "0 = a * 0" by simp |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
136 |
qed |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
137 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
138 |
lemma one_dvd [simp]: "1 dvd a" |
| 29667 | 139 |
by (auto intro!: dvdI) |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
140 |
|
| 30042 | 141 |
lemma dvd_mult[simp]: "a dvd c \<Longrightarrow> a dvd (b * c)" |
| 29667 | 142 |
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:
27516
diff
changeset
|
143 |
|
| 30042 | 144 |
lemma dvd_mult2[simp]: "a dvd b \<Longrightarrow> a dvd (b * c)" |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
145 |
apply (subst mult_commute) |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
146 |
apply (erule dvd_mult) |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
147 |
done |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
148 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
149 |
lemma dvd_triv_right [simp]: "a dvd b * a" |
| 29667 | 150 |
by (rule dvd_mult) (rule dvd_refl) |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
151 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
152 |
lemma dvd_triv_left [simp]: "a dvd a * b" |
| 29667 | 153 |
by (rule dvd_mult2) (rule dvd_refl) |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
154 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
155 |
lemma mult_dvd_mono: |
| 30042 | 156 |
assumes "a dvd b" |
157 |
and "c dvd d" |
|
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
158 |
shows "a * c dvd b * d" |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
159 |
proof - |
| 30042 | 160 |
from `a dvd b` obtain b' where "b = a * b'" .. |
161 |
moreover from `c dvd d` obtain d' where "d = c * d'" .. |
|
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
162 |
ultimately have "b * d = (a * c) * (b' * d')" by (simp add: mult_ac) |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
163 |
then show ?thesis .. |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
164 |
qed |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
165 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
166 |
lemma dvd_mult_left: "a * b dvd c \<Longrightarrow> a dvd c" |
| 29667 | 167 |
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:
27516
diff
changeset
|
168 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
169 |
lemma dvd_mult_right: "a * b dvd c \<Longrightarrow> b dvd c" |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
170 |
unfolding mult_ac [of a] by (rule dvd_mult_left) |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
171 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
172 |
lemma dvd_0_left: "0 dvd a \<Longrightarrow> a = 0" |
| 29667 | 173 |
by simp |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
174 |
|
| 29925 | 175 |
lemma dvd_add[simp]: |
176 |
assumes "a dvd b" and "a dvd c" shows "a dvd (b + c)" |
|
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
177 |
proof - |
| 29925 | 178 |
from `a dvd b` obtain b' where "b = a * b'" .. |
179 |
moreover from `a dvd c` obtain c' where "c = a * c'" .. |
|
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
180 |
ultimately have "b + c = a * (b' + c')" by (simp add: right_distrib) |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
181 |
then show ?thesis .. |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
182 |
qed |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
183 |
|
| 25152 | 184 |
end |
|
14421
ee97b6463cb4
new Ring_and_Field hierarchy, eliminating redundant axioms
paulson
parents:
14398
diff
changeset
|
185 |
|
| 29925 | 186 |
|
| 22390 | 187 |
class no_zero_divisors = zero + times + |
| 25062 | 188 |
assumes no_zero_divisors: "a \<noteq> 0 \<Longrightarrow> b \<noteq> 0 \<Longrightarrow> a * b \<noteq> 0" |
| 14504 | 189 |
|
| 29904 | 190 |
class semiring_1_cancel = semiring + cancel_comm_monoid_add |
191 |
+ zero_neq_one + monoid_mult |
|
| 25267 | 192 |
begin |
| 14940 | 193 |
|
| 27516 | 194 |
subclass semiring_0_cancel .. |
|
25512
4134f7c782e2
using intro_locales instead of unfold_locales if appropriate
haftmann
parents:
25450
diff
changeset
|
195 |
|
| 27516 | 196 |
subclass semiring_1 .. |
| 25267 | 197 |
|
198 |
end |
|
|
21199
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents:
20633
diff
changeset
|
199 |
|
| 29904 | 200 |
class comm_semiring_1_cancel = comm_semiring + cancel_comm_monoid_add |
201 |
+ zero_neq_one + comm_monoid_mult |
|
| 25267 | 202 |
begin |
| 14738 | 203 |
|
| 27516 | 204 |
subclass semiring_1_cancel .. |
205 |
subclass comm_semiring_0_cancel .. |
|
206 |
subclass comm_semiring_1 .. |
|
| 25267 | 207 |
|
208 |
end |
|
| 25152 | 209 |
|
| 22390 | 210 |
class ring = semiring + ab_group_add |
| 25267 | 211 |
begin |
| 25152 | 212 |
|
| 27516 | 213 |
subclass semiring_0_cancel .. |
| 25152 | 214 |
|
215 |
text {* Distribution rules *}
|
|
216 |
||
217 |
lemma minus_mult_left: "- (a * b) = - a * b" |
|
|
34146
14595e0c27e8
rename equals_zero_I to minus_unique (keep old name too)
huffman
parents:
33676
diff
changeset
|
218 |
by (rule minus_unique) (simp add: left_distrib [symmetric]) |
| 25152 | 219 |
|
220 |
lemma minus_mult_right: "- (a * b) = a * - b" |
|
|
34146
14595e0c27e8
rename equals_zero_I to minus_unique (keep old name too)
huffman
parents:
33676
diff
changeset
|
221 |
by (rule minus_unique) (simp add: right_distrib [symmetric]) |
| 25152 | 222 |
|
|
29407
5ef7e97fd9e4
move lemmas mult_minus{left,right} inside class ring
huffman
parents:
29406
diff
changeset
|
223 |
text{*Extract signs from products*}
|
|
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35631
diff
changeset
|
224 |
lemmas mult_minus_left [simp, no_atp] = minus_mult_left [symmetric] |
|
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35631
diff
changeset
|
225 |
lemmas mult_minus_right [simp,no_atp] = minus_mult_right [symmetric] |
|
29407
5ef7e97fd9e4
move lemmas mult_minus{left,right} inside class ring
huffman
parents:
29406
diff
changeset
|
226 |
|
| 25152 | 227 |
lemma minus_mult_minus [simp]: "- a * - b = a * b" |
| 29667 | 228 |
by simp |
| 25152 | 229 |
|
230 |
lemma minus_mult_commute: "- a * b = a * - b" |
|
| 29667 | 231 |
by simp |
232 |
||
|
36348
89c54f51f55a
dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents:
36304
diff
changeset
|
233 |
lemma right_diff_distrib[algebra_simps, field_simps]: "a * (b - c) = a * b - a * c" |
| 29667 | 234 |
by (simp add: right_distrib diff_minus) |
235 |
||
|
36348
89c54f51f55a
dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents:
36304
diff
changeset
|
236 |
lemma left_diff_distrib[algebra_simps, field_simps]: "(a - b) * c = a * c - b * c" |
| 29667 | 237 |
by (simp add: left_distrib diff_minus) |
| 25152 | 238 |
|
|
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35631
diff
changeset
|
239 |
lemmas ring_distribs[no_atp] = |
| 25152 | 240 |
right_distrib left_distrib left_diff_distrib right_diff_distrib |
241 |
||
| 25230 | 242 |
lemma eq_add_iff1: |
243 |
"a * e + c = b * e + d \<longleftrightarrow> (a - b) * e + c = d" |
|
| 29667 | 244 |
by (simp add: algebra_simps) |
| 25230 | 245 |
|
246 |
lemma eq_add_iff2: |
|
247 |
"a * e + c = b * e + d \<longleftrightarrow> c = (b - a) * e + d" |
|
| 29667 | 248 |
by (simp add: algebra_simps) |
| 25230 | 249 |
|
| 25152 | 250 |
end |
251 |
||
|
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35631
diff
changeset
|
252 |
lemmas ring_distribs[no_atp] = |
| 25152 | 253 |
right_distrib left_distrib left_diff_distrib right_diff_distrib |
254 |
||
| 22390 | 255 |
class comm_ring = comm_semiring + ab_group_add |
| 25267 | 256 |
begin |
| 14738 | 257 |
|
| 27516 | 258 |
subclass ring .. |
|
28141
193c3ea0f63b
instances comm_semiring_0_cancel < comm_semiring_0, comm_ring < comm_semiring_0_cancel
huffman
parents:
27651
diff
changeset
|
259 |
subclass comm_semiring_0_cancel .. |
| 25267 | 260 |
|
261 |
end |
|
| 14738 | 262 |
|
| 22390 | 263 |
class ring_1 = ring + zero_neq_one + monoid_mult |
| 25267 | 264 |
begin |
|
14265
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff
changeset
|
265 |
|
| 27516 | 266 |
subclass semiring_1_cancel .. |
| 25267 | 267 |
|
268 |
end |
|
| 25152 | 269 |
|
| 22390 | 270 |
class comm_ring_1 = comm_ring + zero_neq_one + comm_monoid_mult |
271 |
(*previously ring*) |
|
| 25267 | 272 |
begin |
| 14738 | 273 |
|
| 27516 | 274 |
subclass ring_1 .. |
275 |
subclass comm_semiring_1_cancel .. |
|
| 25267 | 276 |
|
|
29465
b2cfb5d0a59e
change dvd_minus_iff, minus_dvd_iff from [iff] to [simp] (due to problems with Library/Primes.thy)
huffman
parents:
29461
diff
changeset
|
277 |
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:
29407
diff
changeset
|
278 |
proof |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
279 |
assume "x dvd - y" |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
280 |
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:
29407
diff
changeset
|
281 |
then show "x dvd y" by simp |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
282 |
next |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
283 |
assume "x dvd y" |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
284 |
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:
29407
diff
changeset
|
285 |
then show "x dvd - y" by simp |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
286 |
qed |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
287 |
|
|
29465
b2cfb5d0a59e
change dvd_minus_iff, minus_dvd_iff from [iff] to [simp] (due to problems with Library/Primes.thy)
huffman
parents:
29461
diff
changeset
|
288 |
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:
29407
diff
changeset
|
289 |
proof |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
290 |
assume "- x dvd y" |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
291 |
then obtain k where "y = - x * k" .. |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
292 |
then have "y = x * - k" by simp |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
293 |
then show "x dvd y" .. |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
294 |
next |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
295 |
assume "x dvd y" |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
296 |
then obtain k where "y = x * k" .. |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
297 |
then have "y = - x * - k" by simp |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
298 |
then show "- x dvd y" .. |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
299 |
qed |
|
6d10cf26b5dc
add lemmas dvd_minus_iff and minus_dvd_iff in class comm_ring_1
huffman
parents:
29407
diff
changeset
|
300 |
|
| 30042 | 301 |
lemma dvd_diff[simp]: "x dvd y \<Longrightarrow> x dvd z \<Longrightarrow> x dvd (y - z)" |
| 35216 | 302 |
by (simp only: diff_minus dvd_add dvd_minus_iff) |
| 29409 | 303 |
|
| 25267 | 304 |
end |
| 25152 | 305 |
|
|
22990
775e9de3db48
added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents:
22987
diff
changeset
|
306 |
class ring_no_zero_divisors = ring + no_zero_divisors |
| 25230 | 307 |
begin |
308 |
||
309 |
lemma mult_eq_0_iff [simp]: |
|
310 |
shows "a * b = 0 \<longleftrightarrow> (a = 0 \<or> b = 0)" |
|
311 |
proof (cases "a = 0 \<or> b = 0") |
|
312 |
case False then have "a \<noteq> 0" and "b \<noteq> 0" by auto |
|
313 |
then show ?thesis using no_zero_divisors by simp |
|
314 |
next |
|
315 |
case True then show ?thesis by auto |
|
316 |
qed |
|
317 |
||
| 26193 | 318 |
text{*Cancellation of equalities with a common factor*}
|
|
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35631
diff
changeset
|
319 |
lemma mult_cancel_right [simp, no_atp]: |
| 26193 | 320 |
"a * c = b * c \<longleftrightarrow> c = 0 \<or> a = b" |
321 |
proof - |
|
322 |
have "(a * c = b * c) = ((a - b) * c = 0)" |
|
| 35216 | 323 |
by (simp add: algebra_simps) |
324 |
thus ?thesis by (simp add: disj_commute) |
|
| 26193 | 325 |
qed |
326 |
||
|
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35631
diff
changeset
|
327 |
lemma mult_cancel_left [simp, no_atp]: |
| 26193 | 328 |
"c * a = c * b \<longleftrightarrow> c = 0 \<or> a = b" |
329 |
proof - |
|
330 |
have "(c * a = c * b) = (c * (a - b) = 0)" |
|
| 35216 | 331 |
by (simp add: algebra_simps) |
332 |
thus ?thesis by simp |
|
| 26193 | 333 |
qed |
334 |
||
| 25230 | 335 |
end |
|
22990
775e9de3db48
added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents:
22987
diff
changeset
|
336 |
|
| 23544 | 337 |
class ring_1_no_zero_divisors = ring_1 + ring_no_zero_divisors |
| 26274 | 338 |
begin |
339 |
||
340 |
lemma mult_cancel_right1 [simp]: |
|
341 |
"c = b * c \<longleftrightarrow> c = 0 \<or> b = 1" |
|
| 29667 | 342 |
by (insert mult_cancel_right [of 1 c b], force) |
| 26274 | 343 |
|
344 |
lemma mult_cancel_right2 [simp]: |
|
345 |
"a * c = c \<longleftrightarrow> c = 0 \<or> a = 1" |
|
| 29667 | 346 |
by (insert mult_cancel_right [of a c 1], simp) |
| 26274 | 347 |
|
348 |
lemma mult_cancel_left1 [simp]: |
|
349 |
"c = c * b \<longleftrightarrow> c = 0 \<or> b = 1" |
|
| 29667 | 350 |
by (insert mult_cancel_left [of c 1 b], force) |
| 26274 | 351 |
|
352 |
lemma mult_cancel_left2 [simp]: |
|
353 |
"c * a = c \<longleftrightarrow> c = 0 \<or> a = 1" |
|
| 29667 | 354 |
by (insert mult_cancel_left [of c a 1], simp) |
| 26274 | 355 |
|
356 |
end |
|
|
22990
775e9de3db48
added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents:
22987
diff
changeset
|
357 |
|
| 22390 | 358 |
class idom = comm_ring_1 + no_zero_divisors |
| 25186 | 359 |
begin |
|
14421
ee97b6463cb4
new Ring_and_Field hierarchy, eliminating redundant axioms
paulson
parents:
14398
diff
changeset
|
360 |
|
| 27516 | 361 |
subclass ring_1_no_zero_divisors .. |
|
22990
775e9de3db48
added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents:
22987
diff
changeset
|
362 |
|
|
29915
2146e512cec9
generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents:
29904
diff
changeset
|
363 |
lemma square_eq_iff: "a * a = b * b \<longleftrightarrow> (a = b \<or> a = - b)" |
|
2146e512cec9
generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents:
29904
diff
changeset
|
364 |
proof |
|
2146e512cec9
generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents:
29904
diff
changeset
|
365 |
assume "a * a = b * b" |
|
2146e512cec9
generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents:
29904
diff
changeset
|
366 |
then have "(a - b) * (a + b) = 0" |
|
2146e512cec9
generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents:
29904
diff
changeset
|
367 |
by (simp add: algebra_simps) |
|
2146e512cec9
generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents:
29904
diff
changeset
|
368 |
then show "a = b \<or> a = - b" |
| 35216 | 369 |
by (simp add: eq_neg_iff_add_eq_0) |
|
29915
2146e512cec9
generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents:
29904
diff
changeset
|
370 |
next |
|
2146e512cec9
generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents:
29904
diff
changeset
|
371 |
assume "a = b \<or> a = - b" |
|
2146e512cec9
generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents:
29904
diff
changeset
|
372 |
then show "a * a = b * b" by auto |
|
2146e512cec9
generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents:
29904
diff
changeset
|
373 |
qed |
|
2146e512cec9
generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents:
29904
diff
changeset
|
374 |
|
|
29981
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
375 |
lemma dvd_mult_cancel_right [simp]: |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
376 |
"a * c dvd b * c \<longleftrightarrow> c = 0 \<or> a dvd b" |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
377 |
proof - |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
378 |
have "a * c dvd b * c \<longleftrightarrow> (\<exists>k. b * c = (a * k) * c)" |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
379 |
unfolding dvd_def by (simp add: mult_ac) |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
380 |
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:
29949
diff
changeset
|
381 |
unfolding dvd_def by simp |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
382 |
finally show ?thesis . |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
383 |
qed |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
384 |
|
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
385 |
lemma dvd_mult_cancel_left [simp]: |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
386 |
"c * a dvd c * b \<longleftrightarrow> c = 0 \<or> a dvd b" |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
387 |
proof - |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
388 |
have "c * a dvd c * b \<longleftrightarrow> (\<exists>k. b * c = (a * k) * c)" |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
389 |
unfolding dvd_def by (simp add: mult_ac) |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
390 |
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:
29949
diff
changeset
|
391 |
unfolding dvd_def by simp |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
392 |
finally show ?thesis . |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
393 |
qed |
|
7d0ed261b712
generalize int_dvd_cancel_factor simproc to idom class
huffman
parents:
29949
diff
changeset
|
394 |
|
| 25186 | 395 |
end |
| 25152 | 396 |
|
| 35083 | 397 |
class inverse = |
398 |
fixes inverse :: "'a \<Rightarrow> 'a" |
|
399 |
and divide :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "'/" 70) |
|
400 |
||
| 22390 | 401 |
class division_ring = ring_1 + inverse + |
| 25062 | 402 |
assumes left_inverse [simp]: "a \<noteq> 0 \<Longrightarrow> inverse a * a = 1" |
403 |
assumes right_inverse [simp]: "a \<noteq> 0 \<Longrightarrow> a * inverse a = 1" |
|
| 35083 | 404 |
assumes divide_inverse: "a / b = a * inverse b" |
| 25186 | 405 |
begin |
|
20496
23eb6034c06d
added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents:
19404
diff
changeset
|
406 |
|
| 25186 | 407 |
subclass ring_1_no_zero_divisors |
| 28823 | 408 |
proof |
|
22987
550709aa8e66
instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents:
22842
diff
changeset
|
409 |
fix a b :: 'a |
|
550709aa8e66
instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents:
22842
diff
changeset
|
410 |
assume a: "a \<noteq> 0" and b: "b \<noteq> 0" |
|
550709aa8e66
instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents:
22842
diff
changeset
|
411 |
show "a * b \<noteq> 0" |
|
550709aa8e66
instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents:
22842
diff
changeset
|
412 |
proof |
|
550709aa8e66
instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents:
22842
diff
changeset
|
413 |
assume ab: "a * b = 0" |
| 29667 | 414 |
hence "0 = inverse a * (a * b) * inverse b" by simp |
|
22987
550709aa8e66
instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents:
22842
diff
changeset
|
415 |
also have "\<dots> = (inverse a * a) * (b * inverse b)" |
|
550709aa8e66
instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents:
22842
diff
changeset
|
416 |
by (simp only: mult_assoc) |
| 29667 | 417 |
also have "\<dots> = 1" using a b by simp |
418 |
finally show False by simp |
|
|
22987
550709aa8e66
instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents:
22842
diff
changeset
|
419 |
qed |
|
550709aa8e66
instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents:
22842
diff
changeset
|
420 |
qed |
|
20496
23eb6034c06d
added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents:
19404
diff
changeset
|
421 |
|
| 26274 | 422 |
lemma nonzero_imp_inverse_nonzero: |
423 |
"a \<noteq> 0 \<Longrightarrow> inverse a \<noteq> 0" |
|
424 |
proof |
|
425 |
assume ianz: "inverse a = 0" |
|
426 |
assume "a \<noteq> 0" |
|
427 |
hence "1 = a * inverse a" by simp |
|
428 |
also have "... = 0" by (simp add: ianz) |
|
429 |
finally have "1 = 0" . |
|
430 |
thus False by (simp add: eq_commute) |
|
431 |
qed |
|
432 |
||
433 |
lemma inverse_zero_imp_zero: |
|
434 |
"inverse a = 0 \<Longrightarrow> a = 0" |
|
435 |
apply (rule classical) |
|
436 |
apply (drule nonzero_imp_inverse_nonzero) |
|
437 |
apply auto |
|
438 |
done |
|
439 |
||
440 |
lemma inverse_unique: |
|
441 |
assumes ab: "a * b = 1" |
|
442 |
shows "inverse a = b" |
|
443 |
proof - |
|
444 |
have "a \<noteq> 0" using ab by (cases "a = 0") simp_all |
|
| 29406 | 445 |
moreover have "inverse a * (a * b) = inverse a" by (simp add: ab) |
446 |
ultimately show ?thesis by (simp add: mult_assoc [symmetric]) |
|
| 26274 | 447 |
qed |
448 |
||
| 29406 | 449 |
lemma nonzero_inverse_minus_eq: |
450 |
"a \<noteq> 0 \<Longrightarrow> inverse (- a) = - inverse a" |
|
| 29667 | 451 |
by (rule inverse_unique) simp |
| 29406 | 452 |
|
453 |
lemma nonzero_inverse_inverse_eq: |
|
454 |
"a \<noteq> 0 \<Longrightarrow> inverse (inverse a) = a" |
|
| 29667 | 455 |
by (rule inverse_unique) simp |
| 29406 | 456 |
|
457 |
lemma nonzero_inverse_eq_imp_eq: |
|
458 |
assumes "inverse a = inverse b" and "a \<noteq> 0" and "b \<noteq> 0" |
|
459 |
shows "a = b" |
|
460 |
proof - |
|
461 |
from `inverse a = inverse b` |
|
| 29667 | 462 |
have "inverse (inverse a) = inverse (inverse b)" by (rule arg_cong) |
| 29406 | 463 |
with `a \<noteq> 0` and `b \<noteq> 0` show "a = b" |
464 |
by (simp add: nonzero_inverse_inverse_eq) |
|
465 |
qed |
|
466 |
||
467 |
lemma inverse_1 [simp]: "inverse 1 = 1" |
|
| 29667 | 468 |
by (rule inverse_unique) simp |
| 29406 | 469 |
|
| 26274 | 470 |
lemma nonzero_inverse_mult_distrib: |
| 29406 | 471 |
assumes "a \<noteq> 0" and "b \<noteq> 0" |
| 26274 | 472 |
shows "inverse (a * b) = inverse b * inverse a" |
473 |
proof - |
|
| 29667 | 474 |
have "a * (b * inverse b) * inverse a = 1" using assms by simp |
475 |
hence "a * b * (inverse b * inverse a) = 1" by (simp only: mult_assoc) |
|
476 |
thus ?thesis by (rule inverse_unique) |
|
| 26274 | 477 |
qed |
478 |
||
479 |
lemma division_ring_inverse_add: |
|
480 |
"a \<noteq> 0 \<Longrightarrow> b \<noteq> 0 \<Longrightarrow> inverse a + inverse b = inverse a * (a + b) * inverse b" |
|
| 29667 | 481 |
by (simp add: algebra_simps) |
| 26274 | 482 |
|
483 |
lemma division_ring_inverse_diff: |
|
484 |
"a \<noteq> 0 \<Longrightarrow> b \<noteq> 0 \<Longrightarrow> inverse a - inverse b = inverse a * (b - a) * inverse b" |
|
| 29667 | 485 |
by (simp add: algebra_simps) |
| 26274 | 486 |
|
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
487 |
lemma right_inverse_eq: "b \<noteq> 0 \<Longrightarrow> a / b = 1 \<longleftrightarrow> a = b" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
488 |
proof |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
489 |
assume neq: "b \<noteq> 0" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
490 |
{
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
491 |
hence "a = (a / b) * b" by (simp add: divide_inverse mult_assoc) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
492 |
also assume "a / b = 1" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
493 |
finally show "a = b" by simp |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
494 |
next |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
495 |
assume "a = b" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
496 |
with neq show "a / b = 1" by (simp add: divide_inverse) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
497 |
} |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
498 |
qed |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
499 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
500 |
lemma nonzero_inverse_eq_divide: "a \<noteq> 0 \<Longrightarrow> inverse a = 1 / a" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
501 |
by (simp add: divide_inverse) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
502 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
503 |
lemma divide_self [simp]: "a \<noteq> 0 \<Longrightarrow> a / a = 1" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
504 |
by (simp add: divide_inverse) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
505 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
506 |
lemma divide_zero_left [simp]: "0 / a = 0" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
507 |
by (simp add: divide_inverse) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
508 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
509 |
lemma inverse_eq_divide: "inverse a = 1 / a" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
510 |
by (simp add: divide_inverse) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
511 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
512 |
lemma add_divide_distrib: "(a+b) / c = a/c + b/c" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
513 |
by (simp add: divide_inverse algebra_simps) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
514 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
515 |
lemma divide_1 [simp]: "a / 1 = a" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
516 |
by (simp add: divide_inverse) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
517 |
|
|
36304
6984744e6b34
less special treatment of times_divide_eq [simp]
haftmann
parents:
36301
diff
changeset
|
518 |
lemma times_divide_eq_right [simp]: "a * (b / c) = (a * b) / c" |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
519 |
by (simp add: divide_inverse mult_assoc) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
520 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
521 |
lemma minus_divide_left: "- (a / b) = (-a) / b" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
522 |
by (simp add: divide_inverse) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
523 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
524 |
lemma nonzero_minus_divide_right: "b \<noteq> 0 ==> - (a / b) = a / (- b)" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
525 |
by (simp add: divide_inverse nonzero_inverse_minus_eq) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
526 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
527 |
lemma nonzero_minus_divide_divide: "b \<noteq> 0 ==> (-a) / (-b) = a / b" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
528 |
by (simp add: divide_inverse nonzero_inverse_minus_eq) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
529 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
530 |
lemma divide_minus_left [simp, no_atp]: "(-a) / b = - (a / b)" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
531 |
by (simp add: divide_inverse) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
532 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
533 |
lemma diff_divide_distrib: "(a - b) / c = a / c - b / c" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
534 |
by (simp add: diff_minus add_divide_distrib) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
535 |
|
|
36348
89c54f51f55a
dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents:
36304
diff
changeset
|
536 |
lemma nonzero_eq_divide_eq [field_simps]: "c \<noteq> 0 \<Longrightarrow> a = b / c \<longleftrightarrow> a * c = b" |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
537 |
proof - |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
538 |
assume [simp]: "c \<noteq> 0" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
539 |
have "a = b / c \<longleftrightarrow> a * c = (b / c) * c" by simp |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
540 |
also have "... \<longleftrightarrow> a * c = b" by (simp add: divide_inverse mult_assoc) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
541 |
finally show ?thesis . |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
542 |
qed |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
543 |
|
|
36348
89c54f51f55a
dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents:
36304
diff
changeset
|
544 |
lemma nonzero_divide_eq_eq [field_simps]: "c \<noteq> 0 \<Longrightarrow> b / c = a \<longleftrightarrow> b = a * c" |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
545 |
proof - |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
546 |
assume [simp]: "c \<noteq> 0" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
547 |
have "b / c = a \<longleftrightarrow> (b / c) * c = a * c" by simp |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
548 |
also have "... \<longleftrightarrow> b = a * c" by (simp add: divide_inverse mult_assoc) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
549 |
finally show ?thesis . |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
550 |
qed |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
551 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
552 |
lemma divide_eq_imp: "c \<noteq> 0 \<Longrightarrow> b = a * c \<Longrightarrow> b / c = a" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
553 |
by (simp add: divide_inverse mult_assoc) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
554 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
555 |
lemma eq_divide_imp: "c \<noteq> 0 \<Longrightarrow> a * c = b \<Longrightarrow> a = b / c" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
556 |
by (drule sym) (simp add: divide_inverse mult_assoc) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
557 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
558 |
end |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
559 |
|
|
36348
89c54f51f55a
dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents:
36304
diff
changeset
|
560 |
class division_ring_inverse_zero = division_ring + |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
561 |
assumes inverse_zero [simp]: "inverse 0 = 0" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
562 |
begin |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
563 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
564 |
lemma divide_zero [simp]: |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
565 |
"a / 0 = 0" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
566 |
by (simp add: divide_inverse) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
567 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
568 |
lemma divide_self_if [simp]: |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
569 |
"a / a = (if a = 0 then 0 else 1)" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
570 |
by simp |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
571 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
572 |
lemma inverse_nonzero_iff_nonzero [simp]: |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
573 |
"inverse a = 0 \<longleftrightarrow> a = 0" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
574 |
by rule (fact inverse_zero_imp_zero, simp) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
575 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
576 |
lemma inverse_minus_eq [simp]: |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
577 |
"inverse (- a) = - inverse a" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
578 |
proof cases |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
579 |
assume "a=0" thus ?thesis by simp |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
580 |
next |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
581 |
assume "a\<noteq>0" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
582 |
thus ?thesis by (simp add: nonzero_inverse_minus_eq) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
583 |
qed |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
584 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
585 |
lemma inverse_eq_imp_eq: |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
586 |
"inverse a = inverse b \<Longrightarrow> a = b" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
587 |
apply (cases "a=0 | b=0") |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
588 |
apply (force dest!: inverse_zero_imp_zero |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
589 |
simp add: eq_commute [of "0::'a"]) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
590 |
apply (force dest!: nonzero_inverse_eq_imp_eq) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
591 |
done |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
592 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
593 |
lemma inverse_eq_iff_eq [simp]: |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
594 |
"inverse a = inverse b \<longleftrightarrow> a = b" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
595 |
by (force dest!: inverse_eq_imp_eq) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
596 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
597 |
lemma inverse_inverse_eq [simp]: |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
598 |
"inverse (inverse a) = a" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
599 |
proof cases |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
600 |
assume "a=0" thus ?thesis by simp |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
601 |
next |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
602 |
assume "a\<noteq>0" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
603 |
thus ?thesis by (simp add: nonzero_inverse_inverse_eq) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
604 |
qed |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
605 |
|
| 25186 | 606 |
end |
| 25152 | 607 |
|
| 22390 | 608 |
class mult_mono = times + zero + ord + |
| 25062 | 609 |
assumes mult_left_mono: "a \<le> b \<Longrightarrow> 0 \<le> c \<Longrightarrow> c * a \<le> c * b" |
610 |
assumes mult_right_mono: "a \<le> b \<Longrightarrow> 0 \<le> c \<Longrightarrow> a * c \<le> b * c" |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14266
diff
changeset
|
611 |
|
| 35302 | 612 |
text {*
|
613 |
The theory of partially ordered rings is taken from the books: |
|
614 |
\begin{itemize}
|
|
615 |
\item \emph{Lattice Theory} by Garret Birkhoff, American Mathematical Society 1979
|
|
616 |
\item \emph{Partially Ordered Algebraic Systems}, Pergamon Press 1963
|
|
617 |
\end{itemize}
|
|
618 |
Most of the used notions can also be looked up in |
|
619 |
\begin{itemize}
|
|
620 |
\item \url{http://www.mathworld.com} by Eric Weisstein et. al.
|
|
621 |
\item \emph{Algebra I} by van der Waerden, Springer.
|
|
622 |
\end{itemize}
|
|
623 |
*} |
|
624 |
||
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
625 |
class ordered_semiring = mult_mono + semiring_0 + ordered_ab_semigroup_add |
| 25230 | 626 |
begin |
627 |
||
628 |
lemma mult_mono: |
|
629 |
"a \<le> b \<Longrightarrow> c \<le> d \<Longrightarrow> 0 \<le> b \<Longrightarrow> 0 \<le> c |
|
630 |
\<Longrightarrow> a * c \<le> b * d" |
|
631 |
apply (erule mult_right_mono [THEN order_trans], assumption) |
|
632 |
apply (erule mult_left_mono, assumption) |
|
633 |
done |
|
634 |
||
635 |
lemma mult_mono': |
|
636 |
"a \<le> b \<Longrightarrow> c \<le> d \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 \<le> c |
|
637 |
\<Longrightarrow> a * c \<le> b * d" |
|
638 |
apply (rule mult_mono) |
|
639 |
apply (fast intro: order_trans)+ |
|
640 |
done |
|
641 |
||
642 |
end |
|
|
21199
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents:
20633
diff
changeset
|
643 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
644 |
class ordered_cancel_semiring = mult_mono + ordered_ab_semigroup_add |
| 29904 | 645 |
+ semiring + cancel_comm_monoid_add |
| 25267 | 646 |
begin |
|
14268
5cf13e80be0e
Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents:
14267
diff
changeset
|
647 |
|
| 27516 | 648 |
subclass semiring_0_cancel .. |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
649 |
subclass ordered_semiring .. |
| 23521 | 650 |
|
| 25230 | 651 |
lemma mult_nonneg_nonneg: "0 \<le> a \<Longrightarrow> 0 \<le> b \<Longrightarrow> 0 \<le> a * b" |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
652 |
using mult_left_mono [of 0 b a] by simp |
| 25230 | 653 |
|
654 |
lemma mult_nonneg_nonpos: "0 \<le> a \<Longrightarrow> b \<le> 0 \<Longrightarrow> a * b \<le> 0" |
|
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
655 |
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:
30650
diff
changeset
|
656 |
|
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
657 |
lemma mult_nonpos_nonneg: "a \<le> 0 \<Longrightarrow> 0 \<le> b \<Longrightarrow> a * b \<le> 0" |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
658 |
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:
30650
diff
changeset
|
659 |
|
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
660 |
text {* Legacy - use @{text mult_nonpos_nonneg} *}
|
| 25230 | 661 |
lemma mult_nonneg_nonpos2: "0 \<le> a \<Longrightarrow> b \<le> 0 \<Longrightarrow> b * a \<le> 0" |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
662 |
by (drule mult_right_mono [of b 0], auto) |
| 25230 | 663 |
|
| 26234 | 664 |
lemma split_mult_neg_le: "(0 \<le> a & b \<le> 0) | (a \<le> 0 & 0 \<le> b) \<Longrightarrow> a * b \<le> 0" |
| 29667 | 665 |
by (auto simp add: mult_nonneg_nonpos mult_nonneg_nonpos2) |
| 25230 | 666 |
|
667 |
end |
|
668 |
||
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
669 |
class linordered_semiring = semiring + comm_monoid_add + linordered_cancel_ab_semigroup_add + mult_mono |
| 25267 | 670 |
begin |
| 25230 | 671 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
672 |
subclass ordered_cancel_semiring .. |
|
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
673 |
|
|
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
674 |
subclass ordered_comm_monoid_add .. |
|
25304
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
675 |
|
| 25230 | 676 |
lemma mult_left_less_imp_less: |
677 |
"c * a < c * b \<Longrightarrow> 0 \<le> c \<Longrightarrow> a < b" |
|
| 29667 | 678 |
by (force simp add: mult_left_mono not_le [symmetric]) |
| 25230 | 679 |
|
680 |
lemma mult_right_less_imp_less: |
|
681 |
"a * c < b * c \<Longrightarrow> 0 \<le> c \<Longrightarrow> a < b" |
|
| 29667 | 682 |
by (force simp add: mult_right_mono not_le [symmetric]) |
| 23521 | 683 |
|
| 25186 | 684 |
end |
| 25152 | 685 |
|
|
35043
07dbdf60d5ad
dropped accidental duplication of "lin" prefix from cs. 108662d50512
haftmann
parents:
35032
diff
changeset
|
686 |
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:
36348
diff
changeset
|
687 |
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:
36348
diff
changeset
|
688 |
|
|
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:
36348
diff
changeset
|
689 |
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:
36348
diff
changeset
|
690 |
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:
36348
diff
changeset
|
691 |
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:
36348
diff
changeset
|
692 |
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:
36348
diff
changeset
|
693 |
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:
36348
diff
changeset
|
694 |
by (simp add: add_mono mult_left_mono) |
|
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:
36348
diff
changeset
|
695 |
thus ?thesis using assms unfolding left_distrib[symmetric] by simp |
|
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:
36348
diff
changeset
|
696 |
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:
36348
diff
changeset
|
697 |
|
|
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:
36348
diff
changeset
|
698 |
end |
|
35043
07dbdf60d5ad
dropped accidental duplication of "lin" prefix from cs. 108662d50512
haftmann
parents:
35032
diff
changeset
|
699 |
|
|
07dbdf60d5ad
dropped accidental duplication of "lin" prefix from cs. 108662d50512
haftmann
parents:
35032
diff
changeset
|
700 |
class linordered_semiring_strict = semiring + comm_monoid_add + linordered_cancel_ab_semigroup_add + |
| 25062 | 701 |
assumes mult_strict_left_mono: "a < b \<Longrightarrow> 0 < c \<Longrightarrow> c * a < c * b" |
702 |
assumes mult_strict_right_mono: "a < b \<Longrightarrow> 0 < c \<Longrightarrow> a * c < b * c" |
|
| 25267 | 703 |
begin |
|
14341
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents:
14334
diff
changeset
|
704 |
|
| 27516 | 705 |
subclass semiring_0_cancel .. |
| 14940 | 706 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
707 |
subclass linordered_semiring |
| 28823 | 708 |
proof |
| 23550 | 709 |
fix a b c :: 'a |
710 |
assume A: "a \<le> b" "0 \<le> c" |
|
711 |
from A show "c * a \<le> c * b" |
|
| 25186 | 712 |
unfolding le_less |
713 |
using mult_strict_left_mono by (cases "c = 0") auto |
|
| 23550 | 714 |
from A show "a * c \<le> b * c" |
| 25152 | 715 |
unfolding le_less |
| 25186 | 716 |
using mult_strict_right_mono by (cases "c = 0") auto |
| 25152 | 717 |
qed |
718 |
||
| 25230 | 719 |
lemma mult_left_le_imp_le: |
720 |
"c * a \<le> c * b \<Longrightarrow> 0 < c \<Longrightarrow> a \<le> b" |
|
| 29667 | 721 |
by (force simp add: mult_strict_left_mono _not_less [symmetric]) |
| 25230 | 722 |
|
723 |
lemma mult_right_le_imp_le: |
|
724 |
"a * c \<le> b * c \<Longrightarrow> 0 < c \<Longrightarrow> a \<le> b" |
|
| 29667 | 725 |
by (force simp add: mult_strict_right_mono not_less [symmetric]) |
| 25230 | 726 |
|
|
30692
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
727 |
lemma mult_pos_pos: "0 < a \<Longrightarrow> 0 < b \<Longrightarrow> 0 < a * b" |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
728 |
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:
30650
diff
changeset
|
729 |
|
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
730 |
lemma mult_pos_neg: "0 < a \<Longrightarrow> b < 0 \<Longrightarrow> a * b < 0" |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
731 |
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:
30650
diff
changeset
|
732 |
|
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
733 |
lemma mult_neg_pos: "a < 0 \<Longrightarrow> 0 < b \<Longrightarrow> a * b < 0" |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
734 |
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:
30650
diff
changeset
|
735 |
|
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
736 |
text {* Legacy - use @{text mult_neg_pos} *}
|
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
737 |
lemma mult_pos_neg2: "0 < a \<Longrightarrow> b < 0 \<Longrightarrow> b * a < 0" |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
738 |
by (drule mult_strict_right_mono [of b 0], auto) |
| 25230 | 739 |
|
740 |
lemma zero_less_mult_pos: |
|
741 |
"0 < a * b \<Longrightarrow> 0 < a \<Longrightarrow> 0 < b" |
|
|
30692
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
742 |
apply (cases "b\<le>0") |
| 25230 | 743 |
apply (auto simp add: le_less not_less) |
|
30692
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
744 |
apply (drule_tac mult_pos_neg [of a b]) |
| 25230 | 745 |
apply (auto dest: less_not_sym) |
746 |
done |
|
747 |
||
748 |
lemma zero_less_mult_pos2: |
|
749 |
"0 < b * a \<Longrightarrow> 0 < a \<Longrightarrow> 0 < b" |
|
|
30692
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
750 |
apply (cases "b\<le>0") |
| 25230 | 751 |
apply (auto simp add: le_less not_less) |
|
30692
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
752 |
apply (drule_tac mult_pos_neg2 [of a b]) |
| 25230 | 753 |
apply (auto dest: less_not_sym) |
754 |
done |
|
755 |
||
| 26193 | 756 |
text{*Strict monotonicity in both arguments*}
|
757 |
lemma mult_strict_mono: |
|
758 |
assumes "a < b" and "c < d" and "0 < b" and "0 \<le> c" |
|
759 |
shows "a * c < b * d" |
|
760 |
using assms apply (cases "c=0") |
|
|
30692
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
761 |
apply (simp add: mult_pos_pos) |
| 26193 | 762 |
apply (erule mult_strict_right_mono [THEN less_trans]) |
|
30692
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
763 |
apply (force simp add: le_less) |
| 26193 | 764 |
apply (erule mult_strict_left_mono, assumption) |
765 |
done |
|
766 |
||
767 |
text{*This weaker variant has more natural premises*}
|
|
768 |
lemma mult_strict_mono': |
|
769 |
assumes "a < b" and "c < d" and "0 \<le> a" and "0 \<le> c" |
|
770 |
shows "a * c < b * d" |
|
| 29667 | 771 |
by (rule mult_strict_mono) (insert assms, auto) |
| 26193 | 772 |
|
773 |
lemma mult_less_le_imp_less: |
|
774 |
assumes "a < b" and "c \<le> d" and "0 \<le> a" and "0 < c" |
|
775 |
shows "a * c < b * d" |
|
776 |
using assms apply (subgoal_tac "a * c < b * c") |
|
777 |
apply (erule less_le_trans) |
|
778 |
apply (erule mult_left_mono) |
|
779 |
apply simp |
|
780 |
apply (erule mult_strict_right_mono) |
|
781 |
apply assumption |
|
782 |
done |
|
783 |
||
784 |
lemma mult_le_less_imp_less: |
|
785 |
assumes "a \<le> b" and "c < d" and "0 < a" and "0 \<le> c" |
|
786 |
shows "a * c < b * d" |
|
787 |
using assms apply (subgoal_tac "a * c \<le> b * c") |
|
788 |
apply (erule le_less_trans) |
|
789 |
apply (erule mult_strict_left_mono) |
|
790 |
apply simp |
|
791 |
apply (erule mult_right_mono) |
|
792 |
apply simp |
|
793 |
done |
|
794 |
||
795 |
lemma mult_less_imp_less_left: |
|
796 |
assumes less: "c * a < c * b" and nonneg: "0 \<le> c" |
|
797 |
shows "a < b" |
|
798 |
proof (rule ccontr) |
|
799 |
assume "\<not> a < b" |
|
800 |
hence "b \<le> a" by (simp add: linorder_not_less) |
|
801 |
hence "c * b \<le> c * a" using nonneg by (rule mult_left_mono) |
|
| 29667 | 802 |
with this and less show False by (simp add: not_less [symmetric]) |
| 26193 | 803 |
qed |
804 |
||
805 |
lemma mult_less_imp_less_right: |
|
806 |
assumes less: "a * c < b * c" and nonneg: "0 \<le> c" |
|
807 |
shows "a < b" |
|
808 |
proof (rule ccontr) |
|
809 |
assume "\<not> a < b" |
|
810 |
hence "b \<le> a" by (simp add: linorder_not_less) |
|
811 |
hence "b * c \<le> a * c" using nonneg by (rule mult_right_mono) |
|
| 29667 | 812 |
with this and less show False by (simp add: not_less [symmetric]) |
| 26193 | 813 |
qed |
814 |
||
| 25230 | 815 |
end |
816 |
||
|
35097
4554bb2abfa3
dropped last occurence of the linlinordered accident
haftmann
parents:
35092
diff
changeset
|
817 |
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:
36348
diff
changeset
|
818 |
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:
36348
diff
changeset
|
819 |
|
|
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:
36348
diff
changeset
|
820 |
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:
36348
diff
changeset
|
821 |
|
|
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:
36348
diff
changeset
|
822 |
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:
36348
diff
changeset
|
823 |
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:
36348
diff
changeset
|
824 |
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:
36348
diff
changeset
|
825 |
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:
36348
diff
changeset
|
826 |
from assms have "u * x + v * y < 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:
36348
diff
changeset
|
827 |
by (cases "u = 0") |
|
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:
36348
diff
changeset
|
828 |
(auto intro!: add_less_le_mono mult_strict_left_mono mult_left_mono) |
|
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:
36348
diff
changeset
|
829 |
thus ?thesis using assms unfolding left_distrib[symmetric] by simp |
|
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:
36348
diff
changeset
|
830 |
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:
36348
diff
changeset
|
831 |
|
|
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:
36348
diff
changeset
|
832 |
end |
| 33319 | 833 |
|
| 22390 | 834 |
class mult_mono1 = times + zero + ord + |
| 25230 | 835 |
assumes mult_mono1: "a \<le> b \<Longrightarrow> 0 \<le> c \<Longrightarrow> c * a \<le> c * b" |
| 14270 | 836 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
837 |
class ordered_comm_semiring = comm_semiring_0 |
|
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
838 |
+ ordered_ab_semigroup_add + mult_mono1 |
| 25186 | 839 |
begin |
| 25152 | 840 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
841 |
subclass ordered_semiring |
| 28823 | 842 |
proof |
|
21199
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents:
20633
diff
changeset
|
843 |
fix a b c :: 'a |
| 23550 | 844 |
assume "a \<le> b" "0 \<le> c" |
| 25230 | 845 |
thus "c * a \<le> c * b" by (rule mult_mono1) |
| 23550 | 846 |
thus "a * c \<le> b * c" by (simp only: mult_commute) |
|
21199
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents:
20633
diff
changeset
|
847 |
qed |
|
14265
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff
changeset
|
848 |
|
| 25267 | 849 |
end |
850 |
||
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
851 |
class ordered_cancel_comm_semiring = comm_semiring_0_cancel |
|
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
852 |
+ ordered_ab_semigroup_add + mult_mono1 |
| 25267 | 853 |
begin |
|
14265
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff
changeset
|
854 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
855 |
subclass ordered_comm_semiring .. |
|
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
856 |
subclass ordered_cancel_semiring .. |
| 25267 | 857 |
|
858 |
end |
|
859 |
||
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
860 |
class linordered_comm_semiring_strict = comm_semiring_0 + linordered_cancel_ab_semigroup_add + |
| 26193 | 861 |
assumes mult_strict_left_mono_comm: "a < b \<Longrightarrow> 0 < c \<Longrightarrow> c * a < c * b" |
| 25267 | 862 |
begin |
863 |
||
|
35043
07dbdf60d5ad
dropped accidental duplication of "lin" prefix from cs. 108662d50512
haftmann
parents:
35032
diff
changeset
|
864 |
subclass linordered_semiring_strict |
| 28823 | 865 |
proof |
| 23550 | 866 |
fix a b c :: 'a |
867 |
assume "a < b" "0 < c" |
|
| 26193 | 868 |
thus "c * a < c * b" by (rule mult_strict_left_mono_comm) |
| 23550 | 869 |
thus "a * c < b * c" by (simp only: mult_commute) |
870 |
qed |
|
|
14272
5efbb548107d
Tidying of the integer development; towards removing the
paulson
parents:
14270
diff
changeset
|
871 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
872 |
subclass ordered_cancel_comm_semiring |
| 28823 | 873 |
proof |
| 23550 | 874 |
fix a b c :: 'a |
875 |
assume "a \<le> b" "0 \<le> c" |
|
876 |
thus "c * a \<le> c * b" |
|
| 25186 | 877 |
unfolding le_less |
| 26193 | 878 |
using mult_strict_left_mono by (cases "c = 0") auto |
| 23550 | 879 |
qed |
|
14272
5efbb548107d
Tidying of the integer development; towards removing the
paulson
parents:
14270
diff
changeset
|
880 |
|
| 25267 | 881 |
end |
| 25230 | 882 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
883 |
class ordered_ring = ring + ordered_cancel_semiring |
| 25267 | 884 |
begin |
| 25230 | 885 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
886 |
subclass ordered_ab_group_add .. |
| 14270 | 887 |
|
| 25230 | 888 |
lemma less_add_iff1: |
889 |
"a * e + c < b * e + d \<longleftrightarrow> (a - b) * e + c < d" |
|
| 29667 | 890 |
by (simp add: algebra_simps) |
| 25230 | 891 |
|
892 |
lemma less_add_iff2: |
|
893 |
"a * e + c < b * e + d \<longleftrightarrow> c < (b - a) * e + d" |
|
| 29667 | 894 |
by (simp add: algebra_simps) |
| 25230 | 895 |
|
896 |
lemma le_add_iff1: |
|
897 |
"a * e + c \<le> b * e + d \<longleftrightarrow> (a - b) * e + c \<le> d" |
|
| 29667 | 898 |
by (simp add: algebra_simps) |
| 25230 | 899 |
|
900 |
lemma le_add_iff2: |
|
901 |
"a * e + c \<le> b * e + d \<longleftrightarrow> c \<le> (b - a) * e + d" |
|
| 29667 | 902 |
by (simp add: algebra_simps) |
| 25230 | 903 |
|
904 |
lemma mult_left_mono_neg: |
|
905 |
"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:
35828
diff
changeset
|
906 |
apply (drule mult_left_mono [of _ _ "- c"]) |
| 35216 | 907 |
apply simp_all |
| 25230 | 908 |
done |
909 |
||
910 |
lemma mult_right_mono_neg: |
|
911 |
"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:
35828
diff
changeset
|
912 |
apply (drule mult_right_mono [of _ _ "- c"]) |
| 35216 | 913 |
apply simp_all |
| 25230 | 914 |
done |
915 |
||
|
30692
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
916 |
lemma mult_nonpos_nonpos: "a \<le> 0 \<Longrightarrow> b \<le> 0 \<Longrightarrow> 0 \<le> a * b" |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
917 |
using mult_right_mono_neg [of a 0 b] by simp |
| 25230 | 918 |
|
919 |
lemma split_mult_pos_le: |
|
920 |
"(0 \<le> a \<and> 0 \<le> b) \<or> (a \<le> 0 \<and> b \<le> 0) \<Longrightarrow> 0 \<le> a * b" |
|
| 29667 | 921 |
by (auto simp add: mult_nonneg_nonneg mult_nonpos_nonpos) |
| 25186 | 922 |
|
923 |
end |
|
| 14270 | 924 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
925 |
class linordered_ring = ring + linordered_semiring + linordered_ab_group_add + abs_if |
|
25304
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
926 |
begin |
|
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
927 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
928 |
subclass ordered_ring .. |
|
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
929 |
|
|
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
930 |
subclass ordered_ab_group_add_abs |
| 28823 | 931 |
proof |
|
25304
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
932 |
fix a b |
|
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
933 |
show "\<bar>a + b\<bar> \<le> \<bar>a\<bar> + \<bar>b\<bar>" |
| 35216 | 934 |
by (auto simp add: abs_if not_less) |
935 |
(auto simp del: minus_add_distrib simp add: minus_add_distrib [symmetric], |
|
936 |
auto intro: add_nonneg_nonneg, auto intro!: less_imp_le add_neg_neg) |
|
937 |
qed (auto simp add: abs_if) |
|
|
25304
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
938 |
|
|
35631
0b8a5fd339ab
generalize some lemmas from class linordered_ring_strict to linordered_ring
huffman
parents:
35302
diff
changeset
|
939 |
lemma zero_le_square [simp]: "0 \<le> a * a" |
|
0b8a5fd339ab
generalize some lemmas from class linordered_ring_strict to linordered_ring
huffman
parents:
35302
diff
changeset
|
940 |
using linear [of 0 a] |
|
0b8a5fd339ab
generalize some lemmas from class linordered_ring_strict to linordered_ring
huffman
parents:
35302
diff
changeset
|
941 |
by (auto simp add: mult_nonneg_nonneg mult_nonpos_nonpos) |
|
0b8a5fd339ab
generalize some lemmas from class linordered_ring_strict to linordered_ring
huffman
parents:
35302
diff
changeset
|
942 |
|
|
0b8a5fd339ab
generalize some lemmas from class linordered_ring_strict to linordered_ring
huffman
parents:
35302
diff
changeset
|
943 |
lemma not_square_less_zero [simp]: "\<not> (a * a < 0)" |
|
0b8a5fd339ab
generalize some lemmas from class linordered_ring_strict to linordered_ring
huffman
parents:
35302
diff
changeset
|
944 |
by (simp add: not_less) |
|
0b8a5fd339ab
generalize some lemmas from class linordered_ring_strict to linordered_ring
huffman
parents:
35302
diff
changeset
|
945 |
|
|
25304
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
946 |
end |
| 23521 | 947 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
948 |
(* The "strict" suffix can be seen as describing the combination of linordered_ring and no_zero_divisors. |
|
35043
07dbdf60d5ad
dropped accidental duplication of "lin" prefix from cs. 108662d50512
haftmann
parents:
35032
diff
changeset
|
949 |
Basically, linordered_ring + no_zero_divisors = linordered_ring_strict. |
| 25230 | 950 |
*) |
|
35043
07dbdf60d5ad
dropped accidental duplication of "lin" prefix from cs. 108662d50512
haftmann
parents:
35032
diff
changeset
|
951 |
class linordered_ring_strict = ring + linordered_semiring_strict |
|
25304
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
952 |
+ ordered_ab_group_add + abs_if |
| 25230 | 953 |
begin |
|
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
14341
diff
changeset
|
954 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
955 |
subclass linordered_ring .. |
|
25304
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
956 |
|
|
30692
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
957 |
lemma mult_strict_left_mono_neg: "b < a \<Longrightarrow> c < 0 \<Longrightarrow> c * a < c * b" |
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
958 |
using mult_strict_left_mono [of b a "- c"] by simp |
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
959 |
|
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
960 |
lemma mult_strict_right_mono_neg: "b < a \<Longrightarrow> c < 0 \<Longrightarrow> a * c < b * c" |
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
961 |
using mult_strict_right_mono [of b a "- c"] by simp |
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
962 |
|
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
963 |
lemma mult_neg_neg: "a < 0 \<Longrightarrow> b < 0 \<Longrightarrow> 0 < a * b" |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
964 |
using mult_strict_right_mono_neg [of a 0 b] by simp |
| 14738 | 965 |
|
| 25917 | 966 |
subclass ring_no_zero_divisors |
| 28823 | 967 |
proof |
| 25917 | 968 |
fix a b |
969 |
assume "a \<noteq> 0" then have A: "a < 0 \<or> 0 < a" by (simp add: neq_iff) |
|
970 |
assume "b \<noteq> 0" then have B: "b < 0 \<or> 0 < b" by (simp add: neq_iff) |
|
971 |
have "a * b < 0 \<or> 0 < a * b" |
|
972 |
proof (cases "a < 0") |
|
973 |
case True note A' = this |
|
974 |
show ?thesis proof (cases "b < 0") |
|
975 |
case True with A' |
|
976 |
show ?thesis by (auto dest: mult_neg_neg) |
|
977 |
next |
|
978 |
case False with B have "0 < b" by auto |
|
979 |
with A' show ?thesis by (auto dest: mult_strict_right_mono) |
|
980 |
qed |
|
981 |
next |
|
982 |
case False with A have A': "0 < a" by auto |
|
983 |
show ?thesis proof (cases "b < 0") |
|
984 |
case True with A' |
|
985 |
show ?thesis by (auto dest: mult_strict_right_mono_neg) |
|
986 |
next |
|
987 |
case False with B have "0 < b" by auto |
|
988 |
with A' show ?thesis by (auto dest: mult_pos_pos) |
|
989 |
qed |
|
990 |
qed |
|
991 |
then show "a * b \<noteq> 0" by (simp add: neq_iff) |
|
992 |
qed |
|
|
25304
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
993 |
|
|
14265
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff
changeset
|
994 |
lemma zero_less_mult_iff: |
| 25917 | 995 |
"0 < a * b \<longleftrightarrow> 0 < a \<and> 0 < b \<or> a < 0 \<and> b < 0" |
996 |
apply (auto simp add: mult_pos_pos mult_neg_neg) |
|
997 |
apply (simp_all add: not_less le_less) |
|
998 |
apply (erule disjE) apply assumption defer |
|
999 |
apply (erule disjE) defer apply (drule sym) apply simp |
|
1000 |
apply (erule disjE) defer apply (drule sym) apply simp |
|
1001 |
apply (erule disjE) apply assumption apply (drule sym) apply simp |
|
1002 |
apply (drule sym) apply simp |
|
1003 |
apply (blast dest: zero_less_mult_pos) |
|
| 25230 | 1004 |
apply (blast dest: zero_less_mult_pos2) |
1005 |
done |
|
|
22990
775e9de3db48
added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents:
22987
diff
changeset
|
1006 |
|
|
14265
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff
changeset
|
1007 |
lemma zero_le_mult_iff: |
| 25917 | 1008 |
"0 \<le> a * b \<longleftrightarrow> 0 \<le> a \<and> 0 \<le> b \<or> a \<le> 0 \<and> b \<le> 0" |
| 29667 | 1009 |
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
|
1010 |
|
|
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff
changeset
|
1011 |
lemma mult_less_0_iff: |
| 25917 | 1012 |
"a * b < 0 \<longleftrightarrow> 0 < a \<and> b < 0 \<or> a < 0 \<and> 0 < b" |
| 35216 | 1013 |
apply (insert zero_less_mult_iff [of "-a" b]) |
1014 |
apply force |
|
| 25917 | 1015 |
done |
|
14265
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff
changeset
|
1016 |
|
|
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff
changeset
|
1017 |
lemma mult_le_0_iff: |
| 25917 | 1018 |
"a * b \<le> 0 \<longleftrightarrow> 0 \<le> a \<and> b \<le> 0 \<or> a \<le> 0 \<and> 0 \<le> b" |
1019 |
apply (insert zero_le_mult_iff [of "-a" b]) |
|
| 35216 | 1020 |
apply force |
| 25917 | 1021 |
done |
1022 |
||
| 26193 | 1023 |
text{*Cancellation laws for @{term "c*a < c*b"} and @{term "a*c < b*c"},
|
1024 |
also with the relations @{text "\<le>"} and equality.*}
|
|
1025 |
||
1026 |
text{*These ``disjunction'' versions produce two cases when the comparison is
|
|
1027 |
an assumption, but effectively four when the comparison is a goal.*} |
|
1028 |
||
1029 |
lemma mult_less_cancel_right_disj: |
|
1030 |
"a * c < b * c \<longleftrightarrow> 0 < c \<and> a < b \<or> c < 0 \<and> b < a" |
|
1031 |
apply (cases "c = 0") |
|
1032 |
apply (auto simp add: neq_iff mult_strict_right_mono |
|
1033 |
mult_strict_right_mono_neg) |
|
1034 |
apply (auto simp add: not_less |
|
1035 |
not_le [symmetric, of "a*c"] |
|
1036 |
not_le [symmetric, of a]) |
|
1037 |
apply (erule_tac [!] notE) |
|
1038 |
apply (auto simp add: less_imp_le mult_right_mono |
|
1039 |
mult_right_mono_neg) |
|
1040 |
done |
|
1041 |
||
1042 |
lemma mult_less_cancel_left_disj: |
|
1043 |
"c * a < c * b \<longleftrightarrow> 0 < c \<and> a < b \<or> c < 0 \<and> b < a" |
|
1044 |
apply (cases "c = 0") |
|
1045 |
apply (auto simp add: neq_iff mult_strict_left_mono |
|
1046 |
mult_strict_left_mono_neg) |
|
1047 |
apply (auto simp add: not_less |
|
1048 |
not_le [symmetric, of "c*a"] |
|
1049 |
not_le [symmetric, of a]) |
|
1050 |
apply (erule_tac [!] notE) |
|
1051 |
apply (auto simp add: less_imp_le mult_left_mono |
|
1052 |
mult_left_mono_neg) |
|
1053 |
done |
|
1054 |
||
1055 |
text{*The ``conjunction of implication'' lemmas produce two cases when the
|
|
1056 |
comparison is a goal, but give four when the comparison is an assumption.*} |
|
1057 |
||
1058 |
lemma mult_less_cancel_right: |
|
1059 |
"a * c < b * c \<longleftrightarrow> (0 \<le> c \<longrightarrow> a < b) \<and> (c \<le> 0 \<longrightarrow> b < a)" |
|
1060 |
using mult_less_cancel_right_disj [of a c b] by auto |
|
1061 |
||
1062 |
lemma mult_less_cancel_left: |
|
1063 |
"c * a < c * b \<longleftrightarrow> (0 \<le> c \<longrightarrow> a < b) \<and> (c \<le> 0 \<longrightarrow> b < a)" |
|
1064 |
using mult_less_cancel_left_disj [of c a b] by auto |
|
1065 |
||
1066 |
lemma mult_le_cancel_right: |
|
1067 |
"a * c \<le> b * c \<longleftrightarrow> (0 < c \<longrightarrow> a \<le> b) \<and> (c < 0 \<longrightarrow> b \<le> a)" |
|
| 29667 | 1068 |
by (simp add: not_less [symmetric] mult_less_cancel_right_disj) |
| 26193 | 1069 |
|
1070 |
lemma mult_le_cancel_left: |
|
1071 |
"c * a \<le> c * b \<longleftrightarrow> (0 < c \<longrightarrow> a \<le> b) \<and> (c < 0 \<longrightarrow> b \<le> a)" |
|
| 29667 | 1072 |
by (simp add: not_less [symmetric] mult_less_cancel_left_disj) |
| 26193 | 1073 |
|
|
30649
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1074 |
lemma mult_le_cancel_left_pos: |
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1075 |
"0 < c \<Longrightarrow> c * a \<le> c * b \<longleftrightarrow> a \<le> b" |
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1076 |
by (auto simp: mult_le_cancel_left) |
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1077 |
|
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1078 |
lemma mult_le_cancel_left_neg: |
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1079 |
"c < 0 \<Longrightarrow> c * a \<le> c * b \<longleftrightarrow> b \<le> a" |
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1080 |
by (auto simp: mult_le_cancel_left) |
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1081 |
|
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1082 |
lemma mult_less_cancel_left_pos: |
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1083 |
"0 < c \<Longrightarrow> c * a < c * b \<longleftrightarrow> a < b" |
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1084 |
by (auto simp: mult_less_cancel_left) |
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1085 |
|
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1086 |
lemma mult_less_cancel_left_neg: |
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1087 |
"c < 0 \<Longrightarrow> c * a < c * b \<longleftrightarrow> b < a" |
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1088 |
by (auto simp: mult_less_cancel_left) |
|
57753e0ec1d4
1. New cancellation simprocs for common factors in inequations
nipkow
parents:
30242
diff
changeset
|
1089 |
|
| 25917 | 1090 |
end |
|
14265
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff
changeset
|
1091 |
|
|
30692
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
1092 |
lemmas mult_sign_intros = |
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
1093 |
mult_nonneg_nonneg mult_nonneg_nonpos |
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
1094 |
mult_nonpos_nonneg mult_nonpos_nonpos |
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
1095 |
mult_pos_pos mult_pos_neg |
|
44ea10bc07a7
clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents:
30650
diff
changeset
|
1096 |
mult_neg_pos mult_neg_neg |
| 25230 | 1097 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1098 |
class ordered_comm_ring = comm_ring + ordered_comm_semiring |
| 25267 | 1099 |
begin |
| 25230 | 1100 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1101 |
subclass ordered_ring .. |
|
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1102 |
subclass ordered_cancel_comm_semiring .. |
| 25230 | 1103 |
|
| 25267 | 1104 |
end |
| 25230 | 1105 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1106 |
class linordered_semidom = comm_semiring_1_cancel + linordered_comm_semiring_strict + |
|
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1107 |
(*previously linordered_semiring*) |
| 25230 | 1108 |
assumes zero_less_one [simp]: "0 < 1" |
1109 |
begin |
|
1110 |
||
1111 |
lemma pos_add_strict: |
|
1112 |
shows "0 < a \<Longrightarrow> b < c \<Longrightarrow> b < a + c" |
|
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1113 |
using add_strict_mono [of 0 a b c] by simp |
| 25230 | 1114 |
|
| 26193 | 1115 |
lemma zero_le_one [simp]: "0 \<le> 1" |
| 29667 | 1116 |
by (rule zero_less_one [THEN less_imp_le]) |
| 26193 | 1117 |
|
1118 |
lemma not_one_le_zero [simp]: "\<not> 1 \<le> 0" |
|
| 29667 | 1119 |
by (simp add: not_le) |
| 26193 | 1120 |
|
1121 |
lemma not_one_less_zero [simp]: "\<not> 1 < 0" |
|
| 29667 | 1122 |
by (simp add: not_less) |
| 26193 | 1123 |
|
1124 |
lemma less_1_mult: |
|
1125 |
assumes "1 < m" and "1 < n" |
|
1126 |
shows "1 < m * n" |
|
1127 |
using assms mult_strict_mono [of 1 m 1 n] |
|
1128 |
by (simp add: less_trans [OF zero_less_one]) |
|
1129 |
||
| 25230 | 1130 |
end |
1131 |
||
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1132 |
class linordered_idom = comm_ring_1 + |
|
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1133 |
linordered_comm_semiring_strict + ordered_ab_group_add + |
| 25230 | 1134 |
abs_if + sgn_if |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1135 |
(*previously linordered_ring*) |
| 25917 | 1136 |
begin |
1137 |
||
|
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:
36348
diff
changeset
|
1138 |
subclass linordered_semiring_1_strict .. |
|
35043
07dbdf60d5ad
dropped accidental duplication of "lin" prefix from cs. 108662d50512
haftmann
parents:
35032
diff
changeset
|
1139 |
subclass linordered_ring_strict .. |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1140 |
subclass ordered_comm_ring .. |
| 27516 | 1141 |
subclass idom .. |
| 25917 | 1142 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1143 |
subclass linordered_semidom |
| 28823 | 1144 |
proof |
| 26193 | 1145 |
have "0 \<le> 1 * 1" by (rule zero_le_square) |
1146 |
thus "0 < 1" by (simp add: le_less) |
|
| 25917 | 1147 |
qed |
1148 |
||
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1149 |
lemma linorder_neqE_linordered_idom: |
| 26193 | 1150 |
assumes "x \<noteq> y" obtains "x < y" | "y < x" |
1151 |
using assms by (rule neqE) |
|
1152 |
||
| 26274 | 1153 |
text {* These cancellation simprules also produce two cases when the comparison is a goal. *}
|
1154 |
||
1155 |
lemma mult_le_cancel_right1: |
|
1156 |
"c \<le> b * c \<longleftrightarrow> (0 < c \<longrightarrow> 1 \<le> b) \<and> (c < 0 \<longrightarrow> b \<le> 1)" |
|
| 29667 | 1157 |
by (insert mult_le_cancel_right [of 1 c b], simp) |
| 26274 | 1158 |
|
1159 |
lemma mult_le_cancel_right2: |
|
1160 |
"a * c \<le> c \<longleftrightarrow> (0 < c \<longrightarrow> a \<le> 1) \<and> (c < 0 \<longrightarrow> 1 \<le> a)" |
|
| 29667 | 1161 |
by (insert mult_le_cancel_right [of a c 1], simp) |
| 26274 | 1162 |
|
1163 |
lemma mult_le_cancel_left1: |
|
1164 |
"c \<le> c * b \<longleftrightarrow> (0 < c \<longrightarrow> 1 \<le> b) \<and> (c < 0 \<longrightarrow> b \<le> 1)" |
|
| 29667 | 1165 |
by (insert mult_le_cancel_left [of c 1 b], simp) |
| 26274 | 1166 |
|
1167 |
lemma mult_le_cancel_left2: |
|
1168 |
"c * a \<le> c \<longleftrightarrow> (0 < c \<longrightarrow> a \<le> 1) \<and> (c < 0 \<longrightarrow> 1 \<le> a)" |
|
| 29667 | 1169 |
by (insert mult_le_cancel_left [of c a 1], simp) |
| 26274 | 1170 |
|
1171 |
lemma mult_less_cancel_right1: |
|
1172 |
"c < b * c \<longleftrightarrow> (0 \<le> c \<longrightarrow> 1 < b) \<and> (c \<le> 0 \<longrightarrow> b < 1)" |
|
| 29667 | 1173 |
by (insert mult_less_cancel_right [of 1 c b], simp) |
| 26274 | 1174 |
|
1175 |
lemma mult_less_cancel_right2: |
|
1176 |
"a * c < c \<longleftrightarrow> (0 \<le> c \<longrightarrow> a < 1) \<and> (c \<le> 0 \<longrightarrow> 1 < a)" |
|
| 29667 | 1177 |
by (insert mult_less_cancel_right [of a c 1], simp) |
| 26274 | 1178 |
|
1179 |
lemma mult_less_cancel_left1: |
|
1180 |
"c < c * b \<longleftrightarrow> (0 \<le> c \<longrightarrow> 1 < b) \<and> (c \<le> 0 \<longrightarrow> b < 1)" |
|
| 29667 | 1181 |
by (insert mult_less_cancel_left [of c 1 b], simp) |
| 26274 | 1182 |
|
1183 |
lemma mult_less_cancel_left2: |
|
1184 |
"c * a < c \<longleftrightarrow> (0 \<le> c \<longrightarrow> a < 1) \<and> (c \<le> 0 \<longrightarrow> 1 < a)" |
|
| 29667 | 1185 |
by (insert mult_less_cancel_left [of c a 1], simp) |
| 26274 | 1186 |
|
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1187 |
lemma sgn_sgn [simp]: |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1188 |
"sgn (sgn a) = sgn a" |
| 29700 | 1189 |
unfolding sgn_if by simp |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1190 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1191 |
lemma sgn_0_0: |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1192 |
"sgn a = 0 \<longleftrightarrow> a = 0" |
| 29700 | 1193 |
unfolding sgn_if by simp |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1194 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1195 |
lemma sgn_1_pos: |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1196 |
"sgn a = 1 \<longleftrightarrow> a > 0" |
| 35216 | 1197 |
unfolding sgn_if by simp |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1198 |
|
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1199 |
lemma sgn_1_neg: |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1200 |
"sgn a = - 1 \<longleftrightarrow> a < 0" |
| 35216 | 1201 |
unfolding sgn_if by auto |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1202 |
|
| 29940 | 1203 |
lemma sgn_pos [simp]: |
1204 |
"0 < a \<Longrightarrow> sgn a = 1" |
|
1205 |
unfolding sgn_1_pos . |
|
1206 |
||
1207 |
lemma sgn_neg [simp]: |
|
1208 |
"a < 0 \<Longrightarrow> sgn a = - 1" |
|
1209 |
unfolding sgn_1_neg . |
|
1210 |
||
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1211 |
lemma sgn_times: |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1212 |
"sgn (a * b) = sgn a * sgn b" |
| 29667 | 1213 |
by (auto simp add: sgn_if zero_less_mult_iff) |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27516
diff
changeset
|
1214 |
|
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1215 |
lemma abs_sgn: "\<bar>k\<bar> = k * sgn k" |
| 29700 | 1216 |
unfolding sgn_if abs_if by auto |
1217 |
||
| 29940 | 1218 |
lemma sgn_greater [simp]: |
1219 |
"0 < sgn a \<longleftrightarrow> 0 < a" |
|
1220 |
unfolding sgn_if by auto |
|
1221 |
||
1222 |
lemma sgn_less [simp]: |
|
1223 |
"sgn a < 0 \<longleftrightarrow> a < 0" |
|
1224 |
unfolding sgn_if by auto |
|
1225 |
||
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1226 |
lemma abs_dvd_iff [simp]: "\<bar>m\<bar> dvd k \<longleftrightarrow> m dvd k" |
| 29949 | 1227 |
by (simp add: abs_if) |
1228 |
||
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1229 |
lemma dvd_abs_iff [simp]: "m dvd \<bar>k\<bar> \<longleftrightarrow> m dvd k" |
| 29949 | 1230 |
by (simp add: abs_if) |
| 29653 | 1231 |
|
|
33676
802f5e233e48
moved lemma from Algebra/IntRing to Ring_and_Field
nipkow
parents:
33364
diff
changeset
|
1232 |
lemma dvd_if_abs_eq: |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1233 |
"\<bar>l\<bar> = \<bar>k\<bar> \<Longrightarrow> l dvd k" |
|
33676
802f5e233e48
moved lemma from Algebra/IntRing to Ring_and_Field
nipkow
parents:
33364
diff
changeset
|
1234 |
by(subst abs_dvd_iff[symmetric]) simp |
|
802f5e233e48
moved lemma from Algebra/IntRing to Ring_and_Field
nipkow
parents:
33364
diff
changeset
|
1235 |
|
| 25917 | 1236 |
end |
| 25230 | 1237 |
|
| 26274 | 1238 |
text {* Simprules for comparisons where common factors can be cancelled. *}
|
|
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
1239 |
|
|
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35631
diff
changeset
|
1240 |
lemmas mult_compare_simps[no_atp] = |
|
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
1241 |
mult_le_cancel_right mult_le_cancel_left |
|
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
1242 |
mult_le_cancel_right1 mult_le_cancel_right2 |
|
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
1243 |
mult_le_cancel_left1 mult_le_cancel_left2 |
|
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
1244 |
mult_less_cancel_right mult_less_cancel_left |
|
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
1245 |
mult_less_cancel_right1 mult_less_cancel_right2 |
|
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
1246 |
mult_less_cancel_left1 mult_less_cancel_left2 |
|
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
1247 |
mult_cancel_right mult_cancel_left |
|
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
1248 |
mult_cancel_right1 mult_cancel_right2 |
|
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
1249 |
mult_cancel_left1 mult_cancel_left2 |
|
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
1250 |
|
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1251 |
text {* Reasoning about inequalities with division *}
|
|
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16568
diff
changeset
|
1252 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1253 |
context linordered_semidom |
| 25193 | 1254 |
begin |
1255 |
||
1256 |
lemma less_add_one: "a < a + 1" |
|
| 14293 | 1257 |
proof - |
| 25193 | 1258 |
have "a + 0 < a + 1" |
| 23482 | 1259 |
by (blast intro: zero_less_one add_strict_left_mono) |
| 14293 | 1260 |
thus ?thesis by simp |
1261 |
qed |
|
1262 |
||
| 25193 | 1263 |
lemma zero_less_two: "0 < 1 + 1" |
| 29667 | 1264 |
by (blast intro: less_trans zero_less_one less_add_one) |
| 25193 | 1265 |
|
1266 |
end |
|
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
14353
diff
changeset
|
1267 |
|
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1268 |
context linordered_idom |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1269 |
begin |
|
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
1270 |
|
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1271 |
lemma mult_right_le_one_le: |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1272 |
"0 \<le> x \<Longrightarrow> 0 \<le> y \<Longrightarrow> y \<le> 1 \<Longrightarrow> x * y \<le> x" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1273 |
by (auto simp add: mult_le_cancel_left2) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1274 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1275 |
lemma mult_left_le_one_le: |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1276 |
"0 \<le> x \<Longrightarrow> 0 \<le> y \<Longrightarrow> y \<le> 1 \<Longrightarrow> y * x \<le> x" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1277 |
by (auto simp add: mult_le_cancel_right2) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1278 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1279 |
end |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1280 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1281 |
text {* Absolute Value *}
|
| 14293 | 1282 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1283 |
context linordered_idom |
|
25304
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
1284 |
begin |
|
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
1285 |
|
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1286 |
lemma mult_sgn_abs: |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1287 |
"sgn x * \<bar>x\<bar> = x" |
|
25304
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
1288 |
unfolding abs_if sgn_if by auto |
|
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
1289 |
|
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1290 |
lemma abs_one [simp]: |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1291 |
"\<bar>1\<bar> = 1" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1292 |
by (simp add: abs_if zero_less_one [THEN less_not_sym]) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1293 |
|
|
25304
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
1294 |
end |
| 24491 | 1295 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1296 |
class ordered_ring_abs = ordered_ring + ordered_ab_group_add_abs + |
|
25304
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
1297 |
assumes abs_eq_mult: |
|
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
haftmann
parents:
25267
diff
changeset
|
1298 |
"(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:
25267
diff
changeset
|
1299 |
|
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1300 |
context linordered_idom |
| 30961 | 1301 |
begin |
1302 |
||
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34146
diff
changeset
|
1303 |
subclass ordered_ring_abs proof |
| 35216 | 1304 |
qed (auto simp add: abs_if not_less mult_less_0_iff) |
| 30961 | 1305 |
|
1306 |
lemma abs_mult: |
|
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1307 |
"\<bar>a * b\<bar> = \<bar>a\<bar> * \<bar>b\<bar>" |
| 30961 | 1308 |
by (rule abs_eq_mult) auto |
1309 |
||
1310 |
lemma abs_mult_self: |
|
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1311 |
"\<bar>a\<bar> * \<bar>a\<bar> = a * a" |
| 30961 | 1312 |
by (simp add: abs_if) |
1313 |
||
|
14294
f4d806fd72ce
absolute value theorems moved to HOL/Ring_and_Field
paulson
parents:
14293
diff
changeset
|
1314 |
lemma abs_mult_less: |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1315 |
"\<bar>a\<bar> < c \<Longrightarrow> \<bar>b\<bar> < d \<Longrightarrow> \<bar>a\<bar> * \<bar>b\<bar> < c * d" |
|
14294
f4d806fd72ce
absolute value theorems moved to HOL/Ring_and_Field
paulson
parents:
14293
diff
changeset
|
1316 |
proof - |
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1317 |
assume ac: "\<bar>a\<bar> < c" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1318 |
hence cpos: "0<c" by (blast intro: le_less_trans abs_ge_zero) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1319 |
assume "\<bar>b\<bar> < d" |
|
14294
f4d806fd72ce
absolute value theorems moved to HOL/Ring_and_Field
paulson
parents:
14293
diff
changeset
|
1320 |
thus ?thesis by (simp add: ac cpos mult_strict_mono) |
|
f4d806fd72ce
absolute value theorems moved to HOL/Ring_and_Field
paulson
parents:
14293
diff
changeset
|
1321 |
qed |
| 14293 | 1322 |
|
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1323 |
lemma less_minus_self_iff: |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1324 |
"a < - a \<longleftrightarrow> a < 0" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1325 |
by (simp only: less_le less_eq_neg_nonpos equal_neg_zero) |
| 14738 | 1326 |
|
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1327 |
lemma abs_less_iff: |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1328 |
"\<bar>a\<bar> < b \<longleftrightarrow> a < b \<and> - a < b" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1329 |
by (simp add: less_le abs_le_iff) (auto simp add: abs_if) |
| 14738 | 1330 |
|
|
36301
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1331 |
lemma abs_mult_pos: |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1332 |
"0 \<le> x \<Longrightarrow> \<bar>y\<bar> * x = \<bar>y * x\<bar>" |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1333 |
by (simp add: abs_mult) |
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1334 |
|
|
72f4d079ebf8
more localization; factored out lemmas for division_ring
haftmann
parents:
35828
diff
changeset
|
1335 |
end |
|
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16568
diff
changeset
|
1336 |
|
| 33364 | 1337 |
code_modulename SML |
|
35050
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents:
35043
diff
changeset
|
1338 |
Rings Arith |
| 33364 | 1339 |
|
1340 |
code_modulename OCaml |
|
|
35050
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents:
35043
diff
changeset
|
1341 |
Rings Arith |
| 33364 | 1342 |
|
1343 |
code_modulename Haskell |
|
|
35050
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents:
35043
diff
changeset
|
1344 |
Rings Arith |
| 33364 | 1345 |
|
|
14265
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff
changeset
|
1346 |
end |