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