src/HOL/Ring_and_Field.thy
author haftmann
Tue, 30 Oct 2007 08:45:54 +0100
changeset 25230 022029099a83
parent 25193 e2e1a4b00de3
child 25238 ee73d4c33a88
permissions -rw-r--r--
continued localization
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
     1
(*  Title:   HOL/Ring_and_Field.thy
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
     2
    ID:      $Id$
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
     3
    Author:  Gertrud Bauer, Steven Obua, Tobias Nipkow, Lawrence C Paulson, and Markus Wenzel,
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
     4
             with contributions by Jeremy Avigad
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
     5
*)
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
     6
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
     7
header {* (Ordered) Rings and Fields *}
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
     8
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15228
diff changeset
     9
theory Ring_and_Field
15140
322485b816ac import -> imports
nipkow
parents: 15131
diff changeset
    10
imports OrderedGroup
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15077
diff changeset
    11
begin
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    12
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    13
text {*
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    14
  The theory of partially ordered rings is taken from the books:
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    15
  \begin{itemize}
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    16
  \item \emph{Lattice Theory} by Garret Birkhoff, American Mathematical Society 1979 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    17
  \item \emph{Partially Ordered Algebraic Systems}, Pergamon Press 1963
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    18
  \end{itemize}
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    19
  Most of the used notions can also be looked up in 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    20
  \begin{itemize}
14770
fe9504ba63d5 removed duplicate thms;
wenzelm
parents: 14754
diff changeset
    21
  \item \url{http://www.mathworld.com} by Eric Weisstein et. al.
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    22
  \item \emph{Algebra I} by van der Waerden, Springer.
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    23
  \end{itemize}
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    24
*}
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    25
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    26
class semiring = ab_semigroup_add + semigroup_mult +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    27
  assumes left_distrib: "(a + b) * c = a * c + b * c"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    28
  assumes right_distrib: "a * (b + c) = a * b + a * c"
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    29
begin
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    30
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    31
text{*For the @{text combine_numerals} simproc*}
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    32
lemma combine_common_factor:
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    33
  "a * e + (b * e + c) = (a + b) * e + c"
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    34
  by (simp add: left_distrib add_ac)
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    35
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    36
end
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    37
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    38
class mult_zero = times + zero +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    39
  assumes mult_zero_left [simp]: "0 * a = 0"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    40
  assumes mult_zero_right [simp]: "a * 0 = 0"
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    41
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    42
class semiring_0 = semiring + comm_monoid_add + mult_zero
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    43
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    44
class semiring_0_cancel = semiring + comm_monoid_add + cancel_ab_semigroup_add
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
    45
begin
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    46
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
    47
subclass semiring_0
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
    48
proof unfold_locales
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    49
  fix a :: 'a
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    50
  have "0 * a + 0 * a = 0 * a + 0"
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    51
    by (simp add: left_distrib [symmetric])
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    52
  thus "0 * a = 0"
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    53
    by (simp only: add_left_cancel)
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    54
next
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    55
  fix a :: 'a
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    56
  have "a * 0 + a * 0 = a * 0 + 0"
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    57
    by (simp add: right_distrib [symmetric])
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    58
  thus "a * 0 = 0"
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    59
    by (simp only: add_left_cancel)
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    60
qed
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14770
diff changeset
    61
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
    62
end
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    63
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    64
class comm_semiring = ab_semigroup_add + ab_semigroup_mult +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    65
  assumes distrib: "(a + b) * c = a * c + b * c"
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    66
begin
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    67
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    68
subclass semiring
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    69
proof unfold_locales
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    70
  fix a b c :: 'a
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    71
  show "(a + b) * c = a * c + b * c" by (simp add: distrib)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    72
  have "a * (b + c) = (b + c) * a" by (simp add: mult_ac)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    73
  also have "... = b * a + c * a" by (simp only: distrib)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    74
  also have "... = a * b + a * c" by (simp add: mult_ac)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    75
  finally show "a * (b + c) = a * b + a * c" by blast
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    76
qed
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    77
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    78
end
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    79
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    80
class comm_semiring_0 = comm_semiring + comm_monoid_add + mult_zero
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    81
begin
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    82
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    83
subclass semiring_0 by unfold_locales
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    84
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    85
end
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    86
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    87
class comm_semiring_0_cancel = comm_semiring + comm_monoid_add + cancel_ab_semigroup_add
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
    88
begin
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14770
diff changeset
    89
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
    90
subclass semiring_0_cancel by unfold_locales
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14770
diff changeset
    91
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
    92
end
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    93
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    94
class zero_neq_one = zero + one +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    95
  assumes zero_neq_one [simp]: "0 \<noteq> 1"
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
    96
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    97
class semiring_1 = zero_neq_one + semiring_0 + monoid_mult
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    98
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    99
class comm_semiring_1 = zero_neq_one + comm_semiring_0 + comm_monoid_mult
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   100
  (*previously almost_semiring*)
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   101
begin
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   102
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   103
subclass semiring_1 by unfold_locales
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   104
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   105
end
14421
ee97b6463cb4 new Ring_and_Field hierarchy, eliminating redundant axioms
paulson
parents: 14398
diff changeset
   106
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   107
class no_zero_divisors = zero + times +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   108
  assumes no_zero_divisors: "a \<noteq> 0 \<Longrightarrow> b \<noteq> 0 \<Longrightarrow> a * b \<noteq> 0"
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
   109
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   110
class semiring_1_cancel = semiring + comm_monoid_add + zero_neq_one
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   111
  + cancel_ab_semigroup_add + monoid_mult
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14770
diff changeset
   112
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   113
subclass (in semiring_1_cancel) semiring_0_cancel by unfold_locales
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   114
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   115
subclass (in semiring_1_cancel) semiring_1 by unfold_locales
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
   116
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   117
class comm_semiring_1_cancel = comm_semiring + comm_monoid_add + comm_monoid_mult
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   118
  + zero_neq_one + cancel_ab_semigroup_add
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   119
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   120
subclass (in comm_semiring_1_cancel) semiring_1_cancel by unfold_locales
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   121
subclass (in comm_semiring_1_cancel) comm_semiring_0_cancel by unfold_locales
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   122
subclass (in comm_semiring_1_cancel) comm_semiring_1 by unfold_locales
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   123
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   124
class ring = semiring + ab_group_add
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   125
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   126
subclass (in ring) semiring_0_cancel by unfold_locales
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   127
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   128
context ring
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   129
begin
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   130
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   131
text {* Distribution rules *}
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   132
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   133
lemma minus_mult_left: "- (a * b) = - a * b"
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   134
  by (rule equals_zero_I) (simp add: left_distrib [symmetric]) 
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   135
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   136
lemma minus_mult_right: "- (a * b) = a * - b"
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   137
  by (rule equals_zero_I) (simp add: right_distrib [symmetric]) 
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   138
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   139
lemma minus_mult_minus [simp]: "- a * - b = a * b"
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   140
  by (simp add: minus_mult_left [symmetric] minus_mult_right [symmetric])
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   141
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   142
lemma minus_mult_commute: "- a * b = a * - b"
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   143
  by (simp add: minus_mult_left [symmetric] minus_mult_right [symmetric])
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   144
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   145
lemma right_diff_distrib: "a * (b - c) = a * b - a * c"
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   146
  by (simp add: right_distrib diff_minus 
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   147
    minus_mult_left [symmetric] minus_mult_right [symmetric]) 
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   148
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   149
lemma left_diff_distrib: "(a - b) * c = a * c - b * c"
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   150
  by (simp add: left_distrib diff_minus 
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   151
    minus_mult_left [symmetric] minus_mult_right [symmetric]) 
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   153
lemmas ring_distribs =
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   154
  right_distrib left_distrib left_diff_distrib right_diff_distrib
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   155
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   156
lemmas ring_simps =
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   157
  add_ac
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   158
  add_diff_eq diff_add_eq diff_diff_eq diff_diff_eq2
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   159
  diff_eq_eq eq_diff_eq diff_minus [symmetric] uminus_add_conv_diff
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   160
  ring_distribs
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   161
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   162
lemma eq_add_iff1:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   163
  "a * e + c = b * e + d \<longleftrightarrow> (a - b) * e + c = d"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   164
  by (simp add: ring_simps)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   165
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   166
lemma eq_add_iff2:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   167
  "a * e + c = b * e + d \<longleftrightarrow> c = (b - a) * e + d"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   168
  by (simp add: ring_simps)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   169
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   170
end
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   171
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   172
lemmas ring_distribs =
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   173
  right_distrib left_distrib left_diff_distrib right_diff_distrib
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   174
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   175
class comm_ring = comm_semiring + ab_group_add
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   176
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   177
subclass (in comm_ring) ring by unfold_locales
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   178
subclass (in comm_ring) comm_semiring_0 by unfold_locales
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   179
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   180
class ring_1 = ring + zero_neq_one + monoid_mult
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   181
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   182
subclass (in ring_1) semiring_1_cancel by unfold_locales
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   183
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   184
class comm_ring_1 = comm_ring + zero_neq_one + comm_monoid_mult
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   185
  (*previously ring*)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   186
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   187
subclass (in comm_ring_1) ring_1 by unfold_locales
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   188
subclass (in comm_ring_1) comm_semiring_1_cancel by unfold_locales
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   189
22990
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   190
class ring_no_zero_divisors = ring + no_zero_divisors
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   191
begin
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   192
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   193
lemma mult_eq_0_iff [simp]:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   194
  shows "a * b = 0 \<longleftrightarrow> (a = 0 \<or> b = 0)"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   195
proof (cases "a = 0 \<or> b = 0")
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   196
  case False then have "a \<noteq> 0" and "b \<noteq> 0" by auto
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   197
    then show ?thesis using no_zero_divisors by simp
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   198
next
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   199
  case True then show ?thesis by auto
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   200
qed
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   201
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   202
end
22990
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   203
23544
4b4165cb3e0d rename class dom to ring_1_no_zero_divisors
huffman
parents: 23527
diff changeset
   204
class ring_1_no_zero_divisors = ring_1 + ring_no_zero_divisors
22990
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   205
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   206
class idom = comm_ring_1 + no_zero_divisors
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   207
begin
14421
ee97b6463cb4 new Ring_and_Field hierarchy, eliminating redundant axioms
paulson
parents: 14398
diff changeset
   208
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   209
subclass ring_1_no_zero_divisors by unfold_locales
22990
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   210
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   211
end
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   212
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   213
class division_ring = ring_1 + inverse +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   214
  assumes left_inverse [simp]:  "a \<noteq> 0 \<Longrightarrow> inverse a * a = 1"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   215
  assumes right_inverse [simp]: "a \<noteq> 0 \<Longrightarrow> a * inverse a = 1"
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   216
begin
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   217
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   218
subclass ring_1_no_zero_divisors
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   219
proof unfold_locales
22987
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   220
  fix a b :: 'a
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   221
  assume a: "a \<noteq> 0" and b: "b \<noteq> 0"
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   222
  show "a * b \<noteq> 0"
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   223
  proof
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   224
    assume ab: "a * b = 0"
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   225
    hence "0 = inverse a * (a * b) * inverse b"
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   226
      by simp
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   227
    also have "\<dots> = (inverse a * a) * (b * inverse b)"
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   228
      by (simp only: mult_assoc)
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   229
    also have "\<dots> = 1"
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   230
      using a b by simp
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   231
    finally show False
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   232
      by simp
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   233
  qed
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   234
qed
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   235
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   236
end
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   237
22987
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   238
class field = comm_ring_1 + inverse +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   239
  assumes field_inverse:  "a \<noteq> 0 \<Longrightarrow> inverse a * a = 1"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   240
  assumes divide_inverse: "a / b = a * inverse b"
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   241
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   242
subclass (in field) division_ring
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   243
proof unfold_locales
22987
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   244
  fix a :: 'a
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   245
  assume "a \<noteq> 0"
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   246
  thus "inverse a * a = 1" by (rule field_inverse)
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   247
  thus "a * inverse a = 1" by (simp only: mult_commute)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   248
qed
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   249
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   250
subclass (in field) idom by unfold_locales
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   251
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   252
context field
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   253
begin
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   254
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   255
lemma right_inverse_eq: "b \<noteq> 0 \<Longrightarrow> a / b = 1 \<longleftrightarrow> a = b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   256
proof
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   257
  assume neq: "b \<noteq> 0"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   258
  {
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   259
    hence "a = (a / b) * b" by (simp add: divide_inverse mult_ac)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   260
    also assume "a / b = 1"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   261
    finally show "a = b" by simp
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   262
  next
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   263
    assume "a = b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   264
    with neq show "a / b = 1" by (simp add: divide_inverse)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   265
  }
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   266
qed
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   267
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   268
lemma nonzero_inverse_eq_divide: "a \<noteq> 0 \<Longrightarrow> inverse a = 1 / a"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   269
  by (simp add: divide_inverse)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   270
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   271
lemma divide_self [simp]: "a \<noteq> 0 \<Longrightarrow> a / a = 1"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   272
  by (simp add: divide_inverse)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   273
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   274
lemma divide_zero_left [simp]: "0 / a = 0"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   275
  by (simp add: divide_inverse)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   276
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   277
lemma inverse_eq_divide: "inverse a = 1 / a"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   278
  by (simp add: divide_inverse)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   279
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   280
lemma add_divide_distrib: "(a+b) / c = a/c + b/c"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   281
  by (simp add: divide_inverse ring_distribs) 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   282
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   283
end
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   284
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   285
class division_by_zero = zero + inverse +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   286
  assumes inverse_zero [simp]: "inverse 0 = 0"
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   287
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   288
lemma divide_zero [simp]:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   289
  "a / 0 = (0::'a::{field,division_by_zero})"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   290
  by (simp add: divide_inverse)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   291
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   292
lemma divide_self_if [simp]:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   293
  "a / (a::'a::{field,division_by_zero}) = (if a=0 then 0 else 1)"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   294
  by (simp add: divide_self)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   295
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   296
class mult_mono = times + zero + ord +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   297
  assumes mult_left_mono: "a \<le> b \<Longrightarrow> 0 \<le> c \<Longrightarrow> c * a \<le> c * b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   298
  assumes mult_right_mono: "a \<le> b \<Longrightarrow> 0 \<le> c \<Longrightarrow> a * c \<le> b * c"
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   299
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   300
class pordered_semiring = mult_mono + semiring_0 + pordered_ab_semigroup_add 
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   301
begin
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   302
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   303
lemma mult_mono:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   304
  "a \<le> b \<Longrightarrow> c \<le> d \<Longrightarrow> 0 \<le> b \<Longrightarrow> 0 \<le> c
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   305
     \<Longrightarrow> a * c \<le> b * d"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   306
apply (erule mult_right_mono [THEN order_trans], assumption)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   307
apply (erule mult_left_mono, assumption)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   308
done
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   309
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   310
lemma mult_mono':
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   311
  "a \<le> b \<Longrightarrow> c \<le> d \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 \<le> c
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   312
     \<Longrightarrow> a * c \<le> b * d"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   313
apply (rule mult_mono)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   314
apply (fast intro: order_trans)+
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   315
done
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   316
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   317
end
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
   318
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   319
class pordered_cancel_semiring = mult_mono + pordered_ab_semigroup_add
22987
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   320
  + semiring + comm_monoid_add + cancel_ab_semigroup_add
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   321
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   322
subclass (in pordered_cancel_semiring) semiring_0_cancel by unfold_locales
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   323
subclass (in pordered_cancel_semiring) pordered_semiring by unfold_locales
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
   324
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   325
context pordered_cancel_semiring
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   326
begin
23521
195fe3fe2831 added ordered_ring and ordered_semiring
obua
parents: 23496
diff changeset
   327
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   328
lemma mult_nonneg_nonneg: "0 \<le> a \<Longrightarrow> 0 \<le> b \<Longrightarrow> 0 \<le> a * b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   329
  by (drule mult_left_mono [of zero b], auto)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   330
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   331
lemma mult_nonneg_nonpos: "0 \<le> a \<Longrightarrow> b \<le> 0 \<Longrightarrow> a * b \<le> 0"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   332
  by (drule mult_left_mono [of b zero], auto)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   333
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   334
lemma mult_nonneg_nonpos2: "0 \<le> a \<Longrightarrow> b \<le> 0 \<Longrightarrow> b * a \<le> 0" 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   335
  by (drule mult_right_mono [of b zero], auto)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   336
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   337
lemma split_mult_neg_le: "(0 \<le> a & b \<le> 0) | (a \<le> 0 & 0 \<le> b) \<Longrightarrow> a * b \<le> (0::_::pordered_cancel_semiring)" 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   338
  by (auto simp add: mult_nonneg_nonpos mult_nonneg_nonpos2)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   339
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   340
end
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   341
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   342
class ordered_semiring = semiring + comm_monoid_add + ordered_cancel_ab_semigroup_add + mult_mono
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   343
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   344
subclass (in ordered_semiring) pordered_cancel_semiring by unfold_locales
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   345
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   346
context ordered_semiring
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   347
begin
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   348
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   349
lemma mult_left_less_imp_less:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   350
  "c * a < c * b \<Longrightarrow> 0 \<le> c \<Longrightarrow> a < b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   351
  by (force simp add: mult_left_mono not_le [symmetric])
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   352
 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   353
lemma mult_right_less_imp_less:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   354
  "a * c < b * c \<Longrightarrow> 0 \<le> c \<Longrightarrow> a < b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   355
  by (force simp add: mult_right_mono not_le [symmetric])
23521
195fe3fe2831 added ordered_ring and ordered_semiring
obua
parents: 23496
diff changeset
   356
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   357
end
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   358
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   359
class ordered_semiring_strict = semiring + comm_monoid_add + ordered_cancel_ab_semigroup_add +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   360
  assumes mult_strict_left_mono: "a < b \<Longrightarrow> 0 < c \<Longrightarrow> c * a < c * b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   361
  assumes mult_strict_right_mono: "a < b \<Longrightarrow> 0 < c \<Longrightarrow> a * c < b * c"
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14334
diff changeset
   362
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   363
subclass (in ordered_semiring_strict) semiring_0_cancel by unfold_locales
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14770
diff changeset
   364
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   365
subclass (in ordered_semiring_strict) ordered_semiring
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   366
proof unfold_locales
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   367
  fix a b c :: 'a
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   368
  assume A: "a \<le> b" "0 \<le> c"
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   369
  from A show "c * a \<le> c * b"
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   370
    unfolding le_less
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   371
    using mult_strict_left_mono by (cases "c = 0") auto
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   372
  from A show "a * c \<le> b * c"
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   373
    unfolding le_less
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   374
    using mult_strict_right_mono by (cases "c = 0") auto
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   375
qed
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   376
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   377
context ordered_semiring_strict
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   378
begin
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   379
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   380
lemma mult_left_le_imp_le:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   381
  "c * a \<le> c * b \<Longrightarrow> 0 < c \<Longrightarrow> a \<le> b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   382
  by (force simp add: mult_strict_left_mono _not_less [symmetric])
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   383
 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   384
lemma mult_right_le_imp_le:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   385
  "a * c \<le> b * c \<Longrightarrow> 0 < c \<Longrightarrow> a \<le> b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   386
  by (force simp add: mult_strict_right_mono not_less [symmetric])
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   387
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   388
lemma mult_pos_pos:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   389
  "0 < a \<Longrightarrow> 0 < b \<Longrightarrow> 0 < a * b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   390
  by (drule mult_strict_left_mono [of zero b], auto)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   391
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   392
lemma mult_pos_neg:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   393
  "0 < a \<Longrightarrow> b < 0 \<Longrightarrow> a * b < 0"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   394
  by (drule mult_strict_left_mono [of b zero], auto)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   395
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   396
lemma mult_pos_neg2:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   397
  "0 < a \<Longrightarrow> b < 0 \<Longrightarrow> b * a < 0" 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   398
  by (drule mult_strict_right_mono [of b zero], auto)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   399
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   400
lemma zero_less_mult_pos:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   401
  "0 < a * b \<Longrightarrow> 0 < a \<Longrightarrow> 0 < b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   402
apply (cases "b\<le>0") 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   403
 apply (auto simp add: le_less not_less)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   404
apply (drule_tac mult_pos_neg [of a b]) 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   405
 apply (auto dest: less_not_sym)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   406
done
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   407
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   408
lemma zero_less_mult_pos2:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   409
  "0 < b * a \<Longrightarrow> 0 < a \<Longrightarrow> 0 < b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   410
apply (cases "b\<le>0") 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   411
 apply (auto simp add: le_less not_less)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   412
apply (drule_tac mult_pos_neg2 [of a b]) 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   413
 apply (auto dest: less_not_sym)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   414
done
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   415
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   416
end
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   417
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   418
class mult_mono1 = times + zero + ord +
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   419
  assumes mult_mono1: "a \<le> b \<Longrightarrow> 0 \<le> c \<Longrightarrow> c * a \<le> c * b"
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   420
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   421
class pordered_comm_semiring = comm_semiring_0
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   422
  + pordered_ab_semigroup_add + mult_mono1
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   423
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   424
class pordered_cancel_comm_semiring = comm_semiring_0_cancel
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   425
  + pordered_ab_semigroup_add + mult_mono1
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   426
begin
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   427
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   428
subclass pordered_comm_semiring by unfold_locales
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   429
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   430
end
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   431
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   432
class ordered_comm_semiring_strict = comm_semiring_0 + ordered_cancel_ab_semigroup_add +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   433
  assumes mult_strict_mono: "a < b \<Longrightarrow> 0 < c \<Longrightarrow> c * a < c * b"
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   434
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   435
subclass (in pordered_comm_semiring) pordered_semiring
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   436
proof unfold_locales
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
   437
  fix a b c :: 'a
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   438
  assume "a \<le> b" "0 \<le> c"
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   439
  thus "c * a \<le> c * b" by (rule mult_mono1)
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   440
  thus "a * c \<le> b * c" by (simp only: mult_commute)
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
   441
qed
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   442
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   443
subclass (in pordered_cancel_comm_semiring) pordered_cancel_semiring
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   444
  by unfold_locales
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   445
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   446
subclass (in ordered_comm_semiring_strict) ordered_semiring_strict
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   447
proof unfold_locales
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   448
  fix a b c :: 'a
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   449
  assume "a < b" "0 < c"
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   450
  thus "c * a < c * b" by (rule mult_strict_mono)
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   451
  thus "a * c < b * c" by (simp only: mult_commute)
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   452
qed
14272
5efbb548107d Tidying of the integer development; towards removing the
paulson
parents: 14270
diff changeset
   453
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   454
subclass (in ordered_comm_semiring_strict) pordered_cancel_comm_semiring
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   455
proof unfold_locales
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   456
  fix a b c :: 'a
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   457
  assume "a \<le> b" "0 \<le> c"
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   458
  thus "c * a \<le> c * b"
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   459
    unfolding le_less
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   460
    using mult_strict_mono by (cases "c = 0") auto
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   461
qed
14272
5efbb548107d Tidying of the integer development; towards removing the
paulson
parents: 14270
diff changeset
   462
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   463
class pordered_ring = ring + pordered_cancel_semiring 
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   464
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   465
subclass (in pordered_ring) pordered_ab_group_add by unfold_locales
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   466
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   467
context pordered_ring
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   468
begin
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   469
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   470
lemmas ring_simps = ring_simps group_simps
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   471
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   472
lemma less_add_iff1:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   473
  "a * e + c < b * e + d \<longleftrightarrow> (a - b) * e + c < d"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   474
  by (simp add: ring_simps)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   475
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   476
lemma less_add_iff2:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   477
  "a * e + c < b * e + d \<longleftrightarrow> c < (b - a) * e + d"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   478
  by (simp add: ring_simps)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   479
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   480
lemma le_add_iff1:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   481
  "a * e + c \<le> b * e + d \<longleftrightarrow> (a - b) * e + c \<le> d"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   482
  by (simp add: ring_simps)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   483
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   484
lemma le_add_iff2:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   485
  "a * e + c \<le> b * e + d \<longleftrightarrow> c \<le> (b - a) * e + d"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   486
  by (simp add: ring_simps)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   487
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   488
lemma mult_left_mono_neg:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   489
  "b \<le> a \<Longrightarrow> c \<le> 0 \<Longrightarrow> c * a \<le> c * b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   490
  apply (drule mult_left_mono [of _ _ "uminus c"])
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   491
  apply (simp_all add: minus_mult_left [symmetric]) 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   492
  done
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   493
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   494
lemma mult_right_mono_neg:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   495
  "b \<le> a \<Longrightarrow> c \<le> 0 \<Longrightarrow> a * c \<le> b * c"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   496
  apply (drule mult_right_mono [of _ _ "uminus c"])
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   497
  apply (simp_all add: minus_mult_right [symmetric]) 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   498
  done
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   499
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   500
lemma mult_nonpos_nonpos:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   501
  "a \<le> 0 \<Longrightarrow> b \<le> 0 \<Longrightarrow> 0 \<le> a * b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   502
  by (drule mult_right_mono_neg [of a zero b]) auto
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   503
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   504
lemma split_mult_pos_le:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   505
  "(0 \<le> a \<and> 0 \<le> b) \<or> (a \<le> 0 \<and> b \<le> 0) \<Longrightarrow> 0 \<le> a * b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   506
  by (auto simp add: mult_nonneg_nonneg mult_nonpos_nonpos)
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   507
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   508
end
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   509
22452
8a86fd2a1bf0 adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents: 22422
diff changeset
   510
class lordered_ring = pordered_ring + lordered_ab_group_abs
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   511
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   512
subclass (in lordered_ring) lordered_ab_group_meet by unfold_locales
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   513
subclass (in lordered_ring) lordered_ab_group_join by unfold_locales
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14770
diff changeset
   514
23879
4776af8be741 split class abs from class minus
haftmann
parents: 23550
diff changeset
   515
class abs_if = minus + ord + zero + abs +
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   516
  assumes abs_if: "\<bar>a\<bar> = (if a < 0 then (- a) else a)"
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   517
24506
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 24491
diff changeset
   518
class sgn_if = sgn + zero + one + minus + ord +
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   519
  assumes sgn_if: "sgn x = (if x = 0 then 0 else if 0 < x then 1 else - 1)"
24506
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 24491
diff changeset
   520
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   521
class ordered_ring = ring + ordered_semiring
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   522
  + lordered_ab_group + abs_if
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   523
  -- {*FIXME: should inherit from ordered_ab_group_add rather than
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   524
         lordered_ab_group*}
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   525
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   526
instance ordered_ring \<subseteq> lordered_ring
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   527
proof 
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   528
  fix x :: 'a
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   529
  show "\<bar>x\<bar> = sup x (- x)"
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   530
    by (simp only: abs_if sup_eq_if)
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   531
qed
23521
195fe3fe2831 added ordered_ring and ordered_semiring
obua
parents: 23496
diff changeset
   532
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   533
(* The "strict" suffix can be seen as describing the combination of ordered_ring and no_zero_divisors.
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   534
   Basically, ordered_ring + no_zero_divisors = ordered_ring_strict.
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   535
 *)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   536
class ordered_ring_strict = ring + ordered_semiring_strict
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   537
  + lordered_ab_group + abs_if
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   538
  -- {*FIXME: should inherit from ordered_ab_group_add rather than
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   539
         lordered_ab_group*}
15923
01d5d0c1c078 fixed lin.arith
nipkow
parents: 15769
diff changeset
   540
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   541
instance ordered_ring_strict \<subseteq> ordered_ring by intro_classes
14272
5efbb548107d Tidying of the integer development; towards removing the
paulson
parents: 14270
diff changeset
   542
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   543
context ordered_ring_strict
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   544
begin
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14341
diff changeset
   545
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   546
lemma mult_strict_left_mono_neg:
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   547
  "b < a \<Longrightarrow> c < 0 \<Longrightarrow> c * a < c * b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   548
  apply (drule mult_strict_left_mono [of _ _ "uminus c"])
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   549
  apply (simp_all add: minus_mult_left [symmetric]) 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   550
  done
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   551
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   552
lemma mult_strict_right_mono_neg:
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   553
  "b < a \<Longrightarrow> c < 0 \<Longrightarrow> a * c < b * c"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   554
  apply (drule mult_strict_right_mono [of _ _ "uminus c"])
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   555
  apply (simp_all add: minus_mult_right [symmetric]) 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   556
  done
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   557
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   558
lemma mult_neg_neg:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   559
  "a < 0 \<Longrightarrow> b < 0 \<Longrightarrow> 0 < a * b"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   560
  by (drule mult_strict_right_mono_neg, auto)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   561
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   562
end
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   563
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   564
lemma zero_less_mult_iff:
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   565
  fixes a :: "'a::ordered_ring_strict"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   566
  shows "0 < a * b \<longleftrightarrow> 0 < a \<and> 0 < b \<or> a < 0 \<and> b < 0"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   567
  apply (auto simp add: le_less not_less mult_pos_pos mult_neg_neg)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   568
  apply (blast dest: zero_less_mult_pos) 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   569
  apply (blast dest: zero_less_mult_pos2)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   570
  done
22990
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   571
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   572
instance ordered_ring_strict \<subseteq> ring_no_zero_divisors
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   573
apply intro_classes
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   574
apply (auto simp add: linorder_not_less order_le_less linorder_neq_iff)
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   575
apply (force dest: mult_strict_right_mono_neg mult_strict_right_mono)+
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   576
done
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   577
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   578
lemma zero_le_mult_iff:
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   579
     "((0::'a::ordered_ring_strict) \<le> a*b) = (0 \<le> a & 0 \<le> b | a \<le> 0 & b \<le> 0)"
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   580
by (auto simp add: eq_commute [of 0] order_le_less linorder_not_less
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   581
                   zero_less_mult_iff)
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   582
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   583
lemma mult_less_0_iff:
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   584
     "(a*b < (0::'a::ordered_ring_strict)) = (0 < a & b < 0 | a < 0 & 0 < b)"
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   585
apply (insert zero_less_mult_iff [of "-a" b]) 
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   586
apply (force simp add: minus_mult_left[symmetric]) 
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   587
done
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   588
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   589
lemma mult_le_0_iff:
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   590
     "(a*b \<le> (0::'a::ordered_ring_strict)) = (0 \<le> a & b \<le> 0 | a \<le> 0 & 0 \<le> b)"
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   591
apply (insert zero_le_mult_iff [of "-a" b]) 
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   592
apply (force simp add: minus_mult_left[symmetric]) 
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   593
done
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   594
23095
45f10b70e891 Squared things out.
obua
parents: 23073
diff changeset
   595
lemma zero_le_square[simp]: "(0::'a::ordered_ring_strict) \<le> a*a"
45f10b70e891 Squared things out.
obua
parents: 23073
diff changeset
   596
by (simp add: zero_le_mult_iff linorder_linear)
45f10b70e891 Squared things out.
obua
parents: 23073
diff changeset
   597
45f10b70e891 Squared things out.
obua
parents: 23073
diff changeset
   598
lemma not_square_less_zero[simp]: "\<not> (a * a < (0::'a::ordered_ring_strict))"
45f10b70e891 Squared things out.
obua
parents: 23073
diff changeset
   599
by (simp add: not_less)
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   600
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   601
text{*This list of rewrites simplifies ring terms by multiplying
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   602
everything out and bringing sums and products into a canonical form
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   603
(by ordered rewriting). As a result it decides ring equalities but
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   604
also helps with inequalities. *}
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   605
lemmas ring_simps = group_simps ring_distribs
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   606
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   607
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   608
class pordered_comm_ring = comm_ring + pordered_comm_semiring
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   609
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   610
subclass (in pordered_comm_ring) pordered_ring by unfold_locales
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   611
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   612
subclass (in pordered_comm_ring) pordered_cancel_comm_semiring by unfold_locales
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   613
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   614
class ordered_semidom = comm_semiring_1_cancel + ordered_comm_semiring_strict +
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   615
  (*previously ordered_semiring*)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   616
  assumes zero_less_one [simp]: "0 < 1"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   617
begin
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   618
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   619
lemma pos_add_strict:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   620
  shows "0 < a \<Longrightarrow> b < c \<Longrightarrow> b < a + c"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   621
  using add_strict_mono [of zero a b c] by simp
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   622
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   623
end
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   624
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   625
class ordered_idom =
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   626
  comm_ring_1 +
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   627
  ordered_comm_semiring_strict +
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   628
  lordered_ab_group +
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   629
  abs_if + sgn_if
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   630
  (*previously ordered_ring*)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   631
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   632
instance ordered_idom \<subseteq> ordered_ring_strict ..
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   633
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   634
instance ordered_idom \<subseteq> pordered_comm_ring ..
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   635
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   636
class ordered_field = field + ordered_idom
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   637
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   638
lemma linorder_neqE_ordered_idom:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   639
  fixes x y :: "'a :: ordered_idom"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   640
  assumes "x \<noteq> y" obtains "x < y" | "y < x"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   641
  using assms by (rule linorder_neqE)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   642
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   643
-- {* FIXME continue localization here *}
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   644
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   645
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   646
text{*Proving axiom @{text zero_less_one} makes all @{text ordered_semidom}
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   647
      theorems available to members of @{term ordered_idom} *}
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   648
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   649
instance ordered_idom \<subseteq> ordered_semidom
14421
ee97b6463cb4 new Ring_and_Field hierarchy, eliminating redundant axioms
paulson
parents: 14398
diff changeset
   650
proof
ee97b6463cb4 new Ring_and_Field hierarchy, eliminating redundant axioms
paulson
parents: 14398
diff changeset
   651
  have "(0::'a) \<le> 1*1" by (rule zero_le_square)
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
   652
  thus "(0::'a) < 1" by (simp add: order_le_less) 
14421
ee97b6463cb4 new Ring_and_Field hierarchy, eliminating redundant axioms
paulson
parents: 14398
diff changeset
   653
qed
ee97b6463cb4 new Ring_and_Field hierarchy, eliminating redundant axioms
paulson
parents: 14398
diff changeset
   654
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   655
instance ordered_idom \<subseteq> idom ..
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   656
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   657
text{*All three types of comparision involving 0 and 1 are covered.*}
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   658
17085
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
   659
lemmas one_neq_zero = zero_neq_one [THEN not_sym]
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
   660
declare one_neq_zero [simp]
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   661
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   662
lemma zero_le_one [simp]: "(0::'a::ordered_semidom) \<le> 1"
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   663
  by (rule zero_less_one [THEN order_less_imp_le]) 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   664
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   665
lemma not_one_le_zero [simp]: "~ (1::'a::ordered_semidom) \<le> 0"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   666
by (simp add: linorder_not_le) 
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   667
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   668
lemma not_one_less_zero [simp]: "~ (1::'a::ordered_semidom) < 0"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   669
by (simp add: linorder_not_less) 
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   670
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
   671
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   672
subsection{*More Monotonicity*}
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   673
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   674
text{*Strict monotonicity in both arguments*}
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   675
lemma mult_strict_mono:
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   676
     "[|a<b; c<d; 0<b; 0\<le>c|] ==> a * c < b * (d::'a::ordered_semiring_strict)"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
   677
apply (cases "c=0")
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   678
 apply (simp add: mult_pos_pos) 
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   679
apply (erule mult_strict_right_mono [THEN order_less_trans])
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   680
 apply (force simp add: order_le_less) 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   681
apply (erule mult_strict_left_mono, assumption)
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   682
done
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   683
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   684
text{*This weaker variant has more natural premises*}
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   685
lemma mult_strict_mono':
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   686
     "[| a<b; c<d; 0 \<le> a; 0 \<le> c|] ==> a * c < b * (d::'a::ordered_semiring_strict)"
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   687
apply (rule mult_strict_mono)
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   688
apply (blast intro: order_le_less_trans)+
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   689
done
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   690
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   691
lemma less_1_mult: "[| 1 < m; 1 < n |] ==> 1 < m*(n::'a::ordered_semidom)"
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   692
apply (insert mult_strict_mono [of 1 m 1 n]) 
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
   693
apply (simp add:  order_less_trans [OF zero_less_one]) 
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   694
done
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   695
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   696
lemma mult_less_le_imp_less: "(a::'a::ordered_semiring_strict) < b ==>
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   697
    c <= d ==> 0 <= a ==> 0 < c ==> a * c < b * d"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   698
  apply (subgoal_tac "a * c < b * c")
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   699
  apply (erule order_less_le_trans)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   700
  apply (erule mult_left_mono)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   701
  apply simp
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   702
  apply (erule mult_strict_right_mono)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   703
  apply assumption
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   704
done
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   705
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   706
lemma mult_le_less_imp_less: "(a::'a::ordered_semiring_strict) <= b ==>
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   707
    c < d ==> 0 < a ==> 0 <= c ==> a * c < b * d"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   708
  apply (subgoal_tac "a * c <= b * c")
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   709
  apply (erule order_le_less_trans)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   710
  apply (erule mult_strict_left_mono)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   711
  apply simp
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   712
  apply (erule mult_right_mono)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   713
  apply simp
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   714
done
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   715
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
   716
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   717
subsection{*Cancellation Laws for Relationships With a Common Factor*}
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   718
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   719
text{*Cancellation laws for @{term "c*a < c*b"} and @{term "a*c < b*c"},
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   720
   also with the relations @{text "\<le>"} and equality.*}
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   721
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   722
text{*These ``disjunction'' versions produce two cases when the comparison is
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   723
 an assumption, but effectively four when the comparison is a goal.*}
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   724
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   725
lemma mult_less_cancel_right_disj:
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   726
    "(a*c < b*c) = ((0 < c & a < b) | (c < 0 & b < (a::'a::ordered_ring_strict)))"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
   727
apply (cases "c = 0")
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   728
apply (auto simp add: linorder_neq_iff mult_strict_right_mono 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   729
                      mult_strict_right_mono_neg)
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   730
apply (auto simp add: linorder_not_less 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   731
                      linorder_not_le [symmetric, of "a*c"]
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   732
                      linorder_not_le [symmetric, of a])
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   733
apply (erule_tac [!] notE)
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   734
apply (auto simp add: order_less_imp_le mult_right_mono 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   735
                      mult_right_mono_neg)
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   736
done
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   737
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   738
lemma mult_less_cancel_left_disj:
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   739
    "(c*a < c*b) = ((0 < c & a < b) | (c < 0 & b < (a::'a::ordered_ring_strict)))"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
   740
apply (cases "c = 0")
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   741
apply (auto simp add: linorder_neq_iff mult_strict_left_mono 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   742
                      mult_strict_left_mono_neg)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   743
apply (auto simp add: linorder_not_less 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   744
                      linorder_not_le [symmetric, of "c*a"]
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   745
                      linorder_not_le [symmetric, of a])
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   746
apply (erule_tac [!] notE)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   747
apply (auto simp add: order_less_imp_le mult_left_mono 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   748
                      mult_left_mono_neg)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   749
done
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   750
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   751
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   752
text{*The ``conjunction of implication'' lemmas produce two cases when the
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   753
comparison is a goal, but give four when the comparison is an assumption.*}
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   754
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   755
lemma mult_less_cancel_right:
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   756
  fixes c :: "'a :: ordered_ring_strict"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   757
  shows      "(a*c < b*c) = ((0 \<le> c --> a < b) & (c \<le> 0 --> b < a))"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   758
by (insert mult_less_cancel_right_disj [of a c b], auto)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   759
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   760
lemma mult_less_cancel_left:
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   761
  fixes c :: "'a :: ordered_ring_strict"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   762
  shows      "(c*a < c*b) = ((0 \<le> c --> a < b) & (c \<le> 0 --> b < a))"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   763
by (insert mult_less_cancel_left_disj [of c a b], auto)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   764
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   765
lemma mult_le_cancel_right:
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   766
     "(a*c \<le> b*c) = ((0<c --> a\<le>b) & (c<0 --> b \<le> (a::'a::ordered_ring_strict)))"
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   767
by (simp add: linorder_not_less [symmetric] mult_less_cancel_right_disj)
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   768
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   769
lemma mult_le_cancel_left:
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   770
     "(c*a \<le> c*b) = ((0<c --> a\<le>b) & (c<0 --> b \<le> (a::'a::ordered_ring_strict)))"
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   771
by (simp add: linorder_not_less [symmetric] mult_less_cancel_left_disj)
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   772
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   773
lemma mult_less_imp_less_left:
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14334
diff changeset
   774
      assumes less: "c*a < c*b" and nonneg: "0 \<le> c"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   775
      shows "a < (b::'a::ordered_semiring_strict)"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   776
proof (rule ccontr)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   777
  assume "~ a < b"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   778
  hence "b \<le> a" by (simp add: linorder_not_less)
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
   779
  hence "c*b \<le> c*a" using nonneg by (rule mult_left_mono)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   780
  with this and less show False 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   781
    by (simp add: linorder_not_less [symmetric])
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   782
qed
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   783
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   784
lemma mult_less_imp_less_right:
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   785
  assumes less: "a*c < b*c" and nonneg: "0 <= c"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   786
  shows "a < (b::'a::ordered_semiring_strict)"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   787
proof (rule ccontr)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   788
  assume "~ a < b"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   789
  hence "b \<le> a" by (simp add: linorder_not_less)
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
   790
  hence "b*c \<le> a*c" using nonneg by (rule mult_right_mono)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   791
  with this and less show False 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   792
    by (simp add: linorder_not_less [symmetric])
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   793
qed  
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   794
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   795
text{*Cancellation of equalities with a common factor*}
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
   796
lemma mult_cancel_right [simp,noatp]:
22990
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   797
  fixes a b c :: "'a::ring_no_zero_divisors"
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   798
  shows "(a * c = b * c) = (c = 0 \<or> a = b)"
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   799
proof -
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   800
  have "(a * c = b * c) = ((a - b) * c = 0)"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
   801
    by (simp add: ring_distribs)
22990
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   802
  thus ?thesis
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   803
    by (simp add: disj_commute)
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   804
qed
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   805
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
   806
lemma mult_cancel_left [simp,noatp]:
22990
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   807
  fixes a b c :: "'a::ring_no_zero_divisors"
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   808
  shows "(c * a = c * b) = (c = 0 \<or> a = b)"
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   809
proof -
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   810
  have "(c * a = c * b) = (c * (a - b) = 0)"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
   811
    by (simp add: ring_distribs)
22990
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   812
  thus ?thesis
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   813
    by simp
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   814
qed
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   815
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   816
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   817
subsubsection{*Special Cancellation Simprules for Multiplication*}
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   818
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   819
text{*These also produce two cases when the comparison is a goal.*}
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   820
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   821
lemma mult_le_cancel_right1:
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   822
  fixes c :: "'a :: ordered_idom"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   823
  shows "(c \<le> b*c) = ((0<c --> 1\<le>b) & (c<0 --> b \<le> 1))"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   824
by (insert mult_le_cancel_right [of 1 c b], simp)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   825
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   826
lemma mult_le_cancel_right2:
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   827
  fixes c :: "'a :: ordered_idom"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   828
  shows "(a*c \<le> c) = ((0<c --> a\<le>1) & (c<0 --> 1 \<le> a))"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   829
by (insert mult_le_cancel_right [of a c 1], simp)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   830
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   831
lemma mult_le_cancel_left1:
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   832
  fixes c :: "'a :: ordered_idom"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   833
  shows "(c \<le> c*b) = ((0<c --> 1\<le>b) & (c<0 --> b \<le> 1))"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   834
by (insert mult_le_cancel_left [of c 1 b], simp)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   835
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   836
lemma mult_le_cancel_left2:
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   837
  fixes c :: "'a :: ordered_idom"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   838
  shows "(c*a \<le> c) = ((0<c --> a\<le>1) & (c<0 --> 1 \<le> a))"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   839
by (insert mult_le_cancel_left [of c a 1], simp)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   840
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   841
lemma mult_less_cancel_right1:
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   842
  fixes c :: "'a :: ordered_idom"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   843
  shows "(c < b*c) = ((0 \<le> c --> 1<b) & (c \<le> 0 --> b < 1))"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   844
by (insert mult_less_cancel_right [of 1 c b], simp)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   845
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   846
lemma mult_less_cancel_right2:
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   847
  fixes c :: "'a :: ordered_idom"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   848
  shows "(a*c < c) = ((0 \<le> c --> a<1) & (c \<le> 0 --> 1 < a))"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   849
by (insert mult_less_cancel_right [of a c 1], simp)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   850
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   851
lemma mult_less_cancel_left1:
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   852
  fixes c :: "'a :: ordered_idom"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   853
  shows "(c < c*b) = ((0 \<le> c --> 1<b) & (c \<le> 0 --> b < 1))"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   854
by (insert mult_less_cancel_left [of c 1 b], simp)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   855
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   856
lemma mult_less_cancel_left2:
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   857
  fixes c :: "'a :: ordered_idom"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   858
  shows "(c*a < c) = ((0 \<le> c --> a<1) & (c \<le> 0 --> 1 < a))"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   859
by (insert mult_less_cancel_left [of c a 1], simp)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   860
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   861
lemma mult_cancel_right1 [simp]:
23544
4b4165cb3e0d rename class dom to ring_1_no_zero_divisors
huffman
parents: 23527
diff changeset
   862
  fixes c :: "'a :: ring_1_no_zero_divisors"
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   863
  shows "(c = b*c) = (c = 0 | b=1)"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   864
by (insert mult_cancel_right [of 1 c b], force)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   865
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   866
lemma mult_cancel_right2 [simp]:
23544
4b4165cb3e0d rename class dom to ring_1_no_zero_divisors
huffman
parents: 23527
diff changeset
   867
  fixes c :: "'a :: ring_1_no_zero_divisors"
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   868
  shows "(a*c = c) = (c = 0 | a=1)"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   869
by (insert mult_cancel_right [of a c 1], simp)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   870
 
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   871
lemma mult_cancel_left1 [simp]:
23544
4b4165cb3e0d rename class dom to ring_1_no_zero_divisors
huffman
parents: 23527
diff changeset
   872
  fixes c :: "'a :: ring_1_no_zero_divisors"
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   873
  shows "(c = c*b) = (c = 0 | b=1)"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   874
by (insert mult_cancel_left [of c 1 b], force)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   875
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   876
lemma mult_cancel_left2 [simp]:
23544
4b4165cb3e0d rename class dom to ring_1_no_zero_divisors
huffman
parents: 23527
diff changeset
   877
  fixes c :: "'a :: ring_1_no_zero_divisors"
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   878
  shows "(c*a = c) = (c = 0 | a=1)"
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   879
by (insert mult_cancel_left [of c a 1], simp)
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   880
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   881
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   882
text{*Simprules for comparisons where common factors can be cancelled.*}
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   883
lemmas mult_compare_simps =
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   884
    mult_le_cancel_right mult_le_cancel_left
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   885
    mult_le_cancel_right1 mult_le_cancel_right2
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   886
    mult_le_cancel_left1 mult_le_cancel_left2
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   887
    mult_less_cancel_right mult_less_cancel_left
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   888
    mult_less_cancel_right1 mult_less_cancel_right2
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   889
    mult_less_cancel_left1 mult_less_cancel_left2
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   890
    mult_cancel_right mult_cancel_left
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   891
    mult_cancel_right1 mult_cancel_right2
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   892
    mult_cancel_left1 mult_cancel_left2
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   893
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   894
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
   895
(* what ordering?? this is a straight instance of mult_eq_0_iff
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   896
text{*Compared with @{text mult_eq_0_iff}, this version removes the requirement
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   897
      of an ordering.*}
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   898
lemma field_mult_eq_0_iff [simp]:
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   899
  "(a*b = (0::'a::division_ring)) = (a = 0 | b = 0)"
22990
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   900
by simp
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
   901
*)
23496
84e9216a6d0e removed redundant lemmas
nipkow
parents: 23483
diff changeset
   902
(* subsumed by mult_cancel lemmas on ring_no_zero_divisors
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   903
text{*Cancellation of equalities with a common factor*}
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   904
lemma field_mult_cancel_right_lemma:
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   905
      assumes cnz: "c \<noteq> (0::'a::division_ring)"
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   906
         and eq:  "a*c = b*c"
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   907
        shows "a=b"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   908
proof -
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   909
  have "(a * c) * inverse c = (b * c) * inverse c"
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   910
    by (simp add: eq)
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   911
  thus "a=b"
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   912
    by (simp add: mult_assoc cnz)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   913
qed
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   914
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14341
diff changeset
   915
lemma field_mult_cancel_right [simp]:
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   916
     "(a*c = b*c) = (c = (0::'a::division_ring) | a=b)"
22990
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   917
by simp
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   918
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14341
diff changeset
   919
lemma field_mult_cancel_left [simp]:
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   920
     "(c*a = c*b) = (c = (0::'a::division_ring) | a=b)"
22990
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   921
by simp
23496
84e9216a6d0e removed redundant lemmas
nipkow
parents: 23483
diff changeset
   922
*)
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   923
lemma nonzero_imp_inverse_nonzero:
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   924
  "a \<noteq> 0 ==> inverse a \<noteq> (0::'a::division_ring)"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   925
proof
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   926
  assume ianz: "inverse a = 0"
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   927
  assume "a \<noteq> 0"
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   928
  hence "1 = a * inverse a" by simp
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   929
  also have "... = 0" by (simp add: ianz)
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   930
  finally have "1 = (0::'a::division_ring)" .
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   931
  thus False by (simp add: eq_commute)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   932
qed
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   933
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   934
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   935
subsection{*Basic Properties of @{term inverse}*}
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   936
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   937
lemma inverse_zero_imp_zero: "inverse a = 0 ==> a = (0::'a::division_ring)"
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   938
apply (rule ccontr) 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   939
apply (blast dest: nonzero_imp_inverse_nonzero) 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   940
done
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   941
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   942
lemma inverse_nonzero_imp_nonzero:
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   943
   "inverse a = 0 ==> a = (0::'a::division_ring)"
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   944
apply (rule ccontr) 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   945
apply (blast dest: nonzero_imp_inverse_nonzero) 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   946
done
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   947
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   948
lemma inverse_nonzero_iff_nonzero [simp]:
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   949
   "(inverse a = 0) = (a = (0::'a::{division_ring,division_by_zero}))"
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   950
by (force dest: inverse_nonzero_imp_nonzero) 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   951
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   952
lemma nonzero_inverse_minus_eq:
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   953
      assumes [simp]: "a\<noteq>0"
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   954
      shows "inverse(-a) = -inverse(a::'a::division_ring)"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   955
proof -
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   956
  have "-a * inverse (- a) = -a * - inverse a"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   957
    by simp
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   958
  thus ?thesis 
23496
84e9216a6d0e removed redundant lemmas
nipkow
parents: 23483
diff changeset
   959
    by (simp only: mult_cancel_left, simp)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   960
qed
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   961
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   962
lemma inverse_minus_eq [simp]:
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   963
   "inverse(-a) = -inverse(a::'a::{division_ring,division_by_zero})"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   964
proof cases
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   965
  assume "a=0" thus ?thesis by (simp add: inverse_zero)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   966
next
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   967
  assume "a\<noteq>0" 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   968
  thus ?thesis by (simp add: nonzero_inverse_minus_eq)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   969
qed
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   970
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   971
lemma nonzero_inverse_eq_imp_eq:
14269
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
   972
      assumes inveq: "inverse a = inverse b"
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
   973
	  and anz:  "a \<noteq> 0"
502a7c95de73 conversion of some Real theories to Isar scripts
paulson
parents: 14268
diff changeset
   974
	  and bnz:  "b \<noteq> 0"
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   975
	 shows "a = (b::'a::division_ring)"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   976
proof -
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   977
  have "a * inverse b = a * inverse a"
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   978
    by (simp add: inveq)
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   979
  hence "(a * inverse b) * b = (a * inverse a) * b"
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   980
    by simp
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   981
  thus "a = b"
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   982
    by (simp add: mult_assoc anz bnz)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14370
diff changeset
   983
qed
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   984
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   985
lemma inverse_eq_imp_eq:
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   986
  "inverse a = inverse b ==> a = (b::'a::{division_ring,division_by_zero})"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
   987
apply (cases "a=0 | b=0") 
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   988
 apply (force dest!: inverse_zero_imp_zero
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   989
              simp add: eq_commute [of "0::'a"])
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   990
apply (force dest!: nonzero_inverse_eq_imp_eq) 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   991
done
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   992
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   993
lemma inverse_eq_iff_eq [simp]:
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   994
  "(inverse a = inverse b) = (a = (b::'a::{division_ring,division_by_zero}))"
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   995
by (force dest!: inverse_eq_imp_eq)
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   996
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   997
lemma nonzero_inverse_inverse_eq:
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   998
      assumes [simp]: "a \<noteq> 0"
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
   999
      shows "inverse(inverse (a::'a::division_ring)) = a"
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1000
  proof -
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1001
  have "(inverse (inverse a) * inverse a) * a = a" 
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1002
    by (simp add: nonzero_imp_inverse_nonzero)
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1003
  thus ?thesis
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1004
    by (simp add: mult_assoc)
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1005
  qed
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1006
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1007
lemma inverse_inverse_eq [simp]:
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
  1008
     "inverse(inverse (a::'a::{division_ring,division_by_zero})) = a"
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1009
  proof cases
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1010
    assume "a=0" thus ?thesis by simp
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1011
  next
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1012
    assume "a\<noteq>0" 
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1013
    thus ?thesis by (simp add: nonzero_inverse_inverse_eq)
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1014
  qed
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1015
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
  1016
lemma inverse_1 [simp]: "inverse 1 = (1::'a::division_ring)"
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1017
  proof -
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
  1018
  have "inverse 1 * 1 = (1::'a::division_ring)" 
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1019
    by (rule left_inverse [OF zero_neq_one [symmetric]])
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1020
  thus ?thesis  by simp
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1021
  qed
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1022
15077
89840837108e converting Hyperreal/Transcendental to Isar script
paulson
parents: 15010
diff changeset
  1023
lemma inverse_unique: 
89840837108e converting Hyperreal/Transcendental to Isar script
paulson
parents: 15010
diff changeset
  1024
  assumes ab: "a*b = 1"
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
  1025
  shows "inverse a = (b::'a::division_ring)"
15077
89840837108e converting Hyperreal/Transcendental to Isar script
paulson
parents: 15010
diff changeset
  1026
proof -
89840837108e converting Hyperreal/Transcendental to Isar script
paulson
parents: 15010
diff changeset
  1027
  have "a \<noteq> 0" using ab by auto
89840837108e converting Hyperreal/Transcendental to Isar script
paulson
parents: 15010
diff changeset
  1028
  moreover have "inverse a * (a * b) = inverse a" by (simp add: ab) 
89840837108e converting Hyperreal/Transcendental to Isar script
paulson
parents: 15010
diff changeset
  1029
  ultimately show ?thesis by (simp add: mult_assoc [symmetric]) 
89840837108e converting Hyperreal/Transcendental to Isar script
paulson
parents: 15010
diff changeset
  1030
qed
89840837108e converting Hyperreal/Transcendental to Isar script
paulson
parents: 15010
diff changeset
  1031
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1032
lemma nonzero_inverse_mult_distrib: 
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1033
      assumes anz: "a \<noteq> 0"
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1034
          and bnz: "b \<noteq> 0"
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
  1035
      shows "inverse(a*b) = inverse(b) * inverse(a::'a::division_ring)"
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1036
  proof -
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1037
  have "inverse(a*b) * (a * b) * inverse(b) = inverse(b)" 
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1038
    by (simp add: anz bnz)
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1039
  hence "inverse(a*b) * a = inverse(b)" 
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1040
    by (simp add: mult_assoc bnz)
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1041
  hence "inverse(a*b) * a * inverse(a) = inverse(b) * inverse(a)" 
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1042
    by simp
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1043
  thus ?thesis
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1044
    by (simp add: mult_assoc anz)
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1045
  qed
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1046
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1047
text{*This version builds in division by zero while also re-orienting
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1048
      the right-hand side.*}
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1049
lemma inverse_mult_distrib [simp]:
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1050
     "inverse(a*b) = inverse(a) * inverse(b::'a::{field,division_by_zero})"
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1051
  proof cases
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1052
    assume "a \<noteq> 0 & b \<noteq> 0" 
22993
haftmann
parents: 22990
diff changeset
  1053
    thus ?thesis
haftmann
parents: 22990
diff changeset
  1054
      by (simp add: nonzero_inverse_mult_distrib mult_commute)
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1055
  next
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1056
    assume "~ (a \<noteq> 0 & b \<noteq> 0)" 
22993
haftmann
parents: 22990
diff changeset
  1057
    thus ?thesis
haftmann
parents: 22990
diff changeset
  1058
      by force
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1059
  qed
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1060
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
  1061
lemma division_ring_inverse_add:
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
  1062
  "[|(a::'a::division_ring) \<noteq> 0; b \<noteq> 0|]
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
  1063
   ==> inverse a + inverse b = inverse a * (a+b) * inverse b"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1064
by (simp add: ring_simps)
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
  1065
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
  1066
lemma division_ring_inverse_diff:
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
  1067
  "[|(a::'a::division_ring) \<noteq> 0; b \<noteq> 0|]
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
  1068
   ==> inverse a - inverse b = inverse a * (b-a) * inverse b"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1069
by (simp add: ring_simps)
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
  1070
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1071
text{*There is no slick version using division by zero.*}
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1072
lemma inverse_add:
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1073
  "[|a \<noteq> 0;  b \<noteq> 0|]
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1074
   ==> inverse a + inverse b = (a+b) * inverse a * inverse (b::'a::field)"
20496
23eb6034c06d added axclass division_ring (like field without commutativity; includes e.g. quaternions) and generalized some theorems from field to division_ring
huffman
parents: 19404
diff changeset
  1075
by (simp add: division_ring_inverse_add mult_ac)
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
  1076
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1077
lemma inverse_divide [simp]:
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1078
  "inverse (a/b) = b / (a::'a::{field,division_by_zero})"
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1079
by (simp add: divide_inverse mult_commute)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1080
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1081
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1082
subsection {* Calculations with fractions *}
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1083
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1084
text{* There is a whole bunch of simp-rules just for class @{text
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1085
field} but none for class @{text field} and @{text nonzero_divides}
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1086
because the latter are covered by a simproc. *}
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1087
24427
bc5cf3b09ff3 revised blacklisting for ATP linkup
paulson
parents: 24422
diff changeset
  1088
lemma nonzero_mult_divide_mult_cancel_left[simp,noatp]:
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1089
assumes [simp]: "b\<noteq>0" and [simp]: "c\<noteq>0" shows "(c*a)/(c*b) = a/(b::'a::field)"
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1090
proof -
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1091
  have "(c*a)/(c*b) = c * a * (inverse b * inverse c)"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1092
    by (simp add: divide_inverse nonzero_inverse_mult_distrib)
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1093
  also have "... =  a * inverse b * (inverse c * c)"
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1094
    by (simp only: mult_ac)
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1095
  also have "... =  a * inverse b"
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1096
    by simp
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1097
    finally show ?thesis 
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1098
    by (simp add: divide_inverse)
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1099
qed
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1100
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1101
lemma mult_divide_mult_cancel_left:
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1102
  "c\<noteq>0 ==> (c*a) / (c*b) = a / (b::'a::{field,division_by_zero})"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
  1103
apply (cases "b = 0")
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1104
apply (simp_all add: nonzero_mult_divide_mult_cancel_left)
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1105
done
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1106
24427
bc5cf3b09ff3 revised blacklisting for ATP linkup
paulson
parents: 24422
diff changeset
  1107
lemma nonzero_mult_divide_mult_cancel_right [noatp]:
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1108
  "[|b\<noteq>0; c\<noteq>0|] ==> (a*c) / (b*c) = a/(b::'a::field)"
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1109
by (simp add: mult_commute [of _ c] nonzero_mult_divide_mult_cancel_left) 
14321
55c688d2eefa new theorems
paulson
parents: 14305
diff changeset
  1110
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1111
lemma mult_divide_mult_cancel_right:
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1112
  "c\<noteq>0 ==> (a*c) / (b*c) = a / (b::'a::{field,division_by_zero})"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
  1113
apply (cases "b = 0")
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1114
apply (simp_all add: nonzero_mult_divide_mult_cancel_right)
14321
55c688d2eefa new theorems
paulson
parents: 14305
diff changeset
  1115
done
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1116
14284
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1117
lemma divide_1 [simp]: "a/1 = (a::'a::field)"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1118
by (simp add: divide_inverse)
14284
f1abe67c448a re-organisation of Real/RealArith0.ML; more `Isar scripts
paulson
parents: 14277
diff changeset
  1119
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1120
lemma times_divide_eq_right: "a * (b/c) = (a*b) / (c::'a::field)"
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
  1121
by (simp add: divide_inverse mult_assoc)
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1122
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
  1123
lemma times_divide_eq_left: "(b/c) * a = (b*a) / (c::'a::field)"
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
  1124
by (simp add: divide_inverse mult_ac)
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1125
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1126
lemmas times_divide_eq = times_divide_eq_right times_divide_eq_left
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1127
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1128
lemma divide_divide_eq_right [simp,noatp]:
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1129
  "a / (b/c) = (a*c) / (b::'a::{field,division_by_zero})"
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
  1130
by (simp add: divide_inverse mult_ac)
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1131
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1132
lemma divide_divide_eq_left [simp,noatp]:
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1133
  "(a / b) / (c::'a::{field,division_by_zero}) = a / (b*c)"
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
  1134
by (simp add: divide_inverse mult_assoc)
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1135
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1136
lemma add_frac_eq: "(y::'a::field) ~= 0 ==> z ~= 0 ==>
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1137
    x / y + w / z = (x * z + w * y) / (y * z)"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1138
apply (subgoal_tac "x / y = (x * z) / (y * z)")
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1139
apply (erule ssubst)
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1140
apply (subgoal_tac "w / z = (w * y) / (y * z)")
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1141
apply (erule ssubst)
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1142
apply (rule add_divide_distrib [THEN sym])
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1143
apply (subst mult_commute)
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1144
apply (erule nonzero_mult_divide_mult_cancel_left [THEN sym])
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1145
apply assumption
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1146
apply (erule nonzero_mult_divide_mult_cancel_right [THEN sym])
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1147
apply assumption
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1148
done
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1149
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1150
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1151
subsubsection{*Special Cancellation Simprules for Division*}
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1152
24427
bc5cf3b09ff3 revised blacklisting for ATP linkup
paulson
parents: 24422
diff changeset
  1153
lemma mult_divide_mult_cancel_left_if[simp,noatp]:
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1154
fixes c :: "'a :: {field,division_by_zero}"
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1155
shows "(c*a) / (c*b) = (if c=0 then 0 else a/b)"
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1156
by (simp add: mult_divide_mult_cancel_left)
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1157
24427
bc5cf3b09ff3 revised blacklisting for ATP linkup
paulson
parents: 24422
diff changeset
  1158
lemma nonzero_mult_divide_cancel_right[simp,noatp]:
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1159
  "b \<noteq> 0 \<Longrightarrow> a * b / b = (a::'a::field)"
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1160
using nonzero_mult_divide_mult_cancel_right[of 1 b a] by simp
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1161
24427
bc5cf3b09ff3 revised blacklisting for ATP linkup
paulson
parents: 24422
diff changeset
  1162
lemma nonzero_mult_divide_cancel_left[simp,noatp]:
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1163
  "a \<noteq> 0 \<Longrightarrow> a * b / a = (b::'a::field)"
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1164
using nonzero_mult_divide_mult_cancel_left[of 1 a b] by simp
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1165
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1166
24427
bc5cf3b09ff3 revised blacklisting for ATP linkup
paulson
parents: 24422
diff changeset
  1167
lemma nonzero_divide_mult_cancel_right[simp,noatp]:
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1168
  "\<lbrakk> a\<noteq>0; b\<noteq>0 \<rbrakk> \<Longrightarrow> b / (a * b) = 1/(a::'a::field)"
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1169
using nonzero_mult_divide_mult_cancel_right[of a b 1] by simp
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1170
24427
bc5cf3b09ff3 revised blacklisting for ATP linkup
paulson
parents: 24422
diff changeset
  1171
lemma nonzero_divide_mult_cancel_left[simp,noatp]:
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1172
  "\<lbrakk> a\<noteq>0; b\<noteq>0 \<rbrakk> \<Longrightarrow> a / (a * b) = 1/(b::'a::field)"
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1173
using nonzero_mult_divide_mult_cancel_left[of b a 1] by simp
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1174
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1175
24427
bc5cf3b09ff3 revised blacklisting for ATP linkup
paulson
parents: 24422
diff changeset
  1176
lemma nonzero_mult_divide_mult_cancel_left2[simp,noatp]:
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1177
  "[|b\<noteq>0; c\<noteq>0|] ==> (c*a) / (b*c) = a/(b::'a::field)"
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1178
using nonzero_mult_divide_mult_cancel_left[of b c a] by(simp add:mult_ac)
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1179
24427
bc5cf3b09ff3 revised blacklisting for ATP linkup
paulson
parents: 24422
diff changeset
  1180
lemma nonzero_mult_divide_mult_cancel_right2[simp,noatp]:
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1181
  "[|b\<noteq>0; c\<noteq>0|] ==> (a*c) / (c*b) = a/(b::'a::field)"
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1182
using nonzero_mult_divide_mult_cancel_right[of b c a] by(simp add:mult_ac)
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
  1183
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1184
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1185
subsection {* Division and Unary Minus *}
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1186
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1187
lemma nonzero_minus_divide_left: "b \<noteq> 0 ==> - (a/b) = (-a) / (b::'a::field)"
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1188
by (simp add: divide_inverse minus_mult_left)
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1189
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1190
lemma nonzero_minus_divide_right: "b \<noteq> 0 ==> - (a/b) = a / -(b::'a::field)"
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1191
by (simp add: divide_inverse nonzero_inverse_minus_eq minus_mult_right)
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1192
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1193
lemma nonzero_minus_divide_divide: "b \<noteq> 0 ==> (-a)/(-b) = a / (b::'a::field)"
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1194
by (simp add: divide_inverse nonzero_inverse_minus_eq)
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1195
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
  1196
lemma minus_divide_left: "- (a/b) = (-a) / (b::'a::field)"
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
  1197
by (simp add: divide_inverse minus_mult_left [symmetric])
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1198
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1199
lemma minus_divide_right: "- (a/b) = a / -(b::'a::{field,division_by_zero})"
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
  1200
by (simp add: divide_inverse minus_mult_right [symmetric])
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
  1201
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1202
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1203
text{*The effect is to extract signs from divisions*}
17085
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
  1204
lemmas divide_minus_left = minus_divide_left [symmetric]
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
  1205
lemmas divide_minus_right = minus_divide_right [symmetric]
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
  1206
declare divide_minus_left [simp]   divide_minus_right [simp]
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1207
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1208
text{*Also, extract signs from products*}
17085
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
  1209
lemmas mult_minus_left = minus_mult_left [symmetric]
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
  1210
lemmas mult_minus_right = minus_mult_right [symmetric]
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
  1211
declare mult_minus_left [simp]   mult_minus_right [simp]
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1212
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1213
lemma minus_divide_divide [simp]:
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  1214
  "(-a)/(-b) = a / (b::'a::{field,division_by_zero})"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
  1215
apply (cases "b=0", simp) 
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1216
apply (simp add: nonzero_minus_divide_divide) 
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1217
done
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1218
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
  1219
lemma diff_divide_distrib: "(a-b)/(c::'a::field) = a/c - b/c"
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1220
by (simp add: diff_minus add_divide_distrib) 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1221
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1222
lemma add_divide_eq_iff:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1223
  "(z::'a::field) \<noteq> 0 \<Longrightarrow> x + y/z = (z*x + y)/z"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1224
by(simp add:add_divide_distrib nonzero_mult_divide_cancel_left)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1225
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1226
lemma divide_add_eq_iff:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1227
  "(z::'a::field) \<noteq> 0 \<Longrightarrow> x/z + y = (x + z*y)/z"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1228
by(simp add:add_divide_distrib nonzero_mult_divide_cancel_left)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1229
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1230
lemma diff_divide_eq_iff:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1231
  "(z::'a::field) \<noteq> 0 \<Longrightarrow> x - y/z = (z*x - y)/z"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1232
by(simp add:diff_divide_distrib nonzero_mult_divide_cancel_left)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1233
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1234
lemma divide_diff_eq_iff:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1235
  "(z::'a::field) \<noteq> 0 \<Longrightarrow> x/z - y = (x - z*y)/z"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1236
by(simp add:diff_divide_distrib nonzero_mult_divide_cancel_left)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1237
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1238
lemma nonzero_eq_divide_eq: "c\<noteq>0 ==> ((a::'a::field) = b/c) = (a*c = b)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1239
proof -
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1240
  assume [simp]: "c\<noteq>0"
23496
84e9216a6d0e removed redundant lemmas
nipkow
parents: 23483
diff changeset
  1241
  have "(a = b/c) = (a*c = (b/c)*c)" by simp
84e9216a6d0e removed redundant lemmas
nipkow
parents: 23483
diff changeset
  1242
  also have "... = (a*c = b)" by (simp add: divide_inverse mult_assoc)
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1243
  finally show ?thesis .
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1244
qed
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1245
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1246
lemma nonzero_divide_eq_eq: "c\<noteq>0 ==> (b/c = (a::'a::field)) = (b = a*c)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1247
proof -
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1248
  assume [simp]: "c\<noteq>0"
23496
84e9216a6d0e removed redundant lemmas
nipkow
parents: 23483
diff changeset
  1249
  have "(b/c = a) = ((b/c)*c = a*c)"  by simp
84e9216a6d0e removed redundant lemmas
nipkow
parents: 23483
diff changeset
  1250
  also have "... = (b = a*c)"  by (simp add: divide_inverse mult_assoc) 
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1251
  finally show ?thesis .
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1252
qed
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1253
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1254
lemma eq_divide_eq:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1255
  "((a::'a::{field,division_by_zero}) = b/c) = (if c\<noteq>0 then a*c = b else a=0)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1256
by (simp add: nonzero_eq_divide_eq) 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1257
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1258
lemma divide_eq_eq:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1259
  "(b/c = (a::'a::{field,division_by_zero})) = (if c\<noteq>0 then b = a*c else a=0)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1260
by (force simp add: nonzero_divide_eq_eq) 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1261
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1262
lemma divide_eq_imp: "(c::'a::{division_by_zero,field}) ~= 0 ==>
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1263
    b = a * c ==> b / c = a"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1264
  by (subst divide_eq_eq, simp)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1265
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1266
lemma eq_divide_imp: "(c::'a::{division_by_zero,field}) ~= 0 ==>
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1267
    a * c = b ==> a = b / c"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1268
  by (subst eq_divide_eq, simp)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1269
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1270
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1271
lemmas field_eq_simps = ring_simps
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1272
  (* pull / out*)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1273
  add_divide_eq_iff divide_add_eq_iff
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1274
  diff_divide_eq_iff divide_diff_eq_iff
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1275
  (* multiply eqn *)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1276
  nonzero_eq_divide_eq nonzero_divide_eq_eq
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1277
(* is added later:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1278
  times_divide_eq_left times_divide_eq_right
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1279
*)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1280
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1281
text{*An example:*}
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1282
lemma fixes a b c d e f :: "'a::field"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1283
shows "\<lbrakk>a\<noteq>b; c\<noteq>d; e\<noteq>f \<rbrakk> \<Longrightarrow> ((a-b)*(c-d)*(e-f))/((c-d)*(e-f)*(a-b)) = 1"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1284
apply(subgoal_tac "(c-d)*(e-f)*(a-b) \<noteq> 0")
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1285
 apply(simp add:field_eq_simps)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1286
apply(simp)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1287
done
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1288
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1289
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1290
lemma diff_frac_eq: "(y::'a::field) ~= 0 ==> z ~= 0 ==>
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1291
    x / y - w / z = (x * z - w * y) / (y * z)"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1292
by (simp add:field_eq_simps times_divide_eq)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1293
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1294
lemma frac_eq_eq: "(y::'a::field) ~= 0 ==> z ~= 0 ==>
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1295
    (x / y = w / z) = (x * z = w * y)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1296
by (simp add:field_eq_simps times_divide_eq)
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1297
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1298
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1299
subsection {* Ordered Fields *}
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1300
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1301
lemma positive_imp_inverse_positive: 
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1302
assumes a_gt_0: "0 < a"  shows "0 < inverse (a::'a::ordered_field)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1303
proof -
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1304
  have "0 < a * inverse a" 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1305
    by (simp add: a_gt_0 [THEN order_less_imp_not_eq2] zero_less_one)
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1306
  thus "0 < inverse a" 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1307
    by (simp add: a_gt_0 [THEN order_less_not_sym] zero_less_mult_iff)
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1308
qed
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1309
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1310
lemma negative_imp_inverse_negative:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1311
  "a < 0 ==> inverse a < (0::'a::ordered_field)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1312
by (insert positive_imp_inverse_positive [of "-a"], 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1313
    simp add: nonzero_inverse_minus_eq order_less_imp_not_eq)
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1314
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1315
lemma inverse_le_imp_le:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1316
assumes invle: "inverse a \<le> inverse b" and apos:  "0 < a"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1317
shows "b \<le> (a::'a::ordered_field)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1318
proof (rule classical)
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1319
  assume "~ b \<le> a"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1320
  hence "a < b"  by (simp add: linorder_not_le)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1321
  hence bpos: "0 < b"  by (blast intro: apos order_less_trans)
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1322
  hence "a * inverse a \<le> a * inverse b"
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1323
    by (simp add: apos invle order_less_imp_le mult_left_mono)
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1324
  hence "(a * inverse a) * b \<le> (a * inverse b) * b"
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1325
    by (simp add: bpos order_less_imp_le mult_right_mono)
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1326
  thus "b \<le> a"  by (simp add: mult_assoc apos bpos order_less_imp_not_eq2)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1327
qed
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1328
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1329
lemma inverse_positive_imp_positive:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1330
assumes inv_gt_0: "0 < inverse a" and nz: "a \<noteq> 0"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1331
shows "0 < (a::'a::ordered_field)"
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1332
proof -
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1333
  have "0 < inverse (inverse a)"
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1334
    using inv_gt_0 by (rule positive_imp_inverse_positive)
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1335
  thus "0 < a"
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1336
    using nz by (simp add: nonzero_inverse_inverse_eq)
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1337
qed
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1338
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1339
lemma inverse_positive_iff_positive [simp]:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1340
  "(0 < inverse a) = (0 < (a::'a::{ordered_field,division_by_zero}))"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
  1341
apply (cases "a = 0", simp)
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1342
apply (blast intro: inverse_positive_imp_positive positive_imp_inverse_positive)
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1343
done
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1344
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1345
lemma inverse_negative_imp_negative:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1346
assumes inv_less_0: "inverse a < 0" and nz:  "a \<noteq> 0"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1347
shows "a < (0::'a::ordered_field)"
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1348
proof -
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1349
  have "inverse (inverse a) < 0"
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1350
    using inv_less_0 by (rule negative_imp_inverse_negative)
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1351
  thus "a < 0" using nz by (simp add: nonzero_inverse_inverse_eq)
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1352
qed
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1353
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1354
lemma inverse_negative_iff_negative [simp]:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1355
  "(inverse a < 0) = (a < (0::'a::{ordered_field,division_by_zero}))"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
  1356
apply (cases "a = 0", simp)
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1357
apply (blast intro: inverse_negative_imp_negative negative_imp_inverse_negative)
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1358
done
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1359
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1360
lemma inverse_nonnegative_iff_nonnegative [simp]:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1361
  "(0 \<le> inverse a) = (0 \<le> (a::'a::{ordered_field,division_by_zero}))"
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1362
by (simp add: linorder_not_less [symmetric])
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1363
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1364
lemma inverse_nonpositive_iff_nonpositive [simp]:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1365
  "(inverse a \<le> 0) = (a \<le> (0::'a::{ordered_field,division_by_zero}))"
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1366
by (simp add: linorder_not_less [symmetric])
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1367
23406
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1368
lemma ordered_field_no_lb: "\<forall> x. \<exists>y. y < (x::'a::ordered_field)"
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1369
proof
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1370
  fix x::'a
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1371
  have m1: "- (1::'a) < 0" by simp
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1372
  from add_strict_right_mono[OF m1, where c=x] 
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1373
  have "(- 1) + x < x" by simp
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1374
  thus "\<exists>y. y < x" by blast
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1375
qed
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1376
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1377
lemma ordered_field_no_ub: "\<forall> x. \<exists>y. y > (x::'a::ordered_field)"
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1378
proof
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1379
  fix x::'a
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1380
  have m1: " (1::'a) > 0" by simp
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1381
  from add_strict_right_mono[OF m1, where c=x] 
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1382
  have "1 + x > x" by simp
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1383
  thus "\<exists>y. y > x" by blast
167b53019d6f added theorems nonzero_mult_divide_cancel_right' nonzero_mult_divide_cancel_left' ordered_field_no_lb ordered_field_no_ub
chaieb
parents: 23400
diff changeset
  1384
qed
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1385
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1386
subsection{*Anti-Monotonicity of @{term inverse}*}
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1387
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1388
lemma less_imp_inverse_less:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1389
assumes less: "a < b" and apos:  "0 < a"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1390
shows "inverse b < inverse (a::'a::ordered_field)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1391
proof (rule ccontr)
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1392
  assume "~ inverse b < inverse a"
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1393
  hence "inverse a \<le> inverse b"
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1394
    by (simp add: linorder_not_less)
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1395
  hence "~ (a < b)"
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1396
    by (simp add: linorder_not_less inverse_le_imp_le [OF _ apos])
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1397
  thus False
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1398
    by (rule notE [OF _ less])
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1399
qed
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1400
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1401
lemma inverse_less_imp_less:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1402
  "[|inverse a < inverse b; 0 < a|] ==> b < (a::'a::ordered_field)"
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1403
apply (simp add: order_less_le [of "inverse a"] order_less_le [of "b"])
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1404
apply (force dest!: inverse_le_imp_le nonzero_inverse_eq_imp_eq) 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1405
done
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1406
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1407
text{*Both premises are essential. Consider -1 and 1.*}
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1408
lemma inverse_less_iff_less [simp,noatp]:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1409
  "[|0 < a; 0 < b|] ==> (inverse a < inverse b) = (b < (a::'a::ordered_field))"
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1410
by (blast intro: less_imp_inverse_less dest: inverse_less_imp_less) 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1411
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1412
lemma le_imp_inverse_le:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1413
  "[|a \<le> b; 0 < a|] ==> inverse b \<le> inverse (a::'a::ordered_field)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1414
by (force simp add: order_le_less less_imp_inverse_less)
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1415
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1416
lemma inverse_le_iff_le [simp,noatp]:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1417
 "[|0 < a; 0 < b|] ==> (inverse a \<le> inverse b) = (b \<le> (a::'a::ordered_field))"
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1418
by (blast intro: le_imp_inverse_le dest: inverse_le_imp_le) 
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1419
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1420
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1421
text{*These results refer to both operands being negative.  The opposite-sign
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1422
case is trivial, since inverse preserves signs.*}
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1423
lemma inverse_le_imp_le_neg:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1424
  "[|inverse a \<le> inverse b; b < 0|] ==> b \<le> (a::'a::ordered_field)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1425
apply (rule classical) 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1426
apply (subgoal_tac "a < 0") 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1427
 prefer 2 apply (force simp add: linorder_not_le intro: order_less_trans) 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1428
apply (insert inverse_le_imp_le [of "-b" "-a"])
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1429
apply (simp add: order_less_imp_not_eq nonzero_inverse_minus_eq) 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1430
done
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1431
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1432
lemma less_imp_inverse_less_neg:
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1433
   "[|a < b; b < 0|] ==> inverse b < inverse (a::'a::ordered_field)"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1434
apply (subgoal_tac "a < 0") 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1435
 prefer 2 apply (blast intro: order_less_trans) 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1436
apply (insert less_imp_inverse_less [of "-b" "-a"])
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1437
apply (simp add: order_less_imp_not_eq nonzero_inverse_minus_eq) 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1438
done
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1439
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1440
lemma inverse_less_imp_less_neg:
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1441
   "[|inverse a < inverse b; b < 0|] ==> b < (a::'a::ordered_field)"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1442
apply (rule classical) 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1443
apply (subgoal_tac "a < 0") 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1444
 prefer 2
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1445
 apply (force simp add: linorder_not_less intro: order_le_less_trans) 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1446
apply (insert inverse_less_imp_less [of "-b" "-a"])
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1447
apply (simp add: order_less_imp_not_eq nonzero_inverse_minus_eq) 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1448
done
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1449
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1450
lemma inverse_less_iff_less_neg [simp,noatp]:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1451
  "[|a < 0; b < 0|] ==> (inverse a < inverse b) = (b < (a::'a::ordered_field))"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1452
apply (insert inverse_less_iff_less [of "-b" "-a"])
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1453
apply (simp del: inverse_less_iff_less 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1454
            add: order_less_imp_not_eq nonzero_inverse_minus_eq)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1455
done
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1456
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1457
lemma le_imp_inverse_le_neg:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1458
  "[|a \<le> b; b < 0|] ==> inverse b \<le> inverse (a::'a::ordered_field)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1459
by (force simp add: order_le_less less_imp_inverse_less_neg)
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1460
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1461
lemma inverse_le_iff_le_neg [simp,noatp]:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1462
 "[|a < 0; b < 0|] ==> (inverse a \<le> inverse b) = (b \<le> (a::'a::ordered_field))"
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
  1463
by (blast intro: le_imp_inverse_le_neg dest: inverse_le_imp_le_neg) 
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
  1464
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
  1465
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1466
subsection{*Inverses and the Number One*}
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1467
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1468
lemma one_less_inverse_iff:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1469
  "(1 < inverse x) = (0 < x & x < (1::'a::{ordered_field,division_by_zero}))"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1470
proof cases
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1471
  assume "0 < x"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1472
    with inverse_less_iff_less [OF zero_less_one, of x]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1473
    show ?thesis by simp
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1474
next
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1475
  assume notless: "~ (0 < x)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1476
  have "~ (1 < inverse x)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1477
  proof
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1478
    assume "1 < inverse x"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1479
    also with notless have "... \<le> 0" by (simp add: linorder_not_less)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1480
    also have "... < 1" by (rule zero_less_one) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1481
    finally show False by auto
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1482
  qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1483
  with notless show ?thesis by simp
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1484
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1485
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1486
lemma inverse_eq_1_iff [simp]:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1487
  "(inverse x = 1) = (x = (1::'a::{field,division_by_zero}))"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1488
by (insert inverse_eq_iff_eq [of x 1], simp) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1489
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1490
lemma one_le_inverse_iff:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1491
  "(1 \<le> inverse x) = (0 < x & x \<le> (1::'a::{ordered_field,division_by_zero}))"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1492
by (force simp add: order_le_less one_less_inverse_iff zero_less_one 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1493
                    eq_commute [of 1]) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1494
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1495
lemma inverse_less_1_iff:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1496
  "(inverse x < 1) = (x \<le> 0 | 1 < (x::'a::{ordered_field,division_by_zero}))"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1497
by (simp add: linorder_not_le [symmetric] one_le_inverse_iff) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1498
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1499
lemma inverse_le_1_iff:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1500
  "(inverse x \<le> 1) = (x \<le> 0 | 1 \<le> (x::'a::{ordered_field,division_by_zero}))"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1501
by (simp add: linorder_not_less [symmetric] one_less_inverse_iff) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1502
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1503
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1504
subsection{*Simplification of Inequalities Involving Literal Divisors*}
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1505
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1506
lemma pos_le_divide_eq: "0 < (c::'a::ordered_field) ==> (a \<le> b/c) = (a*c \<le> b)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1507
proof -
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1508
  assume less: "0<c"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1509
  hence "(a \<le> b/c) = (a*c \<le> (b/c)*c)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1510
    by (simp add: mult_le_cancel_right order_less_not_sym [OF less])
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1511
  also have "... = (a*c \<le> b)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1512
    by (simp add: order_less_imp_not_eq2 [OF less] divide_inverse mult_assoc) 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1513
  finally show ?thesis .
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1514
qed
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1515
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1516
lemma neg_le_divide_eq: "c < (0::'a::ordered_field) ==> (a \<le> b/c) = (b \<le> a*c)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1517
proof -
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1518
  assume less: "c<0"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1519
  hence "(a \<le> b/c) = ((b/c)*c \<le> a*c)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1520
    by (simp add: mult_le_cancel_right order_less_not_sym [OF less])
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1521
  also have "... = (b \<le> a*c)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1522
    by (simp add: order_less_imp_not_eq [OF less] divide_inverse mult_assoc) 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1523
  finally show ?thesis .
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1524
qed
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1525
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1526
lemma le_divide_eq:
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1527
  "(a \<le> b/c) = 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1528
   (if 0 < c then a*c \<le> b
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1529
             else if c < 0 then b \<le> a*c
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1530
             else  a \<le> (0::'a::{ordered_field,division_by_zero}))"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
  1531
apply (cases "c=0", simp) 
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1532
apply (force simp add: pos_le_divide_eq neg_le_divide_eq linorder_neq_iff) 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1533
done
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1534
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1535
lemma pos_divide_le_eq: "0 < (c::'a::ordered_field) ==> (b/c \<le> a) = (b \<le> a*c)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1536
proof -
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1537
  assume less: "0<c"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1538
  hence "(b/c \<le> a) = ((b/c)*c \<le> a*c)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1539
    by (simp add: mult_le_cancel_right order_less_not_sym [OF less])
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1540
  also have "... = (b \<le> a*c)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1541
    by (simp add: order_less_imp_not_eq2 [OF less] divide_inverse mult_assoc) 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1542
  finally show ?thesis .
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1543
qed
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1544
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1545
lemma neg_divide_le_eq: "c < (0::'a::ordered_field) ==> (b/c \<le> a) = (a*c \<le> b)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1546
proof -
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1547
  assume less: "c<0"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1548
  hence "(b/c \<le> a) = (a*c \<le> (b/c)*c)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1549
    by (simp add: mult_le_cancel_right order_less_not_sym [OF less])
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1550
  also have "... = (a*c \<le> b)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1551
    by (simp add: order_less_imp_not_eq [OF less] divide_inverse mult_assoc) 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1552
  finally show ?thesis .
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1553
qed
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1554
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1555
lemma divide_le_eq:
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1556
  "(b/c \<le> a) = 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1557
   (if 0 < c then b \<le> a*c
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1558
             else if c < 0 then a*c \<le> b
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1559
             else 0 \<le> (a::'a::{ordered_field,division_by_zero}))"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
  1560
apply (cases "c=0", simp) 
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1561
apply (force simp add: pos_divide_le_eq neg_divide_le_eq linorder_neq_iff) 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1562
done
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1563
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1564
lemma pos_less_divide_eq:
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1565
     "0 < (c::'a::ordered_field) ==> (a < b/c) = (a*c < b)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1566
proof -
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1567
  assume less: "0<c"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1568
  hence "(a < b/c) = (a*c < (b/c)*c)"
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1569
    by (simp add: mult_less_cancel_right_disj order_less_not_sym [OF less])
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1570
  also have "... = (a*c < b)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1571
    by (simp add: order_less_imp_not_eq2 [OF less] divide_inverse mult_assoc) 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1572
  finally show ?thesis .
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1573
qed
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1574
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1575
lemma neg_less_divide_eq:
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1576
 "c < (0::'a::ordered_field) ==> (a < b/c) = (b < a*c)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1577
proof -
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1578
  assume less: "c<0"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1579
  hence "(a < b/c) = ((b/c)*c < a*c)"
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1580
    by (simp add: mult_less_cancel_right_disj order_less_not_sym [OF less])
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1581
  also have "... = (b < a*c)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1582
    by (simp add: order_less_imp_not_eq [OF less] divide_inverse mult_assoc) 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1583
  finally show ?thesis .
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1584
qed
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1585
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1586
lemma less_divide_eq:
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1587
  "(a < b/c) = 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1588
   (if 0 < c then a*c < b
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1589
             else if c < 0 then b < a*c
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1590
             else  a < (0::'a::{ordered_field,division_by_zero}))"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
  1591
apply (cases "c=0", simp) 
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1592
apply (force simp add: pos_less_divide_eq neg_less_divide_eq linorder_neq_iff) 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1593
done
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1594
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1595
lemma pos_divide_less_eq:
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1596
     "0 < (c::'a::ordered_field) ==> (b/c < a) = (b < a*c)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1597
proof -
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1598
  assume less: "0<c"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1599
  hence "(b/c < a) = ((b/c)*c < a*c)"
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1600
    by (simp add: mult_less_cancel_right_disj order_less_not_sym [OF less])
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1601
  also have "... = (b < a*c)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1602
    by (simp add: order_less_imp_not_eq2 [OF less] divide_inverse mult_assoc) 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1603
  finally show ?thesis .
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1604
qed
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1605
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1606
lemma neg_divide_less_eq:
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1607
 "c < (0::'a::ordered_field) ==> (b/c < a) = (a*c < b)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1608
proof -
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1609
  assume less: "c<0"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1610
  hence "(b/c < a) = (a*c < (b/c)*c)"
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1611
    by (simp add: mult_less_cancel_right_disj order_less_not_sym [OF less])
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1612
  also have "... = (a*c < b)"
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1613
    by (simp add: order_less_imp_not_eq [OF less] divide_inverse mult_assoc) 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1614
  finally show ?thesis .
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1615
qed
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1616
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1617
lemma divide_less_eq:
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1618
  "(b/c < a) = 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1619
   (if 0 < c then b < a*c
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1620
             else if c < 0 then a*c < b
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1621
             else 0 < (a::'a::{ordered_field,division_by_zero}))"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
  1622
apply (cases "c=0", simp) 
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1623
apply (force simp add: pos_divide_less_eq neg_divide_less_eq linorder_neq_iff) 
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1624
done
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1625
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1626
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1627
subsection{*Field simplification*}
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1628
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1629
text{* Lemmas @{text field_simps} multiply with denominators in
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1630
in(equations) if they can be proved to be non-zero (for equations) or
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1631
positive/negative (for inequations). *}
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1632
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1633
lemmas field_simps = field_eq_simps
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1634
  (* multiply ineqn *)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1635
  pos_divide_less_eq neg_divide_less_eq
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1636
  pos_less_divide_eq neg_less_divide_eq
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1637
  pos_divide_le_eq neg_divide_le_eq
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1638
  pos_le_divide_eq neg_le_divide_eq
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1639
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1640
text{* Lemmas @{text sign_simps} is a first attempt to automate proofs
23483
a9356b40fbd3 tex problem fixed
nipkow
parents: 23482
diff changeset
  1641
of positivity/negativity needed for @{text field_simps}. Have not added @{text
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1642
sign_simps} to @{text field_simps} because the former can lead to case
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1643
explosions. *}
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1644
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1645
lemmas sign_simps = group_simps
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1646
  zero_less_mult_iff  mult_less_0_iff
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1647
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1648
(* Only works once linear arithmetic is installed:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1649
text{*An example:*}
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1650
lemma fixes a b c d e f :: "'a::ordered_field"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1651
shows "\<lbrakk>a>b; c<d; e<f; 0 < u \<rbrakk> \<Longrightarrow>
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1652
 ((a-b)*(c-d)*(e-f))/((c-d)*(e-f)*(a-b)) <
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1653
 ((e-f)*(a-b)*(c-d))/((e-f)*(a-b)*(c-d)) + u"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1654
apply(subgoal_tac "(c-d)*(e-f)*(a-b) > 0")
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1655
 prefer 2 apply(simp add:sign_simps)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1656
apply(subgoal_tac "(c-d)*(e-f)*(a-b)*u > 0")
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1657
 prefer 2 apply(simp add:sign_simps)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1658
apply(simp add:field_simps)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1659
done
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1660
*)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1661
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1662
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1663
subsection{*Division and Signs*}
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1664
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1665
lemma zero_less_divide_iff:
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1666
     "((0::'a::{ordered_field,division_by_zero}) < a/b) = (0 < a & 0 < b | a < 0 & b < 0)"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1667
by (simp add: divide_inverse zero_less_mult_iff)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1668
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1669
lemma divide_less_0_iff:
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1670
     "(a/b < (0::'a::{ordered_field,division_by_zero})) = 
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1671
      (0 < a & b < 0 | a < 0 & 0 < b)"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1672
by (simp add: divide_inverse mult_less_0_iff)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1673
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1674
lemma zero_le_divide_iff:
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1675
     "((0::'a::{ordered_field,division_by_zero}) \<le> a/b) =
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1676
      (0 \<le> a & 0 \<le> b | a \<le> 0 & b \<le> 0)"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1677
by (simp add: divide_inverse zero_le_mult_iff)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1678
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1679
lemma divide_le_0_iff:
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1680
     "(a/b \<le> (0::'a::{ordered_field,division_by_zero})) =
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1681
      (0 \<le> a & b \<le> 0 | a \<le> 0 & 0 \<le> b)"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1682
by (simp add: divide_inverse mult_le_0_iff)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1683
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1684
lemma divide_eq_0_iff [simp,noatp]:
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1685
     "(a/b = 0) = (a=0 | b=(0::'a::{field,division_by_zero}))"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1686
by (simp add: divide_inverse)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1687
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1688
lemma divide_pos_pos:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1689
  "0 < (x::'a::ordered_field) ==> 0 < y ==> 0 < x / y"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1690
by(simp add:field_simps)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1691
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1692
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1693
lemma divide_nonneg_pos:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1694
  "0 <= (x::'a::ordered_field) ==> 0 < y ==> 0 <= x / y"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1695
by(simp add:field_simps)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1696
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1697
lemma divide_neg_pos:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1698
  "(x::'a::ordered_field) < 0 ==> 0 < y ==> x / y < 0"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1699
by(simp add:field_simps)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1700
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1701
lemma divide_nonpos_pos:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1702
  "(x::'a::ordered_field) <= 0 ==> 0 < y ==> x / y <= 0"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1703
by(simp add:field_simps)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1704
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1705
lemma divide_pos_neg:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1706
  "0 < (x::'a::ordered_field) ==> y < 0 ==> x / y < 0"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1707
by(simp add:field_simps)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1708
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1709
lemma divide_nonneg_neg:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1710
  "0 <= (x::'a::ordered_field) ==> y < 0 ==> x / y <= 0" 
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1711
by(simp add:field_simps)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1712
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1713
lemma divide_neg_neg:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1714
  "(x::'a::ordered_field) < 0 ==> y < 0 ==> 0 < x / y"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1715
by(simp add:field_simps)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1716
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1717
lemma divide_nonpos_neg:
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1718
  "(x::'a::ordered_field) <= 0 ==> y < 0 ==> 0 <= x / y"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1719
by(simp add:field_simps)
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1720
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1721
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1722
subsection{*Cancellation Laws for Division*}
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1723
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1724
lemma divide_cancel_right [simp,noatp]:
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1725
     "(a/c = b/c) = (c = 0 | a = (b::'a::{field,division_by_zero}))"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1726
apply (cases "c=0", simp)
23496
84e9216a6d0e removed redundant lemmas
nipkow
parents: 23483
diff changeset
  1727
apply (simp add: divide_inverse)
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1728
done
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1729
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1730
lemma divide_cancel_left [simp,noatp]:
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1731
     "(c/a = c/b) = (c = 0 | a = (b::'a::{field,division_by_zero}))" 
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1732
apply (cases "c=0", simp)
23496
84e9216a6d0e removed redundant lemmas
nipkow
parents: 23483
diff changeset
  1733
apply (simp add: divide_inverse)
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1734
done
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
  1735
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1736
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1737
subsection {* Division and the Number One *}
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1738
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1739
text{*Simplify expressions equated with 1*}
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1740
lemma divide_eq_1_iff [simp,noatp]:
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1741
     "(a/b = 1) = (b \<noteq> 0 & a = (b::'a::{field,division_by_zero}))"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1742
apply (cases "b=0", simp)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1743
apply (simp add: right_inverse_eq)
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1744
done
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1745
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1746
lemma one_eq_divide_iff [simp,noatp]:
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1747
     "(1 = a/b) = (b \<noteq> 0 & a = (b::'a::{field,division_by_zero}))"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1748
by (simp add: eq_commute [of 1])
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1749
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1750
lemma zero_eq_1_divide_iff [simp,noatp]:
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1751
     "((0::'a::{ordered_field,division_by_zero}) = 1/a) = (a = 0)"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1752
apply (cases "a=0", simp)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1753
apply (auto simp add: nonzero_eq_divide_eq)
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1754
done
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1755
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1756
lemma one_divide_eq_0_iff [simp,noatp]:
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1757
     "(1/a = (0::'a::{ordered_field,division_by_zero})) = (a = 0)"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1758
apply (cases "a=0", simp)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1759
apply (insert zero_neq_one [THEN not_sym])
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1760
apply (auto simp add: nonzero_divide_eq_eq)
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1761
done
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1762
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1763
text{*Simplify expressions such as @{text "0 < 1/x"} to @{text "0 < x"}*}
18623
9a5419d5ca01 simplified the special-case simprules
paulson
parents: 17085
diff changeset
  1764
lemmas zero_less_divide_1_iff = zero_less_divide_iff [of 1, simplified]
9a5419d5ca01 simplified the special-case simprules
paulson
parents: 17085
diff changeset
  1765
lemmas divide_less_0_1_iff = divide_less_0_iff [of 1, simplified]
9a5419d5ca01 simplified the special-case simprules
paulson
parents: 17085
diff changeset
  1766
lemmas zero_le_divide_1_iff = zero_le_divide_iff [of 1, simplified]
9a5419d5ca01 simplified the special-case simprules
paulson
parents: 17085
diff changeset
  1767
lemmas divide_le_0_1_iff = divide_le_0_iff [of 1, simplified]
17085
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
  1768
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
  1769
declare zero_less_divide_1_iff [simp]
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1770
declare divide_less_0_1_iff [simp,noatp]
17085
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
  1771
declare zero_le_divide_1_iff [simp]
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1772
declare divide_le_0_1_iff [simp,noatp]
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1773
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1774
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1775
subsection {* Ordering Rules for Division *}
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1776
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1777
lemma divide_strict_right_mono:
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1778
     "[|a < b; 0 < c|] ==> a / c < b / (c::'a::ordered_field)"
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1779
by (simp add: order_less_imp_not_eq2 divide_inverse mult_strict_right_mono 
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1780
              positive_imp_inverse_positive)
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1781
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1782
lemma divide_right_mono:
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1783
     "[|a \<le> b; 0 \<le> c|] ==> a/c \<le> b/(c::'a::{ordered_field,division_by_zero})"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1784
by (force simp add: divide_strict_right_mono order_le_less)
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1785
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1786
lemma divide_right_mono_neg: "(a::'a::{division_by_zero,ordered_field}) <= b 
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1787
    ==> c <= 0 ==> b / c <= a / c"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1788
apply (drule divide_right_mono [of _ _ "- c"])
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1789
apply auto
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1790
done
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1791
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1792
lemma divide_strict_right_mono_neg:
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1793
     "[|b < a; c < 0|] ==> a / c < b / (c::'a::ordered_field)"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1794
apply (drule divide_strict_right_mono [of _ _ "-c"], simp)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1795
apply (simp add: order_less_imp_not_eq nonzero_minus_divide_right [symmetric])
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1796
done
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1797
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1798
text{*The last premise ensures that @{term a} and @{term b} 
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1799
      have the same sign*}
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1800
lemma divide_strict_left_mono:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1801
  "[|b < a; 0 < c; 0 < a*b|] ==> c / a < c / (b::'a::ordered_field)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1802
by(auto simp: field_simps times_divide_eq zero_less_mult_iff mult_strict_right_mono)
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1803
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1804
lemma divide_left_mono:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1805
  "[|b \<le> a; 0 \<le> c; 0 < a*b|] ==> c / a \<le> c / (b::'a::ordered_field)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1806
by(auto simp: field_simps times_divide_eq zero_less_mult_iff mult_right_mono)
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1807
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1808
lemma divide_left_mono_neg: "(a::'a::{division_by_zero,ordered_field}) <= b 
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1809
    ==> c <= 0 ==> 0 < a * b ==> c / a <= c / b"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1810
  apply (drule divide_left_mono [of _ _ "- c"])
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1811
  apply (auto simp add: mult_commute)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1812
done
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1813
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1814
lemma divide_strict_left_mono_neg:
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1815
  "[|a < b; c < 0; 0 < a*b|] ==> c / a < c / (b::'a::ordered_field)"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1816
by(auto simp: field_simps times_divide_eq zero_less_mult_iff mult_strict_right_mono_neg)
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1817
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1818
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1819
text{*Simplify quotients that are compared with the value 1.*}
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1820
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1821
lemma le_divide_eq_1 [noatp]:
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1822
  fixes a :: "'a :: {ordered_field,division_by_zero}"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1823
  shows "(1 \<le> b / a) = ((0 < a & a \<le> b) | (a < 0 & b \<le> a))"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1824
by (auto simp add: le_divide_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1825
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1826
lemma divide_le_eq_1 [noatp]:
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1827
  fixes a :: "'a :: {ordered_field,division_by_zero}"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1828
  shows "(b / a \<le> 1) = ((0 < a & b \<le> a) | (a < 0 & a \<le> b) | a=0)"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1829
by (auto simp add: divide_le_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1830
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1831
lemma less_divide_eq_1 [noatp]:
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1832
  fixes a :: "'a :: {ordered_field,division_by_zero}"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1833
  shows "(1 < b / a) = ((0 < a & a < b) | (a < 0 & b < a))"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1834
by (auto simp add: less_divide_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1835
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1836
lemma divide_less_eq_1 [noatp]:
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1837
  fixes a :: "'a :: {ordered_field,division_by_zero}"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1838
  shows "(b / a < 1) = ((0 < a & b < a) | (a < 0 & a < b) | a=0)"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1839
by (auto simp add: divide_less_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1840
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1841
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1842
subsection{*Conditional Simplification Rules: No Case Splits*}
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1843
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1844
lemma le_divide_eq_1_pos [simp,noatp]:
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1845
  fixes a :: "'a :: {ordered_field,division_by_zero}"
18649
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1846
  shows "0 < a \<Longrightarrow> (1 \<le> b/a) = (a \<le> b)"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1847
by (auto simp add: le_divide_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1848
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1849
lemma le_divide_eq_1_neg [simp,noatp]:
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1850
  fixes a :: "'a :: {ordered_field,division_by_zero}"
18649
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1851
  shows "a < 0 \<Longrightarrow> (1 \<le> b/a) = (b \<le> a)"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1852
by (auto simp add: le_divide_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1853
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1854
lemma divide_le_eq_1_pos [simp,noatp]:
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1855
  fixes a :: "'a :: {ordered_field,division_by_zero}"
18649
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1856
  shows "0 < a \<Longrightarrow> (b/a \<le> 1) = (b \<le> a)"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1857
by (auto simp add: divide_le_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1858
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1859
lemma divide_le_eq_1_neg [simp,noatp]:
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1860
  fixes a :: "'a :: {ordered_field,division_by_zero}"
18649
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1861
  shows "a < 0 \<Longrightarrow> (b/a \<le> 1) = (a \<le> b)"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1862
by (auto simp add: divide_le_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1863
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1864
lemma less_divide_eq_1_pos [simp,noatp]:
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1865
  fixes a :: "'a :: {ordered_field,division_by_zero}"
18649
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1866
  shows "0 < a \<Longrightarrow> (1 < b/a) = (a < b)"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1867
by (auto simp add: less_divide_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1868
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1869
lemma less_divide_eq_1_neg [simp,noatp]:
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1870
  fixes a :: "'a :: {ordered_field,division_by_zero}"
18649
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1871
  shows "a < 0 \<Longrightarrow> (1 < b/a) = (b < a)"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1872
by (auto simp add: less_divide_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1873
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1874
lemma divide_less_eq_1_pos [simp,noatp]:
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1875
  fixes a :: "'a :: {ordered_field,division_by_zero}"
18649
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1876
  shows "0 < a \<Longrightarrow> (b/a < 1) = (b < a)"
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1877
by (auto simp add: divide_less_eq)
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1878
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1879
lemma divide_less_eq_1_neg [simp,noatp]:
18649
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1880
  fixes a :: "'a :: {ordered_field,division_by_zero}"
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1881
  shows "a < 0 \<Longrightarrow> b/a < 1 <-> a < b"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1882
by (auto simp add: divide_less_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1883
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1884
lemma eq_divide_eq_1 [simp,noatp]:
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1885
  fixes a :: "'a :: {ordered_field,division_by_zero}"
18649
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1886
  shows "(1 = b/a) = ((a \<noteq> 0 & a = b))"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1887
by (auto simp add: eq_divide_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1888
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23879
diff changeset
  1889
lemma divide_eq_eq_1 [simp,noatp]:
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1890
  fixes a :: "'a :: {ordered_field,division_by_zero}"
18649
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1891
  shows "(b/a = 1) = ((a \<noteq> 0 & a = b))"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1892
by (auto simp add: divide_eq_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1893
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1894
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1895
subsection {* Reasoning about inequalities with division *}
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1896
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1897
lemma mult_right_le_one_le: "0 <= (x::'a::ordered_idom) ==> 0 <= y ==> y <= 1
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1898
    ==> x * y <= x"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1899
  by (auto simp add: mult_compare_simps);
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1900
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1901
lemma mult_left_le_one_le: "0 <= (x::'a::ordered_idom) ==> 0 <= y ==> y <= 1
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1902
    ==> y * x <= x"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1903
  by (auto simp add: mult_compare_simps);
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1904
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1905
lemma mult_imp_div_pos_le: "0 < (y::'a::ordered_field) ==> x <= z * y ==>
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1906
    x / y <= z";
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1907
  by (subst pos_divide_le_eq, assumption+);
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1908
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1909
lemma mult_imp_le_div_pos: "0 < (y::'a::ordered_field) ==> z * y <= x ==>
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1910
    z <= x / y"
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1911
by(simp add:field_simps)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1912
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1913
lemma mult_imp_div_pos_less: "0 < (y::'a::ordered_field) ==> x < z * y ==>
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1914
    x / y < z"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1915
by(simp add:field_simps)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1916
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1917
lemma mult_imp_less_div_pos: "0 < (y::'a::ordered_field) ==> z * y < x ==>
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1918
    z < x / y"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1919
by(simp add:field_simps)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1920
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1921
lemma frac_le: "(0::'a::ordered_field) <= x ==> 
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1922
    x <= y ==> 0 < w ==> w <= z  ==> x / z <= y / w"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1923
  apply (rule mult_imp_div_pos_le)
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1924
  apply simp
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1925
  apply (subst times_divide_eq_left)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1926
  apply (rule mult_imp_le_div_pos, assumption)
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1927
  thm mult_mono
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1928
  thm mult_mono'
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1929
  apply (rule mult_mono)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1930
  apply simp_all
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1931
done
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1932
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1933
lemma frac_less: "(0::'a::ordered_field) <= x ==> 
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1934
    x < y ==> 0 < w ==> w <= z  ==> x / z < y / w"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1935
  apply (rule mult_imp_div_pos_less)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1936
  apply simp;
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1937
  apply (subst times_divide_eq_left);
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1938
  apply (rule mult_imp_less_div_pos, assumption)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1939
  apply (erule mult_less_le_imp_less)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1940
  apply simp_all
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1941
done
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1942
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1943
lemma frac_less2: "(0::'a::ordered_field) < x ==> 
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1944
    x <= y ==> 0 < w ==> w < z  ==> x / z < y / w"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1945
  apply (rule mult_imp_div_pos_less)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1946
  apply simp_all
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1947
  apply (subst times_divide_eq_left);
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1948
  apply (rule mult_imp_less_div_pos, assumption)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1949
  apply (erule mult_le_less_imp_less)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1950
  apply simp_all
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1951
done
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1952
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1953
text{*It's not obvious whether these should be simprules or not. 
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1954
  Their effect is to gather terms into one big fraction, like
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1955
  a*b*c / x*y*z. The rationale for that is unclear, but many proofs 
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1956
  seem to need them.*}
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1957
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1958
declare times_divide_eq [simp]
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1959
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1960
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1961
subsection {* Ordered Fields are Dense *}
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1962
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1963
context ordered_semidom
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1964
begin
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1965
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1966
lemma less_add_one: "a < a + 1"
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1967
proof -
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1968
  have "a + 0 < a + 1"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1969
    by (blast intro: zero_less_one add_strict_left_mono)
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1970
  thus ?thesis by simp
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1971
qed
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1972
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1973
lemma zero_less_two: "0 < 1 + 1"
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1974
  by (blast intro: less_trans zero_less_one less_add_one)
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1975
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1976
end
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1977
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1978
lemma less_half_sum: "a < b ==> a < (a+b) / (1+1::'a::ordered_field)"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1979
by (simp add: field_simps zero_less_two)
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1980
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1981
lemma gt_half_sum: "a < b ==> (a+b)/(1+1::'a::ordered_field) < b"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1982
by (simp add: field_simps zero_less_two)
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1983
24422
c0b5ff9e9e4d moved class dense_linear_order to Orderings.thy
haftmann
parents: 24286
diff changeset
  1984
instance ordered_field < dense_linear_order
c0b5ff9e9e4d moved class dense_linear_order to Orderings.thy
haftmann
parents: 24286
diff changeset
  1985
proof
c0b5ff9e9e4d moved class dense_linear_order to Orderings.thy
haftmann
parents: 24286
diff changeset
  1986
  fix x y :: 'a
c0b5ff9e9e4d moved class dense_linear_order to Orderings.thy
haftmann
parents: 24286
diff changeset
  1987
  have "x < x + 1" by simp
c0b5ff9e9e4d moved class dense_linear_order to Orderings.thy
haftmann
parents: 24286
diff changeset
  1988
  then show "\<exists>y. x < y" .. 
c0b5ff9e9e4d moved class dense_linear_order to Orderings.thy
haftmann
parents: 24286
diff changeset
  1989
  have "x - 1 < x" by simp
c0b5ff9e9e4d moved class dense_linear_order to Orderings.thy
haftmann
parents: 24286
diff changeset
  1990
  then show "\<exists>y. y < x" ..
c0b5ff9e9e4d moved class dense_linear_order to Orderings.thy
haftmann
parents: 24286
diff changeset
  1991
  show "x < y \<Longrightarrow> \<exists>z>x. z < y" by (blast intro!: less_half_sum gt_half_sum)
c0b5ff9e9e4d moved class dense_linear_order to Orderings.thy
haftmann
parents: 24286
diff changeset
  1992
qed
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1993
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1994
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1995
subsection {* Absolute Value *}
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1996
24491
8d194c9198ae added constant sgn
nipkow
parents: 24427
diff changeset
  1997
lemma mult_sgn_abs: "sgn x * abs x = (x::'a::{ordered_idom,linorder})"
8d194c9198ae added constant sgn
nipkow
parents: 24427
diff changeset
  1998
using less_linear[of x 0]
24506
020db6ec334a final(?) iteration of sgn saga.
nipkow
parents: 24491
diff changeset
  1999
by(auto simp: sgn_if abs_if)
24491
8d194c9198ae added constant sgn
nipkow
parents: 24427
diff changeset
  2000
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2001
lemma abs_one [simp]: "abs 1 = (1::'a::ordered_idom)"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  2002
by (simp add: abs_if zero_less_one [THEN order_less_not_sym])
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2003
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2004
lemma abs_le_mult: "abs (a * b) \<le> (abs a) * (abs (b::'a::lordered_ring))" 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2005
proof -
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2006
  let ?x = "pprt a * pprt b - pprt a * nprt b - nprt a * pprt b + nprt a * nprt b"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2007
  let ?y = "pprt a * pprt b + pprt a * nprt b + nprt a * pprt b + nprt a * nprt b"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2008
  have a: "(abs a) * (abs b) = ?x"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  2009
    by (simp only: abs_prts[of a] abs_prts[of b] ring_simps)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2010
  {
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2011
    fix u v :: 'a
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 15234
diff changeset
  2012
    have bh: "\<lbrakk>u = a; v = b\<rbrakk> \<Longrightarrow> 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 15234
diff changeset
  2013
              u * v = pprt a * pprt b + pprt a * nprt b + 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents: 15234
diff changeset
  2014
                      nprt a * pprt b + nprt a * nprt b"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2015
      apply (subst prts[of u], subst prts[of v])
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  2016
      apply (simp add: ring_simps) 
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2017
      done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2018
  }
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2019
  note b = this[OF refl[of a] refl[of b]]
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2020
  note addm = add_mono[of "0::'a" _ "0::'a", simplified]
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2021
  note addm2 = add_mono[of _ "0::'a" _ "0::'a", simplified]
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2022
  have xy: "- ?x <= ?y"
14754
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  2023
    apply (simp)
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  2024
    apply (rule_tac y="0::'a" in order_trans)
16568
e02fe7ae212b Changes due to new abel_cancel.ML
nipkow
parents: 15923
diff changeset
  2025
    apply (rule addm2)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2026
    apply (simp_all add: mult_nonneg_nonneg mult_nonpos_nonpos)
16568
e02fe7ae212b Changes due to new abel_cancel.ML
nipkow
parents: 15923
diff changeset
  2027
    apply (rule addm)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2028
    apply (simp_all add: mult_nonneg_nonneg mult_nonpos_nonpos)
14754
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  2029
    done
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2030
  have yx: "?y <= ?x"
16568
e02fe7ae212b Changes due to new abel_cancel.ML
nipkow
parents: 15923
diff changeset
  2031
    apply (simp add:diff_def)
14754
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  2032
    apply (rule_tac y=0 in order_trans)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2033
    apply (rule addm2, (simp add: mult_nonneg_nonpos mult_nonneg_nonpos2)+)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2034
    apply (rule addm, (simp add: mult_nonneg_nonpos mult_nonneg_nonpos2)+)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2035
    done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2036
  have i1: "a*b <= abs a * abs b" by (simp only: a b yx)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2037
  have i2: "- (abs a * abs b) <= a*b" by (simp only: a b xy)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2038
  show ?thesis
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2039
    apply (rule abs_leI)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2040
    apply (simp add: i1)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2041
    apply (simp add: i2[simplified minus_le_iff])
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2042
    done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2043
qed
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2044
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2045
lemma abs_eq_mult: 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2046
  assumes "(0 \<le> a \<or> a \<le> 0) \<and> (0 \<le> b \<or> b \<le> 0)"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2047
  shows "abs (a*b) = abs a * abs (b::'a::lordered_ring)"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2048
proof -
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2049
  have s: "(0 <= a*b) | (a*b <= 0)"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2050
    apply (auto)    
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2051
    apply (rule_tac split_mult_pos_le)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2052
    apply (rule_tac contrapos_np[of "a*b <= 0"])
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2053
    apply (simp)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2054
    apply (rule_tac split_mult_neg_le)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2055
    apply (insert prems)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2056
    apply (blast)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2057
    done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2058
  have mulprts: "a * b = (pprt a + nprt a) * (pprt b + nprt b)"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2059
    by (simp add: prts[symmetric])
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2060
  show ?thesis
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2061
  proof cases
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2062
    assume "0 <= a * b"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2063
    then show ?thesis
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2064
      apply (simp_all add: mulprts abs_prts)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2065
      apply (insert prems)
14754
a080eeeaec14 Modification / Installation of Provers/Arith/abel_cancel.ML for OrderedGroup.thy
obua
parents: 14738
diff changeset
  2066
      apply (auto simp add: 
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  2067
	ring_simps 
25078
a1ddc5206cb1 moved lemmas to OrderedGroup.thy
haftmann
parents: 25062
diff changeset
  2068
	iffD1[OF zero_le_iff_zero_nprt] iffD1[OF le_zero_iff_zero_pprt]
a1ddc5206cb1 moved lemmas to OrderedGroup.thy
haftmann
parents: 25062
diff changeset
  2069
	iffD1[OF le_zero_iff_pprt_id] iffD1[OF zero_le_iff_nprt_id])
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2070
	apply(drule (1) mult_nonneg_nonpos[of a b], simp)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2071
	apply(drule (1) mult_nonneg_nonpos2[of b a], simp)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2072
      done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2073
  next
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2074
    assume "~(0 <= a*b)"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2075
    with s have "a*b <= 0" by simp
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2076
    then show ?thesis
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2077
      apply (simp_all add: mulprts abs_prts)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2078
      apply (insert prems)
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  2079
      apply (auto simp add: ring_simps)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2080
      apply(drule (1) mult_nonneg_nonneg[of a b],simp)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2081
      apply(drule (1) mult_nonpos_nonpos[of a b],simp)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2082
      done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2083
  qed
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2084
qed
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2085
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2086
lemma abs_mult: "abs (a * b) = abs a * abs (b::'a::ordered_idom)" 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2087
by (simp add: abs_eq_mult linorder_linear)
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  2088
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2089
lemma abs_mult_self: "abs a * abs a = a * (a::'a::ordered_idom)"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2090
by (simp add: abs_if) 
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2091
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2092
lemma nonzero_abs_inverse:
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2093
     "a \<noteq> 0 ==> abs (inverse (a::'a::ordered_field)) = inverse (abs a)"
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2094
apply (auto simp add: linorder_neq_iff abs_if nonzero_inverse_minus_eq 
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2095
                      negative_imp_inverse_negative)
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2096
apply (blast intro: positive_imp_inverse_positive elim: order_less_asym) 
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2097
done
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2098
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2099
lemma abs_inverse [simp]:
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2100
     "abs (inverse (a::'a::{ordered_field,division_by_zero})) = 
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2101
      inverse (abs a)"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
  2102
apply (cases "a=0", simp) 
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2103
apply (simp add: nonzero_abs_inverse) 
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2104
done
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2105
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2106
lemma nonzero_abs_divide:
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2107
     "b \<noteq> 0 ==> abs (a / (b::'a::ordered_field)) = abs a / abs b"
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2108
by (simp add: divide_inverse abs_mult nonzero_abs_inverse) 
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2109
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  2110
lemma abs_divide [simp]:
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2111
     "abs (a / (b::'a::{ordered_field,division_by_zero})) = abs a / abs b"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
  2112
apply (cases "b=0", simp) 
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2113
apply (simp add: nonzero_abs_divide) 
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2114
done
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2115
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2116
lemma abs_mult_less:
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2117
     "[| abs a < c; abs b < d |] ==> abs a * abs b < c*(d::'a::ordered_idom)"
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2118
proof -
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2119
  assume ac: "abs a < c"
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2120
  hence cpos: "0<c" by (blast intro: order_le_less_trans abs_ge_zero)
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2121
  assume "abs b < d"
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2122
  thus ?thesis by (simp add: ac cpos mult_strict_mono) 
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  2123
qed
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  2124
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2125
lemma eq_minus_self_iff: "(a = -a) = (a = (0::'a::ordered_idom))"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2126
by (force simp add: order_eq_iff le_minus_self_iff minus_le_self_iff)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2127
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2128
lemma less_minus_self_iff: "(a < -a) = (a < (0::'a::ordered_idom))"
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2129
by (simp add: order_less_le le_minus_self_iff eq_minus_self_iff)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2130
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2131
lemma abs_less_iff: "(abs a < b) = (a < b & -a < (b::'a::ordered_idom))" 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2132
apply (simp add: order_less_le abs_le_iff)  
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2133
apply (auto simp add: abs_if minus_le_self_iff eq_minus_self_iff)
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2134
apply (simp add: le_minus_self_iff linorder_neq_iff) 
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2135
done
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  2136
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2137
lemma abs_mult_pos: "(0::'a::ordered_idom) <= x ==> 
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2138
    (abs y) * x = abs (y * x)";
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2139
  apply (subst abs_mult);
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2140
  apply simp;
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2141
done;
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2142
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2143
lemma abs_div_pos: "(0::'a::{division_by_zero,ordered_field}) < y ==> 
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2144
    abs x / y = abs (x / y)";
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2145
  apply (subst abs_divide);
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2146
  apply (simp add: order_less_imp_le);
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2147
done;
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  2148
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  2149
19404
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2150
subsection {* Bounds of products via negative and positive Part *}
15178
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  2151
15580
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2152
lemma mult_le_prts:
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2153
  assumes
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2154
  "a1 <= (a::'a::lordered_ring)"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2155
  "a <= a2"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2156
  "b1 <= b"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2157
  "b <= b2"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2158
  shows
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2159
  "a * b <= pprt a2 * pprt b2 + pprt a1 * nprt b2 + nprt a2 * pprt b1 + nprt a1 * nprt b1"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2160
proof - 
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2161
  have "a * b = (pprt a + nprt a) * (pprt b + nprt b)" 
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2162
    apply (subst prts[symmetric])+
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2163
    apply simp
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2164
    done
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2165
  then have "a * b = pprt a * pprt b + pprt a * nprt b + nprt a * pprt b + nprt a * nprt b"
23477
f4b83f03cac9 tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents: 23413
diff changeset
  2166
    by (simp add: ring_simps)
15580
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2167
  moreover have "pprt a * pprt b <= pprt a2 * pprt b2"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2168
    by (simp_all add: prems mult_mono)
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2169
  moreover have "pprt a * nprt b <= pprt a1 * nprt b2"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2170
  proof -
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2171
    have "pprt a * nprt b <= pprt a * nprt b2"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2172
      by (simp add: mult_left_mono prems)
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2173
    moreover have "pprt a * nprt b2 <= pprt a1 * nprt b2"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2174
      by (simp add: mult_right_mono_neg prems)
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2175
    ultimately show ?thesis
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2176
      by simp
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2177
  qed
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2178
  moreover have "nprt a * pprt b <= nprt a2 * pprt b1"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2179
  proof - 
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2180
    have "nprt a * pprt b <= nprt a2 * pprt b"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2181
      by (simp add: mult_right_mono prems)
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2182
    moreover have "nprt a2 * pprt b <= nprt a2 * pprt b1"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2183
      by (simp add: mult_left_mono_neg prems)
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2184
    ultimately show ?thesis
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2185
      by simp
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2186
  qed
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2187
  moreover have "nprt a * nprt b <= nprt a1 * nprt b1"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2188
  proof -
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2189
    have "nprt a * nprt b <= nprt a * nprt b1"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2190
      by (simp add: mult_left_mono_neg prems)
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2191
    moreover have "nprt a * nprt b1 <= nprt a1 * nprt b1"
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2192
      by (simp add: mult_right_mono_neg prems)
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2193
    ultimately show ?thesis
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2194
      by simp
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2195
  qed
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2196
  ultimately show ?thesis
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2197
    by - (rule add_mono | simp)+
900291ee0af8 Cleaning up HOL/Matrix
obua
parents: 15481
diff changeset
  2198
qed
19404
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2199
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2200
lemma mult_ge_prts:
15178
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  2201
  assumes
19404
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2202
  "a1 <= (a::'a::lordered_ring)"
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2203
  "a <= a2"
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2204
  "b1 <= b"
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2205
  "b <= b2"
15178
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  2206
  shows
19404
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2207
  "a * b >= nprt a1 * pprt b2 + nprt a2 * nprt b2 + pprt a1 * pprt b1 + pprt a2 * nprt b1"
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2208
proof - 
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2209
  from prems have a1:"- a2 <= -a" by auto
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2210
  from prems have a2: "-a <= -a1" by auto
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2211
  from mult_le_prts[of "-a2" "-a" "-a1" "b1" b "b2", OF a1 a2 prems(3) prems(4), simplified nprt_neg pprt_neg] 
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2212
  have le: "- (a * b) <= - nprt a1 * pprt b2 + - nprt a2 * nprt b2 + - pprt a1 * pprt b1 + - pprt a2 * nprt b1" by simp  
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2213
  then have "-(- nprt a1 * pprt b2 + - nprt a2 * nprt b2 + - pprt a1 * pprt b1 + - pprt a2 * nprt b1) <= a * b"
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2214
    by (simp only: minus_le_iff)
9bf2cdc9e8e8 Moved stuff from Ring_and_Field to Matrix
obua
parents: 18649
diff changeset
  2215
  then show ?thesis by simp
15178
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  2216
qed
5f621aa35c25 Matrix theory, linear programming
obua
parents: 15140
diff changeset
  2217
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
  2218
end