author | wenzelm |
Sat, 27 Feb 2010 23:13:01 +0100 | |
changeset 35408 | b48ab741683b |
parent 35364 | b8c62d60195c |
child 35720 | 3fc79186a2f6 |
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 |
35267
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
9 |
uses ("~~/src/Provers/Arith/abel_cancel.ML") |
15131 | 10 |
begin |
14738 | 11 |
|
35301
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
12 |
subsection {* Fact collections *} |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
13 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
14 |
ML {* |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
15 |
structure Algebra_Simps = Named_Thms( |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
16 |
val name = "algebra_simps" |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
17 |
val description = "algebra simplification rules" |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
18 |
) |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
19 |
*} |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
20 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
21 |
setup Algebra_Simps.setup |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
22 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
23 |
text{* The rewrites accumulated in @{text algebra_simps} deal with the |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
24 |
classical algebraic structures of groups, rings and family. They simplify |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
25 |
terms by multiplying everything out (in case of a ring) and bringing sums and |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
26 |
products into a canonical form (by ordered rewriting). As a result it decides |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
27 |
group and ring equalities but also helps with inequalities. |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
28 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
29 |
Of course it also works for fields, but it knows nothing about multiplicative |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
30 |
inverses or division. This is catered for by @{text field_simps}. *} |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
31 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
32 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
33 |
ML {* |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
34 |
structure Ac_Simps = Named_Thms( |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
35 |
val name = "ac_simps" |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
36 |
val description = "associativity and commutativity simplification rules" |
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 |
*} |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
39 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
40 |
setup Ac_Simps.setup |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
41 |
|
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 |
subsection {* Abstract structures *} |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
44 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
45 |
text {* |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
46 |
These locales provide basic structures for interpretation into |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
47 |
bigger structures; extensions require careful thinking, otherwise |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
48 |
undesired effects may occur due to interpretation. |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
49 |
*} |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
50 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
51 |
locale semigroup = |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
52 |
fixes f :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "*" 70) |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
53 |
assumes assoc [ac_simps]: "a * b * c = a * (b * c)" |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
54 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
55 |
locale abel_semigroup = semigroup + |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
56 |
assumes commute [ac_simps]: "a * b = b * a" |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
57 |
begin |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
58 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
59 |
lemma left_commute [ac_simps]: |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
60 |
"b * (a * c) = a * (b * c)" |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
61 |
proof - |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
62 |
have "(b * a) * c = (a * b) * c" |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
63 |
by (simp only: commute) |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
64 |
then show ?thesis |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
65 |
by (simp only: assoc) |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
66 |
qed |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
67 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
68 |
end |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
69 |
|
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
70 |
|
35267
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
71 |
subsection {* Generic operations *} |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
72 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
73 |
class zero = |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
74 |
fixes zero :: 'a ("0") |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
75 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
76 |
class one = |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
77 |
fixes one :: 'a ("1") |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
78 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
79 |
hide (open) const zero one |
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 |
syntax |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
82 |
"_index1" :: index ("\<^sub>1") |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
83 |
translations |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
84 |
(index) "\<^sub>1" => (index) "\<^bsub>\<struct>\<^esub>" |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
85 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
86 |
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
|
87 |
unfolding Let_def .. |
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_1 [simp]: "Let 1 f = f 1" |
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 |
setup {* |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
93 |
Reorient_Proc.add |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
94 |
(fn Const(@{const_name Groups.zero}, _) => true |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
95 |
| Const(@{const_name Groups.one}, _) => true |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
96 |
| _ => false) |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
97 |
*} |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
98 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
99 |
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
|
100 |
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
|
101 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
102 |
typed_print_translation {* |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
103 |
let |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
104 |
fun tr' c = (c, fn show_sorts => fn T => fn ts => |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
105 |
if (not o null) ts orelse T = dummyT |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
106 |
orelse not (! show_types) andalso can Term.dest_Type T |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
107 |
then raise Match |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
108 |
else Syntax.const Syntax.constrainC $ Syntax.const c $ Syntax.term_of_typ show_sorts T); |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
109 |
in map tr' [@{const_syntax Groups.one}, @{const_syntax Groups.zero}] end; |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
110 |
*} -- {* show types that are presumably too general *} |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
111 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
112 |
class plus = |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
113 |
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
|
114 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
115 |
class minus = |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
116 |
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
|
117 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
118 |
class uminus = |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
119 |
fixes uminus :: "'a \<Rightarrow> 'a" ("- _" [81] 80) |
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 times = |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
122 |
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
|
123 |
|
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
124 |
use "~~/src/Provers/Arith/abel_cancel.ML" |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
125 |
|
35092
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
126 |
|
23085 | 127 |
subsection {* Semigroups and Monoids *} |
14738 | 128 |
|
22390 | 129 |
class semigroup_add = plus + |
34973
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
130 |
assumes add_assoc [algebra_simps]: "(a + b) + c = a + (b + c)" |
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
131 |
|
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
132 |
sublocale semigroup_add < plus!: semigroup plus proof |
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
133 |
qed (fact add_assoc) |
22390 | 134 |
|
135 |
class ab_semigroup_add = semigroup_add + |
|
34973
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
136 |
assumes add_commute [algebra_simps]: "a + b = b + a" |
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
137 |
|
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
138 |
sublocale ab_semigroup_add < plus!: abel_semigroup plus proof |
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
139 |
qed (fact add_commute) |
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
140 |
|
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
141 |
context ab_semigroup_add |
25062 | 142 |
begin |
14738 | 143 |
|
34973
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
144 |
lemmas add_left_commute [algebra_simps] = plus.left_commute |
25062 | 145 |
|
146 |
theorems add_ac = add_assoc add_commute add_left_commute |
|
147 |
||
148 |
end |
|
14738 | 149 |
|
150 |
theorems add_ac = add_assoc add_commute add_left_commute |
|
151 |
||
22390 | 152 |
class semigroup_mult = times + |
34973
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
153 |
assumes mult_assoc [algebra_simps]: "(a * b) * c = a * (b * c)" |
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
154 |
|
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
155 |
sublocale semigroup_mult < times!: semigroup times proof |
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
156 |
qed (fact mult_assoc) |
14738 | 157 |
|
22390 | 158 |
class ab_semigroup_mult = semigroup_mult + |
34973
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
159 |
assumes mult_commute [algebra_simps]: "a * b = b * a" |
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
160 |
|
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
161 |
sublocale ab_semigroup_mult < times!: abel_semigroup times proof |
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
162 |
qed (fact mult_commute) |
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
163 |
|
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
164 |
context ab_semigroup_mult |
23181 | 165 |
begin |
14738 | 166 |
|
34973
ae634fad947e
dropped mk_left_commute; use interpretation of locale abel_semigroup instead
haftmann
parents:
34147
diff
changeset
|
167 |
lemmas mult_left_commute [algebra_simps] = times.left_commute |
25062 | 168 |
|
169 |
theorems mult_ac = mult_assoc mult_commute mult_left_commute |
|
23181 | 170 |
|
171 |
end |
|
14738 | 172 |
|
173 |
theorems mult_ac = mult_assoc mult_commute mult_left_commute |
|
174 |
||
23085 | 175 |
class monoid_add = zero + semigroup_add + |
25062 | 176 |
assumes add_0_left [simp]: "0 + a = a" |
177 |
and add_0_right [simp]: "a + 0 = a" |
|
23085 | 178 |
|
26071 | 179 |
lemma zero_reorient: "0 = x \<longleftrightarrow> x = 0" |
29667 | 180 |
by (rule eq_commute) |
26071 | 181 |
|
22390 | 182 |
class comm_monoid_add = zero + ab_semigroup_add + |
25062 | 183 |
assumes add_0: "0 + a = a" |
184 |
begin |
|
23085 | 185 |
|
25062 | 186 |
subclass monoid_add |
28823 | 187 |
proof qed (insert add_0, simp_all add: add_commute) |
25062 | 188 |
|
189 |
end |
|
14738 | 190 |
|
22390 | 191 |
class monoid_mult = one + semigroup_mult + |
25062 | 192 |
assumes mult_1_left [simp]: "1 * a = a" |
193 |
assumes mult_1_right [simp]: "a * 1 = a" |
|
14738 | 194 |
|
26071 | 195 |
lemma one_reorient: "1 = x \<longleftrightarrow> x = 1" |
29667 | 196 |
by (rule eq_commute) |
26071 | 197 |
|
22390 | 198 |
class comm_monoid_mult = one + ab_semigroup_mult + |
25062 | 199 |
assumes mult_1: "1 * a = a" |
200 |
begin |
|
14738 | 201 |
|
25062 | 202 |
subclass monoid_mult |
28823 | 203 |
proof qed (insert mult_1, simp_all add: mult_commute) |
25062 | 204 |
|
205 |
end |
|
14738 | 206 |
|
22390 | 207 |
class cancel_semigroup_add = semigroup_add + |
25062 | 208 |
assumes add_left_imp_eq: "a + b = a + c \<Longrightarrow> b = c" |
209 |
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
|
210 |
begin |
a89d755b029d
move proofs of add_left_cancel and add_right_cancel into the correct locale
huffman
parents:
27250
diff
changeset
|
211 |
|
a89d755b029d
move proofs of add_left_cancel and add_right_cancel into the correct locale
huffman
parents:
27250
diff
changeset
|
212 |
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
|
213 |
"a + b = a + c \<longleftrightarrow> b = c" |
29667 | 214 |
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
|
215 |
|
a89d755b029d
move proofs of add_left_cancel and add_right_cancel into the correct locale
huffman
parents:
27250
diff
changeset
|
216 |
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
|
217 |
"b + a = c + a \<longleftrightarrow> b = c" |
29667 | 218 |
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
|
219 |
|
a89d755b029d
move proofs of add_left_cancel and add_right_cancel into the correct locale
huffman
parents:
27250
diff
changeset
|
220 |
end |
14738 | 221 |
|
22390 | 222 |
class cancel_ab_semigroup_add = ab_semigroup_add + |
25062 | 223 |
assumes add_imp_eq: "a + b = a + c \<Longrightarrow> b = c" |
25267 | 224 |
begin |
14738 | 225 |
|
25267 | 226 |
subclass cancel_semigroup_add |
28823 | 227 |
proof |
22390 | 228 |
fix a b c :: 'a |
229 |
assume "a + b = a + c" |
|
230 |
then show "b = c" by (rule add_imp_eq) |
|
231 |
next |
|
14738 | 232 |
fix a b c :: 'a |
233 |
assume "b + a = c + a" |
|
22390 | 234 |
then have "a + b = a + c" by (simp only: add_commute) |
235 |
then show "b = c" by (rule add_imp_eq) |
|
14738 | 236 |
qed |
237 |
||
25267 | 238 |
end |
239 |
||
29904 | 240 |
class cancel_comm_monoid_add = cancel_ab_semigroup_add + comm_monoid_add |
241 |
||
242 |
||
23085 | 243 |
subsection {* Groups *} |
244 |
||
25762 | 245 |
class group_add = minus + uminus + monoid_add + |
25062 | 246 |
assumes left_minus [simp]: "- a + a = 0" |
247 |
assumes diff_minus: "a - b = a + (- b)" |
|
248 |
begin |
|
23085 | 249 |
|
34147
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
250 |
lemma minus_unique: |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
251 |
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
|
252 |
proof - |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
253 |
have "- a = - a + (a + b)" using assms by simp |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
254 |
also have "\<dots> = b" by (simp add: add_assoc [symmetric]) |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
255 |
finally show ?thesis . |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
256 |
qed |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
257 |
|
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
258 |
lemmas equals_zero_I = minus_unique (* legacy name *) |
14738 | 259 |
|
25062 | 260 |
lemma minus_zero [simp]: "- 0 = 0" |
14738 | 261 |
proof - |
34147
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
262 |
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
|
263 |
thus "- 0 = 0" by (rule minus_unique) |
14738 | 264 |
qed |
265 |
||
25062 | 266 |
lemma minus_minus [simp]: "- (- a) = a" |
23085 | 267 |
proof - |
34147
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
268 |
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
|
269 |
thus "- (- a) = a" by (rule minus_unique) |
23085 | 270 |
qed |
14738 | 271 |
|
25062 | 272 |
lemma right_minus [simp]: "a + - a = 0" |
14738 | 273 |
proof - |
25062 | 274 |
have "a + - a = - (- a) + - a" by simp |
275 |
also have "\<dots> = 0" by (rule left_minus) |
|
14738 | 276 |
finally show ?thesis . |
277 |
qed |
|
278 |
||
34147
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
279 |
lemma minus_add_cancel: "- a + (a + b) = b" |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
280 |
by (simp add: add_assoc [symmetric]) |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
281 |
|
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
282 |
lemma add_minus_cancel: "a + (- a + b) = b" |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
283 |
by (simp add: add_assoc [symmetric]) |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
284 |
|
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
285 |
lemma minus_add: "- (a + b) = - b + - a" |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
286 |
proof - |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
287 |
have "(a + b) + (- b + - a) = 0" |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
288 |
by (simp add: add_assoc add_minus_cancel) |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
289 |
thus "- (a + b) = - b + - a" |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
290 |
by (rule minus_unique) |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
291 |
qed |
319616f4eecf
generalize lemma add_minus_cancel, add lemma minus_add, simplify some proofs
huffman
parents:
34146
diff
changeset
|
292 |
|
25062 | 293 |
lemma right_minus_eq: "a - b = 0 \<longleftrightarrow> a = b" |
14738 | 294 |
proof |
23085 | 295 |
assume "a - b = 0" |
296 |
have "a = (a - b) + b" by (simp add:diff_minus add_assoc) |
|
297 |
also have "\<dots> = b" using `a - b = 0` by simp |
|
298 |
finally show "a = b" . |
|
14738 | 299 |
next |
23085 | 300 |
assume "a = b" thus "a - b = 0" by (simp add: diff_minus) |
14738 | 301 |
qed |
302 |
||
25062 | 303 |
lemma diff_self [simp]: "a - a = 0" |
29667 | 304 |
by (simp add: diff_minus) |
14738 | 305 |
|
25062 | 306 |
lemma diff_0 [simp]: "0 - a = - a" |
29667 | 307 |
by (simp add: diff_minus) |
14738 | 308 |
|
25062 | 309 |
lemma diff_0_right [simp]: "a - 0 = a" |
29667 | 310 |
by (simp add: diff_minus) |
14738 | 311 |
|
25062 | 312 |
lemma diff_minus_eq_add [simp]: "a - - b = a + b" |
29667 | 313 |
by (simp add: diff_minus) |
14738 | 314 |
|
25062 | 315 |
lemma neg_equal_iff_equal [simp]: |
316 |
"- a = - b \<longleftrightarrow> a = b" |
|
14738 | 317 |
proof |
318 |
assume "- a = - b" |
|
29667 | 319 |
hence "- (- a) = - (- b)" by simp |
25062 | 320 |
thus "a = b" by simp |
14738 | 321 |
next |
25062 | 322 |
assume "a = b" |
323 |
thus "- a = - b" by simp |
|
14738 | 324 |
qed |
325 |
||
25062 | 326 |
lemma neg_equal_0_iff_equal [simp]: |
327 |
"- a = 0 \<longleftrightarrow> a = 0" |
|
29667 | 328 |
by (subst neg_equal_iff_equal [symmetric], simp) |
14738 | 329 |
|
25062 | 330 |
lemma neg_0_equal_iff_equal [simp]: |
331 |
"0 = - a \<longleftrightarrow> 0 = a" |
|
29667 | 332 |
by (subst neg_equal_iff_equal [symmetric], simp) |
14738 | 333 |
|
334 |
text{*The next two equations can make the simplifier loop!*} |
|
335 |
||
25062 | 336 |
lemma equation_minus_iff: |
337 |
"a = - b \<longleftrightarrow> b = - a" |
|
14738 | 338 |
proof - |
25062 | 339 |
have "- (- a) = - b \<longleftrightarrow> - a = b" by (rule neg_equal_iff_equal) |
340 |
thus ?thesis by (simp add: eq_commute) |
|
341 |
qed |
|
342 |
||
343 |
lemma minus_equation_iff: |
|
344 |
"- a = b \<longleftrightarrow> - b = a" |
|
345 |
proof - |
|
346 |
have "- a = - (- b) \<longleftrightarrow> a = -b" by (rule neg_equal_iff_equal) |
|
14738 | 347 |
thus ?thesis by (simp add: eq_commute) |
348 |
qed |
|
349 |
||
28130
32b4185bfdc7
move diff_add_cancel, add_diff_cancel from class ab_group_add to group_add
huffman
parents:
27516
diff
changeset
|
350 |
lemma diff_add_cancel: "a - b + b = a" |
29667 | 351 |
by (simp add: diff_minus add_assoc) |
28130
32b4185bfdc7
move diff_add_cancel, add_diff_cancel from class ab_group_add to group_add
huffman
parents:
27516
diff
changeset
|
352 |
|
32b4185bfdc7
move diff_add_cancel, add_diff_cancel from class ab_group_add to group_add
huffman
parents:
27516
diff
changeset
|
353 |
lemma add_diff_cancel: "a + b - b = a" |
29667 | 354 |
by (simp add: diff_minus add_assoc) |
355 |
||
356 |
declare diff_minus[symmetric, algebra_simps] |
|
28130
32b4185bfdc7
move diff_add_cancel, add_diff_cancel from class ab_group_add to group_add
huffman
parents:
27516
diff
changeset
|
357 |
|
29914
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
358 |
lemma eq_neg_iff_add_eq_0: "a = - b \<longleftrightarrow> a + b = 0" |
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
359 |
proof |
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
360 |
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
|
361 |
next |
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
362 |
assume "a + b = 0" |
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
363 |
moreover have "a + (b + - b) = (a + b) + - b" |
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
364 |
by (simp only: add_assoc) |
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
365 |
ultimately show "a = - b" by simp |
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
366 |
qed |
c9ced4f54e82
generalize lemma eq_neg_iff_add_eq_0, and move to OrderedGroup
huffman
parents:
29904
diff
changeset
|
367 |
|
25062 | 368 |
end |
369 |
||
25762 | 370 |
class ab_group_add = minus + uminus + comm_monoid_add + |
25062 | 371 |
assumes ab_left_minus: "- a + a = 0" |
372 |
assumes ab_diff_minus: "a - b = a + (- b)" |
|
25267 | 373 |
begin |
25062 | 374 |
|
25267 | 375 |
subclass group_add |
28823 | 376 |
proof qed (simp_all add: ab_left_minus ab_diff_minus) |
25062 | 377 |
|
29904 | 378 |
subclass cancel_comm_monoid_add |
28823 | 379 |
proof |
25062 | 380 |
fix a b c :: 'a |
381 |
assume "a + b = a + c" |
|
382 |
then have "- a + a + b = - a + a + c" |
|
383 |
unfolding add_assoc by simp |
|
384 |
then show "b = c" by simp |
|
385 |
qed |
|
386 |
||
29667 | 387 |
lemma uminus_add_conv_diff[algebra_simps]: |
25062 | 388 |
"- a + b = b - a" |
29667 | 389 |
by (simp add:diff_minus add_commute) |
25062 | 390 |
|
391 |
lemma minus_add_distrib [simp]: |
|
392 |
"- (a + b) = - a + - b" |
|
34146
14595e0c27e8
rename equals_zero_I to minus_unique (keep old name too)
huffman
parents:
33364
diff
changeset
|
393 |
by (rule minus_unique) (simp add: add_ac) |
25062 | 394 |
|
395 |
lemma minus_diff_eq [simp]: |
|
396 |
"- (a - b) = b - a" |
|
29667 | 397 |
by (simp add: diff_minus add_commute) |
25077 | 398 |
|
29667 | 399 |
lemma add_diff_eq[algebra_simps]: "a + (b - c) = (a + b) - c" |
400 |
by (simp add: diff_minus add_ac) |
|
25077 | 401 |
|
29667 | 402 |
lemma diff_add_eq[algebra_simps]: "(a - b) + c = (a + c) - b" |
403 |
by (simp add: diff_minus add_ac) |
|
25077 | 404 |
|
29667 | 405 |
lemma diff_eq_eq[algebra_simps]: "a - b = c \<longleftrightarrow> a = c + b" |
406 |
by (auto simp add: diff_minus add_assoc) |
|
25077 | 407 |
|
29667 | 408 |
lemma eq_diff_eq[algebra_simps]: "a = c - b \<longleftrightarrow> a + b = c" |
409 |
by (auto simp add: diff_minus add_assoc) |
|
25077 | 410 |
|
29667 | 411 |
lemma diff_diff_eq[algebra_simps]: "(a - b) - c = a - (b + c)" |
412 |
by (simp add: diff_minus add_ac) |
|
25077 | 413 |
|
29667 | 414 |
lemma diff_diff_eq2[algebra_simps]: "a - (b - c) = (a + c) - b" |
415 |
by (simp add: diff_minus add_ac) |
|
25077 | 416 |
|
417 |
lemma eq_iff_diff_eq_0: "a = b \<longleftrightarrow> a - b = 0" |
|
29667 | 418 |
by (simp add: algebra_simps) |
25077 | 419 |
|
35216 | 420 |
(* FIXME: duplicates right_minus_eq from class group_add *) |
421 |
(* but only this one is declared as a simp rule. *) |
|
30629 | 422 |
lemma diff_eq_0_iff_eq [simp, noatp]: "a - b = 0 \<longleftrightarrow> a = b" |
423 |
by (simp add: algebra_simps) |
|
424 |
||
25062 | 425 |
end |
14738 | 426 |
|
427 |
subsection {* (Partially) Ordered Groups *} |
|
428 |
||
35301
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
429 |
text {* |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
430 |
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
|
431 |
\begin{itemize} |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
432 |
\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
|
433 |
\item \emph{Partially Ordered Algebraic Systems}, Pergamon Press 1963 |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
434 |
\end{itemize} |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
435 |
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
|
436 |
\begin{itemize} |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
437 |
\item \url{http://www.mathworld.com} by Eric Weisstein et. al. |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
438 |
\item \emph{Algebra I} by van der Waerden, Springer. |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
439 |
\end{itemize} |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
440 |
*} |
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
haftmann
parents:
35267
diff
changeset
|
441 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
442 |
class ordered_ab_semigroup_add = order + ab_semigroup_add + |
25062 | 443 |
assumes add_left_mono: "a \<le> b \<Longrightarrow> c + a \<le> c + b" |
444 |
begin |
|
24380
c215e256beca
moved ordered_ab_semigroup_add to OrderedGroup.thy
haftmann
parents:
24286
diff
changeset
|
445 |
|
25062 | 446 |
lemma add_right_mono: |
447 |
"a \<le> b \<Longrightarrow> a + c \<le> b + c" |
|
29667 | 448 |
by (simp add: add_commute [of _ c] add_left_mono) |
14738 | 449 |
|
450 |
text {* non-strict, in both arguments *} |
|
451 |
lemma add_mono: |
|
25062 | 452 |
"a \<le> b \<Longrightarrow> c \<le> d \<Longrightarrow> a + c \<le> b + d" |
14738 | 453 |
apply (erule add_right_mono [THEN order_trans]) |
454 |
apply (simp add: add_commute add_left_mono) |
|
455 |
done |
|
456 |
||
25062 | 457 |
end |
458 |
||
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
459 |
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
|
460 |
ordered_ab_semigroup_add + cancel_ab_semigroup_add |
25062 | 461 |
begin |
462 |
||
14738 | 463 |
lemma add_strict_left_mono: |
25062 | 464 |
"a < b \<Longrightarrow> c + a < c + b" |
29667 | 465 |
by (auto simp add: less_le add_left_mono) |
14738 | 466 |
|
467 |
lemma add_strict_right_mono: |
|
25062 | 468 |
"a < b \<Longrightarrow> a + c < b + c" |
29667 | 469 |
by (simp add: add_commute [of _ c] add_strict_left_mono) |
14738 | 470 |
|
471 |
text{*Strict monotonicity in both arguments*} |
|
25062 | 472 |
lemma add_strict_mono: |
473 |
"a < b \<Longrightarrow> c < d \<Longrightarrow> a + c < b + d" |
|
474 |
apply (erule add_strict_right_mono [THEN less_trans]) |
|
14738 | 475 |
apply (erule add_strict_left_mono) |
476 |
done |
|
477 |
||
478 |
lemma add_less_le_mono: |
|
25062 | 479 |
"a < b \<Longrightarrow> c \<le> d \<Longrightarrow> a + c < b + d" |
480 |
apply (erule add_strict_right_mono [THEN less_le_trans]) |
|
481 |
apply (erule add_left_mono) |
|
14738 | 482 |
done |
483 |
||
484 |
lemma add_le_less_mono: |
|
25062 | 485 |
"a \<le> b \<Longrightarrow> c < d \<Longrightarrow> a + c < b + d" |
486 |
apply (erule add_right_mono [THEN le_less_trans]) |
|
14738 | 487 |
apply (erule add_strict_left_mono) |
488 |
done |
|
489 |
||
25062 | 490 |
end |
491 |
||
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
492 |
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
|
493 |
ordered_cancel_ab_semigroup_add + |
25062 | 494 |
assumes add_le_imp_le_left: "c + a \<le> c + b \<Longrightarrow> a \<le> b" |
495 |
begin |
|
496 |
||
14738 | 497 |
lemma add_less_imp_less_left: |
29667 | 498 |
assumes less: "c + a < c + b" shows "a < b" |
14738 | 499 |
proof - |
500 |
from less have le: "c + a <= c + b" by (simp add: order_le_less) |
|
501 |
have "a <= b" |
|
502 |
apply (insert le) |
|
503 |
apply (drule add_le_imp_le_left) |
|
504 |
by (insert le, drule add_le_imp_le_left, assumption) |
|
505 |
moreover have "a \<noteq> b" |
|
506 |
proof (rule ccontr) |
|
507 |
assume "~(a \<noteq> b)" |
|
508 |
then have "a = b" by simp |
|
509 |
then have "c + a = c + b" by simp |
|
510 |
with less show "False"by simp |
|
511 |
qed |
|
512 |
ultimately show "a < b" by (simp add: order_le_less) |
|
513 |
qed |
|
514 |
||
515 |
lemma add_less_imp_less_right: |
|
25062 | 516 |
"a + c < b + c \<Longrightarrow> a < b" |
14738 | 517 |
apply (rule add_less_imp_less_left [of c]) |
518 |
apply (simp add: add_commute) |
|
519 |
done |
|
520 |
||
521 |
lemma add_less_cancel_left [simp]: |
|
25062 | 522 |
"c + a < c + b \<longleftrightarrow> a < b" |
29667 | 523 |
by (blast intro: add_less_imp_less_left add_strict_left_mono) |
14738 | 524 |
|
525 |
lemma add_less_cancel_right [simp]: |
|
25062 | 526 |
"a + c < b + c \<longleftrightarrow> a < b" |
29667 | 527 |
by (blast intro: add_less_imp_less_right add_strict_right_mono) |
14738 | 528 |
|
529 |
lemma add_le_cancel_left [simp]: |
|
25062 | 530 |
"c + a \<le> c + b \<longleftrightarrow> a \<le> b" |
29667 | 531 |
by (auto, drule add_le_imp_le_left, simp_all add: add_left_mono) |
14738 | 532 |
|
533 |
lemma add_le_cancel_right [simp]: |
|
25062 | 534 |
"a + c \<le> b + c \<longleftrightarrow> a \<le> b" |
29667 | 535 |
by (simp add: add_commute [of a c] add_commute [of b c]) |
14738 | 536 |
|
537 |
lemma add_le_imp_le_right: |
|
25062 | 538 |
"a + c \<le> b + c \<Longrightarrow> a \<le> b" |
29667 | 539 |
by simp |
25062 | 540 |
|
25077 | 541 |
lemma max_add_distrib_left: |
542 |
"max x y + z = max (x + z) (y + z)" |
|
543 |
unfolding max_def by auto |
|
544 |
||
545 |
lemma min_add_distrib_left: |
|
546 |
"min x y + z = min (x + z) (y + z)" |
|
547 |
unfolding min_def by auto |
|
548 |
||
25062 | 549 |
end |
550 |
||
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
551 |
subsection {* Support for reasoning about signs *} |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
552 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
553 |
class ordered_comm_monoid_add = |
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
554 |
ordered_cancel_ab_semigroup_add + comm_monoid_add |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
555 |
begin |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
556 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
557 |
lemma add_pos_nonneg: |
29667 | 558 |
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
|
559 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
560 |
have "0 + 0 < a + b" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
561 |
using assms by (rule add_less_le_mono) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
562 |
then show ?thesis by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
563 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
564 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
565 |
lemma add_pos_pos: |
29667 | 566 |
assumes "0 < a" and "0 < b" shows "0 < a + b" |
567 |
by (rule add_pos_nonneg) (insert assms, auto) |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
568 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
569 |
lemma add_nonneg_pos: |
29667 | 570 |
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
|
571 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
572 |
have "0 + 0 < a + b" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
573 |
using assms by (rule add_le_less_mono) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
574 |
then show ?thesis by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
575 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
576 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
577 |
lemma add_nonneg_nonneg: |
29667 | 578 |
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
|
579 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
580 |
have "0 + 0 \<le> a + b" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
581 |
using assms by (rule add_mono) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
582 |
then show ?thesis by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
583 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
584 |
|
30691 | 585 |
lemma add_neg_nonpos: |
29667 | 586 |
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
|
587 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
588 |
have "a + b < 0 + 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
589 |
using assms by (rule add_less_le_mono) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
590 |
then show ?thesis by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
591 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
592 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
593 |
lemma add_neg_neg: |
29667 | 594 |
assumes "a < 0" and "b < 0" shows "a + b < 0" |
595 |
by (rule add_neg_nonpos) (insert assms, auto) |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
596 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
597 |
lemma add_nonpos_neg: |
29667 | 598 |
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
|
599 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
600 |
have "a + b < 0 + 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
601 |
using assms by (rule add_le_less_mono) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
602 |
then show ?thesis by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
603 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
604 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
605 |
lemma add_nonpos_nonpos: |
29667 | 606 |
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
|
607 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
608 |
have "a + b \<le> 0 + 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
609 |
using assms by (rule add_mono) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
610 |
then show ?thesis by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
611 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
612 |
|
30691 | 613 |
lemmas add_sign_intros = |
614 |
add_pos_nonneg add_pos_pos add_nonneg_pos add_nonneg_nonneg |
|
615 |
add_neg_nonpos add_neg_neg add_nonpos_neg add_nonpos_nonpos |
|
616 |
||
29886 | 617 |
lemma add_nonneg_eq_0_iff: |
618 |
assumes x: "0 \<le> x" and y: "0 \<le> y" |
|
619 |
shows "x + y = 0 \<longleftrightarrow> x = 0 \<and> y = 0" |
|
620 |
proof (intro iffI conjI) |
|
621 |
have "x = x + 0" by simp |
|
622 |
also have "x + 0 \<le> x + y" using y by (rule add_left_mono) |
|
623 |
also assume "x + y = 0" |
|
624 |
also have "0 \<le> x" using x . |
|
625 |
finally show "x = 0" . |
|
626 |
next |
|
627 |
have "y = 0 + y" by simp |
|
628 |
also have "0 + y \<le> x + y" using x by (rule add_right_mono) |
|
629 |
also assume "x + y = 0" |
|
630 |
also have "0 \<le> y" using y . |
|
631 |
finally show "y = 0" . |
|
632 |
next |
|
633 |
assume "x = 0 \<and> y = 0" |
|
634 |
then show "x + y = 0" by simp |
|
635 |
qed |
|
636 |
||
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
637 |
end |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
638 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
639 |
class ordered_ab_group_add = |
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
640 |
ab_group_add + ordered_ab_semigroup_add |
25062 | 641 |
begin |
642 |
||
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
643 |
subclass ordered_cancel_ab_semigroup_add .. |
25062 | 644 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
645 |
subclass ordered_ab_semigroup_add_imp_le |
28823 | 646 |
proof |
25062 | 647 |
fix a b c :: 'a |
648 |
assume "c + a \<le> c + b" |
|
649 |
hence "(-c) + (c + a) \<le> (-c) + (c + b)" by (rule add_left_mono) |
|
650 |
hence "((-c) + c) + a \<le> ((-c) + c) + b" by (simp only: add_assoc) |
|
651 |
thus "a \<le> b" by simp |
|
652 |
qed |
|
653 |
||
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
654 |
subclass ordered_comm_monoid_add .. |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
655 |
|
25077 | 656 |
lemma max_diff_distrib_left: |
657 |
shows "max x y - z = max (x - z) (y - z)" |
|
29667 | 658 |
by (simp add: diff_minus, rule max_add_distrib_left) |
25077 | 659 |
|
660 |
lemma min_diff_distrib_left: |
|
661 |
shows "min x y - z = min (x - z) (y - z)" |
|
29667 | 662 |
by (simp add: diff_minus, rule min_add_distrib_left) |
25077 | 663 |
|
664 |
lemma le_imp_neg_le: |
|
29667 | 665 |
assumes "a \<le> b" shows "-b \<le> -a" |
25077 | 666 |
proof - |
29667 | 667 |
have "-a+a \<le> -a+b" using `a \<le> b` by (rule add_left_mono) |
668 |
hence "0 \<le> -a+b" by simp |
|
669 |
hence "0 + (-b) \<le> (-a + b) + (-b)" by (rule add_right_mono) |
|
670 |
thus ?thesis by (simp add: add_assoc) |
|
25077 | 671 |
qed |
672 |
||
673 |
lemma neg_le_iff_le [simp]: "- b \<le> - a \<longleftrightarrow> a \<le> b" |
|
674 |
proof |
|
675 |
assume "- b \<le> - a" |
|
29667 | 676 |
hence "- (- a) \<le> - (- b)" by (rule le_imp_neg_le) |
25077 | 677 |
thus "a\<le>b" by simp |
678 |
next |
|
679 |
assume "a\<le>b" |
|
680 |
thus "-b \<le> -a" by (rule le_imp_neg_le) |
|
681 |
qed |
|
682 |
||
683 |
lemma neg_le_0_iff_le [simp]: "- a \<le> 0 \<longleftrightarrow> 0 \<le> a" |
|
29667 | 684 |
by (subst neg_le_iff_le [symmetric], simp) |
25077 | 685 |
|
686 |
lemma neg_0_le_iff_le [simp]: "0 \<le> - a \<longleftrightarrow> a \<le> 0" |
|
29667 | 687 |
by (subst neg_le_iff_le [symmetric], simp) |
25077 | 688 |
|
689 |
lemma neg_less_iff_less [simp]: "- b < - a \<longleftrightarrow> a < b" |
|
29667 | 690 |
by (force simp add: less_le) |
25077 | 691 |
|
692 |
lemma neg_less_0_iff_less [simp]: "- a < 0 \<longleftrightarrow> 0 < a" |
|
29667 | 693 |
by (subst neg_less_iff_less [symmetric], simp) |
25077 | 694 |
|
695 |
lemma neg_0_less_iff_less [simp]: "0 < - a \<longleftrightarrow> a < 0" |
|
29667 | 696 |
by (subst neg_less_iff_less [symmetric], simp) |
25077 | 697 |
|
698 |
text{*The next several equations can make the simplifier loop!*} |
|
699 |
||
700 |
lemma less_minus_iff: "a < - b \<longleftrightarrow> b < - a" |
|
701 |
proof - |
|
702 |
have "(- (-a) < - b) = (b < - a)" by (rule neg_less_iff_less) |
|
703 |
thus ?thesis by simp |
|
704 |
qed |
|
705 |
||
706 |
lemma minus_less_iff: "- a < b \<longleftrightarrow> - b < a" |
|
707 |
proof - |
|
708 |
have "(- a < - (-b)) = (- b < a)" by (rule neg_less_iff_less) |
|
709 |
thus ?thesis by simp |
|
710 |
qed |
|
711 |
||
712 |
lemma le_minus_iff: "a \<le> - b \<longleftrightarrow> b \<le> - a" |
|
713 |
proof - |
|
714 |
have mm: "!! a (b::'a). (-(-a)) < -b \<Longrightarrow> -(-b) < -a" by (simp only: minus_less_iff) |
|
715 |
have "(- (- a) <= -b) = (b <= - a)" |
|
716 |
apply (auto simp only: le_less) |
|
717 |
apply (drule mm) |
|
718 |
apply (simp_all) |
|
719 |
apply (drule mm[simplified], assumption) |
|
720 |
done |
|
721 |
then show ?thesis by simp |
|
722 |
qed |
|
723 |
||
724 |
lemma minus_le_iff: "- a \<le> b \<longleftrightarrow> - b \<le> a" |
|
29667 | 725 |
by (auto simp add: le_less minus_less_iff) |
25077 | 726 |
|
727 |
lemma less_iff_diff_less_0: "a < b \<longleftrightarrow> a - b < 0" |
|
728 |
proof - |
|
729 |
have "(a < b) = (a + (- b) < b + (-b))" |
|
730 |
by (simp only: add_less_cancel_right) |
|
731 |
also have "... = (a - b < 0)" by (simp add: diff_minus) |
|
732 |
finally show ?thesis . |
|
733 |
qed |
|
734 |
||
29667 | 735 |
lemma diff_less_eq[algebra_simps]: "a - b < c \<longleftrightarrow> a < c + b" |
25077 | 736 |
apply (subst less_iff_diff_less_0 [of a]) |
737 |
apply (rule less_iff_diff_less_0 [of _ c, THEN ssubst]) |
|
738 |
apply (simp add: diff_minus add_ac) |
|
739 |
done |
|
740 |
||
29667 | 741 |
lemma less_diff_eq[algebra_simps]: "a < c - b \<longleftrightarrow> a + b < c" |
25077 | 742 |
apply (subst less_iff_diff_less_0 [of "plus a b"]) |
743 |
apply (subst less_iff_diff_less_0 [of a]) |
|
744 |
apply (simp add: diff_minus add_ac) |
|
745 |
done |
|
746 |
||
29667 | 747 |
lemma diff_le_eq[algebra_simps]: "a - b \<le> c \<longleftrightarrow> a \<le> c + b" |
748 |
by (auto simp add: le_less diff_less_eq diff_add_cancel add_diff_cancel) |
|
25077 | 749 |
|
29667 | 750 |
lemma le_diff_eq[algebra_simps]: "a \<le> c - b \<longleftrightarrow> a + b \<le> c" |
751 |
by (auto simp add: le_less less_diff_eq diff_add_cancel add_diff_cancel) |
|
25077 | 752 |
|
753 |
lemma le_iff_diff_le_0: "a \<le> b \<longleftrightarrow> a - b \<le> 0" |
|
29667 | 754 |
by (simp add: algebra_simps) |
25077 | 755 |
|
29667 | 756 |
text{*Legacy - use @{text algebra_simps} *} |
29833 | 757 |
lemmas group_simps[noatp] = algebra_simps |
25230 | 758 |
|
25077 | 759 |
end |
760 |
||
29667 | 761 |
text{*Legacy - use @{text algebra_simps} *} |
29833 | 762 |
lemmas group_simps[noatp] = algebra_simps |
25230 | 763 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
764 |
class linordered_ab_semigroup_add = |
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
765 |
linorder + ordered_ab_semigroup_add |
25062 | 766 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
767 |
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
|
768 |
linorder + ordered_cancel_ab_semigroup_add |
25267 | 769 |
begin |
25062 | 770 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
771 |
subclass linordered_ab_semigroup_add .. |
25062 | 772 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
773 |
subclass ordered_ab_semigroup_add_imp_le |
28823 | 774 |
proof |
25062 | 775 |
fix a b c :: 'a |
776 |
assume le: "c + a <= c + b" |
|
777 |
show "a <= b" |
|
778 |
proof (rule ccontr) |
|
779 |
assume w: "~ a \<le> b" |
|
780 |
hence "b <= a" by (simp add: linorder_not_le) |
|
781 |
hence le2: "c + b <= c + a" by (rule add_left_mono) |
|
782 |
have "a = b" |
|
783 |
apply (insert le) |
|
784 |
apply (insert le2) |
|
785 |
apply (drule antisym, simp_all) |
|
786 |
done |
|
787 |
with w show False |
|
788 |
by (simp add: linorder_not_le [symmetric]) |
|
789 |
qed |
|
790 |
qed |
|
791 |
||
25267 | 792 |
end |
793 |
||
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
794 |
class linordered_ab_group_add = linorder + ordered_ab_group_add |
25267 | 795 |
begin |
25230 | 796 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
797 |
subclass linordered_cancel_ab_semigroup_add .. |
25230 | 798 |
|
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
799 |
lemma neg_less_eq_nonneg [simp]: |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
800 |
"- a \<le> a \<longleftrightarrow> 0 \<le> a" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
801 |
proof |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
802 |
assume A: "- a \<le> a" show "0 \<le> a" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
803 |
proof (rule classical) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
804 |
assume "\<not> 0 \<le> a" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
805 |
then have "a < 0" by auto |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
806 |
with A have "- a < 0" by (rule le_less_trans) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
807 |
then show ?thesis by auto |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
808 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
809 |
next |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
810 |
assume A: "0 \<le> a" show "- a \<le> a" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
811 |
proof (rule order_trans) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
812 |
show "- a \<le> 0" using A by (simp add: minus_le_iff) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
813 |
next |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
814 |
show "0 \<le> a" using A . |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
815 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
816 |
qed |
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
817 |
|
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
818 |
lemma neg_less_nonneg [simp]: |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
819 |
"- 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
|
820 |
proof |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
821 |
assume A: "- a < a" show "0 < a" |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
822 |
proof (rule classical) |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
823 |
assume "\<not> 0 < a" |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
824 |
then have "a \<le> 0" by auto |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
825 |
with A have "- a < 0" by (rule less_le_trans) |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
826 |
then show ?thesis by auto |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
827 |
qed |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
828 |
next |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
829 |
assume A: "0 < a" show "- a < a" |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
830 |
proof (rule less_trans) |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
831 |
show "- a < 0" using A by (simp add: minus_le_iff) |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
832 |
next |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
833 |
show "0 < a" using A . |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
834 |
qed |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
835 |
qed |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
836 |
|
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
837 |
lemma less_eq_neg_nonpos [simp]: |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
838 |
"a \<le> - a \<longleftrightarrow> a \<le> 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
839 |
proof |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
840 |
assume A: "a \<le> - a" show "a \<le> 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
841 |
proof (rule classical) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
842 |
assume "\<not> a \<le> 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
843 |
then have "0 < a" by auto |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
844 |
then have "0 < - a" using A by (rule less_le_trans) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
845 |
then show ?thesis by auto |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
846 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
847 |
next |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
848 |
assume A: "a \<le> 0" show "a \<le> - a" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
849 |
proof (rule order_trans) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
850 |
show "0 \<le> - a" using A by (simp add: minus_le_iff) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
851 |
next |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
852 |
show "a \<le> 0" using A . |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
853 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
854 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
855 |
|
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
856 |
lemma equal_neg_zero [simp]: |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
857 |
"a = - a \<longleftrightarrow> a = 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
858 |
proof |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
859 |
assume "a = 0" then show "a = - a" by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
860 |
next |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
861 |
assume A: "a = - a" show "a = 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
862 |
proof (cases "0 \<le> a") |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
863 |
case True with A have "0 \<le> - a" by auto |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
864 |
with le_minus_iff have "a \<le> 0" by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
865 |
with True show ?thesis by (auto intro: order_trans) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
866 |
next |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
867 |
case False then have B: "a \<le> 0" by auto |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
868 |
with A have "- a \<le> 0" by auto |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
869 |
with B show ?thesis by (auto intro: order_trans) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
870 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
871 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
872 |
|
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
873 |
lemma neg_equal_zero [simp]: |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
874 |
"- 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
|
875 |
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
|
876 |
|
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
877 |
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
|
878 |
"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
|
879 |
proof |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
880 |
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
|
881 |
then have a: "- a = a" by (rule minus_unique) |
35216 | 882 |
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
|
883 |
qed simp |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
884 |
|
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
885 |
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
|
886 |
"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
|
887 |
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
|
888 |
|
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
889 |
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
|
890 |
"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
|
891 |
proof |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
892 |
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
|
893 |
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
|
894 |
then have "- a < a" by simp |
35216 | 895 |
then show "0 < a" by (simp only: neg_less_nonneg) |
35036
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
896 |
next |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
897 |
assume "0 < a" |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
898 |
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
|
899 |
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
|
900 |
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
|
901 |
qed |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
902 |
|
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
903 |
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
|
904 |
"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
|
905 |
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
|
906 |
|
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
907 |
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
|
908 |
"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
|
909 |
proof - |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
910 |
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
|
911 |
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
|
912 |
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
|
913 |
qed |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
914 |
|
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
915 |
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
|
916 |
"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
|
917 |
proof - |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
918 |
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
|
919 |
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
|
920 |
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
|
921 |
qed |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
922 |
|
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
923 |
lemma le_minus_self_iff: |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
924 |
"a \<le> - a \<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
|
925 |
proof - |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
926 |
from add_le_cancel_left [of "- a" "a + a" 0] |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
927 |
have "a \<le> - a \<longleftrightarrow> a + a \<le> 0" |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
928 |
by (simp add: add_assoc [symmetric]) |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
929 |
thus ?thesis by simp |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
930 |
qed |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
931 |
|
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
932 |
lemma minus_le_self_iff: |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
933 |
"- a \<le> 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
|
934 |
proof - |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
935 |
from add_le_cancel_left [of "- a" 0 "a + a"] |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
936 |
have "- a \<le> a \<longleftrightarrow> 0 \<le> a + a" |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
937 |
by (simp add: add_assoc [symmetric]) |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
938 |
thus ?thesis by simp |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
939 |
qed |
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
940 |
|
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
941 |
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
|
942 |
"- 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
|
943 |
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
|
944 |
|
b8c8d01cc20d
separate library theory for type classes combining lattices with various algebraic structures; more simp rules
haftmann
parents:
35028
diff
changeset
|
945 |
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
|
946 |
"- 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
|
947 |
by (auto simp add: max_def min_def) |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
948 |
|
25267 | 949 |
end |
950 |
||
25077 | 951 |
-- {* FIXME localize the following *} |
14738 | 952 |
|
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
953 |
lemma add_increasing: |
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
954 |
fixes c :: "'a::{ordered_ab_semigroup_add_imp_le, comm_monoid_add}" |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
955 |
shows "[|0\<le>a; b\<le>c|] ==> b \<le> a + c" |
14738 | 956 |
by (insert add_mono [of 0 a b c], simp) |
957 |
||
15539 | 958 |
lemma add_increasing2: |
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
959 |
fixes c :: "'a::{ordered_ab_semigroup_add_imp_le, comm_monoid_add}" |
15539 | 960 |
shows "[|0\<le>c; b\<le>a|] ==> b \<le> a + c" |
961 |
by (simp add:add_increasing add_commute[of a]) |
|
962 |
||
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
963 |
lemma add_strict_increasing: |
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
964 |
fixes c :: "'a::{ordered_ab_semigroup_add_imp_le, comm_monoid_add}" |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
965 |
shows "[|0<a; b\<le>c|] ==> b < a + c" |
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
966 |
by (insert add_less_le_mono [of 0 a b c], simp) |
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
967 |
|
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
968 |
lemma add_strict_increasing2: |
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
969 |
fixes c :: "'a::{ordered_ab_semigroup_add_imp_le, comm_monoid_add}" |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
970 |
shows "[|0\<le>a; b<c|] ==> b < a + c" |
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
971 |
by (insert add_le_less_mono [of 0 a b c], simp) |
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15229
diff
changeset
|
972 |
|
35092
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
973 |
class abs = |
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
974 |
fixes abs :: "'a \<Rightarrow> 'a" |
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
975 |
begin |
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
976 |
|
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
977 |
notation (xsymbols) |
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
978 |
abs ("\<bar>_\<bar>") |
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
979 |
|
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
980 |
notation (HTML output) |
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
981 |
abs ("\<bar>_\<bar>") |
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
982 |
|
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
983 |
end |
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
984 |
|
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
985 |
class sgn = |
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
986 |
fixes sgn :: "'a \<Rightarrow> 'a" |
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
987 |
|
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
988 |
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
|
989 |
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
|
990 |
|
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
991 |
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
|
992 |
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
|
993 |
begin |
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
994 |
|
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
995 |
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
|
996 |
by (simp add:sgn_if) |
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
997 |
|
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents:
35050
diff
changeset
|
998 |
end |
14738 | 999 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1000 |
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
|
1001 |
assumes abs_ge_zero [simp]: "\<bar>a\<bar> \<ge> 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1002 |
and abs_ge_self: "a \<le> \<bar>a\<bar>" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1003 |
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
|
1004 |
and abs_minus_cancel [simp]: "\<bar>-a\<bar> = \<bar>a\<bar>" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1005 |
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
|
1006 |
begin |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1007 |
|
25307 | 1008 |
lemma abs_minus_le_zero: "- \<bar>a\<bar> \<le> 0" |
1009 |
unfolding neg_le_0_iff_le by simp |
|
1010 |
||
1011 |
lemma abs_of_nonneg [simp]: |
|
29667 | 1012 |
assumes nonneg: "0 \<le> a" shows "\<bar>a\<bar> = a" |
25307 | 1013 |
proof (rule antisym) |
1014 |
from nonneg le_imp_neg_le have "- a \<le> 0" by simp |
|
1015 |
from this nonneg have "- a \<le> a" by (rule order_trans) |
|
1016 |
then show "\<bar>a\<bar> \<le> a" by (auto intro: abs_leI) |
|
1017 |
qed (rule abs_ge_self) |
|
1018 |
||
1019 |
lemma abs_idempotent [simp]: "\<bar>\<bar>a\<bar>\<bar> = \<bar>a\<bar>" |
|
29667 | 1020 |
by (rule antisym) |
1021 |
(auto intro!: abs_ge_self abs_leI order_trans [of "uminus (abs a)" zero "abs a"]) |
|
25307 | 1022 |
|
1023 |
lemma abs_eq_0 [simp]: "\<bar>a\<bar> = 0 \<longleftrightarrow> a = 0" |
|
1024 |
proof - |
|
1025 |
have "\<bar>a\<bar> = 0 \<Longrightarrow> a = 0" |
|
1026 |
proof (rule antisym) |
|
1027 |
assume zero: "\<bar>a\<bar> = 0" |
|
1028 |
with abs_ge_self show "a \<le> 0" by auto |
|
1029 |
from zero have "\<bar>-a\<bar> = 0" by simp |
|
1030 |
with abs_ge_self [of "uminus a"] have "- a \<le> 0" by auto |
|
1031 |
with neg_le_0_iff_le show "0 \<le> a" by auto |
|
1032 |
qed |
|
1033 |
then show ?thesis by auto |
|
1034 |
qed |
|
1035 |
||
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1036 |
lemma abs_zero [simp]: "\<bar>0\<bar> = 0" |
29667 | 1037 |
by simp |
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1038 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1039 |
lemma abs_0_eq [simp, noatp]: "0 = \<bar>a\<bar> \<longleftrightarrow> a = 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1040 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1041 |
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
|
1042 |
thus ?thesis by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1043 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1044 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1045 |
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
|
1046 |
proof |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1047 |
assume "\<bar>a\<bar> \<le> 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1048 |
then have "\<bar>a\<bar> = 0" by (rule antisym) simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1049 |
thus "a = 0" by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1050 |
next |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1051 |
assume "a = 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1052 |
thus "\<bar>a\<bar> \<le> 0" by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1053 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1054 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1055 |
lemma zero_less_abs_iff [simp]: "0 < \<bar>a\<bar> \<longleftrightarrow> a \<noteq> 0" |
29667 | 1056 |
by (simp add: less_le) |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1057 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1058 |
lemma abs_not_less_zero [simp]: "\<not> \<bar>a\<bar> < 0" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1059 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1060 |
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
|
1061 |
show ?thesis by (simp add: a) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1062 |
qed |
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1063 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1064 |
lemma abs_ge_minus_self: "- a \<le> \<bar>a\<bar>" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1065 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1066 |
have "- a \<le> \<bar>-a\<bar>" by (rule abs_ge_self) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1067 |
then show ?thesis by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1068 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1069 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1070 |
lemma abs_minus_commute: |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1071 |
"\<bar>a - b\<bar> = \<bar>b - a\<bar>" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1072 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1073 |
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
|
1074 |
also have "... = \<bar>b - a\<bar>" by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1075 |
finally show ?thesis . |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1076 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1077 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1078 |
lemma abs_of_pos: "0 < a \<Longrightarrow> \<bar>a\<bar> = a" |
29667 | 1079 |
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
|
1080 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1081 |
lemma abs_of_nonpos [simp]: |
29667 | 1082 |
assumes "a \<le> 0" shows "\<bar>a\<bar> = - a" |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1083 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1084 |
let ?b = "- a" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1085 |
have "- ?b \<le> 0 \<Longrightarrow> \<bar>- ?b\<bar> = - (- ?b)" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1086 |
unfolding abs_minus_cancel [of "?b"] |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1087 |
unfolding neg_le_0_iff_le [of "?b"] |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1088 |
unfolding minus_minus by (erule abs_of_nonneg) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1089 |
then show ?thesis using assms by auto |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1090 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1091 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1092 |
lemma abs_of_neg: "a < 0 \<Longrightarrow> \<bar>a\<bar> = - a" |
29667 | 1093 |
by (rule abs_of_nonpos, rule less_imp_le) |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1094 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1095 |
lemma abs_le_D1: "\<bar>a\<bar> \<le> b \<Longrightarrow> a \<le> b" |
29667 | 1096 |
by (insert abs_ge_self, blast intro: order_trans) |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1097 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1098 |
lemma abs_le_D2: "\<bar>a\<bar> \<le> b \<Longrightarrow> - a \<le> b" |
29667 | 1099 |
by (insert abs_le_D1 [of "uminus a"], simp) |
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1100 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1101 |
lemma abs_le_iff: "\<bar>a\<bar> \<le> b \<longleftrightarrow> a \<le> b \<and> - a \<le> b" |
29667 | 1102 |
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
|
1103 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1104 |
lemma abs_triangle_ineq2: "\<bar>a\<bar> - \<bar>b\<bar> \<le> \<bar>a - b\<bar>" |
29667 | 1105 |
apply (simp add: algebra_simps) |
1106 |
apply (subgoal_tac "abs a = abs (plus b (minus a b))") |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1107 |
apply (erule ssubst) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1108 |
apply (rule abs_triangle_ineq) |
29667 | 1109 |
apply (rule arg_cong[of _ _ abs]) |
1110 |
apply (simp add: algebra_simps) |
|
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1111 |
done |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1112 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1113 |
lemma abs_triangle_ineq3: "\<bar>\<bar>a\<bar> - \<bar>b\<bar>\<bar> \<le> \<bar>a - b\<bar>" |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1114 |
apply (subst abs_le_iff) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1115 |
apply auto |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1116 |
apply (rule abs_triangle_ineq2) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1117 |
apply (subst abs_minus_commute) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1118 |
apply (rule abs_triangle_ineq2) |
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1119 |
done |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1120 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1121 |
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
|
1122 |
proof - |
29667 | 1123 |
have "abs(a - b) = abs(a + - b)" by (subst diff_minus, rule refl) |
1124 |
also have "... <= abs a + abs (- b)" by (rule abs_triangle_ineq) |
|
1125 |
finally show ?thesis by simp |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1126 |
qed |
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1127 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1128 |
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
|
1129 |
proof - |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1130 |
have "\<bar>a + b - (c+d)\<bar> = \<bar>(a-c) + (b-d)\<bar>" by (simp add: diff_minus add_ac) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1131 |
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
|
1132 |
finally show ?thesis . |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1133 |
qed |
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16417
diff
changeset
|
1134 |
|
25303
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1135 |
lemma abs_add_abs [simp]: |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1136 |
"\<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
|
1137 |
proof (rule antisym) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1138 |
show "?L \<ge> ?R" by(rule abs_ge_self) |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1139 |
next |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1140 |
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
|
1141 |
also have "\<dots> = ?R" by simp |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1142 |
finally show "?L \<le> ?R" . |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1143 |
qed |
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1144 |
|
0699e20feabd
renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents:
25267
diff
changeset
|
1145 |
end |
14738 | 1146 |
|
14754
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1147 |
text {* Needed for abelian cancellation simprocs: *} |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1148 |
|
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1149 |
lemma add_cancel_21: "((x::'a::ab_group_add) + (y + z) = y + u) = (x + z = u)" |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1150 |
apply (subst add_left_commute) |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1151 |
apply (subst add_left_cancel) |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1152 |
apply simp |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1153 |
done |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1154 |
|
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1155 |
lemma add_cancel_end: "(x + (y + z) = y) = (x = - (z::'a::ab_group_add))" |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1156 |
apply (subst add_cancel_21[of _ _ _ 0, simplified]) |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1157 |
apply (simp add: add_right_cancel[symmetric, of "x" "-z" "z", simplified]) |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1158 |
done |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1159 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1160 |
lemma less_eqI: "(x::'a::ordered_ab_group_add) - y = x' - y' \<Longrightarrow> (x < y) = (x' < y')" |
14754
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1161 |
by (simp add: less_iff_diff_less_0[of x y] less_iff_diff_less_0[of x' y']) |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1162 |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1163 |
lemma le_eqI: "(x::'a::ordered_ab_group_add) - y = x' - y' \<Longrightarrow> (y <= x) = (y' <= x')" |
14754
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1164 |
apply (simp add: le_iff_diff_le_0[of y x] le_iff_diff_le_0[of y' x']) |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1165 |
apply (simp add: neg_le_iff_le[symmetric, of "y-x" 0] neg_le_iff_le[symmetric, of "y'-x'" 0]) |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1166 |
done |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1167 |
|
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1168 |
lemma eq_eqI: "(x::'a::ab_group_add) - y = x' - y' \<Longrightarrow> (x = y) = (x' = y')" |
30629 | 1169 |
by (simp only: eq_iff_diff_eq_0[of x y] eq_iff_diff_eq_0[of x' y']) |
14754
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1170 |
|
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1171 |
lemma diff_def: "(x::'a::ab_group_add) - y == x + (-y)" |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1172 |
by (simp add: diff_minus) |
a080eeeaec14
Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents:
14738
diff
changeset
|
1173 |
|
25090 | 1174 |
lemma le_add_right_mono: |
15178 | 1175 |
assumes |
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1176 |
"a <= b + (c::'a::ordered_ab_group_add)" |
15178 | 1177 |
"c <= d" |
1178 |
shows "a <= b + d" |
|
1179 |
apply (rule_tac order_trans[where y = "b+c"]) |
|
1180 |
apply (simp_all add: prems) |
|
1181 |
done |
|
1182 |
||
1183 |
||
25090 | 1184 |
subsection {* Tools setup *} |
1185 |
||
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1186 |
lemma add_mono_thms_linordered_semiring [noatp]: |
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1187 |
fixes i j k :: "'a\<Colon>ordered_ab_semigroup_add" |
25077 | 1188 |
shows "i \<le> j \<and> k \<le> l \<Longrightarrow> i + k \<le> j + l" |
1189 |
and "i = j \<and> k \<le> l \<Longrightarrow> i + k \<le> j + l" |
|
1190 |
and "i \<le> j \<and> k = l \<Longrightarrow> i + k \<le> j + l" |
|
1191 |
and "i = j \<and> k = l \<Longrightarrow> i + k = j + l" |
|
1192 |
by (rule add_mono, clarify+)+ |
|
1193 |
||
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1194 |
lemma add_mono_thms_linordered_field [noatp]: |
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34973
diff
changeset
|
1195 |
fixes i j k :: "'a\<Colon>ordered_cancel_ab_semigroup_add" |
25077 | 1196 |
shows "i < j \<and> k = l \<Longrightarrow> i + k < j + l" |
1197 |
and "i = j \<and> k < l \<Longrightarrow> i + k < j + l" |
|
1198 |
and "i < j \<and> k \<le> l \<Longrightarrow> i + k < j + l" |
|
1199 |
and "i \<le> j \<and> k < l \<Longrightarrow> i + k < j + l" |
|
1200 |
and "i < j \<and> k < l \<Longrightarrow> i + k < j + l" |
|
1201 |
by (auto intro: add_strict_right_mono add_strict_left_mono |
|
1202 |
add_less_le_mono add_le_less_mono add_strict_mono) |
|
1203 |
||
17085 | 1204 |
text{*Simplification of @{term "x-y < 0"}, etc.*} |
29833 | 1205 |
lemmas diff_less_0_iff_less [simp, noatp] = less_iff_diff_less_0 [symmetric] |
1206 |
lemmas diff_le_0_iff_le [simp, noatp] = le_iff_diff_le_0 [symmetric] |
|
17085 | 1207 |
|
22482 | 1208 |
ML {* |
27250 | 1209 |
structure ab_group_add_cancel = Abel_Cancel |
1210 |
( |
|
22482 | 1211 |
|
1212 |
(* term order for abelian groups *) |
|
1213 |
||
1214 |
fun agrp_ord (Const (a, _)) = find_index (fn a' => a = a') |
|
35267
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
1215 |
[@{const_name Groups.zero}, @{const_name Groups.plus}, |
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
1216 |
@{const_name Groups.uminus}, @{const_name Groups.minus}] |
22482 | 1217 |
| agrp_ord _ = ~1; |
1218 |
||
35408 | 1219 |
fun termless_agrp (a, b) = (Term_Ord.term_lpo agrp_ord (a, b) = LESS); |
22482 | 1220 |
|
1221 |
local |
|
1222 |
val ac1 = mk_meta_eq @{thm add_assoc}; |
|
1223 |
val ac2 = mk_meta_eq @{thm add_commute}; |
|
1224 |
val ac3 = mk_meta_eq @{thm add_left_commute}; |
|
35267
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
1225 |
fun solve_add_ac thy _ (_ $ (Const (@{const_name Groups.plus},_) $ _ $ _) $ _) = |
22482 | 1226 |
SOME ac1 |
35267
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents:
35216
diff
changeset
|
1227 |
| solve_add_ac thy _ (_ $ x $ (Const (@{const_name Groups.plus},_) $ y $ z)) = |
22482 | 1228 |
if termless_agrp (y, x) then SOME ac3 else NONE |
1229 |
| solve_add_ac thy _ (_ $ x $ y) = |
|
1230 |
if termless_agrp (y, x) then SOME ac2 else NONE |
|
1231 |
| solve_add_ac thy _ _ = NONE |
|
1232 |
in |
|
32010 | 1233 |
val add_ac_proc = Simplifier.simproc @{theory} |
22482 | 1234 |
"add_ac_proc" ["x + y::'a::ab_semigroup_add"] solve_add_ac; |
1235 |
end; |
|
1236 |
||
27250 | 1237 |
val eq_reflection = @{thm eq_reflection}; |
1238 |
||
1239 |
val T = @{typ "'a::ab_group_add"}; |
|
1240 |
||
22482 | 1241 |
val cancel_ss = HOL_basic_ss settermless termless_agrp |
1242 |
addsimprocs [add_ac_proc] addsimps |
|
23085 | 1243 |
[@{thm add_0_left}, @{thm add_0_right}, @{thm diff_def}, |
22482 | 1244 |
@{thm minus_add_distrib}, @{thm minus_minus}, @{thm minus_zero}, |
1245 |
@{thm right_minus}, @{thm left_minus}, @{thm add_minus_cancel}, |
|
1246 |
@{thm minus_add_cancel}]; |
|
27250 | 1247 |
|
1248 |
val sum_pats = [@{cterm "x + y::'a::ab_group_add"}, @{cterm "x - y::'a::ab_group_add"}]; |
|
22482 | 1249 |
|
22548 | 1250 |
val eqI_rules = [@{thm less_eqI}, @{thm le_eqI}, @{thm eq_eqI}]; |
22482 | 1251 |
|
1252 |
val dest_eqI = |
|
35364 | 1253 |
fst o HOLogic.dest_bin @{const_name "op ="} HOLogic.boolT o HOLogic.dest_Trueprop o concl_of; |
22482 | 1254 |
|
27250 | 1255 |
); |
22482 | 1256 |
*} |
1257 |
||
26480 | 1258 |
ML {* |
22482 | 1259 |
Addsimprocs [ab_group_add_cancel.sum_conv, ab_group_add_cancel.rel_conv]; |
1260 |
*} |
|
17085 | 1261 |
|
33364 | 1262 |
code_modulename SML |
35050
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents:
35036
diff
changeset
|
1263 |
Groups Arith |
33364 | 1264 |
|
1265 |
code_modulename OCaml |
|
35050
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents:
35036
diff
changeset
|
1266 |
Groups Arith |
33364 | 1267 |
|
1268 |
code_modulename Haskell |
|
35050
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents:
35036
diff
changeset
|
1269 |
Groups Arith |
33364 | 1270 |
|
14738 | 1271 |
end |