author | haftmann |
Thu, 11 Apr 2024 18:46:49 +0000 | |
changeset 80097 | 5ed992c47cdc |
parent 78099 | 4d9349989d94 |
child 80932 | 261cd8722677 |
permissions | -rw-r--r-- |
63588 | 1 |
(* Title: HOL/Groups.thy |
2 |
Author: Gertrud Bauer |
|
3 |
Author: Steven Obua |
|
4 |
Author: Lawrence C Paulson |
|
5 |
Author: Markus Wenzel |
|
6 |
Author: Jeremy Avigad |
|
14738 | 7 |
*) |
8 |
||
60758 | 9 |
section \<open>Groups, also combined with orderings\<close> |
14738 | 10 |
|
35050
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents:
35036
diff
changeset
|
11 |
theory Groups |
63588 | 12 |
imports Orderings |
15131 | 13 |
begin |
14738 | 14 |
|
60758 | 15 |
subsection \<open>Dynamic facts\<close> |
35301
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
16 |
|
57950 | 17 |
named_theorems ac_simps "associativity and commutativity simplification rules" |
70347 | 18 |
and algebra_simps "algebra simplification rules for rings" |
70817
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
19 |
and algebra_split_simps "algebra simplification rules for rings, with potential goal splitting" |
63588 | 20 |
and field_simps "algebra simplification rules for fields" |
70817
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
21 |
and field_split_simps "algebra simplification rules for fields, with potential goal splitting" |
36343 | 22 |
|
63325 | 23 |
text \<open> |
63588 | 24 |
The rewrites accumulated in \<open>algebra_simps\<close> deal with the classical |
25 |
algebraic structures of groups, rings and family. They simplify terms by |
|
26 |
multiplying everything out (in case of a ring) and bringing sums and |
|
27 |
products into a canonical form (by ordered rewriting). As a result it |
|
28 |
decides group and ring equalities but also helps with inequalities. |
|
36348
89c54f51f55a
dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents:
36343
diff
changeset
|
29 |
|
63588 | 30 |
Of course it also works for fields, but it knows nothing about |
31 |
multiplicative inverses or division. This is catered for by \<open>field_simps\<close>. |
|
35301
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
32 |
|
63588 | 33 |
Facts in \<open>field_simps\<close> multiply with denominators in (in)equations if they |
34 |
can be proved to be non-zero (for equations) or positive/negative (for |
|
35 |
inequalities). Can be too aggressive and is therefore separate from the more |
|
36 |
benign \<open>algebra_simps\<close>. |
|
70347 | 37 |
|
70817
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
38 |
Collections \<open>algebra_split_simps\<close> and \<open>field_split_simps\<close> |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
39 |
correspond to \<open>algebra_simps\<close> and \<open>field_simps\<close> |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
40 |
but contain more aggresive rules that may lead to goal splitting. |
63325 | 41 |
\<close> |
35301
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
42 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
43 |
|
60758 | 44 |
subsection \<open>Abstract structures\<close> |
35301
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
45 |
|
60758 | 46 |
text \<open> |
63588 | 47 |
These locales provide basic structures for interpretation into bigger |
48 |
structures; extensions require careful thinking, otherwise undesired effects |
|
49 |
may occur due to interpretation. |
|
60758 | 50 |
\<close> |
35301
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
51 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
52 |
locale semigroup = |
63325 | 53 |
fixes f :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "\<^bold>*" 70) |
63290
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63145
diff
changeset
|
54 |
assumes assoc [ac_simps]: "a \<^bold>* b \<^bold>* c = a \<^bold>* (b \<^bold>* c)" |
35301
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
55 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
56 |
locale abel_semigroup = semigroup + |
63290
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63145
diff
changeset
|
57 |
assumes commute [ac_simps]: "a \<^bold>* b = b \<^bold>* a" |
35301
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
58 |
begin |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
59 |
|
63325 | 60 |
lemma left_commute [ac_simps]: "b \<^bold>* (a \<^bold>* c) = a \<^bold>* (b \<^bold>* c)" |
35301
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
61 |
proof - |
63290
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63145
diff
changeset
|
62 |
have "(b \<^bold>* a) \<^bold>* c = (a \<^bold>* b) \<^bold>* c" |
35301
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
63 |
by (simp only: commute) |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
64 |
then show ?thesis |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
65 |
by (simp only: assoc) |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
66 |
qed |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
67 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
68 |
end |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
69 |
|
35720 | 70 |
locale monoid = semigroup + |
63290
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63145
diff
changeset
|
71 |
fixes z :: 'a ("\<^bold>1") |
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63145
diff
changeset
|
72 |
assumes left_neutral [simp]: "\<^bold>1 \<^bold>* a = a" |
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63145
diff
changeset
|
73 |
assumes right_neutral [simp]: "a \<^bold>* \<^bold>1 = a" |
35720 | 74 |
|
75 |
locale comm_monoid = abel_semigroup + |
|
63290
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63145
diff
changeset
|
76 |
fixes z :: 'a ("\<^bold>1") |
9ac558ab0906
boldify syntax in abstract algebraic structures, to avoid clashes with concrete syntax in corresponding type classes
haftmann
parents:
63145
diff
changeset
|
77 |
assumes comm_neutral: "a \<^bold>* \<^bold>1 = a" |
54868 | 78 |
begin |
35720 | 79 |
|
54868 | 80 |
sublocale monoid |
61169 | 81 |
by standard (simp_all add: commute comm_neutral) |
35720 | 82 |
|
54868 | 83 |
end |
84 |
||
63364 | 85 |
locale group = semigroup + |
86 |
fixes z :: 'a ("\<^bold>1") |
|
87 |
fixes inverse :: "'a \<Rightarrow> 'a" |
|
88 |
assumes group_left_neutral: "\<^bold>1 \<^bold>* a = a" |
|
89 |
assumes left_inverse [simp]: "inverse a \<^bold>* a = \<^bold>1" |
|
90 |
begin |
|
91 |
||
92 |
lemma left_cancel: "a \<^bold>* b = a \<^bold>* c \<longleftrightarrow> b = c" |
|
93 |
proof |
|
94 |
assume "a \<^bold>* b = a \<^bold>* c" |
|
95 |
then have "inverse a \<^bold>* (a \<^bold>* b) = inverse a \<^bold>* (a \<^bold>* c)" by simp |
|
96 |
then have "(inverse a \<^bold>* a) \<^bold>* b = (inverse a \<^bold>* a) \<^bold>* c" |
|
97 |
by (simp only: assoc) |
|
98 |
then show "b = c" by (simp add: group_left_neutral) |
|
99 |
qed simp |
|
100 |
||
101 |
sublocale monoid |
|
102 |
proof |
|
103 |
fix a |
|
104 |
have "inverse a \<^bold>* a = \<^bold>1" by simp |
|
105 |
then have "inverse a \<^bold>* (a \<^bold>* \<^bold>1) = inverse a \<^bold>* a" |
|
106 |
by (simp add: group_left_neutral assoc [symmetric]) |
|
107 |
with left_cancel show "a \<^bold>* \<^bold>1 = a" |
|
108 |
by (simp only: left_cancel) |
|
109 |
qed (fact group_left_neutral) |
|
110 |
||
111 |
lemma inverse_unique: |
|
112 |
assumes "a \<^bold>* b = \<^bold>1" |
|
113 |
shows "inverse a = b" |
|
114 |
proof - |
|
115 |
from assms have "inverse a \<^bold>* (a \<^bold>* b) = inverse a" |
|
116 |
by simp |
|
117 |
then show ?thesis |
|
118 |
by (simp add: assoc [symmetric]) |
|
119 |
qed |
|
120 |
||
63588 | 121 |
lemma inverse_neutral [simp]: "inverse \<^bold>1 = \<^bold>1" |
63364 | 122 |
by (rule inverse_unique) simp |
123 |
||
63588 | 124 |
lemma inverse_inverse [simp]: "inverse (inverse a) = a" |
63364 | 125 |
by (rule inverse_unique) simp |
126 |
||
63588 | 127 |
lemma right_inverse [simp]: "a \<^bold>* inverse a = \<^bold>1" |
63364 | 128 |
proof - |
129 |
have "a \<^bold>* inverse a = inverse (inverse a) \<^bold>* inverse a" |
|
130 |
by simp |
|
131 |
also have "\<dots> = \<^bold>1" |
|
132 |
by (rule left_inverse) |
|
133 |
then show ?thesis by simp |
|
134 |
qed |
|
135 |
||
63588 | 136 |
lemma inverse_distrib_swap: "inverse (a \<^bold>* b) = inverse b \<^bold>* inverse a" |
63364 | 137 |
proof (rule inverse_unique) |
138 |
have "a \<^bold>* b \<^bold>* (inverse b \<^bold>* inverse a) = |
|
139 |
a \<^bold>* (b \<^bold>* inverse b) \<^bold>* inverse a" |
|
140 |
by (simp only: assoc) |
|
141 |
also have "\<dots> = \<^bold>1" |
|
142 |
by simp |
|
143 |
finally show "a \<^bold>* b \<^bold>* (inverse b \<^bold>* inverse a) = \<^bold>1" . |
|
144 |
qed |
|
145 |
||
63588 | 146 |
lemma right_cancel: "b \<^bold>* a = c \<^bold>* a \<longleftrightarrow> b = c" |
63364 | 147 |
proof |
148 |
assume "b \<^bold>* a = c \<^bold>* a" |
|
149 |
then have "b \<^bold>* a \<^bold>* inverse a= c \<^bold>* a \<^bold>* inverse a" |
|
150 |
by simp |
|
151 |
then show "b = c" |
|
152 |
by (simp add: assoc) |
|
153 |
qed simp |
|
154 |
||
155 |
end |
|
156 |
||
35301
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
157 |
|
60758 | 158 |
subsection \<open>Generic operations\<close> |
35267
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
159 |
|
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
160 |
class zero = |
35267
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
161 |
fixes zero :: 'a ("0") |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
162 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
163 |
class one = |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
164 |
fixes one :: 'a ("1") |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
165 |
|
36176
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents:
35828
diff
changeset
|
166 |
hide_const (open) zero one |
35267
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
167 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
168 |
lemma Let_0 [simp]: "Let 0 f = f 0" |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
169 |
unfolding Let_def .. |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
170 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
171 |
lemma Let_1 [simp]: "Let 1 f = f 1" |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
172 |
unfolding Let_def .. |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
173 |
|
60758 | 174 |
setup \<open> |
35267
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
175 |
Reorient_Proc.add |
69593 | 176 |
(fn Const(\<^const_name>\<open>Groups.zero\<close>, _) => true |
177 |
| Const(\<^const_name>\<open>Groups.one\<close>, _) => true |
|
35267
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
178 |
| _ => false) |
60758 | 179 |
\<close> |
35267
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
180 |
|
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
76054
diff
changeset
|
181 |
simproc_setup reorient_zero ("0 = x") = \<open>K Reorient_Proc.proc\<close> |
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
76054
diff
changeset
|
182 |
simproc_setup reorient_one ("1 = x") = \<open>K Reorient_Proc.proc\<close> |
35267
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
183 |
|
60758 | 184 |
typed_print_translation \<open> |
42247
12fe41a92cd5
typed_print_translation: discontinued show_sorts argument;
wenzelm
parents:
42245
diff
changeset
|
185 |
let |
12fe41a92cd5
typed_print_translation: discontinued show_sorts argument;
wenzelm
parents:
42245
diff
changeset
|
186 |
fun tr' c = (c, fn ctxt => fn T => fn ts => |
52210
0226035df99d
more explicit Printer.type_emphasis, depending on show_type_emphasis;
wenzelm
parents:
52143
diff
changeset
|
187 |
if null ts andalso Printer.type_emphasis ctxt T then |
69593 | 188 |
Syntax.const \<^syntax_const>\<open>_constrain\<close> $ Syntax.const c $ |
52210
0226035df99d
more explicit Printer.type_emphasis, depending on show_type_emphasis;
wenzelm
parents:
52143
diff
changeset
|
189 |
Syntax_Phases.term_of_typ ctxt T |
0226035df99d
more explicit Printer.type_emphasis, depending on show_type_emphasis;
wenzelm
parents:
52143
diff
changeset
|
190 |
else raise Match); |
69593 | 191 |
in map tr' [\<^const_syntax>\<open>Groups.one\<close>, \<^const_syntax>\<open>Groups.zero\<close>] end |
61799 | 192 |
\<close> \<comment> \<open>show types that are presumably too general\<close> |
35267
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
193 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
194 |
class plus = |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
195 |
fixes plus :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "+" 65) |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
196 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
197 |
class minus = |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
198 |
fixes minus :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "-" 65) |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
199 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
200 |
class uminus = |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
201 |
fixes uminus :: "'a \<Rightarrow> 'a" ("- _" [81] 80) |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
202 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
203 |
class times = |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
204 |
fixes times :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "*" 70) |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
205 |
|
35092
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
206 |
|
60758 | 207 |
subsection \<open>Semigroups and Monoids\<close> |
14738 | 208 |
|
22390 | 209 |
class semigroup_add = plus + |
80097
5ed992c47cdc
prefer canonical theorem name for fact collection declarations
haftmann
parents:
78099
diff
changeset
|
210 |
assumes add_assoc: "(a + b) + c = a + (b + c)" |
54868 | 211 |
begin |
34973
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
212 |
|
61605 | 213 |
sublocale add: semigroup plus |
61169 | 214 |
by standard (fact add_assoc) |
22390 | 215 |
|
80097
5ed992c47cdc
prefer canonical theorem name for fact collection declarations
haftmann
parents:
78099
diff
changeset
|
216 |
declare add.assoc [algebra_simps, algebra_split_simps, field_simps, field_split_simps] |
5ed992c47cdc
prefer canonical theorem name for fact collection declarations
haftmann
parents:
78099
diff
changeset
|
217 |
|
54868 | 218 |
end |
219 |
||
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
220 |
hide_fact add_assoc |
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
221 |
|
22390 | 222 |
class ab_semigroup_add = semigroup_add + |
80097
5ed992c47cdc
prefer canonical theorem name for fact collection declarations
haftmann
parents:
78099
diff
changeset
|
223 |
assumes add_commute: "a + b = b + a" |
54868 | 224 |
begin |
34973
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
225 |
|
61605 | 226 |
sublocale add: abel_semigroup plus |
61169 | 227 |
by standard (fact add_commute) |
34973
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
228 |
|
80097
5ed992c47cdc
prefer canonical theorem name for fact collection declarations
haftmann
parents:
78099
diff
changeset
|
229 |
declare add.commute [algebra_simps, algebra_split_simps, field_simps, field_split_simps] |
5ed992c47cdc
prefer canonical theorem name for fact collection declarations
haftmann
parents:
78099
diff
changeset
|
230 |
add.left_commute [algebra_simps, algebra_split_simps, field_simps, field_split_simps] |
25062 | 231 |
|
61337 | 232 |
lemmas add_ac = add.assoc add.commute add.left_commute |
57571
d38a98f496dd
reinstated popular add_ac and mult_ac to avoid needless incompatibilities in user space
nipkow
parents:
57514
diff
changeset
|
233 |
|
25062 | 234 |
end |
14738 | 235 |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
236 |
hide_fact add_commute |
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
237 |
|
61337 | 238 |
lemmas add_ac = add.assoc add.commute add.left_commute |
57571
d38a98f496dd
reinstated popular add_ac and mult_ac to avoid needless incompatibilities in user space
nipkow
parents:
57514
diff
changeset
|
239 |
|
22390 | 240 |
class semigroup_mult = times + |
80097
5ed992c47cdc
prefer canonical theorem name for fact collection declarations
haftmann
parents:
78099
diff
changeset
|
241 |
assumes mult_assoc: "(a * b) * c = a * (b * c)" |
54868 | 242 |
begin |
34973
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
243 |
|
61605 | 244 |
sublocale mult: semigroup times |
61169 | 245 |
by standard (fact mult_assoc) |
14738 | 246 |
|
80097
5ed992c47cdc
prefer canonical theorem name for fact collection declarations
haftmann
parents:
78099
diff
changeset
|
247 |
declare mult.assoc [algebra_simps, algebra_split_simps, field_simps, field_split_simps] |
5ed992c47cdc
prefer canonical theorem name for fact collection declarations
haftmann
parents:
78099
diff
changeset
|
248 |
|
54868 | 249 |
end |
250 |
||
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
251 |
hide_fact mult_assoc |
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
252 |
|
22390 | 253 |
class ab_semigroup_mult = semigroup_mult + |
80097
5ed992c47cdc
prefer canonical theorem name for fact collection declarations
haftmann
parents:
78099
diff
changeset
|
254 |
assumes mult_commute: "a * b = b * a" |
54868 | 255 |
begin |
34973
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
256 |
|
61605 | 257 |
sublocale mult: abel_semigroup times |
61169 | 258 |
by standard (fact mult_commute) |
34973
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
259 |
|
80097
5ed992c47cdc
prefer canonical theorem name for fact collection declarations
haftmann
parents:
78099
diff
changeset
|
260 |
declare mult.commute [algebra_simps, algebra_split_simps, field_simps, field_split_simps] |
5ed992c47cdc
prefer canonical theorem name for fact collection declarations
haftmann
parents:
78099
diff
changeset
|
261 |
mult.left_commute [algebra_simps, algebra_split_simps, field_simps, field_split_simps] |
25062 | 262 |
|
61337 | 263 |
lemmas mult_ac = mult.assoc mult.commute mult.left_commute |
57571
d38a98f496dd
reinstated popular add_ac and mult_ac to avoid needless incompatibilities in user space
nipkow
parents:
57514
diff
changeset
|
264 |
|
23181 | 265 |
end |
14738 | 266 |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
267 |
hide_fact mult_commute |
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
268 |
|
61337 | 269 |
lemmas mult_ac = mult.assoc mult.commute mult.left_commute |
57571
d38a98f496dd
reinstated popular add_ac and mult_ac to avoid needless incompatibilities in user space
nipkow
parents:
57514
diff
changeset
|
270 |
|
23085 | 271 |
class monoid_add = zero + semigroup_add + |
35720 | 272 |
assumes add_0_left: "0 + a = a" |
273 |
and add_0_right: "a + 0 = a" |
|
54868 | 274 |
begin |
35720 | 275 |
|
61605 | 276 |
sublocale add: monoid plus 0 |
61169 | 277 |
by standard (fact add_0_left add_0_right)+ |
23085 | 278 |
|
54868 | 279 |
end |
280 |
||
26071 | 281 |
lemma zero_reorient: "0 = x \<longleftrightarrow> x = 0" |
54868 | 282 |
by (fact eq_commute) |
26071 | 283 |
|
22390 | 284 |
class comm_monoid_add = zero + ab_semigroup_add + |
25062 | 285 |
assumes add_0: "0 + a = a" |
54868 | 286 |
begin |
23085 | 287 |
|
59559
35da1bbf234e
more canonical order of subscriptions avoids superfluous facts
haftmann
parents:
59557
diff
changeset
|
288 |
subclass monoid_add |
61169 | 289 |
by standard (simp_all add: add_0 add.commute [of _ 0]) |
25062 | 290 |
|
61605 | 291 |
sublocale add: comm_monoid plus 0 |
61169 | 292 |
by standard (simp add: ac_simps) |
14738 | 293 |
|
54868 | 294 |
end |
295 |
||
22390 | 296 |
class monoid_mult = one + semigroup_mult + |
35720 | 297 |
assumes mult_1_left: "1 * a = a" |
298 |
and mult_1_right: "a * 1 = a" |
|
54868 | 299 |
begin |
35720 | 300 |
|
61605 | 301 |
sublocale mult: monoid times 1 |
61169 | 302 |
by standard (fact mult_1_left mult_1_right)+ |
14738 | 303 |
|
54868 | 304 |
end |
305 |
||
26071 | 306 |
lemma one_reorient: "1 = x \<longleftrightarrow> x = 1" |
54868 | 307 |
by (fact eq_commute) |
26071 | 308 |
|
22390 | 309 |
class comm_monoid_mult = one + ab_semigroup_mult + |
25062 | 310 |
assumes mult_1: "1 * a = a" |
54868 | 311 |
begin |
14738 | 312 |
|
59559
35da1bbf234e
more canonical order of subscriptions avoids superfluous facts
haftmann
parents:
59557
diff
changeset
|
313 |
subclass monoid_mult |
61169 | 314 |
by standard (simp_all add: mult_1 mult.commute [of _ 1]) |
25062 | 315 |
|
61605 | 316 |
sublocale mult: comm_monoid times 1 |
61169 | 317 |
by standard (simp add: ac_simps) |
14738 | 318 |
|
54868 | 319 |
end |
320 |
||
22390 | 321 |
class cancel_semigroup_add = semigroup_add + |
25062 | 322 |
assumes add_left_imp_eq: "a + b = a + c \<Longrightarrow> b = c" |
323 |
assumes add_right_imp_eq: "b + a = c + a \<Longrightarrow> b = c" |
|
27474
a89d755b029d
move proofs of add_left_cancel and add_right_cancel into the correct locale
huffman
parents:
27250
diff
changeset
|
324 |
begin |
a89d755b029d
move proofs of add_left_cancel and add_right_cancel into the correct locale
huffman
parents:
27250
diff
changeset
|
325 |
|
63325 | 326 |
lemma add_left_cancel [simp]: "a + b = a + c \<longleftrightarrow> b = c" |
327 |
by (blast dest: add_left_imp_eq) |
|
27474
a89d755b029d
move proofs of add_left_cancel and add_right_cancel into the correct locale
huffman
parents:
27250
diff
changeset
|
328 |
|
63325 | 329 |
lemma add_right_cancel [simp]: "b + a = c + a \<longleftrightarrow> b = c" |
330 |
by (blast dest: add_right_imp_eq) |
|
27474
a89d755b029d
move proofs of add_left_cancel and add_right_cancel into the correct locale
huffman
parents:
27250
diff
changeset
|
331 |
|
a89d755b029d
move proofs of add_left_cancel and add_right_cancel into the correct locale
huffman
parents:
27250
diff
changeset
|
332 |
end |
14738 | 333 |
|
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
334 |
class cancel_ab_semigroup_add = ab_semigroup_add + minus + |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
335 |
assumes add_diff_cancel_left' [simp]: "(a + b) - a = b" |
70817
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
336 |
assumes diff_diff_add [algebra_simps, algebra_split_simps, field_simps, field_split_simps]: |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
337 |
"a - b - c = a - (b + c)" |
25267 | 338 |
begin |
14738 | 339 |
|
63325 | 340 |
lemma add_diff_cancel_right' [simp]: "(a + b) - b = a" |
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
341 |
using add_diff_cancel_left' [of b a] by (simp add: ac_simps) |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
342 |
|
25267 | 343 |
subclass cancel_semigroup_add |
28823 | 344 |
proof |
22390 | 345 |
fix a b c :: 'a |
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
346 |
assume "a + b = a + c" |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
347 |
then have "a + b - a = a + c - a" |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
348 |
by simp |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
349 |
then show "b = c" |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
350 |
by simp |
22390 | 351 |
next |
14738 | 352 |
fix a b c :: 'a |
353 |
assume "b + a = c + a" |
|
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
354 |
then have "b + a - a = c + a - a" |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
355 |
by simp |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
356 |
then show "b = c" |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
357 |
by simp |
14738 | 358 |
qed |
359 |
||
63325 | 360 |
lemma add_diff_cancel_left [simp]: "(c + a) - (c + b) = a - b" |
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
361 |
unfolding diff_diff_add [symmetric] by simp |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
362 |
|
63325 | 363 |
lemma add_diff_cancel_right [simp]: "(a + c) - (b + c) = a - b" |
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
364 |
using add_diff_cancel_left [symmetric] by (simp add: ac_simps) |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
365 |
|
63325 | 366 |
lemma diff_right_commute: "a - c - b = a - b - c" |
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
367 |
by (simp add: diff_diff_add add.commute) |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
368 |
|
25267 | 369 |
end |
370 |
||
29904 | 371 |
class cancel_comm_monoid_add = cancel_ab_semigroup_add + comm_monoid_add |
59322 | 372 |
begin |
373 |
||
63325 | 374 |
lemma diff_zero [simp]: "a - 0 = a" |
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
375 |
using add_diff_cancel_right' [of a 0] by simp |
59322 | 376 |
|
63325 | 377 |
lemma diff_cancel [simp]: "a - a = 0" |
59322 | 378 |
proof - |
63325 | 379 |
have "(a + 0) - (a + 0) = 0" |
380 |
by (simp only: add_diff_cancel_left diff_zero) |
|
59322 | 381 |
then show ?thesis by simp |
382 |
qed |
|
383 |
||
384 |
lemma add_implies_diff: |
|
385 |
assumes "c + b = a" |
|
386 |
shows "c = a - b" |
|
387 |
proof - |
|
63325 | 388 |
from assms have "(b + c) - (b + 0) = a - b" |
389 |
by (simp add: add.commute) |
|
59322 | 390 |
then show "c = a - b" by simp |
391 |
qed |
|
392 |
||
63325 | 393 |
lemma add_cancel_right_right [simp]: "a = a + b \<longleftrightarrow> b = 0" |
394 |
(is "?P \<longleftrightarrow> ?Q") |
|
62608 | 395 |
proof |
63325 | 396 |
assume ?Q |
397 |
then show ?P by simp |
|
62608 | 398 |
next |
63325 | 399 |
assume ?P |
400 |
then have "a - a = a + b - a" by simp |
|
62608 | 401 |
then show ?Q by simp |
402 |
qed |
|
403 |
||
63325 | 404 |
lemma add_cancel_right_left [simp]: "a = b + a \<longleftrightarrow> b = 0" |
62608 | 405 |
using add_cancel_right_right [of a b] by (simp add: ac_simps) |
406 |
||
63325 | 407 |
lemma add_cancel_left_right [simp]: "a + b = a \<longleftrightarrow> b = 0" |
62608 | 408 |
by (auto dest: sym) |
409 |
||
63325 | 410 |
lemma add_cancel_left_left [simp]: "b + a = a \<longleftrightarrow> b = 0" |
62608 | 411 |
by (auto dest: sym) |
412 |
||
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
413 |
end |
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
414 |
|
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
415 |
class comm_monoid_diff = cancel_comm_monoid_add + |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
416 |
assumes zero_diff [simp]: "0 - a = 0" |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
417 |
begin |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
418 |
|
63325 | 419 |
lemma diff_add_zero [simp]: "a - (a + b) = 0" |
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
420 |
proof - |
63325 | 421 |
have "a - (a + b) = (a + 0) - (a + b)" |
422 |
by simp |
|
423 |
also have "\<dots> = 0" |
|
424 |
by (simp only: add_diff_cancel_left zero_diff) |
|
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
425 |
finally show ?thesis . |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
426 |
qed |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
427 |
|
59322 | 428 |
end |
429 |
||
29904 | 430 |
|
60758 | 431 |
subsection \<open>Groups\<close> |
23085 | 432 |
|
25762 | 433 |
class group_add = minus + uminus + monoid_add + |
63364 | 434 |
assumes left_minus: "- a + a = 0" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
435 |
assumes add_uminus_conv_diff [simp]: "a + (- b) = a - b" |
25062 | 436 |
begin |
23085 | 437 |
|
63325 | 438 |
lemma diff_conv_add_uminus: "a - b = a + (- b)" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
439 |
by simp |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
440 |
|
63364 | 441 |
sublocale add: group plus 0 uminus |
442 |
by standard (simp_all add: left_minus) |
|
443 |
||
63588 | 444 |
lemma minus_unique: "a + b = 0 \<Longrightarrow> - a = b" |
445 |
by (fact add.inverse_unique) |
|
34147
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
446 |
|
63364 | 447 |
lemma minus_zero: "- 0 = 0" |
448 |
by (fact add.inverse_neutral) |
|
14738 | 449 |
|
63364 | 450 |
lemma minus_minus: "- (- a) = a" |
451 |
by (fact add.inverse_inverse) |
|
14738 | 452 |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
453 |
lemma right_minus: "a + - a = 0" |
63364 | 454 |
by (fact add.right_inverse) |
14738 | 455 |
|
63325 | 456 |
lemma diff_self [simp]: "a - a = 0" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
457 |
using right_minus [of a] by simp |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
458 |
|
40368
47c186c8577d
added class relation group_add < cancel_semigroup_add
haftmann
parents:
39134
diff
changeset
|
459 |
subclass cancel_semigroup_add |
63364 | 460 |
by standard (simp_all add: add.left_cancel add.right_cancel) |
40368
47c186c8577d
added class relation group_add < cancel_semigroup_add
haftmann
parents:
39134
diff
changeset
|
461 |
|
63325 | 462 |
lemma minus_add_cancel [simp]: "- a + (a + b) = b" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
463 |
by (simp add: add.assoc [symmetric]) |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
464 |
|
63325 | 465 |
lemma add_minus_cancel [simp]: "a + (- a + b) = b" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
466 |
by (simp add: add.assoc [symmetric]) |
34147
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
467 |
|
63325 | 468 |
lemma diff_add_cancel [simp]: "a - b + b = a" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
469 |
by (simp only: diff_conv_add_uminus add.assoc) simp |
34147
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
470 |
|
63325 | 471 |
lemma add_diff_cancel [simp]: "a + b - b = a" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
472 |
by (simp only: diff_conv_add_uminus add.assoc) simp |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
473 |
|
63325 | 474 |
lemma minus_add: "- (a + b) = - b + - a" |
63364 | 475 |
by (fact add.inverse_distrib_swap) |
34147
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
476 |
|
63325 | 477 |
lemma right_minus_eq [simp]: "a - b = 0 \<longleftrightarrow> a = b" |
14738 | 478 |
proof |
23085 | 479 |
assume "a - b = 0" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
480 |
have "a = (a - b) + b" by (simp add: add.assoc) |
60758 | 481 |
also have "\<dots> = b" using \<open>a - b = 0\<close> by simp |
23085 | 482 |
finally show "a = b" . |
14738 | 483 |
next |
63325 | 484 |
assume "a = b" |
485 |
then show "a - b = 0" by simp |
|
14738 | 486 |
qed |
487 |
||
63325 | 488 |
lemma eq_iff_diff_eq_0: "a = b \<longleftrightarrow> a - b = 0" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
489 |
by (fact right_minus_eq [symmetric]) |
14738 | 490 |
|
63325 | 491 |
lemma diff_0 [simp]: "0 - a = - a" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
492 |
by (simp only: diff_conv_add_uminus add_0_left) |
14738 | 493 |
|
63325 | 494 |
lemma diff_0_right [simp]: "a - 0 = a" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
495 |
by (simp only: diff_conv_add_uminus minus_zero add_0_right) |
14738 | 496 |
|
63325 | 497 |
lemma diff_minus_eq_add [simp]: "a - - b = a + b" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
498 |
by (simp only: diff_conv_add_uminus minus_minus) |
14738 | 499 |
|
63325 | 500 |
lemma neg_equal_iff_equal [simp]: "- a = - b \<longleftrightarrow> a = b" |
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
501 |
proof |
14738 | 502 |
assume "- a = - b" |
63325 | 503 |
then have "- (- a) = - (- b)" by simp |
504 |
then show "a = b" by simp |
|
14738 | 505 |
next |
25062 | 506 |
assume "a = b" |
63325 | 507 |
then show "- a = - b" by simp |
14738 | 508 |
qed |
509 |
||
63325 | 510 |
lemma neg_equal_0_iff_equal [simp]: "- a = 0 \<longleftrightarrow> a = 0" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
511 |
by (subst neg_equal_iff_equal [symmetric]) simp |
14738 | 512 |
|
63325 | 513 |
lemma neg_0_equal_iff_equal [simp]: "0 = - a \<longleftrightarrow> 0 = a" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
514 |
by (subst neg_equal_iff_equal [symmetric]) simp |
14738 | 515 |
|
63325 | 516 |
text \<open>The next two equations can make the simplifier loop!\<close> |
14738 | 517 |
|
63325 | 518 |
lemma equation_minus_iff: "a = - b \<longleftrightarrow> b = - a" |
14738 | 519 |
proof - |
63325 | 520 |
have "- (- a) = - b \<longleftrightarrow> - a = b" |
521 |
by (rule neg_equal_iff_equal) |
|
522 |
then show ?thesis |
|
523 |
by (simp add: eq_commute) |
|
25062 | 524 |
qed |
525 |
||
63325 | 526 |
lemma minus_equation_iff: "- a = b \<longleftrightarrow> - b = a" |
25062 | 527 |
proof - |
63325 | 528 |
have "- a = - (- b) \<longleftrightarrow> a = -b" |
529 |
by (rule neg_equal_iff_equal) |
|
530 |
then show ?thesis |
|
531 |
by (simp add: eq_commute) |
|
14738 | 532 |
qed |
533 |
||
63325 | 534 |
lemma eq_neg_iff_add_eq_0: "a = - b \<longleftrightarrow> a + b = 0" |
29914
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
535 |
proof |
63325 | 536 |
assume "a = - b" |
537 |
then show "a + b = 0" by simp |
|
29914
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
538 |
next |
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
539 |
assume "a + b = 0" |
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
540 |
moreover have "a + (b + - b) = (a + b) + - b" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
541 |
by (simp only: add.assoc) |
63325 | 542 |
ultimately show "a = - b" |
543 |
by simp |
|
29914
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
544 |
qed |
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
545 |
|
63325 | 546 |
lemma add_eq_0_iff2: "a + b = 0 \<longleftrightarrow> a = - b" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
547 |
by (fact eq_neg_iff_add_eq_0 [symmetric]) |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
548 |
|
63325 | 549 |
lemma neg_eq_iff_add_eq_0: "- a = b \<longleftrightarrow> a + b = 0" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
550 |
by (auto simp add: add_eq_0_iff2) |
44348 | 551 |
|
63325 | 552 |
lemma add_eq_0_iff: "a + b = 0 \<longleftrightarrow> b = - a" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
553 |
by (auto simp add: neg_eq_iff_add_eq_0 [symmetric]) |
45548
3e2722d66169
Groups.thy: generalize several lemmas from class ab_group_add to class group_add
huffman
parents:
45294
diff
changeset
|
554 |
|
63325 | 555 |
lemma minus_diff_eq [simp]: "- (a - b) = b - a" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
556 |
by (simp only: neg_eq_iff_add_eq_0 diff_conv_add_uminus add.assoc minus_add_cancel) simp |
45548
3e2722d66169
Groups.thy: generalize several lemmas from class ab_group_add to class group_add
huffman
parents:
45294
diff
changeset
|
557 |
|
70817
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
558 |
lemma add_diff_eq [algebra_simps, algebra_split_simps, field_simps, field_split_simps]: |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
559 |
"a + (b - c) = (a + b) - c" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
560 |
by (simp only: diff_conv_add_uminus add.assoc) |
45548
3e2722d66169
Groups.thy: generalize several lemmas from class ab_group_add to class group_add
huffman
parents:
45294
diff
changeset
|
561 |
|
63325 | 562 |
lemma diff_add_eq_diff_diff_swap: "a - (b + c) = a - c - b" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
563 |
by (simp only: diff_conv_add_uminus add.assoc minus_add) |
45548
3e2722d66169
Groups.thy: generalize several lemmas from class ab_group_add to class group_add
huffman
parents:
45294
diff
changeset
|
564 |
|
70817
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
565 |
lemma diff_eq_eq [algebra_simps, algebra_split_simps, field_simps, field_split_simps]: |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
566 |
"a - b = c \<longleftrightarrow> a = c + b" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
567 |
by auto |
45548
3e2722d66169
Groups.thy: generalize several lemmas from class ab_group_add to class group_add
huffman
parents:
45294
diff
changeset
|
568 |
|
70817
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
569 |
lemma eq_diff_eq [algebra_simps, algebra_split_simps, field_simps, field_split_simps]: |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
570 |
"a = c - b \<longleftrightarrow> a + b = c" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
571 |
by auto |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
572 |
|
70817
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
573 |
lemma diff_diff_eq2 [algebra_simps, algebra_split_simps, field_simps, field_split_simps]: |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
574 |
"a - (b - c) = (a + c) - b" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
575 |
by (simp only: diff_conv_add_uminus add.assoc) simp |
45548
3e2722d66169
Groups.thy: generalize several lemmas from class ab_group_add to class group_add
huffman
parents:
45294
diff
changeset
|
576 |
|
63325 | 577 |
lemma diff_eq_diff_eq: "a - b = c - d \<Longrightarrow> a = b \<longleftrightarrow> c = d" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
578 |
by (simp only: eq_iff_diff_eq_0 [of a b] eq_iff_diff_eq_0 [of c d]) |
45548
3e2722d66169
Groups.thy: generalize several lemmas from class ab_group_add to class group_add
huffman
parents:
45294
diff
changeset
|
579 |
|
25062 | 580 |
end |
581 |
||
25762 | 582 |
class ab_group_add = minus + uminus + comm_monoid_add + |
25062 | 583 |
assumes ab_left_minus: "- a + a = 0" |
59557 | 584 |
assumes ab_diff_conv_add_uminus: "a - b = a + (- b)" |
25267 | 585 |
begin |
25062 | 586 |
|
25267 | 587 |
subclass group_add |
63325 | 588 |
by standard (simp_all add: ab_left_minus ab_diff_conv_add_uminus) |
25062 | 589 |
|
29904 | 590 |
subclass cancel_comm_monoid_add |
28823 | 591 |
proof |
25062 | 592 |
fix a b c :: 'a |
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
593 |
have "b + a - a = b" |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
594 |
by simp |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
595 |
then show "a + b - a = b" |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
596 |
by (simp add: ac_simps) |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
597 |
show "a - b - c = a - (b + c)" |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
598 |
by (simp add: algebra_simps) |
25062 | 599 |
qed |
600 |
||
63325 | 601 |
lemma uminus_add_conv_diff [simp]: "- a + b = b - a" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
602 |
by (simp add: add.commute) |
25062 | 603 |
|
63325 | 604 |
lemma minus_add_distrib [simp]: "- (a + b) = - a + - b" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
605 |
by (simp add: algebra_simps) |
25062 | 606 |
|
70817
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
607 |
lemma diff_add_eq [algebra_simps, algebra_split_simps, field_simps, field_split_simps]: |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
608 |
"(a - b) + c = (a + c) - b" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
609 |
by (simp add: algebra_simps) |
25077 | 610 |
|
71093 | 611 |
lemma minus_diff_commute: |
612 |
"- b - a = - a - b" |
|
613 |
by (simp only: diff_conv_add_uminus add.commute) |
|
614 |
||
25062 | 615 |
end |
14738 | 616 |
|
37884
314a88278715
discontinued pretending that abel_cancel is logic-independent; cleaned up junk
haftmann
parents:
36977
diff
changeset
|
617 |
|
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
618 |
subsection \<open>(Partially) Ordered Groups\<close> |
14738 | 619 |
|
60758 | 620 |
text \<open> |
35301
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
621 |
The theory of partially ordered groups is taken from the books: |
63325 | 622 |
|
623 |
\<^item> \<^emph>\<open>Lattice Theory\<close> by Garret Birkhoff, American Mathematical Society, 1979 |
|
624 |
\<^item> \<^emph>\<open>Partially Ordered Algebraic Systems\<close>, Pergamon Press, 1963 |
|
625 |
||
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
626 |
Most of the used notions can also be looked up in |
63680 | 627 |
\<^item> \<^url>\<open>http://www.mathworld.com\<close> by Eric Weisstein et. al. |
63325 | 628 |
\<^item> \<^emph>\<open>Algebra I\<close> by van der Waerden, Springer |
60758 | 629 |
\<close> |
35301
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
630 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
631 |
class ordered_ab_semigroup_add = order + ab_semigroup_add + |
25062 | 632 |
assumes add_left_mono: "a \<le> b \<Longrightarrow> c + a \<le> c + b" |
633 |
begin |
|
24380
c215e256beca
moved ordered_ab_semigroup_add to OrderedGroup.thy
haftmann
parents:
24286
diff
changeset
|
634 |
|
63325 | 635 |
lemma add_right_mono: "a \<le> b \<Longrightarrow> a + c \<le> b + c" |
636 |
by (simp add: add.commute [of _ c] add_left_mono) |
|
14738 | 637 |
|
60758 | 638 |
text \<open>non-strict, in both arguments\<close> |
63325 | 639 |
lemma add_mono: "a \<le> b \<Longrightarrow> c \<le> d \<Longrightarrow> a + c \<le> b + d" |
71743 | 640 |
by (simp add: add.commute add_left_mono add_right_mono [THEN order_trans]) |
14738 | 641 |
|
25062 | 642 |
end |
643 |
||
63325 | 644 |
text \<open>Strict monotonicity in both arguments\<close> |
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
645 |
class strict_ordered_ab_semigroup_add = ordered_ab_semigroup_add + |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
646 |
assumes add_strict_mono: "a < b \<Longrightarrow> c < d \<Longrightarrow> a + c < b + d" |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
647 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
648 |
class ordered_cancel_ab_semigroup_add = |
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
649 |
ordered_ab_semigroup_add + cancel_ab_semigroup_add |
25062 | 650 |
begin |
651 |
||
63325 | 652 |
lemma add_strict_left_mono: "a < b \<Longrightarrow> c + a < c + b" |
653 |
by (auto simp add: less_le add_left_mono) |
|
14738 | 654 |
|
63325 | 655 |
lemma add_strict_right_mono: "a < b \<Longrightarrow> a + c < b + c" |
656 |
by (simp add: add.commute [of _ c] add_strict_left_mono) |
|
14738 | 657 |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
658 |
subclass strict_ordered_ab_semigroup_add |
71743 | 659 |
proof |
660 |
show "\<And>a b c d. \<lbrakk>a < b; c < d\<rbrakk> \<Longrightarrow> a + c < b + d" |
|
661 |
by (iprover intro: add_strict_left_mono add_strict_right_mono less_trans) |
|
662 |
qed |
|
14738 | 663 |
|
63325 | 664 |
lemma add_less_le_mono: "a < b \<Longrightarrow> c \<le> d \<Longrightarrow> a + c < b + d" |
71743 | 665 |
by (iprover intro: add_left_mono add_strict_right_mono less_le_trans) |
14738 | 666 |
|
63325 | 667 |
lemma add_le_less_mono: "a \<le> b \<Longrightarrow> c < d \<Longrightarrow> a + c < b + d" |
71743 | 668 |
by (iprover intro: add_strict_left_mono add_right_mono less_le_trans) |
14738 | 669 |
|
25062 | 670 |
end |
671 |
||
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
672 |
class ordered_ab_semigroup_add_imp_le = ordered_cancel_ab_semigroup_add + |
25062 | 673 |
assumes add_le_imp_le_left: "c + a \<le> c + b \<Longrightarrow> a \<le> b" |
674 |
begin |
|
675 |
||
14738 | 676 |
lemma add_less_imp_less_left: |
63325 | 677 |
assumes less: "c + a < c + b" |
678 |
shows "a < b" |
|
14738 | 679 |
proof - |
63325 | 680 |
from less have le: "c + a \<le> c + b" |
681 |
by (simp add: order_le_less) |
|
682 |
have "a \<le> b" |
|
71743 | 683 |
using add_le_imp_le_left [OF le] . |
14738 | 684 |
moreover have "a \<noteq> b" |
685 |
proof (rule ccontr) |
|
63325 | 686 |
assume "\<not> ?thesis" |
14738 | 687 |
then have "a = b" by simp |
688 |
then have "c + a = c + b" by simp |
|
63325 | 689 |
with less show "False" by simp |
14738 | 690 |
qed |
63325 | 691 |
ultimately show "a < b" |
692 |
by (simp add: order_le_less) |
|
14738 | 693 |
qed |
694 |
||
63325 | 695 |
lemma add_less_imp_less_right: "a + c < b + c \<Longrightarrow> a < b" |
696 |
by (rule add_less_imp_less_left [of c]) (simp add: add.commute) |
|
14738 | 697 |
|
63325 | 698 |
lemma add_less_cancel_left [simp]: "c + a < c + b \<longleftrightarrow> a < b" |
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
699 |
by (blast intro: add_less_imp_less_left add_strict_left_mono) |
14738 | 700 |
|
63325 | 701 |
lemma add_less_cancel_right [simp]: "a + c < b + c \<longleftrightarrow> a < b" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
702 |
by (blast intro: add_less_imp_less_right add_strict_right_mono) |
14738 | 703 |
|
63325 | 704 |
lemma add_le_cancel_left [simp]: "c + a \<le> c + b \<longleftrightarrow> a \<le> b" |
71743 | 705 |
by (auto simp: dest: add_le_imp_le_left add_left_mono) |
14738 | 706 |
|
63325 | 707 |
lemma add_le_cancel_right [simp]: "a + c \<le> b + c \<longleftrightarrow> a \<le> b" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
56950
diff
changeset
|
708 |
by (simp add: add.commute [of a c] add.commute [of b c]) |
14738 | 709 |
|
63325 | 710 |
lemma add_le_imp_le_right: "a + c \<le> b + c \<Longrightarrow> a \<le> b" |
711 |
by simp |
|
25062 | 712 |
|
63325 | 713 |
lemma max_add_distrib_left: "max x y + z = max (x + z) (y + z)" |
25077 | 714 |
unfolding max_def by auto |
715 |
||
63325 | 716 |
lemma min_add_distrib_left: "min x y + z = min (x + z) (y + z)" |
25077 | 717 |
unfolding min_def by auto |
718 |
||
63325 | 719 |
lemma max_add_distrib_right: "x + max y z = max (x + y) (x + z)" |
44848
f4d0b060c7ca
remove lemmas nat_add_min_{left,right} in favor of generic lemmas min_add_distrib_{left,right}
huffman
parents:
44433
diff
changeset
|
720 |
unfolding max_def by auto |
f4d0b060c7ca
remove lemmas nat_add_min_{left,right} in favor of generic lemmas min_add_distrib_{left,right}
huffman
parents:
44433
diff
changeset
|
721 |
|
63325 | 722 |
lemma min_add_distrib_right: "x + min y z = min (x + y) (x + z)" |
44848
f4d0b060c7ca
remove lemmas nat_add_min_{left,right} in favor of generic lemmas min_add_distrib_{left,right}
huffman
parents:
44433
diff
changeset
|
723 |
unfolding min_def by auto |
f4d0b060c7ca
remove lemmas nat_add_min_{left,right} in favor of generic lemmas min_add_distrib_{left,right}
huffman
parents:
44433
diff
changeset
|
724 |
|
25062 | 725 |
end |
726 |
||
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
727 |
subsection \<open>Support for reasoning about signs\<close> |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
728 |
|
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
729 |
class ordered_comm_monoid_add = comm_monoid_add + ordered_ab_semigroup_add |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
730 |
begin |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
731 |
|
63325 | 732 |
lemma add_nonneg_nonneg [simp]: "0 \<le> a \<Longrightarrow> 0 \<le> b \<Longrightarrow> 0 \<le> a + b" |
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
733 |
using add_mono[of 0 a 0 b] by simp |
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
734 |
|
63325 | 735 |
lemma add_nonpos_nonpos: "a \<le> 0 \<Longrightarrow> b \<le> 0 \<Longrightarrow> a + b \<le> 0" |
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
736 |
using add_mono[of a 0 b 0] by simp |
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
737 |
|
63325 | 738 |
lemma add_nonneg_eq_0_iff: "0 \<le> x \<Longrightarrow> 0 \<le> y \<Longrightarrow> x + y = 0 \<longleftrightarrow> x = 0 \<and> y = 0" |
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
739 |
using add_left_mono[of 0 y x] add_right_mono[of 0 x y] by auto |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
740 |
|
63325 | 741 |
lemma add_nonpos_eq_0_iff: "x \<le> 0 \<Longrightarrow> y \<le> 0 \<Longrightarrow> x + y = 0 \<longleftrightarrow> x = 0 \<and> y = 0" |
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
742 |
using add_left_mono[of y 0 x] add_right_mono[of x 0 y] by auto |
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
743 |
|
63325 | 744 |
lemma add_increasing: "0 \<le> a \<Longrightarrow> b \<le> c \<Longrightarrow> b \<le> a + c" |
745 |
using add_mono [of 0 a b c] by simp |
|
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
746 |
|
63325 | 747 |
lemma add_increasing2: "0 \<le> c \<Longrightarrow> b \<le> a \<Longrightarrow> b \<le> a + c" |
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
748 |
by (simp add: add_increasing add.commute [of a]) |
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
749 |
|
63325 | 750 |
lemma add_decreasing: "a \<le> 0 \<Longrightarrow> c \<le> b \<Longrightarrow> a + c \<le> b" |
751 |
using add_mono [of a 0 c b] by simp |
|
52289 | 752 |
|
63325 | 753 |
lemma add_decreasing2: "c \<le> 0 \<Longrightarrow> a \<le> b \<Longrightarrow> a + c \<le> b" |
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
754 |
using add_mono[of a b c 0] by simp |
52289 | 755 |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
756 |
lemma add_pos_nonneg: "0 < a \<Longrightarrow> 0 \<le> b \<Longrightarrow> 0 < a + b" |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
757 |
using less_le_trans[of 0 a "a + b"] by (simp add: add_increasing2) |
52289 | 758 |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
759 |
lemma add_pos_pos: "0 < a \<Longrightarrow> 0 < b \<Longrightarrow> 0 < a + b" |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
760 |
by (intro add_pos_nonneg less_imp_le) |
52289 | 761 |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
762 |
lemma add_nonneg_pos: "0 \<le> a \<Longrightarrow> 0 < b \<Longrightarrow> 0 < a + b" |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
763 |
using add_pos_nonneg[of b a] by (simp add: add_commute) |
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
764 |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
765 |
lemma add_neg_nonpos: "a < 0 \<Longrightarrow> b \<le> 0 \<Longrightarrow> a + b < 0" |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
766 |
using le_less_trans[of "a + b" a 0] by (simp add: add_decreasing2) |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
767 |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
768 |
lemma add_neg_neg: "a < 0 \<Longrightarrow> b < 0 \<Longrightarrow> a + b < 0" |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
769 |
by (intro add_neg_nonpos less_imp_le) |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
770 |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
771 |
lemma add_nonpos_neg: "a \<le> 0 \<Longrightarrow> b < 0 \<Longrightarrow> a + b < 0" |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
772 |
using add_neg_nonpos[of b a] by (simp add: add_commute) |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
773 |
|
30691 | 774 |
lemmas add_sign_intros = |
775 |
add_pos_nonneg add_pos_pos add_nonneg_pos add_nonneg_nonneg |
|
776 |
add_neg_nonpos add_neg_neg add_nonpos_neg add_nonpos_nonpos |
|
777 |
||
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
778 |
end |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
779 |
|
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
780 |
class strict_ordered_comm_monoid_add = comm_monoid_add + strict_ordered_ab_semigroup_add |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
781 |
begin |
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
782 |
|
63325 | 783 |
lemma pos_add_strict: "0 < a \<Longrightarrow> b < c \<Longrightarrow> b < a + c" |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
784 |
using add_strict_mono [of 0 a b c] by simp |
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
785 |
|
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
786 |
end |
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
787 |
|
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
788 |
class ordered_cancel_comm_monoid_add = ordered_comm_monoid_add + cancel_ab_semigroup_add |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
789 |
begin |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
790 |
|
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
791 |
subclass ordered_cancel_ab_semigroup_add .. |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
792 |
subclass strict_ordered_comm_monoid_add .. |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
793 |
|
63325 | 794 |
lemma add_strict_increasing: "0 < a \<Longrightarrow> b \<le> c \<Longrightarrow> b < a + c" |
795 |
using add_less_le_mono [of 0 a b c] by simp |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
796 |
|
63325 | 797 |
lemma add_strict_increasing2: "0 \<le> a \<Longrightarrow> b < c \<Longrightarrow> b < a + c" |
798 |
using add_le_less_mono [of 0 a b c] by simp |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
799 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
800 |
end |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
801 |
|
63456
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
802 |
class ordered_ab_semigroup_monoid_add_imp_le = monoid_add + ordered_ab_semigroup_add_imp_le |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
803 |
begin |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
804 |
|
63588 | 805 |
lemma add_less_same_cancel1 [simp]: "b + a < b \<longleftrightarrow> a < 0" |
63456
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
806 |
using add_less_cancel_left [of _ _ 0] by simp |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
807 |
|
63588 | 808 |
lemma add_less_same_cancel2 [simp]: "a + b < b \<longleftrightarrow> a < 0" |
63456
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
809 |
using add_less_cancel_right [of _ _ 0] by simp |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
810 |
|
63588 | 811 |
lemma less_add_same_cancel1 [simp]: "a < a + b \<longleftrightarrow> 0 < b" |
63456
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
812 |
using add_less_cancel_left [of _ 0] by simp |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
813 |
|
63588 | 814 |
lemma less_add_same_cancel2 [simp]: "a < b + a \<longleftrightarrow> 0 < b" |
63456
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
815 |
using add_less_cancel_right [of 0] by simp |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
816 |
|
63588 | 817 |
lemma add_le_same_cancel1 [simp]: "b + a \<le> b \<longleftrightarrow> a \<le> 0" |
63456
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
818 |
using add_le_cancel_left [of _ _ 0] by simp |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
819 |
|
63588 | 820 |
lemma add_le_same_cancel2 [simp]: "a + b \<le> b \<longleftrightarrow> a \<le> 0" |
63456
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
821 |
using add_le_cancel_right [of _ _ 0] by simp |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
822 |
|
63588 | 823 |
lemma le_add_same_cancel1 [simp]: "a \<le> a + b \<longleftrightarrow> 0 \<le> b" |
63456
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
824 |
using add_le_cancel_left [of _ 0] by simp |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
825 |
|
63588 | 826 |
lemma le_add_same_cancel2 [simp]: "a \<le> b + a \<longleftrightarrow> 0 \<le> b" |
63456
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
827 |
using add_le_cancel_right [of 0] by simp |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
828 |
|
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
829 |
subclass cancel_comm_monoid_add |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
830 |
by standard auto |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
831 |
|
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
832 |
subclass ordered_cancel_comm_monoid_add |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
833 |
by standard |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
834 |
|
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
835 |
end |
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
836 |
|
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
837 |
class ordered_ab_group_add = ab_group_add + ordered_ab_semigroup_add |
25062 | 838 |
begin |
839 |
||
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
840 |
subclass ordered_cancel_ab_semigroup_add .. |
25062 | 841 |
|
63456
3365c8ec67bd
sharing simp rules between ordered monoids and rings
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63364
diff
changeset
|
842 |
subclass ordered_ab_semigroup_monoid_add_imp_le |
28823 | 843 |
proof |
25062 | 844 |
fix a b c :: 'a |
845 |
assume "c + a \<le> c + b" |
|
63325 | 846 |
then have "(-c) + (c + a) \<le> (-c) + (c + b)" |
847 |
by (rule add_left_mono) |
|
848 |
then have "((-c) + c) + a \<le> ((-c) + c) + b" |
|
849 |
by (simp only: add.assoc) |
|
850 |
then show "a \<le> b" by simp |
|
25062 | 851 |
qed |
852 |
||
63325 | 853 |
lemma max_diff_distrib_left: "max x y - z = max (x - z) (y - z)" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
854 |
using max_add_distrib_left [of x y "- z"] by simp |
25077 | 855 |
|
63325 | 856 |
lemma min_diff_distrib_left: "min x y - z = min (x - z) (y - z)" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
857 |
using min_add_distrib_left [of x y "- z"] by simp |
25077 | 858 |
|
859 |
lemma le_imp_neg_le: |
|
63325 | 860 |
assumes "a \<le> b" |
861 |
shows "- b \<le> - a" |
|
25077 | 862 |
proof - |
63325 | 863 |
from assms have "- a + a \<le> - a + b" |
864 |
by (rule add_left_mono) |
|
865 |
then have "0 \<le> - a + b" |
|
866 |
by simp |
|
867 |
then have "0 + (- b) \<le> (- a + b) + (- b)" |
|
868 |
by (rule add_right_mono) |
|
869 |
then show ?thesis |
|
870 |
by (simp add: algebra_simps) |
|
25077 | 871 |
qed |
872 |
||
873 |
lemma neg_le_iff_le [simp]: "- b \<le> - a \<longleftrightarrow> a \<le> b" |
|
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
874 |
proof |
25077 | 875 |
assume "- b \<le> - a" |
63325 | 876 |
then have "- (- a) \<le> - (- b)" |
877 |
by (rule le_imp_neg_le) |
|
878 |
then show "a \<le> b" |
|
879 |
by simp |
|
25077 | 880 |
next |
63325 | 881 |
assume "a \<le> b" |
882 |
then show "- b \<le> - a" |
|
883 |
by (rule le_imp_neg_le) |
|
25077 | 884 |
qed |
885 |
||
886 |
lemma neg_le_0_iff_le [simp]: "- a \<le> 0 \<longleftrightarrow> 0 \<le> a" |
|
63325 | 887 |
by (subst neg_le_iff_le [symmetric]) simp |
25077 | 888 |
|
889 |
lemma neg_0_le_iff_le [simp]: "0 \<le> - a \<longleftrightarrow> a \<le> 0" |
|
63325 | 890 |
by (subst neg_le_iff_le [symmetric]) simp |
25077 | 891 |
|
892 |
lemma neg_less_iff_less [simp]: "- b < - a \<longleftrightarrow> a < b" |
|
63325 | 893 |
by (auto simp add: less_le) |
25077 | 894 |
|
895 |
lemma neg_less_0_iff_less [simp]: "- a < 0 \<longleftrightarrow> 0 < a" |
|
63325 | 896 |
by (subst neg_less_iff_less [symmetric]) simp |
25077 | 897 |
|
898 |
lemma neg_0_less_iff_less [simp]: "0 < - a \<longleftrightarrow> a < 0" |
|
63325 | 899 |
by (subst neg_less_iff_less [symmetric]) simp |
25077 | 900 |
|
63325 | 901 |
text \<open>The next several equations can make the simplifier loop!\<close> |
25077 | 902 |
|
903 |
lemma less_minus_iff: "a < - b \<longleftrightarrow> b < - a" |
|
904 |
proof - |
|
63588 | 905 |
have "- (- a) < - b \<longleftrightarrow> b < - a" |
63325 | 906 |
by (rule neg_less_iff_less) |
907 |
then show ?thesis by simp |
|
25077 | 908 |
qed |
909 |
||
910 |
lemma minus_less_iff: "- a < b \<longleftrightarrow> - b < a" |
|
911 |
proof - |
|
63325 | 912 |
have "- a < - (- b) \<longleftrightarrow> - b < a" |
913 |
by (rule neg_less_iff_less) |
|
914 |
then show ?thesis by simp |
|
25077 | 915 |
qed |
916 |
||
917 |
lemma le_minus_iff: "a \<le> - b \<longleftrightarrow> b \<le> - a" |
|
71743 | 918 |
by (auto simp: order.order_iff_strict less_minus_iff) |
25077 | 919 |
|
920 |
lemma minus_le_iff: "- a \<le> b \<longleftrightarrow> - b \<le> a" |
|
63325 | 921 |
by (auto simp add: le_less minus_less_iff) |
25077 | 922 |
|
63325 | 923 |
lemma diff_less_0_iff_less [simp]: "a - b < 0 \<longleftrightarrow> a < b" |
25077 | 924 |
proof - |
63325 | 925 |
have "a - b < 0 \<longleftrightarrow> a + (- b) < b + (- b)" |
926 |
by simp |
|
927 |
also have "\<dots> \<longleftrightarrow> a < b" |
|
928 |
by (simp only: add_less_cancel_right) |
|
25077 | 929 |
finally show ?thesis . |
930 |
qed |
|
931 |
||
37884
314a88278715
discontinued pretending that abel_cancel is logic-independent; cleaned up junk
haftmann
parents:
36977
diff
changeset
|
932 |
lemmas less_iff_diff_less_0 = diff_less_0_iff_less [symmetric] |
314a88278715
discontinued pretending that abel_cancel is logic-independent; cleaned up junk
haftmann
parents:
36977
diff
changeset
|
933 |
|
70817
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
934 |
lemma diff_less_eq [algebra_simps, algebra_split_simps, field_simps, field_split_simps]: |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
935 |
"a - b < c \<longleftrightarrow> a < c + b" |
71743 | 936 |
proof (subst less_iff_diff_less_0 [of a]) |
937 |
show "(a - b < c) = (a - (c + b) < 0)" |
|
938 |
by (simp add: algebra_simps less_iff_diff_less_0 [of _ c]) |
|
939 |
qed |
|
25077 | 940 |
|
70817
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
941 |
lemma less_diff_eq [algebra_simps, algebra_split_simps, field_simps, field_split_simps]: |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
942 |
"a < c - b \<longleftrightarrow> a + b < c" |
71743 | 943 |
proof (subst less_iff_diff_less_0 [of "a + b"]) |
944 |
show "(a < c - b) = (a + b - c < 0)" |
|
945 |
by (simp add: algebra_simps less_iff_diff_less_0 [of a]) |
|
946 |
qed |
|
25077 | 947 |
|
63325 | 948 |
lemma diff_gt_0_iff_gt [simp]: "a - b > 0 \<longleftrightarrow> a > b" |
62348 | 949 |
by (simp add: less_diff_eq) |
61762
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents:
61605
diff
changeset
|
950 |
|
70817
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
951 |
lemma diff_le_eq [algebra_simps, algebra_split_simps, field_simps, field_split_simps]: |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
952 |
"a - b \<le> c \<longleftrightarrow> a \<le> c + b" |
62348 | 953 |
by (auto simp add: le_less diff_less_eq ) |
25077 | 954 |
|
70817
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
955 |
lemma le_diff_eq [algebra_simps, algebra_split_simps, field_simps, field_split_simps]: |
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents:
70490
diff
changeset
|
956 |
"a \<le> c - b \<longleftrightarrow> a + b \<le> c" |
62348 | 957 |
by (auto simp add: le_less less_diff_eq) |
25077 | 958 |
|
63325 | 959 |
lemma diff_le_0_iff_le [simp]: "a - b \<le> 0 \<longleftrightarrow> a \<le> b" |
37884
314a88278715
discontinued pretending that abel_cancel is logic-independent; cleaned up junk
haftmann
parents:
36977
diff
changeset
|
960 |
by (simp add: algebra_simps) |
314a88278715
discontinued pretending that abel_cancel is logic-independent; cleaned up junk
haftmann
parents:
36977
diff
changeset
|
961 |
|
314a88278715
discontinued pretending that abel_cancel is logic-independent; cleaned up junk
haftmann
parents:
36977
diff
changeset
|
962 |
lemmas le_iff_diff_le_0 = diff_le_0_iff_le [symmetric] |
314a88278715
discontinued pretending that abel_cancel is logic-independent; cleaned up junk
haftmann
parents:
36977
diff
changeset
|
963 |
|
63325 | 964 |
lemma diff_ge_0_iff_ge [simp]: "a - b \<ge> 0 \<longleftrightarrow> a \<ge> b" |
62348 | 965 |
by (simp add: le_diff_eq) |
966 |
||
63325 | 967 |
lemma diff_eq_diff_less: "a - b = c - d \<Longrightarrow> a < b \<longleftrightarrow> c < d" |
37884
314a88278715
discontinued pretending that abel_cancel is logic-independent; cleaned up junk
haftmann
parents:
36977
diff
changeset
|
968 |
by (auto simp only: less_iff_diff_less_0 [of a b] less_iff_diff_less_0 [of c d]) |
314a88278715
discontinued pretending that abel_cancel is logic-independent; cleaned up junk
haftmann
parents:
36977
diff
changeset
|
969 |
|
63325 | 970 |
lemma diff_eq_diff_less_eq: "a - b = c - d \<Longrightarrow> a \<le> b \<longleftrightarrow> c \<le> d" |
37889
0d8058e0c270
keep explicit diff_def as legacy theorem; modernized abel_cancel simproc setup
haftmann
parents:
37884
diff
changeset
|
971 |
by (auto simp only: le_iff_diff_le_0 [of a b] le_iff_diff_le_0 [of c d]) |
25077 | 972 |
|
56950 | 973 |
lemma diff_mono: "a \<le> b \<Longrightarrow> d \<le> c \<Longrightarrow> a - c \<le> b - d" |
974 |
by (simp add: field_simps add_mono) |
|
975 |
||
976 |
lemma diff_left_mono: "b \<le> a \<Longrightarrow> c - a \<le> c - b" |
|
977 |
by (simp add: field_simps) |
|
978 |
||
979 |
lemma diff_right_mono: "a \<le> b \<Longrightarrow> a - c \<le> b - c" |
|
980 |
by (simp add: field_simps) |
|
981 |
||
982 |
lemma diff_strict_mono: "a < b \<Longrightarrow> d < c \<Longrightarrow> a - c < b - d" |
|
983 |
by (simp add: field_simps add_strict_mono) |
|
984 |
||
985 |
lemma diff_strict_left_mono: "b < a \<Longrightarrow> c - a < c - b" |
|
986 |
by (simp add: field_simps) |
|
987 |
||
988 |
lemma diff_strict_right_mono: "a < b \<Longrightarrow> a - c < b - c" |
|
989 |
by (simp add: field_simps) |
|
990 |
||
25077 | 991 |
end |
992 |
||
70490 | 993 |
locale group_cancel |
994 |
begin |
|
995 |
||
996 |
lemma add1: "(A::'a::comm_monoid_add) \<equiv> k + a \<Longrightarrow> A + b \<equiv> k + (a + b)" |
|
997 |
by (simp only: ac_simps) |
|
998 |
||
999 |
lemma add2: "(B::'a::comm_monoid_add) \<equiv> k + b \<Longrightarrow> a + B \<equiv> k + (a + b)" |
|
1000 |
by (simp only: ac_simps) |
|
1001 |
||
1002 |
lemma sub1: "(A::'a::ab_group_add) \<equiv> k + a \<Longrightarrow> A - b \<equiv> k + (a - b)" |
|
1003 |
by (simp only: add_diff_eq) |
|
1004 |
||
1005 |
lemma sub2: "(B::'a::ab_group_add) \<equiv> k + b \<Longrightarrow> a - B \<equiv> - k + (a - b)" |
|
1006 |
by (simp only: minus_add diff_conv_add_uminus ac_simps) |
|
1007 |
||
1008 |
lemma neg1: "(A::'a::ab_group_add) \<equiv> k + a \<Longrightarrow> - A \<equiv> - k + - a" |
|
1009 |
by (simp only: minus_add_distrib) |
|
1010 |
||
1011 |
lemma rule0: "(a::'a::comm_monoid_add) \<equiv> a + 0" |
|
1012 |
by (simp only: add_0_right) |
|
1013 |
||
1014 |
end |
|
1015 |
||
69605 | 1016 |
ML_file \<open>Tools/group_cancel.ML\<close> |
48556
62a3fbf9d35b
replace abel_cancel simprocs with functionally equivalent, but simpler and faster ones
huffman
parents:
45548
diff
changeset
|
1017 |
|
62a3fbf9d35b
replace abel_cancel simprocs with functionally equivalent, but simpler and faster ones
huffman
parents:
45548
diff
changeset
|
1018 |
simproc_setup group_cancel_add ("a + b::'a::ab_group_add") = |
60758 | 1019 |
\<open>fn phi => fn ss => try Group_Cancel.cancel_add_conv\<close> |
48556
62a3fbf9d35b
replace abel_cancel simprocs with functionally equivalent, but simpler and faster ones
huffman
parents:
45548
diff
changeset
|
1020 |
|
62a3fbf9d35b
replace abel_cancel simprocs with functionally equivalent, but simpler and faster ones
huffman
parents:
45548
diff
changeset
|
1021 |
simproc_setup group_cancel_diff ("a - b::'a::ab_group_add") = |
60758 | 1022 |
\<open>fn phi => fn ss => try Group_Cancel.cancel_diff_conv\<close> |
37884
314a88278715
discontinued pretending that abel_cancel is logic-independent; cleaned up junk
haftmann
parents:
36977
diff
changeset
|
1023 |
|
48556
62a3fbf9d35b
replace abel_cancel simprocs with functionally equivalent, but simpler and faster ones
huffman
parents:
45548
diff
changeset
|
1024 |
simproc_setup group_cancel_eq ("a = (b::'a::ab_group_add)") = |
60758 | 1025 |
\<open>fn phi => fn ss => try Group_Cancel.cancel_eq_conv\<close> |
37889
0d8058e0c270
keep explicit diff_def as legacy theorem; modernized abel_cancel simproc setup
haftmann
parents:
37884
diff
changeset
|
1026 |
|
48556
62a3fbf9d35b
replace abel_cancel simprocs with functionally equivalent, but simpler and faster ones
huffman
parents:
45548
diff
changeset
|
1027 |
simproc_setup group_cancel_le ("a \<le> (b::'a::ordered_ab_group_add)") = |
60758 | 1028 |
\<open>fn phi => fn ss => try Group_Cancel.cancel_le_conv\<close> |
48556
62a3fbf9d35b
replace abel_cancel simprocs with functionally equivalent, but simpler and faster ones
huffman
parents:
45548
diff
changeset
|
1029 |
|
62a3fbf9d35b
replace abel_cancel simprocs with functionally equivalent, but simpler and faster ones
huffman
parents:
45548
diff
changeset
|
1030 |
simproc_setup group_cancel_less ("a < (b::'a::ordered_ab_group_add)") = |
60758 | 1031 |
\<open>fn phi => fn ss => try Group_Cancel.cancel_less_conv\<close> |
37884
314a88278715
discontinued pretending that abel_cancel is logic-independent; cleaned up junk
haftmann
parents:
36977
diff
changeset
|
1032 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1033 |
class linordered_ab_semigroup_add = |
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1034 |
linorder + ordered_ab_semigroup_add |
25062 | 1035 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1036 |
class linordered_cancel_ab_semigroup_add = |
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1037 |
linorder + ordered_cancel_ab_semigroup_add |
25267 | 1038 |
begin |
25062 | 1039 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1040 |
subclass linordered_ab_semigroup_add .. |
25062 | 1041 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1042 |
subclass ordered_ab_semigroup_add_imp_le |
28823 | 1043 |
proof |
25062 | 1044 |
fix a b c :: 'a |
63325 | 1045 |
assume le1: "c + a \<le> c + b" |
1046 |
show "a \<le> b" |
|
25062 | 1047 |
proof (rule ccontr) |
63325 | 1048 |
assume *: "\<not> ?thesis" |
1049 |
then have "b \<le> a" by (simp add: linorder_not_le) |
|
63588 | 1050 |
then have "c + b \<le> c + a" by (rule add_left_mono) |
71743 | 1051 |
then have "c + a = c + b" |
73411 | 1052 |
using le1 by (iprover intro: order.antisym) |
71743 | 1053 |
then have "a = b" |
1054 |
by simp |
|
63325 | 1055 |
with * show False |
25062 | 1056 |
by (simp add: linorder_not_le [symmetric]) |
1057 |
qed |
|
1058 |
qed |
|
1059 |
||
25267 | 1060 |
end |
1061 |
||
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1062 |
class linordered_ab_group_add = linorder + ordered_ab_group_add |
25267 | 1063 |
begin |
25230 | 1064 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1065 |
subclass linordered_cancel_ab_semigroup_add .. |
25230 | 1066 |
|
63325 | 1067 |
lemma equal_neg_zero [simp]: "a = - a \<longleftrightarrow> a = 0" |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1068 |
proof |
63325 | 1069 |
assume "a = 0" |
1070 |
then show "a = - a" by simp |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1071 |
next |
63325 | 1072 |
assume A: "a = - a" |
1073 |
show "a = 0" |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1074 |
proof (cases "0 \<le> a") |
63325 | 1075 |
case True |
1076 |
with A have "0 \<le> - a" by auto |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1077 |
with le_minus_iff have "a \<le> 0" by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1078 |
with True show ?thesis by (auto intro: order_trans) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1079 |
next |
63325 | 1080 |
case False |
1081 |
then have B: "a \<le> 0" by auto |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1082 |
with A have "- a \<le> 0" by auto |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1083 |
with B show ?thesis by (auto intro: order_trans) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1084 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1085 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1086 |
|
63325 | 1087 |
lemma neg_equal_zero [simp]: "- a = a \<longleftrightarrow> a = 0" |
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1088 |
by (auto dest: sym) |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1089 |
|
63325 | 1090 |
lemma neg_less_eq_nonneg [simp]: "- a \<le> a \<longleftrightarrow> 0 \<le> a" |
54250 | 1091 |
proof |
63325 | 1092 |
assume *: "- a \<le> a" |
1093 |
show "0 \<le> a" |
|
54250 | 1094 |
proof (rule classical) |
63325 | 1095 |
assume "\<not> ?thesis" |
54250 | 1096 |
then have "a < 0" by auto |
63325 | 1097 |
with * have "- a < 0" by (rule le_less_trans) |
54250 | 1098 |
then show ?thesis by auto |
1099 |
qed |
|
1100 |
next |
|
63325 | 1101 |
assume *: "0 \<le> a" |
1102 |
then have "- a \<le> 0" by (simp add: minus_le_iff) |
|
1103 |
from this * show "- a \<le> a" by (rule order_trans) |
|
54250 | 1104 |
qed |
1105 |
||
63325 | 1106 |
lemma neg_less_pos [simp]: "- a < a \<longleftrightarrow> 0 < a" |
54250 | 1107 |
by (auto simp add: less_le) |
1108 |
||
63325 | 1109 |
lemma less_eq_neg_nonpos [simp]: "a \<le> - a \<longleftrightarrow> a \<le> 0" |
54250 | 1110 |
using neg_less_eq_nonneg [of "- a"] by simp |
1111 |
||
63325 | 1112 |
lemma less_neg_neg [simp]: "a < - a \<longleftrightarrow> a < 0" |
54250 | 1113 |
using neg_less_pos [of "- a"] by simp |
1114 |
||
63325 | 1115 |
lemma double_zero [simp]: "a + a = 0 \<longleftrightarrow> a = 0" |
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1116 |
proof |
63325 | 1117 |
assume "a + a = 0" |
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1118 |
then have a: "- a = a" by (rule minus_unique) |
35216 | 1119 |
then show "a = 0" by (simp only: neg_equal_zero) |
63325 | 1120 |
next |
1121 |
assume "a = 0" |
|
1122 |
then show "a + a = 0" by simp |
|
1123 |
qed |
|
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1124 |
|
63325 | 1125 |
lemma double_zero_sym [simp]: "0 = a + a \<longleftrightarrow> a = 0" |
71743 | 1126 |
using double_zero [of a] by (simp only: eq_commute) |
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1127 |
|
63325 | 1128 |
lemma zero_less_double_add_iff_zero_less_single_add [simp]: "0 < a + a \<longleftrightarrow> 0 < a" |
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1129 |
proof |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1130 |
assume "0 < a + a" |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1131 |
then have "0 - a < a" by (simp only: diff_less_eq) |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1132 |
then have "- a < a" by simp |
54250 | 1133 |
then show "0 < a" by simp |
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1134 |
next |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1135 |
assume "0 < a" |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1136 |
with this have "0 + 0 < a + a" |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1137 |
by (rule add_strict_mono) |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1138 |
then show "0 < a + a" by simp |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1139 |
qed |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1140 |
|
63325 | 1141 |
lemma zero_le_double_add_iff_zero_le_single_add [simp]: "0 \<le> a + a \<longleftrightarrow> 0 \<le> a" |
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1142 |
by (auto simp add: le_less) |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1143 |
|
63325 | 1144 |
lemma double_add_less_zero_iff_single_add_less_zero [simp]: "a + a < 0 \<longleftrightarrow> a < 0" |
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1145 |
proof - |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1146 |
have "\<not> a + a < 0 \<longleftrightarrow> \<not> a < 0" |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1147 |
by (simp add: not_less) |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1148 |
then show ?thesis by simp |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1149 |
qed |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1150 |
|
63325 | 1151 |
lemma double_add_le_zero_iff_single_add_le_zero [simp]: "a + a \<le> 0 \<longleftrightarrow> a \<le> 0" |
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1152 |
proof - |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1153 |
have "\<not> a + a \<le> 0 \<longleftrightarrow> \<not> a \<le> 0" |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1154 |
by (simp add: not_le) |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1155 |
then show ?thesis by simp |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1156 |
qed |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1157 |
|
63325 | 1158 |
lemma minus_max_eq_min: "- max x y = min (- x) (- y)" |
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1159 |
by (auto simp add: max_def min_def) |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1160 |
|
63325 | 1161 |
lemma minus_min_eq_max: "- min x y = max (- x) (- y)" |
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
1162 |
by (auto simp add: max_def min_def) |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1163 |
|
25267 | 1164 |
end |
1165 |
||
35092
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
1166 |
class abs = |
61944 | 1167 |
fixes abs :: "'a \<Rightarrow> 'a" ("\<bar>_\<bar>") |
35092
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
1168 |
|
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
1169 |
class sgn = |
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
1170 |
fixes sgn :: "'a \<Rightarrow> 'a" |
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
1171 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1172 |
class ordered_ab_group_add_abs = ordered_ab_group_add + abs + |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1173 |
assumes abs_ge_zero [simp]: "\<bar>a\<bar> \<ge> 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1174 |
and abs_ge_self: "a \<le> \<bar>a\<bar>" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1175 |
and abs_leI: "a \<le> b \<Longrightarrow> - a \<le> b \<Longrightarrow> \<bar>a\<bar> \<le> b" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1176 |
and abs_minus_cancel [simp]: "\<bar>-a\<bar> = \<bar>a\<bar>" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1177 |
and abs_triangle_ineq: "\<bar>a + b\<bar> \<le> \<bar>a\<bar> + \<bar>b\<bar>" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1178 |
begin |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1179 |
|
25307 | 1180 |
lemma abs_minus_le_zero: "- \<bar>a\<bar> \<le> 0" |
1181 |
unfolding neg_le_0_iff_le by simp |
|
1182 |
||
1183 |
lemma abs_of_nonneg [simp]: |
|
63325 | 1184 |
assumes nonneg: "0 \<le> a" |
1185 |
shows "\<bar>a\<bar> = a" |
|
73411 | 1186 |
proof (rule order.antisym) |
63325 | 1187 |
show "a \<le> \<bar>a\<bar>" by (rule abs_ge_self) |
25307 | 1188 |
from nonneg le_imp_neg_le have "- a \<le> 0" by simp |
1189 |
from this nonneg have "- a \<le> a" by (rule order_trans) |
|
1190 |
then show "\<bar>a\<bar> \<le> a" by (auto intro: abs_leI) |
|
63325 | 1191 |
qed |
25307 | 1192 |
|
1193 |
lemma abs_idempotent [simp]: "\<bar>\<bar>a\<bar>\<bar> = \<bar>a\<bar>" |
|
73411 | 1194 |
by (rule order.antisym) (auto intro!: abs_ge_self abs_leI order_trans [of "- \<bar>a\<bar>" 0 "\<bar>a\<bar>"]) |
25307 | 1195 |
|
1196 |
lemma abs_eq_0 [simp]: "\<bar>a\<bar> = 0 \<longleftrightarrow> a = 0" |
|
1197 |
proof - |
|
1198 |
have "\<bar>a\<bar> = 0 \<Longrightarrow> a = 0" |
|
73411 | 1199 |
proof (rule order.antisym) |
25307 | 1200 |
assume zero: "\<bar>a\<bar> = 0" |
1201 |
with abs_ge_self show "a \<le> 0" by auto |
|
1202 |
from zero have "\<bar>-a\<bar> = 0" by simp |
|
36302 | 1203 |
with abs_ge_self [of "- a"] have "- a \<le> 0" by auto |
25307 | 1204 |
with neg_le_0_iff_le show "0 \<le> a" by auto |
1205 |
qed |
|
1206 |
then show ?thesis by auto |
|
1207 |
qed |
|
1208 |
||
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1209 |
lemma abs_zero [simp]: "\<bar>0\<bar> = 0" |
63325 | 1210 |
by simp |
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1211 |
|
54148 | 1212 |
lemma abs_0_eq [simp]: "0 = \<bar>a\<bar> \<longleftrightarrow> a = 0" |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1213 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1214 |
have "0 = \<bar>a\<bar> \<longleftrightarrow> \<bar>a\<bar> = 0" by (simp only: eq_ac) |
63325 | 1215 |
then show ?thesis by simp |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1216 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1217 |
|
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
1218 |
lemma abs_le_zero_iff [simp]: "\<bar>a\<bar> \<le> 0 \<longleftrightarrow> a = 0" |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1219 |
proof |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1220 |
assume "\<bar>a\<bar> \<le> 0" |
73411 | 1221 |
then have "\<bar>a\<bar> = 0" by (rule order.antisym) simp |
63325 | 1222 |
then show "a = 0" by simp |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1223 |
next |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1224 |
assume "a = 0" |
63325 | 1225 |
then show "\<bar>a\<bar> \<le> 0" by simp |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1226 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1227 |
|
62379
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62378
diff
changeset
|
1228 |
lemma abs_le_self_iff [simp]: "\<bar>a\<bar> \<le> a \<longleftrightarrow> 0 \<le> a" |
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62378
diff
changeset
|
1229 |
proof - |
63325 | 1230 |
have "0 \<le> \<bar>a\<bar>" |
62379
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62378
diff
changeset
|
1231 |
using abs_ge_zero by blast |
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62378
diff
changeset
|
1232 |
then have "\<bar>a\<bar> \<le> a \<Longrightarrow> 0 \<le> a" |
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62378
diff
changeset
|
1233 |
using order.trans by blast |
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62378
diff
changeset
|
1234 |
then show ?thesis |
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62378
diff
changeset
|
1235 |
using abs_of_nonneg eq_refl by blast |
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62378
diff
changeset
|
1236 |
qed |
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents:
62378
diff
changeset
|
1237 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1238 |
lemma zero_less_abs_iff [simp]: "0 < \<bar>a\<bar> \<longleftrightarrow> a \<noteq> 0" |
63325 | 1239 |
by (simp add: less_le) |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1240 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1241 |
lemma abs_not_less_zero [simp]: "\<not> \<bar>a\<bar> < 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1242 |
proof - |
63325 | 1243 |
have "x \<le> y \<Longrightarrow> \<not> y < x" for x y by auto |
1244 |
then show ?thesis by simp |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1245 |
qed |
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1246 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1247 |
lemma abs_ge_minus_self: "- a \<le> \<bar>a\<bar>" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1248 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1249 |
have "- a \<le> \<bar>-a\<bar>" by (rule abs_ge_self) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1250 |
then show ?thesis by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1251 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1252 |
|
63325 | 1253 |
lemma abs_minus_commute: "\<bar>a - b\<bar> = \<bar>b - a\<bar>" |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1254 |
proof - |
63325 | 1255 |
have "\<bar>a - b\<bar> = \<bar>- (a - b)\<bar>" |
1256 |
by (simp only: abs_minus_cancel) |
|
1257 |
also have "\<dots> = \<bar>b - a\<bar>" by simp |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1258 |
finally show ?thesis . |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1259 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1260 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1261 |
lemma abs_of_pos: "0 < a \<Longrightarrow> \<bar>a\<bar> = a" |
63325 | 1262 |
by (rule abs_of_nonneg) (rule less_imp_le) |
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1263 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1264 |
lemma abs_of_nonpos [simp]: |
63325 | 1265 |
assumes "a \<le> 0" |
1266 |
shows "\<bar>a\<bar> = - a" |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1267 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1268 |
let ?b = "- a" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1269 |
have "- ?b \<le> 0 \<Longrightarrow> \<bar>- ?b\<bar> = - (- ?b)" |
63325 | 1270 |
unfolding abs_minus_cancel [of ?b] |
1271 |
unfolding neg_le_0_iff_le [of ?b] |
|
1272 |
unfolding minus_minus by (erule abs_of_nonneg) |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1273 |
then show ?thesis using assms by auto |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1274 |
qed |
62376
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
hoelzl
parents:
62348
diff
changeset
|
1275 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1276 |
lemma abs_of_neg: "a < 0 \<Longrightarrow> \<bar>a\<bar> = - a" |
63325 | 1277 |
by (rule abs_of_nonpos) (rule less_imp_le) |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1278 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1279 |
lemma abs_le_D1: "\<bar>a\<bar> \<le> b \<Longrightarrow> a \<le> b" |
63325 | 1280 |
using abs_ge_self by (blast intro: order_trans) |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1281 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1282 |
lemma abs_le_D2: "\<bar>a\<bar> \<le> b \<Longrightarrow> - a \<le> b" |
63325 | 1283 |
using abs_le_D1 [of "- a"] by simp |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1284 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1285 |
lemma abs_le_iff: "\<bar>a\<bar> \<le> b \<longleftrightarrow> a \<le> b \<and> - a \<le> b" |
63325 | 1286 |
by (blast intro: abs_leI dest: abs_le_D1 abs_le_D2) |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1287 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1288 |
lemma abs_triangle_ineq2: "\<bar>a\<bar> - \<bar>b\<bar> \<le> \<bar>a - b\<bar>" |
36302 | 1289 |
proof - |
1290 |
have "\<bar>a\<bar> = \<bar>b + (a - b)\<bar>" |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
54148
diff
changeset
|
1291 |
by (simp add: algebra_simps) |
36302 | 1292 |
then have "\<bar>a\<bar> \<le> \<bar>b\<bar> + \<bar>a - b\<bar>" |
1293 |
by (simp add: abs_triangle_ineq) |
|
1294 |
then show ?thesis |
|
1295 |
by (simp add: algebra_simps) |
|
1296 |
qed |
|
1297 |
||
1298 |
lemma abs_triangle_ineq2_sym: "\<bar>a\<bar> - \<bar>b\<bar> \<le> \<bar>b - a\<bar>" |
|
1299 |
by (simp only: abs_minus_commute [of b] abs_triangle_ineq2) |
|
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1300 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1301 |
lemma abs_triangle_ineq3: "\<bar>\<bar>a\<bar> - \<bar>b\<bar>\<bar> \<le> \<bar>a - b\<bar>" |
36302 | 1302 |
by (simp add: abs_le_iff abs_triangle_ineq2 abs_triangle_ineq2_sym) |
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1303 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1304 |
lemma abs_triangle_ineq4: "\<bar>a - b\<bar> \<le> \<bar>a\<bar> + \<bar>b\<bar>" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1305 |
proof - |
63325 | 1306 |
have "\<bar>a - b\<bar> = \<bar>a + - b\<bar>" |
1307 |
by (simp add: algebra_simps) |
|
1308 |
also have "\<dots> \<le> \<bar>a\<bar> + \<bar>- b\<bar>" |
|
1309 |
by (rule abs_triangle_ineq) |
|
29667 | 1310 |
finally show ?thesis by simp |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1311 |
qed |
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1312 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1313 |
lemma abs_diff_triangle_ineq: "\<bar>a + b - (c + d)\<bar> \<le> \<bar>a - c\<bar> + \<bar>b - d\<bar>" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1314 |
proof - |
63325 | 1315 |
have "\<bar>a + b - (c + d)\<bar> = \<bar>(a - c) + (b - d)\<bar>" |
1316 |
by (simp add: algebra_simps) |
|
1317 |
also have "\<dots> \<le> \<bar>a - c\<bar> + \<bar>b - d\<bar>" |
|
1318 |
by (rule abs_triangle_ineq) |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1319 |
finally show ?thesis . |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1320 |
qed |
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1321 |
|
63325 | 1322 |
lemma abs_add_abs [simp]: "\<bar>\<bar>a\<bar> + \<bar>b\<bar>\<bar> = \<bar>a\<bar> + \<bar>b\<bar>" |
1323 |
(is "?L = ?R") |
|
73411 | 1324 |
proof (rule order.antisym) |
63325 | 1325 |
show "?L \<ge> ?R" by (rule abs_ge_self) |
1326 |
have "?L \<le> \<bar>\<bar>a\<bar>\<bar> + \<bar>\<bar>b\<bar>\<bar>" by (rule abs_triangle_ineq) |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1327 |
also have "\<dots> = ?R" by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1328 |
finally show "?L \<le> ?R" . |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1329 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1330 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1331 |
end |
14738 | 1332 |
|
60762 | 1333 |
lemma dense_eq0_I: |
1334 |
fixes x::"'a::{dense_linorder,ordered_ab_group_add_abs}" |
|
71743 | 1335 |
assumes "\<And>e. 0 < e \<Longrightarrow> \<bar>x\<bar> \<le> e" |
1336 |
shows "x = 0" |
|
1337 |
proof (cases "\<bar>x\<bar> = 0") |
|
1338 |
case False |
|
1339 |
then have "\<bar>x\<bar> > 0" |
|
1340 |
by simp |
|
1341 |
then obtain z where "0 < z" "z < \<bar>x\<bar>" |
|
1342 |
using dense by force |
|
1343 |
then show ?thesis |
|
1344 |
using assms by (simp flip: not_less) |
|
1345 |
qed auto |
|
60762 | 1346 |
|
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
1347 |
hide_fact (open) ab_diff_conv_add_uminus add_0 mult_1 ab_left_minus |
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
1348 |
|
63325 | 1349 |
lemmas add_0 = add_0_left (* FIXME duplicate *) |
1350 |
lemmas mult_1 = mult_1_left (* FIXME duplicate *) |
|
1351 |
lemmas ab_left_minus = left_minus (* FIXME duplicate *) |
|
1352 |
lemmas diff_diff_eq = diff_diff_add (* FIXME duplicate *) |
|
1353 |
||
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59559
diff
changeset
|
1354 |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1355 |
subsection \<open>Canonically ordered monoids\<close> |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1356 |
|
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1357 |
text \<open>Canonically ordered monoids are never groups.\<close> |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1358 |
|
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1359 |
class canonically_ordered_monoid_add = comm_monoid_add + order + |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1360 |
assumes le_iff_add: "a \<le> b \<longleftrightarrow> (\<exists>c. b = a + c)" |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1361 |
begin |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1362 |
|
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1363 |
lemma zero_le[simp]: "0 \<le> x" |
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1364 |
by (auto simp: le_iff_add) |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1365 |
|
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1366 |
lemma le_zero_eq[simp]: "n \<le> 0 \<longleftrightarrow> n = 0" |
73411 | 1367 |
by (auto intro: order.antisym) |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1368 |
|
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1369 |
lemma not_less_zero[simp]: "\<not> n < 0" |
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1370 |
by (auto simp: less_le) |
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1371 |
|
63325 | 1372 |
lemma zero_less_iff_neq_zero: "0 < n \<longleftrightarrow> n \<noteq> 0" |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1373 |
by (auto simp: less_le) |
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1374 |
|
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1375 |
text \<open>This theorem is useful with \<open>blast\<close>\<close> |
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1376 |
lemma gr_zeroI: "(n = 0 \<Longrightarrow> False) \<Longrightarrow> 0 < n" |
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1377 |
by (rule zero_less_iff_neq_zero[THEN iffD2]) iprover |
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1378 |
|
63325 | 1379 |
lemma not_gr_zero[simp]: "\<not> 0 < n \<longleftrightarrow> n = 0" |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1380 |
by (simp add: zero_less_iff_neq_zero) |
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1381 |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1382 |
subclass ordered_comm_monoid_add |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1383 |
proof qed (auto simp: le_iff_add add_ac) |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1384 |
|
63878
e26c7f58d78e
add add_eq_0_iff_both_eq_0 and zero_eq_add_iff_both_eq_0 to simp set
hoelzl
parents:
63680
diff
changeset
|
1385 |
lemma gr_implies_not_zero: "m < n \<Longrightarrow> n \<noteq> 0" |
e26c7f58d78e
add add_eq_0_iff_both_eq_0 and zero_eq_add_iff_both_eq_0 to simp set
hoelzl
parents:
63680
diff
changeset
|
1386 |
by auto |
e26c7f58d78e
add add_eq_0_iff_both_eq_0 and zero_eq_add_iff_both_eq_0 to simp set
hoelzl
parents:
63680
diff
changeset
|
1387 |
|
e26c7f58d78e
add add_eq_0_iff_both_eq_0 and zero_eq_add_iff_both_eq_0 to simp set
hoelzl
parents:
63680
diff
changeset
|
1388 |
lemma add_eq_0_iff_both_eq_0[simp]: "x + y = 0 \<longleftrightarrow> x = 0 \<and> y = 0" |
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1389 |
by (intro add_nonneg_eq_0_iff zero_le) |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1390 |
|
63878
e26c7f58d78e
add add_eq_0_iff_both_eq_0 and zero_eq_add_iff_both_eq_0 to simp set
hoelzl
parents:
63680
diff
changeset
|
1391 |
lemma zero_eq_add_iff_both_eq_0[simp]: "0 = x + y \<longleftrightarrow> x = 0 \<and> y = 0" |
e26c7f58d78e
add add_eq_0_iff_both_eq_0 and zero_eq_add_iff_both_eq_0 to simp set
hoelzl
parents:
63680
diff
changeset
|
1392 |
using add_eq_0_iff_both_eq_0[of x y] unfolding eq_commute[of 0] . |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1393 |
|
71425
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1394 |
lemma less_eqE: |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1395 |
assumes \<open>a \<le> b\<close> |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1396 |
obtains c where \<open>b = a + c\<close> |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1397 |
using assms by (auto simp add: le_iff_add) |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1398 |
|
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1399 |
lemma lessE: |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1400 |
assumes \<open>a < b\<close> |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1401 |
obtains c where \<open>b = a + c\<close> and \<open>c \<noteq> 0\<close> |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1402 |
proof - |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1403 |
from assms have \<open>a \<le> b\<close> \<open>a \<noteq> b\<close> |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1404 |
by simp_all |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1405 |
from \<open>a \<le> b\<close> obtain c where \<open>b = a + c\<close> |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1406 |
by (rule less_eqE) |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1407 |
moreover have \<open>c \<noteq> 0\<close> using \<open>a \<noteq> b\<close> \<open>b = a + c\<close> |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1408 |
by auto |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1409 |
ultimately show ?thesis |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1410 |
by (rule that) |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1411 |
qed |
f2da99316b86
more rules for natural deduction from inequalities
haftmann
parents:
71093
diff
changeset
|
1412 |
|
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1413 |
lemmas zero_order = zero_le le_zero_eq not_less_zero zero_less_iff_neq_zero not_gr_zero |
63145 | 1414 |
\<comment> \<open>This should be attributed with \<open>[iff]\<close>, but then \<open>blast\<close> fails in \<open>Set\<close>.\<close> |
62378
85ed00c1fe7c
generalize more theorems to support enat and ennreal
hoelzl
parents:
62377
diff
changeset
|
1415 |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1416 |
end |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1417 |
|
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1418 |
class ordered_cancel_comm_monoid_diff = |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1419 |
canonically_ordered_monoid_add + comm_monoid_diff + ordered_ab_semigroup_add_imp_le |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1420 |
begin |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1421 |
|
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1422 |
context |
63588 | 1423 |
fixes a b :: 'a |
63325 | 1424 |
assumes le: "a \<le> b" |
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1425 |
begin |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1426 |
|
63325 | 1427 |
lemma add_diff_inverse: "a + (b - a) = b" |
1428 |
using le by (auto simp add: le_iff_add) |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1429 |
|
63325 | 1430 |
lemma add_diff_assoc: "c + (b - a) = c + b - a" |
1431 |
using le by (auto simp add: le_iff_add add.left_commute [of c]) |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1432 |
|
63325 | 1433 |
lemma add_diff_assoc2: "b - a + c = b + c - a" |
1434 |
using le by (auto simp add: le_iff_add add.assoc) |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1435 |
|
63325 | 1436 |
lemma diff_add_assoc: "c + b - a = c + (b - a)" |
1437 |
using le by (simp add: add.commute add_diff_assoc) |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1438 |
|
63325 | 1439 |
lemma diff_add_assoc2: "b + c - a = b - a + c" |
1440 |
using le by (simp add: add.commute add_diff_assoc) |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1441 |
|
63325 | 1442 |
lemma diff_diff_right: "c - (b - a) = c + a - b" |
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1443 |
by (simp add: add_diff_inverse add_diff_cancel_left [of a c "b - a", symmetric] add.commute) |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1444 |
|
63325 | 1445 |
lemma diff_add: "b - a + a = b" |
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1446 |
by (simp add: add.commute add_diff_inverse) |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1447 |
|
63325 | 1448 |
lemma le_add_diff: "c \<le> b + c - a" |
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1449 |
by (auto simp add: add.commute diff_add_assoc2 le_iff_add) |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1450 |
|
63325 | 1451 |
lemma le_imp_diff_is_add: "a \<le> b \<Longrightarrow> b - a = c \<longleftrightarrow> b = c + a" |
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1452 |
by (auto simp add: add.commute add_diff_inverse) |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1453 |
|
63325 | 1454 |
lemma le_diff_conv2: "c \<le> b - a \<longleftrightarrow> c + a \<le> b" |
1455 |
(is "?P \<longleftrightarrow> ?Q") |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1456 |
proof |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1457 |
assume ?P |
63325 | 1458 |
then have "c + a \<le> b - a + a" |
1459 |
by (rule add_right_mono) |
|
1460 |
then show ?Q |
|
1461 |
by (simp add: add_diff_inverse add.commute) |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1462 |
next |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1463 |
assume ?Q |
63325 | 1464 |
then have "a + c \<le> a + (b - a)" |
1465 |
by (simp add: add_diff_inverse add.commute) |
|
62377
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1466 |
then show ?P by simp |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1467 |
qed |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1468 |
|
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1469 |
end |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1470 |
|
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1471 |
end |
ace69956d018
moved more proofs to ordered_comm_monoid_add; introduced strict_ordered_ab_semigroup/comm_monoid_add
hoelzl
parents:
62376
diff
changeset
|
1472 |
|
63325 | 1473 |
|
60758 | 1474 |
subsection \<open>Tools setup\<close> |
25090 | 1475 |
|
54147
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
blanchet
parents:
52435
diff
changeset
|
1476 |
lemma add_mono_thms_linordered_semiring: |
61076 | 1477 |
fixes i j k :: "'a::ordered_ab_semigroup_add" |
25077 | 1478 |
shows "i \<le> j \<and> k \<le> l \<Longrightarrow> i + k \<le> j + l" |
1479 |
and "i = j \<and> k \<le> l \<Longrightarrow> i + k \<le> j + l" |
|
1480 |
and "i \<le> j \<and> k = l \<Longrightarrow> i + k \<le> j + l" |
|
1481 |
and "i = j \<and> k = l \<Longrightarrow> i + k = j + l" |
|
63325 | 1482 |
by (rule add_mono, clarify+)+ |
25077 | 1483 |
|
54147
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
blanchet
parents:
52435
diff
changeset
|
1484 |
lemma add_mono_thms_linordered_field: |
61076 | 1485 |
fixes i j k :: "'a::ordered_cancel_ab_semigroup_add" |
25077 | 1486 |
shows "i < j \<and> k = l \<Longrightarrow> i + k < j + l" |
1487 |
and "i = j \<and> k < l \<Longrightarrow> i + k < j + l" |
|
1488 |
and "i < j \<and> k \<le> l \<Longrightarrow> i + k < j + l" |
|
1489 |
and "i \<le> j \<and> k < l \<Longrightarrow> i + k < j + l" |
|
1490 |
and "i < j \<and> k < l \<Longrightarrow> i + k < j + l" |
|
63325 | 1491 |
by (auto intro: add_strict_right_mono add_strict_left_mono |
1492 |
add_less_le_mono add_le_less_mono add_strict_mono) |
|
25077 | 1493 |
|
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52289
diff
changeset
|
1494 |
code_identifier |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52289
diff
changeset
|
1495 |
code_module Groups \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith |
33364 | 1496 |
|
14738 | 1497 |
end |