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