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