src/HOL/Rings.thy
author haftmann
Thu, 12 Aug 2010 17:56:41 +0200
changeset 38393 7c045c03598f
parent 37767 a2b7a20d6ea3
child 38642 8fa437809c67
permissions -rw-r--r--
group record-related ML files
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
35050
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35043
diff changeset
     1
(*  Title:      HOL/Rings.thy
32960
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 30961
diff changeset
     2
    Author:     Gertrud Bauer
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 30961
diff changeset
     3
    Author:     Steven Obua
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 30961
diff changeset
     4
    Author:     Tobias Nipkow
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 30961
diff changeset
     5
    Author:     Lawrence C Paulson
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 30961
diff changeset
     6
    Author:     Markus Wenzel
69916a850301 eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents: 30961
diff changeset
     7
    Author:     Jeremy Avigad
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
     8
*)
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
     9
35050
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35043
diff changeset
    10
header {* Rings *}
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
    11
35050
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35043
diff changeset
    12
theory Rings
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35043
diff changeset
    13
imports Groups
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15077
diff changeset
    14
begin
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    15
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    16
class semiring = ab_semigroup_add + semigroup_mult +
36348
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36304
diff changeset
    17
  assumes left_distrib[algebra_simps, field_simps]: "(a + b) * c = a * c + b * c"
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36304
diff changeset
    18
  assumes right_distrib[algebra_simps, field_simps]: "a * (b + c) = a * b + a * c"
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    19
begin
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    20
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    21
text{*For the @{text combine_numerals} simproc*}
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    22
lemma combine_common_factor:
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    23
  "a * e + (b * e + c) = (a + b) * e + c"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
    24
by (simp add: left_distrib add_ac)
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    25
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    26
end
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    27
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    28
class mult_zero = times + zero +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    29
  assumes mult_zero_left [simp]: "0 * a = 0"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    30
  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
    31
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    32
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
    33
29904
856f16a3b436 add class cancel_comm_monoid_add
huffman
parents: 29833
diff changeset
    34
class semiring_0_cancel = semiring + cancel_comm_monoid_add
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
    35
begin
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    36
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
    37
subclass semiring_0
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28559
diff changeset
    38
proof
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    39
  fix a :: 'a
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
    40
  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
    41
  thus "0 * a = 0" by (simp only: add_left_cancel)
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    42
next
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    43
  fix a :: 'a
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
    44
  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
    45
  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
    46
qed
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14770
diff changeset
    47
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
    48
end
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    49
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    50
class comm_semiring = ab_semigroup_add + ab_semigroup_mult +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    51
  assumes distrib: "(a + b) * c = a * c + b * c"
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    52
begin
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    53
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    54
subclass semiring
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28559
diff changeset
    55
proof
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    56
  fix a b c :: 'a
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
    57
  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
    58
  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
    59
  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
    60
  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
    61
  finally show "a * (b + c) = a * b + a * c" by blast
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    62
qed
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    63
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    64
end
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    65
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    66
class comm_semiring_0 = comm_semiring + comm_monoid_add + mult_zero
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    67
begin
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    68
27516
9a5d4a8d4aac by intro_locales -> ..
huffman
parents: 26274
diff changeset
    69
subclass semiring_0 ..
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    70
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    71
end
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    72
29904
856f16a3b436 add class cancel_comm_monoid_add
huffman
parents: 29833
diff changeset
    73
class comm_semiring_0_cancel = comm_semiring + cancel_comm_monoid_add
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
    74
begin
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14770
diff changeset
    75
27516
9a5d4a8d4aac by intro_locales -> ..
huffman
parents: 26274
diff changeset
    76
subclass semiring_0_cancel ..
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14770
diff changeset
    77
28141
193c3ea0f63b instances comm_semiring_0_cancel < comm_semiring_0, comm_ring < comm_semiring_0_cancel
huffman
parents: 27651
diff changeset
    78
subclass comm_semiring_0 ..
193c3ea0f63b instances comm_semiring_0_cancel < comm_semiring_0, comm_ring < comm_semiring_0_cancel
huffman
parents: 27651
diff changeset
    79
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
    80
end
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
    81
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    82
class zero_neq_one = zero + one +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
    83
  assumes zero_neq_one [simp]: "0 \<noteq> 1"
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
    84
begin
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
    85
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
    86
lemma one_neq_zero [simp]: "1 \<noteq> 0"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
    87
by (rule not_sym) (rule zero_neq_one)
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
    88
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
    89
end
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
    90
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
    91
class semiring_1 = zero_neq_one + semiring_0 + monoid_mult
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
    92
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
    93
text {* Abstract divisibility *}
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
    94
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
    95
class dvd = times
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
    96
begin
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
    97
28559
55c003a5600a tuned default rules of (dvd)
haftmann
parents: 28141
diff changeset
    98
definition dvd :: "'a \<Rightarrow> 'a \<Rightarrow> bool" (infixl "dvd" 50) where
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36977
diff changeset
    99
  "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
   100
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   101
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
   102
  unfolding dvd_def ..
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
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
   105
  unfolding dvd_def by blast 
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   106
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   107
end
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   108
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   109
class comm_semiring_1 = zero_neq_one + comm_semiring_0 + comm_monoid_mult + dvd
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   110
  (*previously almost_semiring*)
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   111
begin
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   112
27516
9a5d4a8d4aac by intro_locales -> ..
huffman
parents: 26274
diff changeset
   113
subclass semiring_1 ..
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   114
29925
17d1e32ef867 dvd and setprod lemmas
nipkow
parents: 29915
diff changeset
   115
lemma dvd_refl[simp]: "a dvd a"
28559
55c003a5600a tuned default rules of (dvd)
haftmann
parents: 28141
diff changeset
   116
proof
55c003a5600a tuned default rules of (dvd)
haftmann
parents: 28141
diff changeset
   117
  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
   118
qed
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   119
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   120
lemma dvd_trans:
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   121
  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
   122
  shows "a dvd c"
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   123
proof -
28559
55c003a5600a tuned default rules of (dvd)
haftmann
parents: 28141
diff changeset
   124
  from assms obtain v where "b = a * v" by (auto elim!: dvdE)
55c003a5600a tuned default rules of (dvd)
haftmann
parents: 28141
diff changeset
   125
  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
   126
  ultimately have "c = a * (v * w)" by (simp add: mult_assoc)
28559
55c003a5600a tuned default rules of (dvd)
haftmann
parents: 28141
diff changeset
   127
  then show ?thesis ..
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   128
qed
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   129
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35631
diff changeset
   130
lemma dvd_0_left_iff [no_atp, simp]: "0 dvd a \<longleftrightarrow> a = 0"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   131
by (auto intro: dvd_refl elim!: dvdE)
28559
55c003a5600a tuned default rules of (dvd)
haftmann
parents: 28141
diff changeset
   132
55c003a5600a tuned default rules of (dvd)
haftmann
parents: 28141
diff changeset
   133
lemma dvd_0_right [iff]: "a dvd 0"
55c003a5600a tuned default rules of (dvd)
haftmann
parents: 28141
diff changeset
   134
proof
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   135
  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
   136
qed
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   137
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   138
lemma one_dvd [simp]: "1 dvd a"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   139
by (auto intro!: dvdI)
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   140
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 29981
diff changeset
   141
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
   142
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
   143
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 29981
diff changeset
   144
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
   145
  apply (subst mult_commute)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   146
  apply (erule dvd_mult)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   147
  done
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   148
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   149
lemma dvd_triv_right [simp]: "a dvd b * a"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   150
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
   151
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   152
lemma dvd_triv_left [simp]: "a dvd a * b"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   153
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
   154
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   155
lemma mult_dvd_mono:
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 29981
diff changeset
   156
  assumes "a dvd b"
31039ee583fa Removed subsumed lemmas
nipkow
parents: 29981
diff changeset
   157
    and "c dvd d"
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   158
  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
   159
proof -
30042
31039ee583fa Removed subsumed lemmas
nipkow
parents: 29981
diff changeset
   160
  from `a dvd b` obtain b' where "b = a * b'" ..
31039ee583fa Removed subsumed lemmas
nipkow
parents: 29981
diff changeset
   161
  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
   162
  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
   163
  then show ?thesis ..
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   164
qed
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   165
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   166
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
   167
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
   168
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   169
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
   170
  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
   171
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   172
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
   173
by simp
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   174
29925
17d1e32ef867 dvd and setprod lemmas
nipkow
parents: 29915
diff changeset
   175
lemma dvd_add[simp]:
17d1e32ef867 dvd and setprod lemmas
nipkow
parents: 29915
diff changeset
   176
  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
   177
proof -
29925
17d1e32ef867 dvd and setprod lemmas
nipkow
parents: 29915
diff changeset
   178
  from `a dvd b` obtain b' where "b = a * b'" ..
17d1e32ef867 dvd and setprod lemmas
nipkow
parents: 29915
diff changeset
   179
  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
   180
  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
   181
  then show ?thesis ..
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   182
qed
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
   183
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   184
end
14421
ee97b6463cb4 new Ring_and_Field hierarchy, eliminating redundant axioms
paulson
parents: 14398
diff changeset
   185
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   186
class no_zero_divisors = zero + times +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   187
  assumes no_zero_divisors: "a \<noteq> 0 \<Longrightarrow> b \<noteq> 0 \<Longrightarrow> a * b \<noteq> 0"
36719
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36622
diff changeset
   188
begin
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36622
diff changeset
   189
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36622
diff changeset
   190
lemma divisors_zero:
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36622
diff changeset
   191
  assumes "a * b = 0"
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36622
diff changeset
   192
  shows "a = 0 \<or> b = 0"
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36622
diff changeset
   193
proof (rule classical)
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36622
diff changeset
   194
  assume "\<not> (a = 0 \<or> b = 0)"
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36622
diff changeset
   195
  then have "a \<noteq> 0" and "b \<noteq> 0" by auto
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36622
diff changeset
   196
  with no_zero_divisors have "a * b \<noteq> 0" by blast
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36622
diff changeset
   197
  with assms show ?thesis by simp
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36622
diff changeset
   198
qed
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36622
diff changeset
   199
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36622
diff changeset
   200
end
14504
7a3d80e276d4 new type class abelian_group
paulson
parents: 14475
diff changeset
   201
29904
856f16a3b436 add class cancel_comm_monoid_add
huffman
parents: 29833
diff changeset
   202
class semiring_1_cancel = semiring + cancel_comm_monoid_add
856f16a3b436 add class cancel_comm_monoid_add
huffman
parents: 29833
diff changeset
   203
  + zero_neq_one + monoid_mult
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   204
begin
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14770
diff changeset
   205
27516
9a5d4a8d4aac by intro_locales -> ..
huffman
parents: 26274
diff changeset
   206
subclass semiring_0_cancel ..
25512
4134f7c782e2 using intro_locales instead of unfold_locales if appropriate
haftmann
parents: 25450
diff changeset
   207
27516
9a5d4a8d4aac by intro_locales -> ..
huffman
parents: 26274
diff changeset
   208
subclass semiring_1 ..
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   209
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   210
end
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
   211
29904
856f16a3b436 add class cancel_comm_monoid_add
huffman
parents: 29833
diff changeset
   212
class comm_semiring_1_cancel = comm_semiring + cancel_comm_monoid_add
856f16a3b436 add class cancel_comm_monoid_add
huffman
parents: 29833
diff changeset
   213
  + zero_neq_one + comm_monoid_mult
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   214
begin
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   215
27516
9a5d4a8d4aac by intro_locales -> ..
huffman
parents: 26274
diff changeset
   216
subclass semiring_1_cancel ..
9a5d4a8d4aac by intro_locales -> ..
huffman
parents: 26274
diff changeset
   217
subclass comm_semiring_0_cancel ..
9a5d4a8d4aac by intro_locales -> ..
huffman
parents: 26274
diff changeset
   218
subclass comm_semiring_1 ..
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   219
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   220
end
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   221
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   222
class ring = semiring + ab_group_add
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   223
begin
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   224
27516
9a5d4a8d4aac by intro_locales -> ..
huffman
parents: 26274
diff changeset
   225
subclass semiring_0_cancel ..
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   226
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   227
text {* Distribution rules *}
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   228
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   229
lemma minus_mult_left: "- (a * b) = - a * b"
34146
14595e0c27e8 rename equals_zero_I to minus_unique (keep old name too)
huffman
parents: 33676
diff changeset
   230
by (rule minus_unique) (simp add: left_distrib [symmetric]) 
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   231
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   232
lemma minus_mult_right: "- (a * b) = a * - b"
34146
14595e0c27e8 rename equals_zero_I to minus_unique (keep old name too)
huffman
parents: 33676
diff changeset
   233
by (rule minus_unique) (simp add: right_distrib [symmetric]) 
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   234
29407
5ef7e97fd9e4 move lemmas mult_minus{left,right} inside class ring
huffman
parents: 29406
diff changeset
   235
text{*Extract signs from products*}
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35631
diff changeset
   236
lemmas mult_minus_left [simp, no_atp] = minus_mult_left [symmetric]
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35631
diff changeset
   237
lemmas mult_minus_right [simp,no_atp] = minus_mult_right [symmetric]
29407
5ef7e97fd9e4 move lemmas mult_minus{left,right} inside class ring
huffman
parents: 29406
diff changeset
   238
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   239
lemma minus_mult_minus [simp]: "- a * - b = a * b"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   240
by simp
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   241
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   242
lemma minus_mult_commute: "- a * b = a * - b"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   243
by simp
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   244
36348
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36304
diff changeset
   245
lemma right_diff_distrib[algebra_simps, field_simps]: "a * (b - c) = a * b - a * c"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   246
by (simp add: right_distrib diff_minus)
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   247
36348
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36304
diff changeset
   248
lemma left_diff_distrib[algebra_simps, field_simps]: "(a - b) * c = a * c - b * c"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   249
by (simp add: left_distrib diff_minus)
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   250
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35631
diff changeset
   251
lemmas ring_distribs[no_atp] =
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   252
  right_distrib left_distrib left_diff_distrib right_diff_distrib
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   253
25230
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
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35631
diff changeset
   264
lemmas ring_distribs[no_atp] =
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)"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
   314
by (simp only: diff_minus dvd_add 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*}
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35631
diff changeset
   331
lemma mult_cancel_right [simp, no_atp]:
26193
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)"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
   335
    by (simp add: algebra_simps)
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
   336
  thus ?thesis by (simp add: disj_commute)
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   337
qed
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   338
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35631
diff changeset
   339
lemma mult_cancel_left [simp, no_atp]:
26193
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)"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
   343
    by (simp add: algebra_simps)
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
   344
  thus ?thesis by simp
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
36970
fb3fdb4b585e remove simp attribute from square_eq_1_iff
huffman
parents: 36821
diff changeset
   352
lemma square_eq_1_iff:
36821
9207505d1ee5 move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
huffman
parents: 36719
diff changeset
   353
  "x * x = 1 \<longleftrightarrow> x = 1 \<or> x = - 1"
9207505d1ee5 move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
huffman
parents: 36719
diff changeset
   354
proof -
9207505d1ee5 move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
huffman
parents: 36719
diff changeset
   355
  have "(x - 1) * (x + 1) = x * x - 1"
9207505d1ee5 move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
huffman
parents: 36719
diff changeset
   356
    by (simp add: algebra_simps)
9207505d1ee5 move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
huffman
parents: 36719
diff changeset
   357
  hence "x * x = 1 \<longleftrightarrow> (x - 1) * (x + 1) = 0"
9207505d1ee5 move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
huffman
parents: 36719
diff changeset
   358
    by simp
9207505d1ee5 move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
huffman
parents: 36719
diff changeset
   359
  thus ?thesis
9207505d1ee5 move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
huffman
parents: 36719
diff changeset
   360
    by (simp add: eq_neg_iff_add_eq_0)
9207505d1ee5 move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
huffman
parents: 36719
diff changeset
   361
qed
9207505d1ee5 move lemma real_mult_is_one to Rings.thy, renamed to square_eq_1_iff
huffman
parents: 36719
diff changeset
   362
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   363
lemma mult_cancel_right1 [simp]:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   364
  "c = b * c \<longleftrightarrow> c = 0 \<or> b = 1"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   365
by (insert mult_cancel_right [of 1 c b], force)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   366
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   367
lemma mult_cancel_right2 [simp]:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   368
  "a * c = c \<longleftrightarrow> c = 0 \<or> a = 1"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   369
by (insert mult_cancel_right [of a c 1], simp)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   370
 
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   371
lemma mult_cancel_left1 [simp]:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   372
  "c = c * b \<longleftrightarrow> c = 0 \<or> b = 1"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   373
by (insert mult_cancel_left [of c 1 b], force)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   374
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   375
lemma mult_cancel_left2 [simp]:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   376
  "c * a = c \<longleftrightarrow> c = 0 \<or> a = 1"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   377
by (insert mult_cancel_left [of c a 1], simp)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   378
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   379
end
22990
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
   380
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   381
class idom = comm_ring_1 + no_zero_divisors
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   382
begin
14421
ee97b6463cb4 new Ring_and_Field hierarchy, eliminating redundant axioms
paulson
parents: 14398
diff changeset
   383
27516
9a5d4a8d4aac by intro_locales -> ..
huffman
parents: 26274
diff changeset
   384
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
   385
29915
2146e512cec9 generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents: 29904
diff changeset
   386
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
   387
proof
2146e512cec9 generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents: 29904
diff changeset
   388
  assume "a * a = b * b"
2146e512cec9 generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents: 29904
diff changeset
   389
  then have "(a - b) * (a + b) = 0"
2146e512cec9 generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents: 29904
diff changeset
   390
    by (simp add: algebra_simps)
2146e512cec9 generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents: 29904
diff changeset
   391
  then show "a = b \<or> a = - b"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
   392
    by (simp add: eq_neg_iff_add_eq_0)
29915
2146e512cec9 generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents: 29904
diff changeset
   393
next
2146e512cec9 generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents: 29904
diff changeset
   394
  assume "a = b \<or> a = - b"
2146e512cec9 generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents: 29904
diff changeset
   395
  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
   396
qed
2146e512cec9 generalize lemma fps_square_eq_iff, move to Ring_and_Field
huffman
parents: 29904
diff changeset
   397
29981
7d0ed261b712 generalize int_dvd_cancel_factor simproc to idom class
huffman
parents: 29949
diff changeset
   398
lemma dvd_mult_cancel_right [simp]:
7d0ed261b712 generalize int_dvd_cancel_factor simproc to idom class
huffman
parents: 29949
diff changeset
   399
  "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
   400
proof -
7d0ed261b712 generalize int_dvd_cancel_factor simproc to idom class
huffman
parents: 29949
diff changeset
   401
  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
   402
    unfolding dvd_def by (simp add: mult_ac)
7d0ed261b712 generalize int_dvd_cancel_factor simproc to idom class
huffman
parents: 29949
diff changeset
   403
  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
   404
    unfolding dvd_def by simp
7d0ed261b712 generalize int_dvd_cancel_factor simproc to idom class
huffman
parents: 29949
diff changeset
   405
  finally show ?thesis .
7d0ed261b712 generalize int_dvd_cancel_factor simproc to idom class
huffman
parents: 29949
diff changeset
   406
qed
7d0ed261b712 generalize int_dvd_cancel_factor simproc to idom class
huffman
parents: 29949
diff changeset
   407
7d0ed261b712 generalize int_dvd_cancel_factor simproc to idom class
huffman
parents: 29949
diff changeset
   408
lemma dvd_mult_cancel_left [simp]:
7d0ed261b712 generalize int_dvd_cancel_factor simproc to idom class
huffman
parents: 29949
diff changeset
   409
  "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
   410
proof -
7d0ed261b712 generalize int_dvd_cancel_factor simproc to idom class
huffman
parents: 29949
diff changeset
   411
  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
   412
    unfolding dvd_def by (simp add: mult_ac)
7d0ed261b712 generalize int_dvd_cancel_factor simproc to idom class
huffman
parents: 29949
diff changeset
   413
  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
   414
    unfolding dvd_def by simp
7d0ed261b712 generalize int_dvd_cancel_factor simproc to idom class
huffman
parents: 29949
diff changeset
   415
  finally show ?thesis .
7d0ed261b712 generalize int_dvd_cancel_factor simproc to idom class
huffman
parents: 29949
diff changeset
   416
qed
7d0ed261b712 generalize int_dvd_cancel_factor simproc to idom class
huffman
parents: 29949
diff changeset
   417
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   418
end
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   419
35083
3246e66b0874 division ring assumes divide_inverse
haftmann
parents: 35050
diff changeset
   420
class inverse =
3246e66b0874 division ring assumes divide_inverse
haftmann
parents: 35050
diff changeset
   421
  fixes inverse :: "'a \<Rightarrow> 'a"
3246e66b0874 division ring assumes divide_inverse
haftmann
parents: 35050
diff changeset
   422
    and divide :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"  (infixl "'/" 70)
3246e66b0874 division ring assumes divide_inverse
haftmann
parents: 35050
diff changeset
   423
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   424
class division_ring = ring_1 + inverse +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   425
  assumes left_inverse [simp]:  "a \<noteq> 0 \<Longrightarrow> inverse a * a = 1"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   426
  assumes right_inverse [simp]: "a \<noteq> 0 \<Longrightarrow> a * inverse a = 1"
35083
3246e66b0874 division ring assumes divide_inverse
haftmann
parents: 35050
diff changeset
   427
  assumes divide_inverse: "a / b = a * inverse b"
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   428
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
   429
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   430
subclass ring_1_no_zero_divisors
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28559
diff changeset
   431
proof
22987
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   432
  fix a b :: 'a
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   433
  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
   434
  show "a * b \<noteq> 0"
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   435
  proof
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   436
    assume ab: "a * b = 0"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   437
    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
   438
    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
   439
      by (simp only: mult_assoc)
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   440
    also have "\<dots> = 1" using a b by simp
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   441
    finally show False by simp
22987
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   442
  qed
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   443
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
   444
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   445
lemma nonzero_imp_inverse_nonzero:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   446
  "a \<noteq> 0 \<Longrightarrow> inverse a \<noteq> 0"
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   447
proof
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   448
  assume ianz: "inverse a = 0"
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   449
  assume "a \<noteq> 0"
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   450
  hence "1 = a * inverse a" by simp
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   451
  also have "... = 0" by (simp add: ianz)
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   452
  finally have "1 = 0" .
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   453
  thus False by (simp add: eq_commute)
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   454
qed
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   455
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   456
lemma inverse_zero_imp_zero:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   457
  "inverse a = 0 \<Longrightarrow> a = 0"
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   458
apply (rule classical)
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   459
apply (drule nonzero_imp_inverse_nonzero)
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   460
apply auto
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   461
done
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   462
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   463
lemma inverse_unique: 
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   464
  assumes ab: "a * b = 1"
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   465
  shows "inverse a = b"
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   466
proof -
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   467
  have "a \<noteq> 0" using ab by (cases "a = 0") simp_all
29406
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   468
  moreover have "inverse a * (a * b) = inverse a" by (simp add: ab)
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   469
  ultimately show ?thesis by (simp add: mult_assoc [symmetric])
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   470
qed
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   471
29406
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   472
lemma nonzero_inverse_minus_eq:
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   473
  "a \<noteq> 0 \<Longrightarrow> inverse (- a) = - inverse a"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   474
by (rule inverse_unique) simp
29406
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   475
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   476
lemma nonzero_inverse_inverse_eq:
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   477
  "a \<noteq> 0 \<Longrightarrow> inverse (inverse a) = a"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   478
by (rule inverse_unique) simp
29406
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   479
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   480
lemma nonzero_inverse_eq_imp_eq:
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   481
  assumes "inverse a = inverse b" and "a \<noteq> 0" and "b \<noteq> 0"
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   482
  shows "a = b"
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   483
proof -
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   484
  from `inverse a = inverse b`
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   485
  have "inverse (inverse a) = inverse (inverse b)" by (rule arg_cong)
29406
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   486
  with `a \<noteq> 0` and `b \<noteq> 0` show "a = b"
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   487
    by (simp add: nonzero_inverse_inverse_eq)
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   488
qed
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   489
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   490
lemma inverse_1 [simp]: "inverse 1 = 1"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   491
by (rule inverse_unique) simp
29406
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   492
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   493
lemma nonzero_inverse_mult_distrib: 
29406
54bac26089bd clean up division_ring proofs
huffman
parents: 28823
diff changeset
   494
  assumes "a \<noteq> 0" and "b \<noteq> 0"
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   495
  shows "inverse (a * b) = inverse b * inverse a"
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   496
proof -
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   497
  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
   498
  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
   499
  thus ?thesis by (rule inverse_unique)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   500
qed
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   501
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   502
lemma division_ring_inverse_add:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   503
  "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
   504
by (simp add: algebra_simps)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   505
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   506
lemma division_ring_inverse_diff:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   507
  "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
   508
by (simp add: algebra_simps)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
   509
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   510
lemma right_inverse_eq: "b \<noteq> 0 \<Longrightarrow> a / b = 1 \<longleftrightarrow> a = b"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   511
proof
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   512
  assume neq: "b \<noteq> 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   513
  {
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   514
    hence "a = (a / b) * b" by (simp add: divide_inverse mult_assoc)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   515
    also assume "a / b = 1"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   516
    finally show "a = b" by simp
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   517
  next
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   518
    assume "a = b"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   519
    with neq show "a / b = 1" by (simp add: divide_inverse)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   520
  }
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   521
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   522
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   523
lemma nonzero_inverse_eq_divide: "a \<noteq> 0 \<Longrightarrow> inverse a = 1 / a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   524
by (simp add: divide_inverse)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   525
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   526
lemma divide_self [simp]: "a \<noteq> 0 \<Longrightarrow> a / a = 1"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   527
by (simp add: divide_inverse)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   528
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   529
lemma divide_zero_left [simp]: "0 / a = 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   530
by (simp add: divide_inverse)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   531
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   532
lemma inverse_eq_divide: "inverse a = 1 / a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   533
by (simp add: divide_inverse)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   534
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   535
lemma add_divide_distrib: "(a+b) / c = a/c + b/c"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   536
by (simp add: divide_inverse algebra_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   537
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   538
lemma divide_1 [simp]: "a / 1 = a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   539
  by (simp add: divide_inverse)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   540
36304
6984744e6b34 less special treatment of times_divide_eq [simp]
haftmann
parents: 36301
diff changeset
   541
lemma times_divide_eq_right [simp]: "a * (b / c) = (a * b) / c"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   542
  by (simp add: divide_inverse mult_assoc)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   543
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   544
lemma minus_divide_left: "- (a / b) = (-a) / b"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   545
  by (simp add: divide_inverse)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   546
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   547
lemma nonzero_minus_divide_right: "b \<noteq> 0 ==> - (a / b) = a / (- b)"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   548
  by (simp add: divide_inverse nonzero_inverse_minus_eq)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   549
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   550
lemma nonzero_minus_divide_divide: "b \<noteq> 0 ==> (-a) / (-b) = a / b"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   551
  by (simp add: divide_inverse nonzero_inverse_minus_eq)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   552
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   553
lemma divide_minus_left [simp, no_atp]: "(-a) / b = - (a / b)"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   554
  by (simp add: divide_inverse)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   555
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   556
lemma diff_divide_distrib: "(a - b) / c = a / c - b / c"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   557
  by (simp add: diff_minus add_divide_distrib)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   558
36348
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36304
diff changeset
   559
lemma nonzero_eq_divide_eq [field_simps]: "c \<noteq> 0 \<Longrightarrow> a = b / c \<longleftrightarrow> a * c = b"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   560
proof -
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   561
  assume [simp]: "c \<noteq> 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   562
  have "a = b / c \<longleftrightarrow> a * c = (b / c) * c" by simp
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   563
  also have "... \<longleftrightarrow> a * c = b" by (simp add: divide_inverse mult_assoc)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   564
  finally show ?thesis .
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   565
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   566
36348
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36304
diff changeset
   567
lemma nonzero_divide_eq_eq [field_simps]: "c \<noteq> 0 \<Longrightarrow> b / c = a \<longleftrightarrow> b = a * c"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   568
proof -
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   569
  assume [simp]: "c \<noteq> 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   570
  have "b / c = a \<longleftrightarrow> (b / c) * c = a * c" by simp
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   571
  also have "... \<longleftrightarrow> b = a * c" by (simp add: divide_inverse mult_assoc) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   572
  finally show ?thesis .
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   573
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   574
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   575
lemma divide_eq_imp: "c \<noteq> 0 \<Longrightarrow> b = a * c \<Longrightarrow> b / c = a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   576
  by (simp add: divide_inverse mult_assoc)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   577
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   578
lemma eq_divide_imp: "c \<noteq> 0 \<Longrightarrow> a * c = b \<Longrightarrow> a = b / c"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   579
  by (drule sym) (simp add: divide_inverse mult_assoc)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   580
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   581
end
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   582
36348
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36304
diff changeset
   583
class division_ring_inverse_zero = division_ring +
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   584
  assumes inverse_zero [simp]: "inverse 0 = 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   585
begin
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   586
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   587
lemma divide_zero [simp]:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   588
  "a / 0 = 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   589
  by (simp add: divide_inverse)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   590
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   591
lemma divide_self_if [simp]:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   592
  "a / a = (if a = 0 then 0 else 1)"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   593
  by simp
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   594
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   595
lemma inverse_nonzero_iff_nonzero [simp]:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   596
  "inverse a = 0 \<longleftrightarrow> a = 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   597
  by rule (fact inverse_zero_imp_zero, simp)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   598
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   599
lemma inverse_minus_eq [simp]:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   600
  "inverse (- a) = - inverse a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   601
proof cases
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   602
  assume "a=0" thus ?thesis by simp
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   603
next
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   604
  assume "a\<noteq>0" 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   605
  thus ?thesis by (simp add: nonzero_inverse_minus_eq)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   606
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   607
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   608
lemma inverse_eq_imp_eq:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   609
  "inverse a = inverse b \<Longrightarrow> a = b"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   610
apply (cases "a=0 | b=0") 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   611
 apply (force dest!: inverse_zero_imp_zero
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   612
              simp add: eq_commute [of "0::'a"])
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   613
apply (force dest!: nonzero_inverse_eq_imp_eq) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   614
done
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   615
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   616
lemma inverse_eq_iff_eq [simp]:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   617
  "inverse a = inverse b \<longleftrightarrow> a = b"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   618
  by (force dest!: inverse_eq_imp_eq)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   619
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   620
lemma inverse_inverse_eq [simp]:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   621
  "inverse (inverse a) = a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   622
proof cases
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   623
  assume "a=0" thus ?thesis by simp
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   624
next
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   625
  assume "a\<noteq>0" 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   626
  thus ?thesis by (simp add: nonzero_inverse_inverse_eq)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   627
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   628
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   629
end
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   630
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   631
class mult_mono = times + zero + ord +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   632
  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
   633
  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
   634
35302
4bc6b4d70e08 tuned text
haftmann
parents: 35216
diff changeset
   635
text {*
4bc6b4d70e08 tuned text
haftmann
parents: 35216
diff changeset
   636
  The theory of partially ordered rings is taken from the books:
4bc6b4d70e08 tuned text
haftmann
parents: 35216
diff changeset
   637
  \begin{itemize}
4bc6b4d70e08 tuned text
haftmann
parents: 35216
diff changeset
   638
  \item \emph{Lattice Theory} by Garret Birkhoff, American Mathematical Society 1979 
4bc6b4d70e08 tuned text
haftmann
parents: 35216
diff changeset
   639
  \item \emph{Partially Ordered Algebraic Systems}, Pergamon Press 1963
4bc6b4d70e08 tuned text
haftmann
parents: 35216
diff changeset
   640
  \end{itemize}
4bc6b4d70e08 tuned text
haftmann
parents: 35216
diff changeset
   641
  Most of the used notions can also be looked up in 
4bc6b4d70e08 tuned text
haftmann
parents: 35216
diff changeset
   642
  \begin{itemize}
4bc6b4d70e08 tuned text
haftmann
parents: 35216
diff changeset
   643
  \item \url{http://www.mathworld.com} by Eric Weisstein et. al.
4bc6b4d70e08 tuned text
haftmann
parents: 35216
diff changeset
   644
  \item \emph{Algebra I} by van der Waerden, Springer.
4bc6b4d70e08 tuned text
haftmann
parents: 35216
diff changeset
   645
  \end{itemize}
4bc6b4d70e08 tuned text
haftmann
parents: 35216
diff changeset
   646
*}
4bc6b4d70e08 tuned text
haftmann
parents: 35216
diff changeset
   647
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   648
class ordered_semiring = mult_mono + semiring_0 + ordered_ab_semigroup_add 
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   649
begin
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   650
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   651
lemma mult_mono:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   652
  "a \<le> b \<Longrightarrow> c \<le> d \<Longrightarrow> 0 \<le> b \<Longrightarrow> 0 \<le> c
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   653
     \<Longrightarrow> a * c \<le> b * d"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   654
apply (erule mult_right_mono [THEN order_trans], assumption)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   655
apply (erule mult_left_mono, assumption)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   656
done
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   657
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   658
lemma mult_mono':
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   659
  "a \<le> b \<Longrightarrow> c \<le> d \<Longrightarrow> 0 \<le> a \<Longrightarrow> 0 \<le> c
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   660
     \<Longrightarrow> a * c \<le> b * d"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   661
apply (rule mult_mono)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   662
apply (fast intro: order_trans)+
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   663
done
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   664
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   665
end
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
   666
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   667
class ordered_cancel_semiring = mult_mono + ordered_ab_semigroup_add
29904
856f16a3b436 add class cancel_comm_monoid_add
huffman
parents: 29833
diff changeset
   668
  + semiring + cancel_comm_monoid_add
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   669
begin
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   670
27516
9a5d4a8d4aac by intro_locales -> ..
huffman
parents: 26274
diff changeset
   671
subclass semiring_0_cancel ..
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   672
subclass ordered_semiring ..
23521
195fe3fe2831 added ordered_ring and ordered_semiring
obua
parents: 23496
diff changeset
   673
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   674
lemma mult_nonneg_nonneg: "0 \<le> a \<Longrightarrow> 0 \<le> b \<Longrightarrow> 0 \<le> a * b"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   675
using mult_left_mono [of 0 b a] by simp
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   676
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   677
lemma mult_nonneg_nonpos: "0 \<le> a \<Longrightarrow> b \<le> 0 \<Longrightarrow> a * b \<le> 0"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   678
using mult_left_mono [of b 0 a] by simp
30692
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   679
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   680
lemma mult_nonpos_nonneg: "a \<le> 0 \<Longrightarrow> 0 \<le> b \<Longrightarrow> a * b \<le> 0"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   681
using mult_right_mono [of a 0 b] by simp
30692
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   682
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   683
text {* Legacy - use @{text mult_nonpos_nonneg} *}
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   684
lemma mult_nonneg_nonpos2: "0 \<le> a \<Longrightarrow> b \<le> 0 \<Longrightarrow> b * a \<le> 0" 
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   685
by (drule mult_right_mono [of b 0], auto)
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   686
26234
1f6e28a88785 clarified proposition
haftmann
parents: 26193
diff changeset
   687
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
   688
by (auto simp add: mult_nonneg_nonpos mult_nonneg_nonpos2)
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   689
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   690
end
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   691
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   692
class linordered_semiring = semiring + comm_monoid_add + linordered_cancel_ab_semigroup_add + mult_mono
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   693
begin
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   694
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   695
subclass ordered_cancel_semiring ..
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   696
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   697
subclass ordered_comm_monoid_add ..
25304
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
   698
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   699
lemma mult_left_less_imp_less:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   700
  "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
   701
by (force simp add: mult_left_mono not_le [symmetric])
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   702
 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   703
lemma mult_right_less_imp_less:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   704
  "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
   705
by (force simp add: mult_right_mono not_le [symmetric])
23521
195fe3fe2831 added ordered_ring and ordered_semiring
obua
parents: 23496
diff changeset
   706
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   707
end
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   708
35043
07dbdf60d5ad dropped accidental duplication of "lin" prefix from cs. 108662d50512
haftmann
parents: 35032
diff changeset
   709
class linordered_semiring_1 = linordered_semiring + semiring_1
36622
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   710
begin
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   711
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   712
lemma convex_bound_le:
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   713
  assumes "x \<le> a" "y \<le> a" "0 \<le> u" "0 \<le> v" "u + v = 1"
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   714
  shows "u * x + v * y \<le> a"
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   715
proof-
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   716
  from assms have "u * x + v * y \<le> u * a + v * a"
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   717
    by (simp add: add_mono mult_left_mono)
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   718
  thus ?thesis using assms unfolding left_distrib[symmetric] by simp
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   719
qed
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   720
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   721
end
35043
07dbdf60d5ad dropped accidental duplication of "lin" prefix from cs. 108662d50512
haftmann
parents: 35032
diff changeset
   722
07dbdf60d5ad dropped accidental duplication of "lin" prefix from cs. 108662d50512
haftmann
parents: 35032
diff changeset
   723
class linordered_semiring_strict = semiring + comm_monoid_add + linordered_cancel_ab_semigroup_add +
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   724
  assumes mult_strict_left_mono: "a < b \<Longrightarrow> 0 < c \<Longrightarrow> c * a < c * b"
af5ef0d4d655 global class syntax
haftmann
parents: 24748
diff changeset
   725
  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
   726
begin
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14334
diff changeset
   727
27516
9a5d4a8d4aac by intro_locales -> ..
huffman
parents: 26274
diff changeset
   728
subclass semiring_0_cancel ..
14940
b9ab8babd8b3 Further development of matrix theory
obua
parents: 14770
diff changeset
   729
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   730
subclass linordered_semiring
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28559
diff changeset
   731
proof
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   732
  fix a b c :: 'a
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   733
  assume A: "a \<le> b" "0 \<le> c"
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   734
  from A show "c * a \<le> c * b"
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   735
    unfolding le_less
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   736
    using mult_strict_left_mono by (cases "c = 0") auto
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   737
  from A show "a * c \<le> b * c"
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   738
    unfolding le_less
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   739
    using mult_strict_right_mono by (cases "c = 0") auto
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   740
qed
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   741
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   742
lemma mult_left_le_imp_le:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   743
  "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
   744
by (force simp add: mult_strict_left_mono _not_less [symmetric])
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   745
 
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   746
lemma mult_right_le_imp_le:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   747
  "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
   748
by (force simp add: mult_strict_right_mono not_less [symmetric])
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   749
30692
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   750
lemma mult_pos_pos: "0 < a \<Longrightarrow> 0 < b \<Longrightarrow> 0 < a * b"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   751
using mult_strict_left_mono [of 0 b a] by simp
30692
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   752
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   753
lemma mult_pos_neg: "0 < a \<Longrightarrow> b < 0 \<Longrightarrow> a * b < 0"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   754
using mult_strict_left_mono [of b 0 a] by simp
30692
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   755
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   756
lemma mult_neg_pos: "a < 0 \<Longrightarrow> 0 < b \<Longrightarrow> a * b < 0"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   757
using mult_strict_right_mono [of a 0 b] by simp
30692
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   758
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   759
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
   760
lemma mult_pos_neg2: "0 < a \<Longrightarrow> b < 0 \<Longrightarrow> b * a < 0" 
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   761
by (drule mult_strict_right_mono [of b 0], auto)
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   762
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   763
lemma zero_less_mult_pos:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   764
  "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
   765
apply (cases "b\<le>0")
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   766
 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
   767
apply (drule_tac mult_pos_neg [of a b])
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   768
 apply (auto dest: less_not_sym)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   769
done
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   770
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   771
lemma zero_less_mult_pos2:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   772
  "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
   773
apply (cases "b\<le>0")
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   774
 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
   775
apply (drule_tac mult_pos_neg2 [of a b])
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   776
 apply (auto dest: less_not_sym)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   777
done
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   778
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   779
text{*Strict monotonicity in both arguments*}
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   780
lemma mult_strict_mono:
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   781
  assumes "a < b" and "c < d" and "0 < b" and "0 \<le> c"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   782
  shows "a * c < b * d"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   783
  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
   784
  apply (simp add: mult_pos_pos)
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   785
  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
   786
  apply (force simp add: le_less)
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   787
  apply (erule mult_strict_left_mono, assumption)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   788
  done
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   789
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   790
text{*This weaker variant has more natural premises*}
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   791
lemma mult_strict_mono':
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   792
  assumes "a < b" and "c < d" and "0 \<le> a" and "0 \<le> c"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   793
  shows "a * c < b * d"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
   794
by (rule mult_strict_mono) (insert assms, auto)
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   795
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   796
lemma mult_less_le_imp_less:
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   797
  assumes "a < b" and "c \<le> d" and "0 \<le> a" and "0 < c"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   798
  shows "a * c < b * d"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   799
  using assms apply (subgoal_tac "a * c < b * c")
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   800
  apply (erule less_le_trans)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   801
  apply (erule mult_left_mono)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   802
  apply simp
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   803
  apply (erule mult_strict_right_mono)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   804
  apply assumption
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   805
  done
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   806
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   807
lemma mult_le_less_imp_less:
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   808
  assumes "a \<le> b" and "c < d" and "0 < a" and "0 \<le> c"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   809
  shows "a * c < b * d"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   810
  using assms apply (subgoal_tac "a * c \<le> b * c")
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   811
  apply (erule le_less_trans)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   812
  apply (erule mult_strict_left_mono)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   813
  apply simp
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   814
  apply (erule mult_right_mono)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   815
  apply simp
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   816
  done
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   817
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   818
lemma mult_less_imp_less_left:
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   819
  assumes less: "c * a < c * b" and nonneg: "0 \<le> c"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   820
  shows "a < b"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   821
proof (rule ccontr)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   822
  assume "\<not>  a < b"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   823
  hence "b \<le> a" by (simp add: linorder_not_less)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   824
  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
   825
  with this and less show False by (simp add: not_less [symmetric])
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   826
qed
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   827
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   828
lemma mult_less_imp_less_right:
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   829
  assumes less: "a * c < b * c" and nonneg: "0 \<le> c"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   830
  shows "a < b"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   831
proof (rule ccontr)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   832
  assume "\<not> a < b"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   833
  hence "b \<le> a" by (simp add: linorder_not_less)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   834
  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
   835
  with this and less show False by (simp add: not_less [symmetric])
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   836
qed  
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   837
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   838
end
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   839
35097
4554bb2abfa3 dropped last occurence of the linlinordered accident
haftmann
parents: 35092
diff changeset
   840
class linordered_semiring_1_strict = linordered_semiring_strict + semiring_1
36622
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   841
begin
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   842
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   843
subclass linordered_semiring_1 ..
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   844
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   845
lemma convex_bound_lt:
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   846
  assumes "x < a" "y < a" "0 \<le> u" "0 \<le> v" "u + v = 1"
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   847
  shows "u * x + v * y < a"
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   848
proof -
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   849
  from assms have "u * x + v * y < u * a + v * a"
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   850
    by (cases "u = 0")
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   851
       (auto intro!: add_less_le_mono mult_strict_left_mono mult_left_mono)
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   852
  thus ?thesis using assms unfolding left_distrib[symmetric] by simp
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   853
qed
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   854
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
   855
end
33319
74f0dcc0b5fb moved algebraic classes to Ring_and_Field
haftmann
parents: 32960
diff changeset
   856
22390
378f34b1e380 now using "class"
haftmann
parents: 21328
diff changeset
   857
class mult_mono1 = times + zero + ord +
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   858
  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
   859
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   860
class ordered_comm_semiring = comm_semiring_0
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   861
  + ordered_ab_semigroup_add + mult_mono1
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   862
begin
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
   863
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   864
subclass ordered_semiring
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28559
diff changeset
   865
proof
21199
2d83f93c3580 * Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents: 20633
diff changeset
   866
  fix a b c :: 'a
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   867
  assume "a \<le> b" "0 \<le> c"
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   868
  thus "c * a \<le> c * b" by (rule mult_mono1)
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   869
  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
   870
qed
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   871
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   872
end
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   873
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   874
class ordered_cancel_comm_semiring = comm_semiring_0_cancel
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   875
  + ordered_ab_semigroup_add + mult_mono1
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   876
begin
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
   877
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   878
subclass ordered_comm_semiring ..
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   879
subclass ordered_cancel_semiring ..
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   880
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   881
end
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   882
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   883
class linordered_comm_semiring_strict = comm_semiring_0 + linordered_cancel_ab_semigroup_add +
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   884
  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
   885
begin
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   886
35043
07dbdf60d5ad dropped accidental duplication of "lin" prefix from cs. 108662d50512
haftmann
parents: 35032
diff changeset
   887
subclass linordered_semiring_strict
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28559
diff changeset
   888
proof
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   889
  fix a b c :: 'a
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   890
  assume "a < b" "0 < c"
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   891
  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
   892
  thus "a * c < b * c" by (simp only: mult_commute)
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   893
qed
14272
5efbb548107d Tidying of the integer development; towards removing the
paulson
parents: 14270
diff changeset
   894
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   895
subclass ordered_cancel_comm_semiring
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28559
diff changeset
   896
proof
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   897
  fix a b c :: 'a
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   898
  assume "a \<le> b" "0 \<le> c"
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   899
  thus "c * a \<le> c * b"
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   900
    unfolding le_less
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
   901
    using mult_strict_left_mono by (cases "c = 0") auto
23550
d4f1d6ef119c convert instance proofs to Isar style
huffman
parents: 23544
diff changeset
   902
qed
14272
5efbb548107d Tidying of the integer development; towards removing the
paulson
parents: 14270
diff changeset
   903
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   904
end
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   905
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   906
class ordered_ring = ring + ordered_cancel_semiring 
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   907
begin
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   908
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   909
subclass ordered_ab_group_add ..
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   910
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   911
lemma less_add_iff1:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   912
  "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
   913
by (simp add: algebra_simps)
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   914
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   915
lemma less_add_iff2:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   916
  "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
   917
by (simp add: algebra_simps)
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   918
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   919
lemma le_add_iff1:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   920
  "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
   921
by (simp add: algebra_simps)
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   922
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   923
lemma le_add_iff2:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   924
  "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
   925
by (simp add: algebra_simps)
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   926
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   927
lemma mult_left_mono_neg:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   928
  "b \<le> a \<Longrightarrow> c \<le> 0 \<Longrightarrow> c * a \<le> c * b"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   929
  apply (drule mult_left_mono [of _ _ "- c"])
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
   930
  apply simp_all
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   931
  done
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   932
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   933
lemma mult_right_mono_neg:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   934
  "b \<le> a \<Longrightarrow> c \<le> 0 \<Longrightarrow> a * c \<le> b * c"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   935
  apply (drule mult_right_mono [of _ _ "- c"])
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
   936
  apply simp_all
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   937
  done
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   938
30692
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   939
lemma mult_nonpos_nonpos: "a \<le> 0 \<Longrightarrow> b \<le> 0 \<Longrightarrow> 0 \<le> a * b"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   940
using mult_right_mono_neg [of a 0 b] by simp
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   941
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   942
lemma split_mult_pos_le:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   943
  "(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
   944
by (auto simp add: mult_nonneg_nonneg mult_nonpos_nonpos)
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   945
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
   946
end
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   947
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   948
class linordered_ring = ring + linordered_semiring + linordered_ab_group_add + abs_if
25304
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
   949
begin
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
   950
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   951
subclass ordered_ring ..
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   952
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   953
subclass ordered_ab_group_add_abs
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28559
diff changeset
   954
proof
25304
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
   955
  fix a b
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
   956
  show "\<bar>a + b\<bar> \<le> \<bar>a\<bar> + \<bar>b\<bar>"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
   957
    by (auto simp add: abs_if not_less)
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
   958
    (auto simp del: minus_add_distrib simp add: minus_add_distrib [symmetric],
36977
71c8973a604b declare add_nonneg_nonneg [simp]; remove now-redundant lemmas realpow_two_le_order(2)
huffman
parents: 36970
diff changeset
   959
     auto intro!: less_imp_le add_neg_neg)
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
   960
qed (auto simp add: abs_if)
25304
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
   961
35631
0b8a5fd339ab generalize some lemmas from class linordered_ring_strict to linordered_ring
huffman
parents: 35302
diff changeset
   962
lemma zero_le_square [simp]: "0 \<le> a * a"
0b8a5fd339ab generalize some lemmas from class linordered_ring_strict to linordered_ring
huffman
parents: 35302
diff changeset
   963
  using linear [of 0 a]
0b8a5fd339ab generalize some lemmas from class linordered_ring_strict to linordered_ring
huffman
parents: 35302
diff changeset
   964
  by (auto simp add: mult_nonneg_nonneg mult_nonpos_nonpos)
0b8a5fd339ab generalize some lemmas from class linordered_ring_strict to linordered_ring
huffman
parents: 35302
diff changeset
   965
0b8a5fd339ab generalize some lemmas from class linordered_ring_strict to linordered_ring
huffman
parents: 35302
diff changeset
   966
lemma not_square_less_zero [simp]: "\<not> (a * a < 0)"
0b8a5fd339ab generalize some lemmas from class linordered_ring_strict to linordered_ring
huffman
parents: 35302
diff changeset
   967
  by (simp add: not_less)
0b8a5fd339ab generalize some lemmas from class linordered_ring_strict to linordered_ring
huffman
parents: 35302
diff changeset
   968
25304
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
   969
end
23521
195fe3fe2831 added ordered_ring and ordered_semiring
obua
parents: 23496
diff changeset
   970
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   971
(* The "strict" suffix can be seen as describing the combination of linordered_ring and no_zero_divisors.
35043
07dbdf60d5ad dropped accidental duplication of "lin" prefix from cs. 108662d50512
haftmann
parents: 35032
diff changeset
   972
   Basically, linordered_ring + no_zero_divisors = linordered_ring_strict.
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   973
 *)
35043
07dbdf60d5ad dropped accidental duplication of "lin" prefix from cs. 108662d50512
haftmann
parents: 35032
diff changeset
   974
class linordered_ring_strict = ring + linordered_semiring_strict
25304
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
   975
  + ordered_ab_group_add + abs_if
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   976
begin
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14341
diff changeset
   977
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
   978
subclass linordered_ring ..
25304
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
   979
30692
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   980
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
   981
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
   982
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   983
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
   984
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
   985
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
   986
lemma mult_neg_neg: "a < 0 \<Longrightarrow> b < 0 \<Longrightarrow> 0 < a * b"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   987
using mult_strict_right_mono_neg [of a 0 b] by simp
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   988
25917
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
   989
subclass ring_no_zero_divisors
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28559
diff changeset
   990
proof
25917
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
   991
  fix a b
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
   992
  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
   993
  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
   994
  have "a * b < 0 \<or> 0 < a * b"
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
   995
  proof (cases "a < 0")
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
   996
    case True note A' = this
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
   997
    show ?thesis proof (cases "b < 0")
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
   998
      case True with A'
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
   999
      show ?thesis by (auto dest: mult_neg_neg)
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1000
    next
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1001
      case False with B have "0 < b" by auto
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1002
      with A' show ?thesis by (auto dest: mult_strict_right_mono)
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1003
    qed
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1004
  next
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1005
    case False with A have A': "0 < a" by auto
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1006
    show ?thesis proof (cases "b < 0")
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1007
      case True with A'
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1008
      show ?thesis by (auto dest: mult_strict_right_mono_neg)
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1009
    next
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1010
      case False with B have "0 < b" by auto
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1011
      with A' show ?thesis by (auto dest: mult_pos_pos)
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1012
    qed
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1013
  qed
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1014
  then show "a * b \<noteq> 0" by (simp add: neq_iff)
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1015
qed
25304
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
  1016
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
  1017
lemma zero_less_mult_iff:
25917
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1018
  "0 < a * b \<longleftrightarrow> 0 < a \<and> 0 < b \<or> a < 0 \<and> b < 0"
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1019
  apply (auto simp add: mult_pos_pos mult_neg_neg)
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1020
  apply (simp_all add: not_less le_less)
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1021
  apply (erule disjE) apply assumption defer
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1022
  apply (erule disjE) defer apply (drule sym) apply simp
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1023
  apply (erule disjE) defer apply (drule sym) apply simp
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1024
  apply (erule disjE) apply assumption apply (drule sym) apply simp
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1025
  apply (drule sym) apply simp
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1026
  apply (blast dest: zero_less_mult_pos)
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1027
  apply (blast dest: zero_less_mult_pos2)
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1028
  done
22990
775e9de3db48 added classes ring_no_zero_divisors and dom (non-commutative version of idom);
huffman
parents: 22987
diff changeset
  1029
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
  1030
lemma zero_le_mult_iff:
25917
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1031
  "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
  1032
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
  1033
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
  1034
lemma mult_less_0_iff:
25917
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1035
  "a * b < 0 \<longleftrightarrow> 0 < a \<and> b < 0 \<or> a < 0 \<and> 0 < b"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
  1036
  apply (insert zero_less_mult_iff [of "-a" b])
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
  1037
  apply force
25917
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1038
  done
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
  1039
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
  1040
lemma mult_le_0_iff:
25917
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1041
  "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
  1042
  apply (insert zero_le_mult_iff [of "-a" b]) 
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
  1043
  apply force
25917
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1044
  done
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1045
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1046
text{*Cancellation laws for @{term "c*a < c*b"} and @{term "a*c < b*c"},
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1047
   also with the relations @{text "\<le>"} and equality.*}
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1048
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1049
text{*These ``disjunction'' versions produce two cases when the comparison is
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1050
 an assumption, but effectively four when the comparison is a goal.*}
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1051
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1052
lemma mult_less_cancel_right_disj:
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1053
  "a * c < b * c \<longleftrightarrow> 0 < c \<and> a < b \<or> c < 0 \<and>  b < a"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1054
  apply (cases "c = 0")
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1055
  apply (auto simp add: neq_iff mult_strict_right_mono 
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1056
                      mult_strict_right_mono_neg)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1057
  apply (auto simp add: not_less 
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1058
                      not_le [symmetric, of "a*c"]
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1059
                      not_le [symmetric, of a])
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1060
  apply (erule_tac [!] notE)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1061
  apply (auto simp add: less_imp_le mult_right_mono 
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1062
                      mult_right_mono_neg)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1063
  done
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1064
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1065
lemma mult_less_cancel_left_disj:
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1066
  "c * a < c * b \<longleftrightarrow> 0 < c \<and> a < b \<or> c < 0 \<and>  b < a"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1067
  apply (cases "c = 0")
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1068
  apply (auto simp add: neq_iff mult_strict_left_mono 
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1069
                      mult_strict_left_mono_neg)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1070
  apply (auto simp add: not_less 
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1071
                      not_le [symmetric, of "c*a"]
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1072
                      not_le [symmetric, of a])
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1073
  apply (erule_tac [!] notE)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1074
  apply (auto simp add: less_imp_le mult_left_mono 
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1075
                      mult_left_mono_neg)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1076
  done
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1077
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1078
text{*The ``conjunction of implication'' lemmas produce two cases when the
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1079
comparison is a goal, but give four when the comparison is an assumption.*}
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1080
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1081
lemma mult_less_cancel_right:
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1082
  "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
  1083
  using mult_less_cancel_right_disj [of a c b] by auto
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1084
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1085
lemma mult_less_cancel_left:
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1086
  "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
  1087
  using mult_less_cancel_left_disj [of c a b] by auto
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1088
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1089
lemma mult_le_cancel_right:
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1090
   "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
  1091
by (simp add: not_less [symmetric] mult_less_cancel_right_disj)
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1092
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1093
lemma mult_le_cancel_left:
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1094
  "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
  1095
by (simp add: not_less [symmetric] mult_less_cancel_left_disj)
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1096
30649
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30242
diff changeset
  1097
lemma mult_le_cancel_left_pos:
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30242
diff changeset
  1098
  "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
  1099
by (auto simp: mult_le_cancel_left)
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30242
diff changeset
  1100
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30242
diff changeset
  1101
lemma mult_le_cancel_left_neg:
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30242
diff changeset
  1102
  "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
  1103
by (auto simp: mult_le_cancel_left)
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30242
diff changeset
  1104
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30242
diff changeset
  1105
lemma mult_less_cancel_left_pos:
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30242
diff changeset
  1106
  "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
  1107
by (auto simp: mult_less_cancel_left)
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30242
diff changeset
  1108
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30242
diff changeset
  1109
lemma mult_less_cancel_left_neg:
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30242
diff changeset
  1110
  "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
  1111
by (auto simp: mult_less_cancel_left)
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30242
diff changeset
  1112
25917
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1113
end
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
  1114
30692
44ea10bc07a7 clean up proofs of sign rules for multiplication; add list of lemmas mult_sign_intros
huffman
parents: 30650
diff changeset
  1115
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
  1116
  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
  1117
  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
  1118
  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
  1119
  mult_neg_pos mult_neg_neg
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1120
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1121
class ordered_comm_ring = comm_ring + ordered_comm_semiring
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
  1122
begin
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1123
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1124
subclass ordered_ring ..
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1125
subclass ordered_cancel_comm_semiring ..
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1126
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
  1127
end
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1128
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1129
class linordered_semidom = comm_semiring_1_cancel + linordered_comm_semiring_strict +
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1130
  (*previously linordered_semiring*)
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1131
  assumes zero_less_one [simp]: "0 < 1"
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1132
begin
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1133
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1134
lemma pos_add_strict:
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1135
  shows "0 < a \<Longrightarrow> b < c \<Longrightarrow> b < a + c"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1136
  using add_strict_mono [of 0 a b c] by simp
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1137
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1138
lemma zero_le_one [simp]: "0 \<le> 1"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
  1139
by (rule zero_less_one [THEN less_imp_le]) 
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1140
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1141
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
  1142
by (simp add: not_le) 
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1143
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1144
lemma not_one_less_zero [simp]: "\<not> 1 < 0"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
  1145
by (simp add: not_less) 
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1146
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1147
lemma less_1_mult:
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1148
  assumes "1 < m" and "1 < n"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1149
  shows "1 < m * n"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1150
  using assms mult_strict_mono [of 1 m 1 n]
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1151
    by (simp add:  less_trans [OF zero_less_one]) 
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1152
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1153
end
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1154
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1155
class linordered_idom = comm_ring_1 +
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1156
  linordered_comm_semiring_strict + ordered_ab_group_add +
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1157
  abs_if + sgn_if
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1158
  (*previously linordered_ring*)
25917
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1159
begin
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1160
36622
e393a91f86df Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents: 36348
diff changeset
  1161
subclass linordered_semiring_1_strict ..
35043
07dbdf60d5ad dropped accidental duplication of "lin" prefix from cs. 108662d50512
haftmann
parents: 35032
diff changeset
  1162
subclass linordered_ring_strict ..
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1163
subclass ordered_comm_ring ..
27516
9a5d4a8d4aac by intro_locales -> ..
huffman
parents: 26274
diff changeset
  1164
subclass idom ..
25917
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1165
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1166
subclass linordered_semidom
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28559
diff changeset
  1167
proof
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1168
  have "0 \<le> 1 * 1" by (rule zero_le_square)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1169
  thus "0 < 1" by (simp add: le_less)
25917
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1170
qed 
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1171
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1172
lemma linorder_neqE_linordered_idom:
26193
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1173
  assumes "x \<noteq> y" obtains "x < y" | "y < x"
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1174
  using assms by (rule neqE)
37a7eb7fd5f7 continued localization
haftmann
parents: 25917
diff changeset
  1175
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1176
text {* These cancellation simprules also produce two cases when the comparison is a goal. *}
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1177
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1178
lemma mult_le_cancel_right1:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1179
  "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
  1180
by (insert mult_le_cancel_right [of 1 c b], simp)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1181
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1182
lemma mult_le_cancel_right2:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1183
  "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
  1184
by (insert mult_le_cancel_right [of a c 1], simp)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1185
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1186
lemma mult_le_cancel_left1:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1187
  "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
  1188
by (insert mult_le_cancel_left [of c 1 b], simp)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1189
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1190
lemma mult_le_cancel_left2:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1191
  "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
  1192
by (insert mult_le_cancel_left [of c a 1], simp)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1193
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1194
lemma mult_less_cancel_right1:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1195
  "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
  1196
by (insert mult_less_cancel_right [of 1 c b], simp)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1197
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1198
lemma mult_less_cancel_right2:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1199
  "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
  1200
by (insert mult_less_cancel_right [of a c 1], simp)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1201
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1202
lemma mult_less_cancel_left1:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1203
  "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
  1204
by (insert mult_less_cancel_left [of c 1 b], simp)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1205
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1206
lemma mult_less_cancel_left2:
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1207
  "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
  1208
by (insert mult_less_cancel_left [of c a 1], simp)
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1209
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
  1210
lemma sgn_sgn [simp]:
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
  1211
  "sgn (sgn a) = sgn a"
29700
22faf21db3df added some simp rules
nipkow
parents: 29668
diff changeset
  1212
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
  1213
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
  1214
lemma sgn_0_0:
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
  1215
  "sgn a = 0 \<longleftrightarrow> a = 0"
29700
22faf21db3df added some simp rules
nipkow
parents: 29668
diff changeset
  1216
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
  1217
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
  1218
lemma sgn_1_pos:
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
  1219
  "sgn a = 1 \<longleftrightarrow> a > 0"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
  1220
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
  1221
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
  1222
lemma sgn_1_neg:
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
  1223
  "sgn a = - 1 \<longleftrightarrow> a < 0"
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
  1224
unfolding sgn_if by auto
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
  1225
29940
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1226
lemma sgn_pos [simp]:
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1227
  "0 < a \<Longrightarrow> sgn a = 1"
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1228
unfolding sgn_1_pos .
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1229
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1230
lemma sgn_neg [simp]:
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1231
  "a < 0 \<Longrightarrow> sgn a = - 1"
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1232
unfolding sgn_1_neg .
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1233
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
  1234
lemma sgn_times:
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27516
diff changeset
  1235
  "sgn (a * b) = sgn a * sgn b"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
  1236
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
  1237
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1238
lemma abs_sgn: "\<bar>k\<bar> = k * sgn k"
29700
22faf21db3df added some simp rules
nipkow
parents: 29668
diff changeset
  1239
unfolding sgn_if abs_if by auto
22faf21db3df added some simp rules
nipkow
parents: 29668
diff changeset
  1240
29940
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1241
lemma sgn_greater [simp]:
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1242
  "0 < sgn a \<longleftrightarrow> 0 < a"
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1243
  unfolding sgn_if by auto
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1244
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1245
lemma sgn_less [simp]:
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1246
  "sgn a < 0 \<longleftrightarrow> a < 0"
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1247
  unfolding sgn_if by auto
83b373f61d41 more default simp rules for sgn
haftmann
parents: 29925
diff changeset
  1248
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1249
lemma abs_dvd_iff [simp]: "\<bar>m\<bar> dvd k \<longleftrightarrow> m dvd k"
29949
20a506b8256d lemmas abs_dvd_iff, dvd_abs_iff
huffman
parents: 29940
diff changeset
  1250
  by (simp add: abs_if)
20a506b8256d lemmas abs_dvd_iff, dvd_abs_iff
huffman
parents: 29940
diff changeset
  1251
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1252
lemma dvd_abs_iff [simp]: "m dvd \<bar>k\<bar> \<longleftrightarrow> m dvd k"
29949
20a506b8256d lemmas abs_dvd_iff, dvd_abs_iff
huffman
parents: 29940
diff changeset
  1253
  by (simp add: abs_if)
29653
ece6a0e9f8af added lemma abs_sng
haftmann
parents: 29465
diff changeset
  1254
33676
802f5e233e48 moved lemma from Algebra/IntRing to Ring_and_Field
nipkow
parents: 33364
diff changeset
  1255
lemma dvd_if_abs_eq:
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1256
  "\<bar>l\<bar> = \<bar>k\<bar> \<Longrightarrow> l dvd k"
33676
802f5e233e48 moved lemma from Algebra/IntRing to Ring_and_Field
nipkow
parents: 33364
diff changeset
  1257
by(subst abs_dvd_iff[symmetric]) simp
802f5e233e48 moved lemma from Algebra/IntRing to Ring_and_Field
nipkow
parents: 33364
diff changeset
  1258
25917
d6c920623afc further localization
haftmann
parents: 25762
diff changeset
  1259
end
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
  1260
26274
2bdb61a28971 continued localization
haftmann
parents: 26234
diff changeset
  1261
text {* Simprules for comparisons where common factors can be cancelled. *}
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1262
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 35631
diff changeset
  1263
lemmas mult_compare_simps[no_atp] =
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1264
    mult_le_cancel_right mult_le_cancel_left
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1265
    mult_le_cancel_right1 mult_le_cancel_right2
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1266
    mult_le_cancel_left1 mult_le_cancel_left2
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1267
    mult_less_cancel_right mult_less_cancel_left
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1268
    mult_less_cancel_right1 mult_less_cancel_right2
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1269
    mult_less_cancel_left1 mult_less_cancel_left2
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1270
    mult_cancel_right mult_cancel_left
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1271
    mult_cancel_right1 mult_cancel_right2
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1272
    mult_cancel_left1 mult_cancel_left2
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1273
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1274
text {* Reasoning about inequalities with division *}
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1275
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1276
context linordered_semidom
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1277
begin
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1278
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1279
lemma less_add_one: "a < a + 1"
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1280
proof -
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1281
  have "a + 0 < a + 1"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1282
    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
  1283
  thus ?thesis by simp
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1284
qed
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1285
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1286
lemma zero_less_two: "0 < 1 + 1"
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29465
diff changeset
  1287
by (blast intro: less_trans zero_less_one less_add_one)
25193
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1288
e2e1a4b00de3 various localizations
haftmann
parents: 25186
diff changeset
  1289
end
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
  1290
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1291
context linordered_idom
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1292
begin
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1293
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1294
lemma mult_right_le_one_le:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1295
  "0 \<le> x \<Longrightarrow> 0 \<le> y \<Longrightarrow> y \<le> 1 \<Longrightarrow> x * y \<le> x"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1296
  by (auto simp add: mult_le_cancel_left2)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1297
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1298
lemma mult_left_le_one_le:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1299
  "0 \<le> x \<Longrightarrow> 0 \<le> y \<Longrightarrow> y \<le> 1 \<Longrightarrow> y * x \<le> x"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1300
  by (auto simp add: mult_le_cancel_right2)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1302
end
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1303
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1304
text {* Absolute Value *}
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1305
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1306
context linordered_idom
25304
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
  1307
begin
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
  1308
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1309
lemma mult_sgn_abs:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1310
  "sgn x * \<bar>x\<bar> = x"
25304
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
  1311
  unfolding abs_if sgn_if by auto
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
  1312
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1313
lemma abs_one [simp]:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1314
  "\<bar>1\<bar> = 1"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1315
  by (simp add: abs_if zero_less_one [THEN less_not_sym])
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1316
25304
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
  1317
end
24491
8d194c9198ae added constant sgn
nipkow
parents: 24427
diff changeset
  1318
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1319
class ordered_ring_abs = ordered_ring + ordered_ab_group_add_abs +
25304
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
  1320
  assumes abs_eq_mult:
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
  1321
    "(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
  1322
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1323
context linordered_idom
30961
541bfff659af more localisation
haftmann
parents: 30692
diff changeset
  1324
begin
541bfff659af more localisation
haftmann
parents: 30692
diff changeset
  1325
35028
108662d50512 more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents: 34146
diff changeset
  1326
subclass ordered_ring_abs proof
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35097
diff changeset
  1327
qed (auto simp add: abs_if not_less mult_less_0_iff)
30961
541bfff659af more localisation
haftmann
parents: 30692
diff changeset
  1328
541bfff659af more localisation
haftmann
parents: 30692
diff changeset
  1329
lemma abs_mult:
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1330
  "\<bar>a * b\<bar> = \<bar>a\<bar> * \<bar>b\<bar>" 
30961
541bfff659af more localisation
haftmann
parents: 30692
diff changeset
  1331
  by (rule abs_eq_mult) auto
541bfff659af more localisation
haftmann
parents: 30692
diff changeset
  1332
541bfff659af more localisation
haftmann
parents: 30692
diff changeset
  1333
lemma abs_mult_self:
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1334
  "\<bar>a\<bar> * \<bar>a\<bar> = a * a"
30961
541bfff659af more localisation
haftmann
parents: 30692
diff changeset
  1335
  by (simp add: abs_if) 
541bfff659af more localisation
haftmann
parents: 30692
diff changeset
  1336
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  1337
lemma abs_mult_less:
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1338
  "\<bar>a\<bar> < c \<Longrightarrow> \<bar>b\<bar> < d \<Longrightarrow> \<bar>a\<bar> * \<bar>b\<bar> < c * d"
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  1339
proof -
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1340
  assume ac: "\<bar>a\<bar> < c"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1341
  hence cpos: "0<c" by (blast intro: le_less_trans abs_ge_zero)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1342
  assume "\<bar>b\<bar> < d"
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  1343
  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
  1344
qed
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1345
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1346
lemma less_minus_self_iff:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1347
  "a < - a \<longleftrightarrow> a < 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1348
  by (simp only: 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
  1349
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1350
lemma abs_less_iff:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1351
  "\<bar>a\<bar> < b \<longleftrightarrow> a < b \<and> - a < b" 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1352
  by (simp add: less_le abs_le_iff) (auto simp add: abs_if)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
  1353
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1354
lemma abs_mult_pos:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1355
  "0 \<le> x \<Longrightarrow> \<bar>y\<bar> * x = \<bar>y * x\<bar>"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1356
  by (simp add: abs_mult)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1357
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1358
end
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1359
33364
2bd12592c5e8 tuned code setup
haftmann
parents: 33319
diff changeset
  1360
code_modulename SML
35050
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35043
diff changeset
  1361
  Rings Arith
33364
2bd12592c5e8 tuned code setup
haftmann
parents: 33319
diff changeset
  1362
2bd12592c5e8 tuned code setup
haftmann
parents: 33319
diff changeset
  1363
code_modulename OCaml
35050
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35043
diff changeset
  1364
  Rings Arith
33364
2bd12592c5e8 tuned code setup
haftmann
parents: 33319
diff changeset
  1365
2bd12592c5e8 tuned code setup
haftmann
parents: 33319
diff changeset
  1366
code_modulename Haskell
35050
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35043
diff changeset
  1367
  Rings Arith
33364
2bd12592c5e8 tuned code setup
haftmann
parents: 33319
diff changeset
  1368
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
  1369
end