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