src/HOL/OrderedGroup.thy
author urbanc
Thu, 12 Jun 2008 10:03:45 +0200
changeset 27163 587ad1fba128
parent 26480 544cef16045b
child 27250 7eef2b183032
permissions -rw-r--r--
added CK_Machine to the nominal section
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14770
fe9504ba63d5 removed duplicate thms;
wenzelm
parents: 14754
diff changeset
     1
(*  Title:   HOL/OrderedGroup.thy
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
     2
    ID:      $Id$
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16417
diff changeset
     3
    Author:  Gertrud Bauer, Steven Obua, Lawrence C Paulson, and Markus Wenzel,
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16417
diff changeset
     4
             with contributions by Jeremy Avigad
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
     5
*)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
     6
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
     7
header {* Ordered Groups *}
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
     8
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15093
diff changeset
     9
theory OrderedGroup
22452
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
    10
imports Lattices
19798
wenzelm
parents: 19527
diff changeset
    11
uses "~~/src/Provers/Arith/abel_cancel.ML"
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15093
diff changeset
    12
begin
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    13
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    14
text {*
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    15
  The theory of partially ordered groups is taken from the books:
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    16
  \begin{itemize}
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    17
  \item \emph{Lattice Theory} by Garret Birkhoff, American Mathematical Society 1979 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    18
  \item \emph{Partially Ordered Algebraic Systems}, Pergamon Press 1963
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    19
  \end{itemize}
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    20
  Most of the used notions can also be looked up in 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    21
  \begin{itemize}
14770
fe9504ba63d5 removed duplicate thms;
wenzelm
parents: 14754
diff changeset
    22
  \item \url{http://www.mathworld.com} by Eric Weisstein et. al.
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    23
  \item \emph{Algebra I} by van der Waerden, Springer.
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    24
  \end{itemize}
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    25
*}
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    26
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
    27
subsection {* Semigroups and Monoids *}
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    28
22390
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
    29
class semigroup_add = plus +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    30
  assumes add_assoc: "(a + b) + c = a + (b + c)"
22390
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
    31
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
    32
class ab_semigroup_add = semigroup_add +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    33
  assumes add_commute: "a + b = b + a"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    34
begin
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    35
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    36
lemma add_left_commute: "a + (b + c) = b + (a + c)"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    37
  by (rule mk_left_commute [of "plus", OF add_assoc add_commute])
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    38
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    39
theorems add_ac = add_assoc add_commute add_left_commute
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    40
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    41
end
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    42
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    43
theorems add_ac = add_assoc add_commute add_left_commute
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    44
22390
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
    45
class semigroup_mult = times +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    46
  assumes mult_assoc: "(a * b) * c = a * (b * c)"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    47
22390
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
    48
class ab_semigroup_mult = semigroup_mult +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    49
  assumes mult_commute: "a * b = b * a"
23181
f52b555f8141 localized
haftmann
parents: 23085
diff changeset
    50
begin
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    51
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    52
lemma mult_left_commute: "a * (b * c) = b * (a * c)"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    53
  by (rule mk_left_commute [of "times", OF mult_assoc mult_commute])
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    54
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    55
theorems mult_ac = mult_assoc mult_commute mult_left_commute
23181
f52b555f8141 localized
haftmann
parents: 23085
diff changeset
    56
f52b555f8141 localized
haftmann
parents: 23085
diff changeset
    57
end
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    58
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    59
theorems mult_ac = mult_assoc mult_commute mult_left_commute
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    60
26015
ad2756de580e idempotent semigroups
haftmann
parents: 25762
diff changeset
    61
class ab_semigroup_idem_mult = ab_semigroup_mult +
ad2756de580e idempotent semigroups
haftmann
parents: 25762
diff changeset
    62
  assumes mult_idem: "x * x = x"
ad2756de580e idempotent semigroups
haftmann
parents: 25762
diff changeset
    63
begin
ad2756de580e idempotent semigroups
haftmann
parents: 25762
diff changeset
    64
ad2756de580e idempotent semigroups
haftmann
parents: 25762
diff changeset
    65
lemma mult_left_idem: "x * (x * y) = x * y"
ad2756de580e idempotent semigroups
haftmann
parents: 25762
diff changeset
    66
  unfolding mult_assoc [symmetric, of x] mult_idem ..
ad2756de580e idempotent semigroups
haftmann
parents: 25762
diff changeset
    67
ad2756de580e idempotent semigroups
haftmann
parents: 25762
diff changeset
    68
lemmas mult_ac_idem = mult_ac mult_idem mult_left_idem
ad2756de580e idempotent semigroups
haftmann
parents: 25762
diff changeset
    69
ad2756de580e idempotent semigroups
haftmann
parents: 25762
diff changeset
    70
end
ad2756de580e idempotent semigroups
haftmann
parents: 25762
diff changeset
    71
ad2756de580e idempotent semigroups
haftmann
parents: 25762
diff changeset
    72
lemmas mult_ac_idem = mult_ac mult_idem mult_left_idem
ad2756de580e idempotent semigroups
haftmann
parents: 25762
diff changeset
    73
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
    74
class monoid_add = zero + semigroup_add +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    75
  assumes add_0_left [simp]: "0 + a = a"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    76
    and add_0_right [simp]: "a + 0 = a"
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
    77
26071
046fe7ddfc4b moved *_reorient lemmas here
haftmann
parents: 26015
diff changeset
    78
lemma zero_reorient: "0 = x \<longleftrightarrow> x = 0"
046fe7ddfc4b moved *_reorient lemmas here
haftmann
parents: 26015
diff changeset
    79
  by (rule eq_commute)
046fe7ddfc4b moved *_reorient lemmas here
haftmann
parents: 26015
diff changeset
    80
22390
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
    81
class comm_monoid_add = zero + ab_semigroup_add +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    82
  assumes add_0: "0 + a = a"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    83
begin
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
    84
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    85
subclass monoid_add
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    86
  by unfold_locales (insert add_0, simp_all add: add_commute)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    87
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    88
end
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    89
22390
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
    90
class monoid_mult = one + semigroup_mult +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    91
  assumes mult_1_left [simp]: "1 * a  = a"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    92
  assumes mult_1_right [simp]: "a * 1 = a"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
    93
26071
046fe7ddfc4b moved *_reorient lemmas here
haftmann
parents: 26015
diff changeset
    94
lemma one_reorient: "1 = x \<longleftrightarrow> x = 1"
046fe7ddfc4b moved *_reorient lemmas here
haftmann
parents: 26015
diff changeset
    95
  by (rule eq_commute)
046fe7ddfc4b moved *_reorient lemmas here
haftmann
parents: 26015
diff changeset
    96
22390
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
    97
class comm_monoid_mult = one + ab_semigroup_mult +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    98
  assumes mult_1: "1 * a = a"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    99
begin
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   100
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   101
subclass monoid_mult
25613
bd055df900d3 dropped ws
haftmann
parents: 25512
diff changeset
   102
  by unfold_locales (insert mult_1, simp_all add: mult_commute)
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   103
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   104
end
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   105
22390
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
   106
class cancel_semigroup_add = semigroup_add +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   107
  assumes add_left_imp_eq: "a + b = a + c \<Longrightarrow> b = c"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   108
  assumes add_right_imp_eq: "b + a = c + a \<Longrightarrow> b = c"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   109
22390
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
   110
class cancel_ab_semigroup_add = ab_semigroup_add +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   111
  assumes add_imp_eq: "a + b = a + c \<Longrightarrow> b = c"
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   112
begin
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   113
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   114
subclass cancel_semigroup_add
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   115
proof unfold_locales
22390
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
   116
  fix a b c :: 'a
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
   117
  assume "a + b = a + c" 
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
   118
  then show "b = c" by (rule add_imp_eq)
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
   119
next
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   120
  fix a b c :: 'a
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   121
  assume "b + a = c + a"
22390
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
   122
  then have "a + b = a + c" by (simp only: add_commute)
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
   123
  then show "b = c" by (rule add_imp_eq)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   124
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   125
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   126
end
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   127
25194
37a1743f0fc3 dropped redundancy
haftmann
parents: 25102
diff changeset
   128
context cancel_ab_semigroup_add
37a1743f0fc3 dropped redundancy
haftmann
parents: 25102
diff changeset
   129
begin
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   130
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   131
lemma add_left_cancel [simp]:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   132
  "a + b = a + c \<longleftrightarrow> b = c"
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   133
  by (blast dest: add_left_imp_eq)
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   134
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   135
lemma add_right_cancel [simp]:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   136
  "b + a = c + a \<longleftrightarrow> b = c"
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   137
  by (blast dest: add_right_imp_eq)
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   138
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   139
end
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   140
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   141
subsection {* Groups *}
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   142
25762
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25613
diff changeset
   143
class group_add = minus + uminus + monoid_add +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   144
  assumes left_minus [simp]: "- a + a = 0"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   145
  assumes diff_minus: "a - b = a + (- b)"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   146
begin
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   147
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   148
lemma minus_add_cancel: "- a + (a + b) = b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   149
  by (simp add: add_assoc[symmetric])
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   150
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   151
lemma minus_zero [simp]: "- 0 = 0"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   152
proof -
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   153
  have "- 0 = - 0 + (0 + 0)" by (simp only: add_0_right)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   154
  also have "\<dots> = 0" by (rule minus_add_cancel)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   155
  finally show ?thesis .
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   156
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   157
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   158
lemma minus_minus [simp]: "- (- a) = a"
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   159
proof -
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   160
  have "- (- a) = - (- a) + (- a + a)" by simp
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   161
  also have "\<dots> = a" by (rule minus_add_cancel)
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   162
  finally show ?thesis .
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   163
qed
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   164
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   165
lemma right_minus [simp]: "a + - a = 0"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   166
proof -
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   167
  have "a + - a = - (- a) + - a" by simp
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   168
  also have "\<dots> = 0" by (rule left_minus)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   169
  finally show ?thesis .
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   170
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   171
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   172
lemma right_minus_eq: "a - b = 0 \<longleftrightarrow> a = b"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   173
proof
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   174
  assume "a - b = 0"
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   175
  have "a = (a - b) + b" by (simp add:diff_minus add_assoc)
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   176
  also have "\<dots> = b" using `a - b = 0` by simp
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   177
  finally show "a = b" .
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   178
next
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   179
  assume "a = b" thus "a - b = 0" by (simp add: diff_minus)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   180
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   181
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   182
lemma equals_zero_I:
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   183
  assumes "a + b = 0"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   184
  shows "- a = b"
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   185
proof -
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   186
  have "- a = - a + (a + b)" using assms by simp
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   187
  also have "\<dots> = b" by (simp add: add_assoc[symmetric])
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   188
  finally show ?thesis .
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
   189
qed
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   190
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   191
lemma diff_self [simp]: "a - a = 0"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   192
  by (simp add: diff_minus)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   193
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   194
lemma diff_0 [simp]: "0 - a = - a"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   195
  by (simp add: diff_minus)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   196
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   197
lemma diff_0_right [simp]: "a - 0 = a" 
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   198
  by (simp add: diff_minus)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   199
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   200
lemma diff_minus_eq_add [simp]: "a - - b = a + b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   201
  by (simp add: diff_minus)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   202
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   203
lemma neg_equal_iff_equal [simp]:
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   204
  "- a = - b \<longleftrightarrow> a = b" 
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   205
proof 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   206
  assume "- a = - b"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   207
  hence "- (- a) = - (- b)"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   208
    by simp
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   209
  thus "a = b" by simp
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   210
next
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   211
  assume "a = b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   212
  thus "- a = - b" by simp
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   213
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   214
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   215
lemma neg_equal_0_iff_equal [simp]:
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   216
  "- a = 0 \<longleftrightarrow> a = 0"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   217
  by (subst neg_equal_iff_equal [symmetric], simp)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   218
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   219
lemma neg_0_equal_iff_equal [simp]:
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   220
  "0 = - a \<longleftrightarrow> 0 = a"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   221
  by (subst neg_equal_iff_equal [symmetric], simp)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   222
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   223
text{*The next two equations can make the simplifier loop!*}
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   224
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   225
lemma equation_minus_iff:
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   226
  "a = - b \<longleftrightarrow> b = - a"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   227
proof -
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   228
  have "- (- a) = - b \<longleftrightarrow> - a = b" by (rule neg_equal_iff_equal)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   229
  thus ?thesis by (simp add: eq_commute)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   230
qed
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   231
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   232
lemma minus_equation_iff:
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   233
  "- a = b \<longleftrightarrow> - b = a"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   234
proof -
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   235
  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
   236
  thus ?thesis by (simp add: eq_commute)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   237
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   238
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   239
end
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   240
25762
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25613
diff changeset
   241
class ab_group_add = minus + uminus + comm_monoid_add +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   242
  assumes ab_left_minus: "- a + a = 0"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   243
  assumes ab_diff_minus: "a - b = a + (- b)"
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   244
begin
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   245
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   246
subclass group_add
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   247
  by unfold_locales (simp_all add: ab_left_minus ab_diff_minus)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   248
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   249
subclass cancel_ab_semigroup_add
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   250
proof unfold_locales
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   251
  fix a b c :: 'a
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   252
  assume "a + b = a + c"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   253
  then have "- a + a + b = - a + a + c"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   254
    unfolding add_assoc by simp
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   255
  then show "b = c" by simp
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   256
qed
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   257
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   258
lemma uminus_add_conv_diff:
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   259
  "- a + b = b - a"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   260
  by (simp add:diff_minus add_commute)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   261
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   262
lemma minus_add_distrib [simp]:
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   263
  "- (a + b) = - a + - b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   264
  by (rule equals_zero_I) (simp add: add_ac)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   265
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   266
lemma minus_diff_eq [simp]:
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   267
  "- (a - b) = b - a"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   268
  by (simp add: diff_minus add_commute)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   269
25077
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   270
lemma add_diff_eq: "a + (b - c) = (a + b) - c"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   271
  by (simp add: diff_minus add_ac)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   272
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   273
lemma diff_add_eq: "(a - b) + c = (a + c) - b"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   274
  by (simp add: diff_minus add_ac)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   275
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   276
lemma diff_eq_eq: "a - b = c \<longleftrightarrow> a = c + b"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   277
  by (auto simp add: diff_minus add_assoc)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   278
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   279
lemma eq_diff_eq: "a = c - b \<longleftrightarrow> a + b = c"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   280
  by (auto simp add: diff_minus add_assoc)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   281
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   282
lemma diff_diff_eq: "(a - b) - c = a - (b + c)"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   283
  by (simp add: diff_minus add_ac)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   284
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   285
lemma diff_diff_eq2: "a - (b - c) = (a + c) - b"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   286
  by (simp add: diff_minus add_ac)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   287
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   288
lemma diff_add_cancel: "a - b + b = a"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   289
  by (simp add: diff_minus add_ac)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   290
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   291
lemma add_diff_cancel: "a + b - b = a"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   292
  by (simp add: diff_minus add_ac)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   293
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   294
lemmas compare_rls =
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   295
       diff_minus [symmetric]
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   296
       add_diff_eq diff_add_eq diff_diff_eq diff_diff_eq2
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   297
       diff_eq_eq eq_diff_eq
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   298
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   299
lemma eq_iff_diff_eq_0: "a = b \<longleftrightarrow> a - b = 0"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   300
  by (simp add: compare_rls)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   301
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   302
end
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   303
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   304
subsection {* (Partially) Ordered Groups *} 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   305
22390
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
   306
class pordered_ab_semigroup_add = order + ab_semigroup_add +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   307
  assumes add_left_mono: "a \<le> b \<Longrightarrow> c + a \<le> c + b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   308
begin
24380
c215e256beca moved ordered_ab_semigroup_add to OrderedGroup.thy
haftmann
parents: 24286
diff changeset
   309
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   310
lemma add_right_mono:
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   311
  "a \<le> b \<Longrightarrow> a + c \<le> b + c"
22390
378f34b1e380 now using "class"
haftmann
parents: 21382
diff changeset
   312
  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
   313
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   314
text {* non-strict, in both arguments *}
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   315
lemma add_mono:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   316
  "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
   317
  apply (erule add_right_mono [THEN order_trans])
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   318
  apply (simp add: add_commute add_left_mono)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   319
  done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   320
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   321
end
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   322
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   323
class pordered_cancel_ab_semigroup_add =
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   324
  pordered_ab_semigroup_add + cancel_ab_semigroup_add
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   325
begin
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   326
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   327
lemma add_strict_left_mono:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   328
  "a < b \<Longrightarrow> c + a < c + b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   329
  by (auto simp add: less_le add_left_mono)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   330
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   331
lemma add_strict_right_mono:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   332
  "a < b \<Longrightarrow> a + c < b + c"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   333
  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
   334
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   335
text{*Strict monotonicity in both arguments*}
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   336
lemma add_strict_mono:
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   337
  "a < b \<Longrightarrow> c < d \<Longrightarrow> a + c < b + d"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   338
apply (erule add_strict_right_mono [THEN less_trans])
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   339
apply (erule add_strict_left_mono)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   340
done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   341
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   342
lemma add_less_le_mono:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   343
  "a < b \<Longrightarrow> c \<le> d \<Longrightarrow> a + c < b + d"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   344
apply (erule add_strict_right_mono [THEN less_le_trans])
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   345
apply (erule add_left_mono)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   346
done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   347
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   348
lemma add_le_less_mono:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   349
  "a \<le> b \<Longrightarrow> c < d \<Longrightarrow> a + c < b + d"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   350
apply (erule add_right_mono [THEN le_less_trans])
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   351
apply (erule add_strict_left_mono) 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   352
done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   353
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   354
end
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   355
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   356
class pordered_ab_semigroup_add_imp_le =
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   357
  pordered_cancel_ab_semigroup_add +
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   358
  assumes add_le_imp_le_left: "c + a \<le> c + b \<Longrightarrow> a \<le> b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   359
begin
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   360
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   361
lemma add_less_imp_less_left:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   362
   assumes less: "c + a < c + b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   363
   shows "a < b"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   364
proof -
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   365
  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
   366
  have "a <= b" 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   367
    apply (insert le)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   368
    apply (drule add_le_imp_le_left)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   369
    by (insert le, drule add_le_imp_le_left, assumption)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   370
  moreover have "a \<noteq> b"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   371
  proof (rule ccontr)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   372
    assume "~(a \<noteq> b)"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   373
    then have "a = b" by simp
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   374
    then have "c + a = c + b" by simp
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   375
    with less show "False"by simp
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   376
  qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   377
  ultimately show "a < b" by (simp add: order_le_less)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   378
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   379
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   380
lemma add_less_imp_less_right:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   381
  "a + c < b + c \<Longrightarrow> a < b"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   382
apply (rule add_less_imp_less_left [of c])
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   383
apply (simp add: add_commute)  
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   384
done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   385
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   386
lemma add_less_cancel_left [simp]:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   387
  "c + a < c + b \<longleftrightarrow> a < b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   388
  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
   389
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   390
lemma add_less_cancel_right [simp]:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   391
  "a + c < b + c \<longleftrightarrow> a < b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   392
  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
   393
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   394
lemma add_le_cancel_left [simp]:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   395
  "c + a \<le> c + b \<longleftrightarrow> a \<le> b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   396
  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
   397
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   398
lemma add_le_cancel_right [simp]:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   399
  "a + c \<le> b + c \<longleftrightarrow> a \<le> b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   400
  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
   401
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   402
lemma add_le_imp_le_right:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   403
  "a + c \<le> b + c \<Longrightarrow> a \<le> b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   404
  by simp
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   405
25077
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   406
lemma max_add_distrib_left:
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   407
  "max x y + z = max (x + z) (y + z)"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   408
  unfolding max_def by auto
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   409
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   410
lemma min_add_distrib_left:
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   411
  "min x y + z = min (x + z) (y + z)"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   412
  unfolding min_def by auto
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   413
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   414
end
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   415
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   416
subsection {* Support for reasoning about signs *}
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   417
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   418
class pordered_comm_monoid_add =
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   419
  pordered_cancel_ab_semigroup_add + comm_monoid_add
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   420
begin
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   421
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   422
lemma add_pos_nonneg:
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   423
  assumes "0 < a" and "0 \<le> b"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   424
    shows "0 < a + b"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   425
proof -
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   426
  have "0 + 0 < a + b" 
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   427
    using assms by (rule add_less_le_mono)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   428
  then show ?thesis by simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   429
qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   430
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   431
lemma add_pos_pos:
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   432
  assumes "0 < a" and "0 < b"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   433
    shows "0 < a + b"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   434
  by (rule add_pos_nonneg) (insert assms, auto)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   435
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   436
lemma add_nonneg_pos:
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   437
  assumes "0 \<le> a" and "0 < b"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   438
    shows "0 < a + b"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   439
proof -
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   440
  have "0 + 0 < a + b" 
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   441
    using assms by (rule add_le_less_mono)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   442
  then show ?thesis by simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   443
qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   444
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   445
lemma add_nonneg_nonneg:
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   446
  assumes "0 \<le> a" and "0 \<le> b"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   447
    shows "0 \<le> a + b"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   448
proof -
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   449
  have "0 + 0 \<le> a + b" 
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   450
    using assms by (rule add_mono)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   451
  then show ?thesis by simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   452
qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   453
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   454
lemma add_neg_nonpos: 
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   455
  assumes "a < 0" and "b \<le> 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   456
  shows "a + b < 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   457
proof -
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   458
  have "a + b < 0 + 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   459
    using assms by (rule add_less_le_mono)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   460
  then show ?thesis by simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   461
qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   462
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   463
lemma add_neg_neg: 
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   464
  assumes "a < 0" and "b < 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   465
  shows "a + b < 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   466
  by (rule add_neg_nonpos) (insert assms, auto)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   467
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   468
lemma add_nonpos_neg:
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   469
  assumes "a \<le> 0" and "b < 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   470
  shows "a + b < 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   471
proof -
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   472
  have "a + b < 0 + 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   473
    using assms by (rule add_le_less_mono)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   474
  then show ?thesis by simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   475
qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   476
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   477
lemma add_nonpos_nonpos:
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   478
  assumes "a \<le> 0" and "b \<le> 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   479
  shows "a + b \<le> 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   480
proof -
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   481
  have "a + b \<le> 0 + 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   482
    using assms by (rule add_mono)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   483
  then show ?thesis by simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   484
qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   485
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   486
end
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   487
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   488
class pordered_ab_group_add =
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   489
  ab_group_add + pordered_ab_semigroup_add
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   490
begin
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   491
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   492
subclass pordered_cancel_ab_semigroup_add
25512
4134f7c782e2 using intro_locales instead of unfold_locales if appropriate
haftmann
parents: 25307
diff changeset
   493
  by intro_locales
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   494
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   495
subclass pordered_ab_semigroup_add_imp_le
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   496
proof unfold_locales
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   497
  fix a b c :: 'a
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   498
  assume "c + a \<le> c + b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   499
  hence "(-c) + (c + a) \<le> (-c) + (c + b)" by (rule add_left_mono)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   500
  hence "((-c) + c) + a \<le> ((-c) + c) + b" by (simp only: add_assoc)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   501
  thus "a \<le> b" by simp
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   502
qed
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   503
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   504
subclass pordered_comm_monoid_add
25512
4134f7c782e2 using intro_locales instead of unfold_locales if appropriate
haftmann
parents: 25307
diff changeset
   505
  by intro_locales
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   506
25077
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   507
lemma max_diff_distrib_left:
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   508
  shows "max x y - z = max (x - z) (y - z)"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   509
  by (simp add: diff_minus, rule max_add_distrib_left) 
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   510
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   511
lemma min_diff_distrib_left:
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   512
  shows "min x y - z = min (x - z) (y - z)"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   513
  by (simp add: diff_minus, rule min_add_distrib_left) 
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   514
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   515
lemma le_imp_neg_le:
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   516
  assumes "a \<le> b"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   517
  shows "-b \<le> -a"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   518
proof -
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   519
  have "-a+a \<le> -a+b"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   520
    using `a \<le> b` by (rule add_left_mono) 
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   521
  hence "0 \<le> -a+b"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   522
    by simp
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   523
  hence "0 + (-b) \<le> (-a + b) + (-b)"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   524
    by (rule add_right_mono) 
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   525
  thus ?thesis
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   526
    by (simp add: add_assoc)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   527
qed
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   528
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   529
lemma neg_le_iff_le [simp]: "- b \<le> - a \<longleftrightarrow> a \<le> b"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   530
proof 
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   531
  assume "- b \<le> - a"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   532
  hence "- (- a) \<le> - (- b)"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   533
    by (rule le_imp_neg_le)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   534
  thus "a\<le>b" by simp
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   535
next
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   536
  assume "a\<le>b"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   537
  thus "-b \<le> -a" by (rule le_imp_neg_le)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   538
qed
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   539
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   540
lemma neg_le_0_iff_le [simp]: "- a \<le> 0 \<longleftrightarrow> 0 \<le> a"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   541
  by (subst neg_le_iff_le [symmetric], simp)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   542
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   543
lemma neg_0_le_iff_le [simp]: "0 \<le> - a \<longleftrightarrow> a \<le> 0"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   544
  by (subst neg_le_iff_le [symmetric], simp)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   545
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   546
lemma neg_less_iff_less [simp]: "- b < - a \<longleftrightarrow> a < b"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   547
  by (force simp add: less_le) 
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   548
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   549
lemma neg_less_0_iff_less [simp]: "- a < 0 \<longleftrightarrow> 0 < a"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   550
  by (subst neg_less_iff_less [symmetric], simp)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   551
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   552
lemma neg_0_less_iff_less [simp]: "0 < - a \<longleftrightarrow> a < 0"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   553
  by (subst neg_less_iff_less [symmetric], simp)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   554
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   555
text{*The next several equations can make the simplifier loop!*}
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   556
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   557
lemma less_minus_iff: "a < - b \<longleftrightarrow> b < - a"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   558
proof -
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   559
  have "(- (-a) < - b) = (b < - a)" by (rule neg_less_iff_less)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   560
  thus ?thesis by simp
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   561
qed
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   562
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   563
lemma minus_less_iff: "- a < b \<longleftrightarrow> - b < a"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   564
proof -
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   565
  have "(- a < - (-b)) = (- b < a)" by (rule neg_less_iff_less)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   566
  thus ?thesis by simp
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   567
qed
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   568
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   569
lemma le_minus_iff: "a \<le> - b \<longleftrightarrow> b \<le> - a"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   570
proof -
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   571
  have mm: "!! a (b::'a). (-(-a)) < -b \<Longrightarrow> -(-b) < -a" by (simp only: minus_less_iff)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   572
  have "(- (- a) <= -b) = (b <= - a)" 
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   573
    apply (auto simp only: le_less)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   574
    apply (drule mm)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   575
    apply (simp_all)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   576
    apply (drule mm[simplified], assumption)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   577
    done
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   578
  then show ?thesis by simp
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   579
qed
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   580
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   581
lemma minus_le_iff: "- a \<le> b \<longleftrightarrow> - b \<le> a"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   582
  by (auto simp add: le_less minus_less_iff)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   583
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   584
lemma less_iff_diff_less_0: "a < b \<longleftrightarrow> a - b < 0"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   585
proof -
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   586
  have  "(a < b) = (a + (- b) < b + (-b))"  
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   587
    by (simp only: add_less_cancel_right)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   588
  also have "... =  (a - b < 0)" by (simp add: diff_minus)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   589
  finally show ?thesis .
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   590
qed
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   591
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   592
lemma diff_less_eq: "a - b < c \<longleftrightarrow> a < c + b"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   593
apply (subst less_iff_diff_less_0 [of a])
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   594
apply (rule less_iff_diff_less_0 [of _ c, THEN ssubst])
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   595
apply (simp add: diff_minus add_ac)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   596
done
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   597
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   598
lemma less_diff_eq: "a < c - b \<longleftrightarrow> a + b < c"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   599
apply (subst less_iff_diff_less_0 [of "plus a b"])
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   600
apply (subst less_iff_diff_less_0 [of a])
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   601
apply (simp add: diff_minus add_ac)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   602
done
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   603
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   604
lemma diff_le_eq: "a - b \<le> c \<longleftrightarrow> a \<le> c + b"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   605
  by (auto simp add: le_less diff_less_eq diff_add_cancel add_diff_cancel)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   606
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   607
lemma le_diff_eq: "a \<le> c - b \<longleftrightarrow> a + b \<le> c"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   608
  by (auto simp add: le_less less_diff_eq diff_add_cancel add_diff_cancel)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   609
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   610
lemmas compare_rls =
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   611
       diff_minus [symmetric]
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   612
       add_diff_eq diff_add_eq diff_diff_eq diff_diff_eq2
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   613
       diff_less_eq less_diff_eq diff_le_eq le_diff_eq
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   614
       diff_eq_eq eq_diff_eq
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   615
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   616
text{*This list of rewrites simplifies (in)equalities by bringing subtractions
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   617
  to the top and then moving negative terms to the other side.
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   618
  Use with @{text add_ac}*}
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   619
lemmas (in -) compare_rls =
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   620
       diff_minus [symmetric]
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   621
       add_diff_eq diff_add_eq diff_diff_eq diff_diff_eq2
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   622
       diff_less_eq less_diff_eq diff_le_eq le_diff_eq
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   623
       diff_eq_eq eq_diff_eq
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   624
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   625
lemma le_iff_diff_le_0: "a \<le> b \<longleftrightarrow> a - b \<le> 0"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   626
  by (simp add: compare_rls)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   627
25230
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   628
lemmas group_simps =
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   629
  add_ac
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   630
  add_diff_eq diff_add_eq diff_diff_eq diff_diff_eq2
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   631
  diff_eq_eq eq_diff_eq diff_minus [symmetric] uminus_add_conv_diff
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   632
  diff_less_eq less_diff_eq diff_le_eq le_diff_eq
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   633
25077
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   634
end
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   635
25230
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   636
lemmas group_simps =
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   637
  mult_ac
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   638
  add_ac
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   639
  add_diff_eq diff_add_eq diff_diff_eq diff_diff_eq2
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   640
  diff_eq_eq eq_diff_eq diff_minus [symmetric] uminus_add_conv_diff
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   641
  diff_less_eq less_diff_eq diff_le_eq le_diff_eq
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   642
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   643
class ordered_ab_semigroup_add =
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   644
  linorder + pordered_ab_semigroup_add
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   645
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   646
class ordered_cancel_ab_semigroup_add =
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   647
  linorder + pordered_cancel_ab_semigroup_add
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   648
begin
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   649
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   650
subclass ordered_ab_semigroup_add
25512
4134f7c782e2 using intro_locales instead of unfold_locales if appropriate
haftmann
parents: 25307
diff changeset
   651
  by intro_locales
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   652
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   653
subclass pordered_ab_semigroup_add_imp_le
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   654
proof unfold_locales
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   655
  fix a b c :: 'a
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   656
  assume le: "c + a <= c + b"  
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   657
  show "a <= b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   658
  proof (rule ccontr)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   659
    assume w: "~ a \<le> b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   660
    hence "b <= a" by (simp add: linorder_not_le)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   661
    hence le2: "c + b <= c + a" by (rule add_left_mono)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   662
    have "a = b" 
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   663
      apply (insert le)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   664
      apply (insert le2)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   665
      apply (drule antisym, simp_all)
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   666
      done
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   667
    with w show False 
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   668
      by (simp add: linorder_not_le [symmetric])
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   669
  qed
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   670
qed
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   671
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   672
end
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   673
25230
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   674
class ordered_ab_group_add =
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   675
  linorder + pordered_ab_group_add
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   676
begin
25230
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   677
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   678
subclass ordered_cancel_ab_semigroup_add 
25512
4134f7c782e2 using intro_locales instead of unfold_locales if appropriate
haftmann
parents: 25307
diff changeset
   679
  by intro_locales
25230
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
   680
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   681
lemma neg_less_eq_nonneg:
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   682
  "- a \<le> a \<longleftrightarrow> 0 \<le> a"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   683
proof
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   684
  assume A: "- a \<le> a" show "0 \<le> a"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   685
  proof (rule classical)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   686
    assume "\<not> 0 \<le> a"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   687
    then have "a < 0" by auto
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   688
    with A have "- a < 0" by (rule le_less_trans)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   689
    then show ?thesis by auto
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   690
  qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   691
next
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   692
  assume A: "0 \<le> a" show "- a \<le> a"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   693
  proof (rule order_trans)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   694
    show "- a \<le> 0" using A by (simp add: minus_le_iff)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   695
  next
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   696
    show "0 \<le> a" using A .
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   697
  qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   698
qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   699
  
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   700
lemma less_eq_neg_nonpos:
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   701
  "a \<le> - a \<longleftrightarrow> a \<le> 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   702
proof
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   703
  assume A: "a \<le> - a" show "a \<le> 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   704
  proof (rule classical)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   705
    assume "\<not> a \<le> 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   706
    then have "0 < a" by auto
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   707
    then have "0 < - a" using A by (rule less_le_trans)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   708
    then show ?thesis by auto
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   709
  qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   710
next
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   711
  assume A: "a \<le> 0" show "a \<le> - a"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   712
  proof (rule order_trans)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   713
    show "0 \<le> - a" using A by (simp add: minus_le_iff)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   714
  next
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   715
    show "a \<le> 0" using A .
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   716
  qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   717
qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   718
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   719
lemma equal_neg_zero:
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   720
  "a = - a \<longleftrightarrow> a = 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   721
proof
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   722
  assume "a = 0" then show "a = - a" by simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   723
next
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   724
  assume A: "a = - a" show "a = 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   725
  proof (cases "0 \<le> a")
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   726
    case True with A have "0 \<le> - a" by auto
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   727
    with le_minus_iff have "a \<le> 0" by simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   728
    with True show ?thesis by (auto intro: order_trans)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   729
  next
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   730
    case False then have B: "a \<le> 0" by auto
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   731
    with A have "- a \<le> 0" by auto
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   732
    with B show ?thesis by (auto intro: order_trans)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   733
  qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   734
qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   735
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   736
lemma neg_equal_zero:
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   737
  "- a = a \<longleftrightarrow> a = 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   738
  unfolding equal_neg_zero [symmetric] by auto
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   739
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   740
end
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25230
diff changeset
   741
25077
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
   742
-- {* FIXME localize the following *}
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   743
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   744
lemma add_increasing:
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   745
  fixes c :: "'a::{pordered_ab_semigroup_add_imp_le, comm_monoid_add}"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   746
  shows  "[|0\<le>a; b\<le>c|] ==> b \<le> a + c"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   747
by (insert add_mono [of 0 a b c], simp)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   748
15539
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15481
diff changeset
   749
lemma add_increasing2:
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15481
diff changeset
   750
  fixes c :: "'a::{pordered_ab_semigroup_add_imp_le, comm_monoid_add}"
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15481
diff changeset
   751
  shows  "[|0\<le>c; b\<le>a|] ==> b \<le> a + c"
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15481
diff changeset
   752
by (simp add:add_increasing add_commute[of a])
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15481
diff changeset
   753
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   754
lemma add_strict_increasing:
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   755
  fixes c :: "'a::{pordered_ab_semigroup_add_imp_le, comm_monoid_add}"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   756
  shows "[|0<a; b\<le>c|] ==> b < a + c"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   757
by (insert add_less_le_mono [of 0 a b c], simp)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   758
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   759
lemma add_strict_increasing2:
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   760
  fixes c :: "'a::{pordered_ab_semigroup_add_imp_le, comm_monoid_add}"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   761
  shows "[|0\<le>a; b<c|] ==> b < a + c"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   762
by (insert add_le_less_mono [of 0 a b c], simp)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   763
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   764
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   765
class pordered_ab_group_add_abs = pordered_ab_group_add + abs +
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   766
  assumes abs_ge_zero [simp]: "\<bar>a\<bar> \<ge> 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   767
    and abs_ge_self: "a \<le> \<bar>a\<bar>"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   768
    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
   769
    and abs_minus_cancel [simp]: "\<bar>-a\<bar> = \<bar>a\<bar>"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   770
    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
   771
begin
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   772
25307
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   773
lemma abs_minus_le_zero: "- \<bar>a\<bar> \<le> 0"
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   774
  unfolding neg_le_0_iff_le by simp
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   775
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   776
lemma abs_of_nonneg [simp]:
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   777
  assumes nonneg: "0 \<le> a"
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   778
  shows "\<bar>a\<bar> = a"
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   779
proof (rule antisym)
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   780
  from nonneg le_imp_neg_le have "- a \<le> 0" by simp
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   781
  from this nonneg have "- a \<le> a" by (rule order_trans)
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   782
  then show "\<bar>a\<bar> \<le> a" by (auto intro: abs_leI)
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   783
qed (rule abs_ge_self)
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   784
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   785
lemma abs_idempotent [simp]: "\<bar>\<bar>a\<bar>\<bar> = \<bar>a\<bar>"
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   786
  by (rule antisym)
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   787
    (auto intro!: abs_ge_self abs_leI order_trans [of "uminus (abs a)" zero "abs a"])
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   788
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   789
lemma abs_eq_0 [simp]: "\<bar>a\<bar> = 0 \<longleftrightarrow> a = 0"
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   790
proof -
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   791
  have "\<bar>a\<bar> = 0 \<Longrightarrow> a = 0"
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   792
  proof (rule antisym)
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   793
    assume zero: "\<bar>a\<bar> = 0"
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   794
    with abs_ge_self show "a \<le> 0" by auto
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   795
    from zero have "\<bar>-a\<bar> = 0" by simp
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   796
    with abs_ge_self [of "uminus a"] have "- a \<le> 0" by auto
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   797
    with neg_le_0_iff_le show "0 \<le> a" by auto
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   798
  qed
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   799
  then show ?thesis by auto
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   800
qed
389902f0a0c8 simplified specification of *_abs class
haftmann
parents: 25303
diff changeset
   801
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   802
lemma abs_zero [simp]: "\<bar>0\<bar> = 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   803
  by simp
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16417
diff changeset
   804
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   805
lemma abs_0_eq [simp, noatp]: "0 = \<bar>a\<bar> \<longleftrightarrow> a = 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   806
proof -
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   807
  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
   808
  thus ?thesis by simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   809
qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   810
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   811
lemma 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
   812
proof
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   813
  assume "\<bar>a\<bar> \<le> 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   814
  then have "\<bar>a\<bar> = 0" by (rule antisym) simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   815
  thus "a = 0" by simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   816
next
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   817
  assume "a = 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   818
  thus "\<bar>a\<bar> \<le> 0" 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 zero_less_abs_iff [simp]: "0 < \<bar>a\<bar> \<longleftrightarrow> a \<noteq> 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   822
  by (simp add: less_le)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   823
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   824
lemma abs_not_less_zero [simp]: "\<not> \<bar>a\<bar> < 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   825
proof -
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   826
  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
   827
  show ?thesis by (simp add: a)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   828
qed
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16417
diff changeset
   829
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   830
lemma abs_ge_minus_self: "- a \<le> \<bar>a\<bar>"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   831
proof -
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   832
  have "- a \<le> \<bar>-a\<bar>" by (rule abs_ge_self)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   833
  then show ?thesis by simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   834
qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   835
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   836
lemma abs_minus_commute: 
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   837
  "\<bar>a - b\<bar> = \<bar>b - a\<bar>"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   838
proof -
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   839
  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
   840
  also have "... = \<bar>b - a\<bar>" by simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   841
  finally show ?thesis .
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   842
qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   843
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   844
lemma abs_of_pos: "0 < a \<Longrightarrow> \<bar>a\<bar> = a"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   845
  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
   846
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   847
lemma abs_of_nonpos [simp]:
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   848
  assumes "a \<le> 0"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   849
  shows "\<bar>a\<bar> = - a"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   850
proof -
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   851
  let ?b = "- a"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   852
  have "- ?b \<le> 0 \<Longrightarrow> \<bar>- ?b\<bar> = - (- ?b)"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   853
  unfolding abs_minus_cancel [of "?b"]
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   854
  unfolding neg_le_0_iff_le [of "?b"]
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   855
  unfolding minus_minus by (erule abs_of_nonneg)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   856
  then show ?thesis using assms by auto
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   857
qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   858
  
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   859
lemma abs_of_neg: "a < 0 \<Longrightarrow> \<bar>a\<bar> = - a"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   860
  by (rule abs_of_nonpos, rule less_imp_le)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   861
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   862
lemma abs_le_D1: "\<bar>a\<bar> \<le> b \<Longrightarrow> a \<le> b"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   863
  by (insert abs_ge_self, blast intro: order_trans)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   864
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   865
lemma abs_le_D2: "\<bar>a\<bar> \<le> b \<Longrightarrow> - a \<le> b"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   866
  by (insert abs_le_D1 [of "uminus a"], simp)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   867
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   868
lemma abs_le_iff: "\<bar>a\<bar> \<le> b \<longleftrightarrow> a \<le> b \<and> - a \<le> b"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   869
  by (blast intro: abs_leI dest: abs_le_D1 abs_le_D2)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   870
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   871
lemma abs_triangle_ineq2: "\<bar>a\<bar> - \<bar>b\<bar> \<le> \<bar>a - b\<bar>"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   872
  apply (simp add: compare_rls)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   873
  apply (subgoal_tac "abs a = abs (plus (minus a b) b)")
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   874
  apply (erule ssubst)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   875
  apply (rule abs_triangle_ineq)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   876
  apply (rule arg_cong) back
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   877
  apply (simp add: compare_rls)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16417
diff changeset
   878
done
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16417
diff changeset
   879
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   880
lemma abs_triangle_ineq3: "\<bar>\<bar>a\<bar> - \<bar>b\<bar>\<bar> \<le> \<bar>a - b\<bar>"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   881
  apply (subst abs_le_iff)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   882
  apply auto
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   883
  apply (rule abs_triangle_ineq2)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   884
  apply (subst abs_minus_commute)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   885
  apply (rule abs_triangle_ineq2)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16417
diff changeset
   886
done
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16417
diff changeset
   887
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   888
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
   889
proof -
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   890
  have "abs(a - b) = abs(a + - b)"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   891
    by (subst diff_minus, rule refl)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   892
  also have "... <= abs a + abs (- b)"
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   893
    by (rule abs_triangle_ineq)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   894
  finally show ?thesis
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   895
    by simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   896
qed
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16417
diff changeset
   897
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   898
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
   899
proof -
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   900
  have "\<bar>a + b - (c+d)\<bar> = \<bar>(a-c) + (b-d)\<bar>" by (simp add: diff_minus add_ac)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   901
  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
   902
  finally show ?thesis .
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   903
qed
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16417
diff changeset
   904
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   905
lemma abs_add_abs [simp]:
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   906
  "\<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
   907
proof (rule antisym)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   908
  show "?L \<ge> ?R" by(rule abs_ge_self)
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   909
next
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   910
  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
   911
  also have "\<dots> = ?R" by simp
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   912
  finally show "?L \<le> ?R" .
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   913
qed
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   914
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   915
end
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   916
22452
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   917
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   918
subsection {* Lattice Ordered (Abelian) Groups *}
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   919
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   920
class lordered_ab_group_add_meet = pordered_ab_group_add + lower_semilattice
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   921
begin
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   922
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   923
lemma add_inf_distrib_left:
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   924
  "a + inf b c = inf (a + b) (a + c)"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   925
apply (rule antisym)
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
   926
apply (simp_all add: le_infI)
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   927
apply (rule add_le_imp_le_left [of "uminus a"])
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   928
apply (simp only: add_assoc [symmetric], simp)
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21245
diff changeset
   929
apply rule
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21245
diff changeset
   930
apply (rule add_le_imp_le_left[of "a"], simp only: add_assoc[symmetric], simp)+
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   931
done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   932
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   933
lemma add_inf_distrib_right:
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   934
  "inf a b + c = inf (a + c) (b + c)"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   935
proof -
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   936
  have "c + inf a b = inf (c+a) (c+b)" by (simp add: add_inf_distrib_left)
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   937
  thus ?thesis by (simp add: add_commute)
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   938
qed
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   939
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   940
end
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   941
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   942
class lordered_ab_group_add_join = pordered_ab_group_add + upper_semilattice
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   943
begin
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   944
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   945
lemma add_sup_distrib_left:
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   946
  "a + sup b c = sup (a + b) (a + c)" 
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   947
apply (rule antisym)
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   948
apply (rule add_le_imp_le_left [of "uminus a"])
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   949
apply (simp only: add_assoc[symmetric], simp)
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21245
diff changeset
   950
apply rule
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21245
diff changeset
   951
apply (rule add_le_imp_le_left [of "a"], simp only: add_assoc[symmetric], simp)+
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
   952
apply (rule le_supI)
21312
1d39091a3208 started reorgnization of lattice theories
nipkow
parents: 21245
diff changeset
   953
apply (simp_all)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   954
done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   955
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   956
lemma add_sup_distrib_right:
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   957
  "sup a b + c = sup (a+c) (b+c)"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   958
proof -
22452
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   959
  have "c + sup a b = sup (c+a) (c+b)" by (simp add: add_sup_distrib_left)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   960
  thus ?thesis by (simp add: add_commute)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   961
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   962
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   963
end
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   964
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
   965
class lordered_ab_group_add = pordered_ab_group_add + lattice
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   966
begin
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   967
25512
4134f7c782e2 using intro_locales instead of unfold_locales if appropriate
haftmann
parents: 25307
diff changeset
   968
subclass lordered_ab_group_add_meet by intro_locales
4134f7c782e2 using intro_locales instead of unfold_locales if appropriate
haftmann
parents: 25307
diff changeset
   969
subclass lordered_ab_group_add_join by intro_locales
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   970
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
   971
lemmas add_sup_inf_distribs = add_inf_distrib_right add_inf_distrib_left add_sup_distrib_right add_sup_distrib_left
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
   972
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   973
lemma inf_eq_neg_sup: "inf a b = - sup (-a) (-b)"
22452
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   974
proof (rule inf_unique)
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   975
  fix a b :: 'a
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   976
  show "- sup (-a) (-b) \<le> a"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   977
    by (rule add_le_imp_le_right [of _ "sup (uminus a) (uminus b)"])
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   978
      (simp, simp add: add_sup_distrib_left)
22452
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   979
next
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   980
  fix a b :: 'a
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   981
  show "- sup (-a) (-b) \<le> b"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   982
    by (rule add_le_imp_le_right [of _ "sup (uminus a) (uminus b)"])
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   983
      (simp, simp add: add_sup_distrib_left)
22452
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   984
next
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   985
  fix a b c :: 'a
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   986
  assume "a \<le> b" "a \<le> c"
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   987
  then show "a \<le> - sup (-b) (-c)" by (subst neg_le_iff_le [symmetric])
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   988
    (simp add: le_supI)
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   989
qed
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   990
  
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   991
lemma sup_eq_neg_inf: "sup a b = - inf (-a) (-b)"
22452
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   992
proof (rule sup_unique)
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   993
  fix a b :: 'a
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   994
  show "a \<le> - inf (-a) (-b)"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   995
    by (rule add_le_imp_le_right [of _ "inf (uminus a) (uminus b)"])
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   996
      (simp, simp add: add_inf_distrib_left)
22452
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   997
next
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   998
  fix a b :: 'a
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
   999
  show "b \<le> - inf (-a) (-b)"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1000
    by (rule add_le_imp_le_right [of _ "inf (uminus a) (uminus b)"])
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1001
      (simp, simp add: add_inf_distrib_left)
22452
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
  1002
next
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
  1003
  fix a b c :: 'a
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
  1004
  assume "a \<le> c" "b \<le> c"
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
  1005
  then show "- inf (-a) (-b) \<le> c" by (subst neg_le_iff_le [symmetric])
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
  1006
    (simp add: le_infI)
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
  1007
qed
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1008
25230
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1009
lemma neg_inf_eq_sup: "- inf a b = sup (-a) (-b)"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1010
  by (simp add: inf_eq_neg_sup)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1011
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1012
lemma neg_sup_eq_inf: "- sup a b = inf (-a) (-b)"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1013
  by (simp add: sup_eq_neg_inf)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1014
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1015
lemma add_eq_inf_sup: "a + b = sup a b + inf a b"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1016
proof -
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1017
  have "0 = - inf 0 (a-b) + inf (a-b) 0" by (simp add: inf_commute)
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1018
  hence "0 = sup 0 (b-a) + inf (a-b) 0" by (simp add: inf_eq_neg_sup)
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1019
  hence "0 = (-a + sup a b) + (inf a b + (-b))"
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1020
    apply (simp add: add_sup_distrib_left add_inf_distrib_right)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1021
    by (simp add: diff_minus add_commute)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1022
  thus ?thesis
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1023
    apply (simp add: compare_rls)
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1024
    apply (subst add_left_cancel [symmetric, of "plus a b" "plus (sup a b) (inf a b)" "uminus a"])
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1025
    apply (simp only: add_assoc, simp add: add_assoc[symmetric])
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1026
    done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1027
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1028
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1029
subsection {* Positive Part, Negative Part, Absolute Value *}
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1030
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1031
definition
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1032
  nprt :: "'a \<Rightarrow> 'a" where
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1033
  "nprt x = inf x 0"
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1034
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1035
definition
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1036
  pprt :: "'a \<Rightarrow> 'a" where
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1037
  "pprt x = sup x 0"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1038
25230
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1039
lemma pprt_neg: "pprt (- x) = - nprt x"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1040
proof -
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1041
  have "sup (- x) 0 = sup (- x) (- 0)" unfolding minus_zero ..
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1042
  also have "\<dots> = - inf x 0" unfolding neg_inf_eq_sup ..
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1043
  finally have "sup (- x) 0 = - inf x 0" .
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1044
  then show ?thesis unfolding pprt_def nprt_def .
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1045
qed
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1046
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1047
lemma nprt_neg: "nprt (- x) = - pprt x"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1048
proof -
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1049
  from pprt_neg have "pprt (- (- x)) = - nprt (- x)" .
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1050
  then have "pprt x = - nprt (- x)" by simp
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1051
  then show ?thesis by simp
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1052
qed
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1053
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1054
lemma prts: "a = pprt a + nprt a"
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1055
  by (simp add: pprt_def nprt_def add_eq_inf_sup[symmetric])
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1056
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1057
lemma zero_le_pprt[simp]: "0 \<le> pprt a"
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1058
  by (simp add: pprt_def)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1059
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1060
lemma nprt_le_zero[simp]: "nprt a \<le> 0"
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1061
  by (simp add: nprt_def)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1062
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1063
lemma le_eq_neg: "a \<le> - b \<longleftrightarrow> a + b \<le> 0" (is "?l = ?r")
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1064
proof -
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1065
  have a: "?l \<longrightarrow> ?r"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1066
    apply (auto)
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1067
    apply (rule add_le_imp_le_right[of _ "uminus b" _])
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1068
    apply (simp add: add_assoc)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1069
    done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1070
  have b: "?r \<longrightarrow> ?l"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1071
    apply (auto)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1072
    apply (rule add_le_imp_le_right[of _ "b" _])
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1073
    apply (simp)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1074
    done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1075
  from a b show ?thesis by blast
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1076
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1077
15580
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15539
diff changeset
  1078
lemma pprt_0[simp]: "pprt 0 = 0" by (simp add: pprt_def)
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15539
diff changeset
  1079
lemma nprt_0[simp]: "nprt 0 = 0" by (simp add: nprt_def)
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15539
diff changeset
  1080
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1081
lemma pprt_eq_id [simp, noatp]: "0 \<le> x \<Longrightarrow> pprt x = x"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1082
  by (simp add: pprt_def le_iff_sup sup_ACI)
15580
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15539
diff changeset
  1083
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1084
lemma nprt_eq_id [simp, noatp]: "x \<le> 0 \<Longrightarrow> nprt x = x"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1085
  by (simp add: nprt_def le_iff_inf inf_ACI)
15580
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15539
diff changeset
  1086
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1087
lemma pprt_eq_0 [simp, noatp]: "x \<le> 0 \<Longrightarrow> pprt x = 0"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1088
  by (simp add: pprt_def le_iff_sup sup_ACI)
15580
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15539
diff changeset
  1089
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1090
lemma nprt_eq_0 [simp, noatp]: "0 \<le> x \<Longrightarrow> nprt x = 0"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1091
  by (simp add: nprt_def le_iff_inf inf_ACI)
15580
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15539
diff changeset
  1092
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1093
lemma sup_0_imp_0: "sup a (- a) = 0 \<Longrightarrow> a = 0"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1094
proof -
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1095
  {
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1096
    fix a::'a
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1097
    assume hyp: "sup a (-a) = 0"
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1098
    hence "sup a (-a) + a = a" by (simp)
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1099
    hence "sup (a+a) 0 = a" by (simp add: add_sup_distrib_right) 
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1100
    hence "sup (a+a) 0 <= a" by (simp)
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1101
    hence "0 <= a" by (blast intro: order_trans inf_sup_ord)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1102
  }
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1103
  note p = this
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1104
  assume hyp:"sup a (-a) = 0"
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1105
  hence hyp2:"sup (-a) (-(-a)) = 0" by (simp add: sup_commute)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1106
  from p[OF hyp] p[OF hyp2] show "a = 0" by simp
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1107
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1108
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1109
lemma inf_0_imp_0: "inf a (-a) = 0 \<Longrightarrow> a = 0"
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1110
apply (simp add: inf_eq_neg_sup)
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1111
apply (simp add: sup_commute)
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1112
apply (erule sup_0_imp_0)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 15234
diff changeset
  1113
done
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1114
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1115
lemma inf_0_eq_0 [simp, noatp]: "inf a (- a) = 0 \<longleftrightarrow> a = 0"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1116
  by (rule, erule inf_0_imp_0) simp
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1117
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1118
lemma sup_0_eq_0 [simp, noatp]: "sup a (- a) = 0 \<longleftrightarrow> a = 0"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1119
  by (rule, erule sup_0_imp_0) simp
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1120
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1121
lemma zero_le_double_add_iff_zero_le_single_add [simp]:
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1122
  "0 \<le> a + a \<longleftrightarrow> 0 \<le> a"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1123
proof
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1124
  assume "0 <= a + a"
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1125
  hence a:"inf (a+a) 0 = 0" by (simp add: le_iff_inf inf_commute)
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1126
  have "(inf a 0)+(inf a 0) = inf (inf (a+a) 0) a" (is "?l=_")
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1127
    by (simp add: add_sup_inf_distribs inf_ACI)
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1128
  hence "?l = 0 + inf a 0" by (simp add: a, simp add: inf_commute)
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1129
  hence "inf a 0 = 0" by (simp only: add_right_cancel)
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22390
diff changeset
  1130
  then show "0 <= a" by (simp add: le_iff_inf inf_commute)    
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1131
next  
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1132
  assume a: "0 <= a"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1133
  show "0 <= a + a" by (simp add: add_mono[OF a a, simplified])
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1134
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1135
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1136
lemma double_zero: "a + a = 0 \<longleftrightarrow> a = 0"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1137
proof
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1138
  assume assm: "a + a = 0"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1139
  then have "a + a + - a = - a" by simp
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1140
  then have "a + (a + - a) = - a" by (simp only: add_assoc)
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1141
  then have a: "- a = a" by simp (*FIXME tune proof*)
25102
db3e412c4cb1 antisymmetry not a default intro rule any longer
haftmann
parents: 25090
diff changeset
  1142
  show "a = 0" apply (rule antisym)
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1143
  apply (unfold neg_le_iff_le [symmetric, of a])
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1144
  unfolding a apply simp
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1145
  unfolding zero_le_double_add_iff_zero_le_single_add [symmetric, of a]
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1146
  unfolding assm unfolding le_less apply simp_all done
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1147
next
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1148
  assume "a = 0" then show "a + a = 0" by simp
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1149
qed
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1150
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1151
lemma zero_less_double_add_iff_zero_less_single_add:
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1152
  "0 < a + a \<longleftrightarrow> 0 < a"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1153
proof (cases "a = 0")
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1154
  case True then show ?thesis by auto
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1155
next
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1156
  case False then show ?thesis (*FIXME tune proof*)
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1157
  unfolding less_le apply simp apply rule
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1158
  apply clarify
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1159
  apply rule
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1160
  apply assumption
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1161
  apply (rule notI)
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1162
  unfolding double_zero [symmetric, of a] apply simp
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1163
  done
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1164
qed
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1165
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1166
lemma double_add_le_zero_iff_single_add_le_zero [simp]:
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1167
  "a + a \<le> 0 \<longleftrightarrow> a \<le> 0" 
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1168
proof -
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1169
  have "a + a \<le> 0 \<longleftrightarrow> 0 \<le> - (a + a)" by (subst le_minus_iff, simp)
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1170
  moreover have "\<dots> \<longleftrightarrow> a \<le> 0" by (simp add: zero_le_double_add_iff_zero_le_single_add)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1171
  ultimately show ?thesis by blast
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1172
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1173
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1174
lemma double_add_less_zero_iff_single_less_zero [simp]:
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1175
  "a + a < 0 \<longleftrightarrow> a < 0"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1176
proof -
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1177
  have "a + a < 0 \<longleftrightarrow> 0 < - (a + a)" by (subst less_minus_iff, simp)
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1178
  moreover have "\<dots> \<longleftrightarrow> a < 0" by (simp add: zero_less_double_add_iff_zero_less_single_add)
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1179
  ultimately show ?thesis by blast
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1180
qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1181
25230
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1182
declare neg_inf_eq_sup [simp] neg_sup_eq_inf [simp]
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1183
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1184
lemma le_minus_self_iff: "a \<le> - a \<longleftrightarrow> a \<le> 0"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1185
proof -
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1186
  from add_le_cancel_left [of "uminus a" "plus a a" zero]
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1187
  have "(a <= -a) = (a+a <= 0)" 
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1188
    by (simp add: add_assoc[symmetric])
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1189
  thus ?thesis by simp
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1190
qed
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1191
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1192
lemma minus_le_self_iff: "- a \<le> a \<longleftrightarrow> 0 \<le> a"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1193
proof -
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1194
  from add_le_cancel_left [of "uminus a" zero "plus a a"]
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1195
  have "(-a <= a) = (0 <= a+a)" 
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1196
    by (simp add: add_assoc[symmetric])
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1197
  thus ?thesis by simp
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1198
qed
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1199
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1200
lemma zero_le_iff_zero_nprt: "0 \<le> a \<longleftrightarrow> nprt a = 0"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1201
  by (simp add: le_iff_inf nprt_def inf_commute)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1202
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1203
lemma le_zero_iff_zero_pprt: "a \<le> 0 \<longleftrightarrow> pprt a = 0"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1204
  by (simp add: le_iff_sup pprt_def sup_commute)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1205
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1206
lemma le_zero_iff_pprt_id: "0 \<le> a \<longleftrightarrow> pprt a = a"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1207
  by (simp add: le_iff_sup pprt_def sup_commute)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1208
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1209
lemma zero_le_iff_nprt_id: "a \<le> 0 \<longleftrightarrow> nprt a = a"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1210
  by (simp add: le_iff_inf nprt_def inf_commute)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1211
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1212
lemma pprt_mono [simp, noatp]: "a \<le> b \<Longrightarrow> pprt a \<le> pprt b"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1213
  by (simp add: le_iff_sup pprt_def sup_ACI sup_assoc [symmetric, of a])
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1214
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1215
lemma nprt_mono [simp, noatp]: "a \<le> b \<Longrightarrow> nprt a \<le> nprt b"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1216
  by (simp add: le_iff_inf nprt_def inf_ACI inf_assoc [symmetric, of a])
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1217
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1218
end
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1219
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1220
lemmas add_sup_inf_distribs = add_inf_distrib_right add_inf_distrib_left add_sup_distrib_right add_sup_distrib_left
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1221
25230
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1222
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
  1223
class lordered_ab_group_add_abs = lordered_ab_group_add + abs +
25230
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1224
  assumes abs_lattice: "\<bar>a\<bar> = sup a (- a)"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1225
begin
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1226
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1227
lemma abs_prts: "\<bar>a\<bar> = pprt a - nprt a"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1228
proof -
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1229
  have "0 \<le> \<bar>a\<bar>"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1230
  proof -
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1231
    have a: "a \<le> \<bar>a\<bar>" and b: "- a \<le> \<bar>a\<bar>" by (auto simp add: abs_lattice)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1232
    show ?thesis by (rule add_mono [OF a b, simplified])
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1233
  qed
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1234
  then have "0 \<le> sup a (- a)" unfolding abs_lattice .
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1235
  then have "sup (sup a (- a)) 0 = sup a (- a)" by (rule sup_absorb1)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1236
  then show ?thesis
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1237
    by (simp add: add_sup_inf_distribs sup_ACI
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1238
      pprt_def nprt_def diff_minus abs_lattice)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1239
qed
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1240
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1241
subclass pordered_ab_group_add_abs
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1242
proof -
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1243
  have abs_ge_zero [simp]: "\<And>a. 0 \<le> \<bar>a\<bar>"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1244
  proof -
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1245
    fix a b
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1246
    have a: "a \<le> \<bar>a\<bar>" and b: "- a \<le> \<bar>a\<bar>" by (auto simp add: abs_lattice)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1247
    show "0 \<le> \<bar>a\<bar>" by (rule add_mono [OF a b, simplified])
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1248
  qed
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1249
  have abs_leI: "\<And>a b. a \<le> b \<Longrightarrow> - a \<le> b \<Longrightarrow> \<bar>a\<bar> \<le> b"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1250
    by (simp add: abs_lattice le_supI)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1251
  show ?thesis
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1252
  proof unfold_locales
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1253
    fix a
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1254
    show "0 \<le> \<bar>a\<bar>" by simp
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1255
  next
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1256
    fix a
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1257
    show "a \<le> \<bar>a\<bar>"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1258
      by (auto simp add: abs_lattice)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1259
  next
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1260
    fix a
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1261
    show "\<bar>-a\<bar> = \<bar>a\<bar>"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1262
      by (simp add: abs_lattice sup_commute)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1263
  next
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1264
    fix a b
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1265
    show "a \<le> b \<Longrightarrow> - a \<le> b \<Longrightarrow> \<bar>a\<bar> \<le> b" by (erule abs_leI)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1266
  next
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1267
    fix a b
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1268
    show "\<bar>a + b\<bar> \<le> \<bar>a\<bar> + \<bar>b\<bar>"
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1269
    proof -
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1270
      have g:"abs a + abs b = sup (a+b) (sup (-a-b) (sup (-a+b) (a + (-b))))" (is "_=sup ?m ?n")
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1271
        by (simp add: abs_lattice add_sup_inf_distribs sup_ACI diff_minus)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1272
      have a:"a+b <= sup ?m ?n" by (simp)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1273
      have b:"-a-b <= ?n" by (simp) 
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1274
      have c:"?n <= sup ?m ?n" by (simp)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1275
      from b c have d: "-a-b <= sup ?m ?n" by(rule order_trans)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1276
      have e:"-a-b = -(a+b)" by (simp add: diff_minus)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1277
      from a d e have "abs(a+b) <= sup ?m ?n" 
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1278
        by (drule_tac abs_leI, auto)
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1279
      with g[symmetric] show ?thesis by simp
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1280
    qed
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1281
  qed auto
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1282
qed
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1283
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1284
end
022029099a83 continued localization
haftmann
parents: 25194
diff changeset
  1285
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1286
lemma sup_eq_if:
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
  1287
  fixes a :: "'a\<Colon>{lordered_ab_group_add, linorder}"
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1288
  shows "sup a (- a) = (if a < 0 then - a else a)"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1289
proof -
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1290
  note add_le_cancel_right [of a a "- a", symmetric, simplified]
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1291
  moreover note add_le_cancel_right [of "-a" a a, symmetric, simplified]
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1292
  then show ?thesis by (auto simp: sup_max max_def)
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1293
qed
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1294
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1295
lemma abs_if_lattice:
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
  1296
  fixes a :: "'a\<Colon>{lordered_ab_group_add_abs, linorder}"
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1297
  shows "\<bar>a\<bar> = (if a < 0 then - a else a)"
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1298
  by auto
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1299
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1300
14754
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1301
text {* Needed for abelian cancellation simprocs: *}
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1302
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1303
lemma add_cancel_21: "((x::'a::ab_group_add) + (y + z) = y + u) = (x + z = u)"
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1304
apply (subst add_left_commute)
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1305
apply (subst add_left_cancel)
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1306
apply simp
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1307
done
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1308
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1309
lemma add_cancel_end: "(x + (y + z) = y) = (x = - (z::'a::ab_group_add))"
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1310
apply (subst add_cancel_21[of _ _ _ 0, simplified])
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1311
apply (simp add: add_right_cancel[symmetric, of "x" "-z" "z", simplified])
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1312
done
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1313
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1314
lemma less_eqI: "(x::'a::pordered_ab_group_add) - y = x' - y' \<Longrightarrow> (x < y) = (x' < y')"
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1315
by (simp add: less_iff_diff_less_0[of x y] less_iff_diff_less_0[of x' y'])
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1316
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1317
lemma le_eqI: "(x::'a::pordered_ab_group_add) - y = x' - y' \<Longrightarrow> (y <= x) = (y' <= x')"
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1318
apply (simp add: le_iff_diff_le_0[of y x] le_iff_diff_le_0[of  y' x'])
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1319
apply (simp add: neg_le_iff_le[symmetric, of "y-x" 0] neg_le_iff_le[symmetric, of "y'-x'" 0])
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1320
done
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1321
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1322
lemma eq_eqI: "(x::'a::ab_group_add) - y = x' - y' \<Longrightarrow> (x = y) = (x' = y')"
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1323
by (simp add: eq_iff_diff_eq_0[of x y] eq_iff_diff_eq_0[of x' y'])
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1324
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1325
lemma diff_def: "(x::'a::ab_group_add) - y == x + (-y)"
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1326
by (simp add: diff_minus)
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1327
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1328
lemma add_minus_cancel: "(a::'a::ab_group_add) + (-a + b) = b"
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1329
by (simp add: add_assoc[symmetric])
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  1330
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1331
lemma le_add_right_mono: 
15178
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  1332
  assumes 
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  1333
  "a <= b + (c::'a::pordered_ab_group_add)"
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  1334
  "c <= d"    
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  1335
  shows "a <= b + d"
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  1336
  apply (rule_tac order_trans[where y = "b+c"])
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  1337
  apply (simp_all add: prems)
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  1338
  done
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  1339
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  1340
lemma estimate_by_abs:
25303
0699e20feabd renamed lordered_*_* to lordered_*_add_*; further localization
haftmann
parents: 25267
diff changeset
  1341
  "a + b <= (c::'a::lordered_ab_group_add_abs) \<Longrightarrow> a <= c + abs b" 
15178
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  1342
proof -
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23389
diff changeset
  1343
  assume "a+b <= c"
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23389
diff changeset
  1344
  hence 2: "a <= c+(-b)" by (simp add: group_simps)
15178
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  1345
  have 3: "(-b) <= abs b" by (rule abs_ge_minus_self)
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  1346
  show ?thesis by (rule le_add_right_mono[OF 2 3])
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  1347
qed
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  1348
25090
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1349
subsection {* Tools setup *}
4a50b958391a 98% localized
haftmann
parents: 25077
diff changeset
  1350
25077
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1351
lemma add_mono_thms_ordered_semiring [noatp]:
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1352
  fixes i j k :: "'a\<Colon>pordered_ab_semigroup_add"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1353
  shows "i \<le> j \<and> k \<le> l \<Longrightarrow> i + k \<le> j + l"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1354
    and "i = j \<and> k \<le> l \<Longrightarrow> i + k \<le> j + l"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1355
    and "i \<le> j \<and> k = l \<Longrightarrow> i + k \<le> j + l"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1356
    and "i = j \<and> k = l \<Longrightarrow> i + k = j + l"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1357
by (rule add_mono, clarify+)+
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1358
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1359
lemma add_mono_thms_ordered_field [noatp]:
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1360
  fixes i j k :: "'a\<Colon>pordered_cancel_ab_semigroup_add"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1361
  shows "i < j \<and> k = l \<Longrightarrow> i + k < j + l"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1362
    and "i = j \<and> k < l \<Longrightarrow> i + k < j + l"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1363
    and "i < j \<and> k \<le> l \<Longrightarrow> i + k < j + l"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1364
    and "i \<le> j \<and> k < l \<Longrightarrow> i + k < j + l"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1365
    and "i < j \<and> k < l \<Longrightarrow> i + k < j + l"
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1366
by (auto intro: add_strict_right_mono add_strict_left_mono
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1367
  add_less_le_mono add_le_less_mono add_strict_mono)
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1368
17085
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
  1369
text{*Simplification of @{term "x-y < 0"}, etc.*}
24380
c215e256beca moved ordered_ab_semigroup_add to OrderedGroup.thy
haftmann
parents: 24286
diff changeset
  1370
lemmas diff_less_0_iff_less [simp] = less_iff_diff_less_0 [symmetric]
c215e256beca moved ordered_ab_semigroup_add to OrderedGroup.thy
haftmann
parents: 24286
diff changeset
  1371
lemmas diff_eq_0_iff_eq [simp, noatp] = eq_iff_diff_eq_0 [symmetric]
c215e256beca moved ordered_ab_semigroup_add to OrderedGroup.thy
haftmann
parents: 24286
diff changeset
  1372
lemmas diff_le_0_iff_le [simp] = le_iff_diff_le_0 [symmetric]
17085
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
  1373
22482
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1374
ML {*
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1375
structure ab_group_add_cancel = Abel_Cancel(
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1376
struct
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1377
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1378
(* term order for abelian groups *)
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1379
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1380
fun agrp_ord (Const (a, _)) = find_index (fn a' => a = a')
22997
d4f3b015b50b canonical prefixing of class constants
haftmann
parents: 22986
diff changeset
  1381
      [@{const_name HOL.zero}, @{const_name HOL.plus},
d4f3b015b50b canonical prefixing of class constants
haftmann
parents: 22986
diff changeset
  1382
        @{const_name HOL.uminus}, @{const_name HOL.minus}]
22482
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1383
  | agrp_ord _ = ~1;
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1384
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1385
fun termless_agrp (a, b) = (Term.term_lpo agrp_ord (a, b) = LESS);
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1386
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1387
local
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1388
  val ac1 = mk_meta_eq @{thm add_assoc};
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1389
  val ac2 = mk_meta_eq @{thm add_commute};
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1390
  val ac3 = mk_meta_eq @{thm add_left_commute};
22997
d4f3b015b50b canonical prefixing of class constants
haftmann
parents: 22986
diff changeset
  1391
  fun solve_add_ac thy _ (_ $ (Const (@{const_name HOL.plus},_) $ _ $ _) $ _) =
22482
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1392
        SOME ac1
22997
d4f3b015b50b canonical prefixing of class constants
haftmann
parents: 22986
diff changeset
  1393
    | solve_add_ac thy _ (_ $ x $ (Const (@{const_name HOL.plus},_) $ y $ z)) =
22482
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1394
        if termless_agrp (y, x) then SOME ac3 else NONE
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1395
    | solve_add_ac thy _ (_ $ x $ y) =
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1396
        if termless_agrp (y, x) then SOME ac2 else NONE
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1397
    | solve_add_ac thy _ _ = NONE
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1398
in
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1399
  val add_ac_proc = Simplifier.simproc @{theory}
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1400
    "add_ac_proc" ["x + y::'a::ab_semigroup_add"] solve_add_ac;
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1401
end;
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1402
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1403
val cancel_ss = HOL_basic_ss settermless termless_agrp
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1404
  addsimprocs [add_ac_proc] addsimps
23085
fd30d75a6614 Introduced new classes monoid_add and group_add
nipkow
parents: 22997
diff changeset
  1405
  [@{thm add_0_left}, @{thm add_0_right}, @{thm diff_def},
22482
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1406
   @{thm minus_add_distrib}, @{thm minus_minus}, @{thm minus_zero},
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1407
   @{thm right_minus}, @{thm left_minus}, @{thm add_minus_cancel},
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1408
   @{thm minus_add_cancel}];
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1409
  
22548
6ce4bddf3bcb dropped legacy ML bindings
haftmann
parents: 22482
diff changeset
  1410
val eq_reflection = @{thm eq_reflection};
22482
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1411
  
24137
8d7896398147 replaced Theory.self_ref by Theory.check_thy, which now produces a checked ref;
wenzelm
parents: 23879
diff changeset
  1412
val thy_ref = Theory.check_thy @{theory};
22482
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1413
25077
c2ec5e589d78 continued localization
haftmann
parents: 25062
diff changeset
  1414
val T = @{typ "'a\<Colon>ab_group_add"};
22482
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1415
22548
6ce4bddf3bcb dropped legacy ML bindings
haftmann
parents: 22482
diff changeset
  1416
val eqI_rules = [@{thm less_eqI}, @{thm le_eqI}, @{thm eq_eqI}];
22482
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1417
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1418
val dest_eqI = 
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1419
  fst o HOLogic.dest_bin "op =" HOLogic.boolT o HOLogic.dest_Trueprop o concl_of;
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1420
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1421
end);
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1422
*}
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1423
26480
544cef16045b replaced 'ML_setup' by 'ML';
wenzelm
parents: 26071
diff changeset
  1424
ML {*
22482
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1425
  Addsimprocs [ab_group_add_cancel.sum_conv, ab_group_add_cancel.rel_conv];
8fc3d7237e03 dropped OrderedGroup.ML
haftmann
parents: 22452
diff changeset
  1426
*}
17085
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
  1427
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents:
diff changeset
  1428
end