src/HOL/Fields.thy
author hoelzl
Wed, 09 Apr 2014 09:37:48 +0200
changeset 56480 093ea91498e6
parent 56479 91958d4b30f7
child 56481 47500d0881f9
permissions -rw-r--r--
field_simps: better support for negation and division, and power
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/Fields.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 {* Fields *}
25152
bfde2f8c0f63 partially localized
haftmann
parents: 25078
diff changeset
    11
35050
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35043
diff changeset
    12
theory Fields
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 35043
diff changeset
    13
imports Rings
25186
f4d1ebffd025 localized further
haftmann
parents: 25152
diff changeset
    14
begin
14421
ee97b6463cb4 new Ring_and_Field hierarchy, eliminating redundant axioms
paulson
parents: 14398
diff changeset
    15
44064
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    16
subsection {* Division rings *}
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    17
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    18
text {*
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    19
  A division ring is like a field, but without the commutativity requirement.
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    20
*}
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    21
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    22
class inverse =
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    23
  fixes inverse :: "'a \<Rightarrow> 'a"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    24
    and divide :: "'a \<Rightarrow> 'a \<Rightarrow> 'a"  (infixl "'/" 70)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    25
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    26
class division_ring = ring_1 + inverse +
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    27
  assumes left_inverse [simp]:  "a \<noteq> 0 \<Longrightarrow> inverse a * a = 1"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    28
  assumes right_inverse [simp]: "a \<noteq> 0 \<Longrightarrow> a * inverse a = 1"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    29
  assumes divide_inverse: "a / b = a * inverse b"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    30
begin
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    31
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    32
subclass ring_1_no_zero_divisors
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    33
proof
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    34
  fix a b :: 'a
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    35
  assume a: "a \<noteq> 0" and b: "b \<noteq> 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    36
  show "a * b \<noteq> 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    37
  proof
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    38
    assume ab: "a * b = 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    39
    hence "0 = inverse a * (a * b) * inverse b" by simp
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    40
    also have "\<dots> = (inverse a * a) * (b * inverse b)"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    41
      by (simp only: mult_assoc)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    42
    also have "\<dots> = 1" using a b by simp
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    43
    finally show False by simp
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    44
  qed
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    45
qed
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    46
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    47
lemma nonzero_imp_inverse_nonzero:
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    48
  "a \<noteq> 0 \<Longrightarrow> inverse a \<noteq> 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    49
proof
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    50
  assume ianz: "inverse a = 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    51
  assume "a \<noteq> 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    52
  hence "1 = a * inverse a" by simp
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    53
  also have "... = 0" by (simp add: ianz)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    54
  finally have "1 = 0" .
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    55
  thus False by (simp add: eq_commute)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    56
qed
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    57
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    58
lemma inverse_zero_imp_zero:
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    59
  "inverse a = 0 \<Longrightarrow> a = 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    60
apply (rule classical)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    61
apply (drule nonzero_imp_inverse_nonzero)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    62
apply auto
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    63
done
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    64
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    65
lemma inverse_unique: 
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    66
  assumes ab: "a * b = 1"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    67
  shows "inverse a = b"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    68
proof -
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    69
  have "a \<noteq> 0" using ab by (cases "a = 0") simp_all
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    70
  moreover have "inverse a * (a * b) = inverse a" by (simp add: ab)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    71
  ultimately show ?thesis by (simp add: mult_assoc [symmetric])
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    72
qed
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    73
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    74
lemma nonzero_inverse_minus_eq:
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    75
  "a \<noteq> 0 \<Longrightarrow> inverse (- a) = - inverse a"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    76
by (rule inverse_unique) simp
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    77
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    78
lemma nonzero_inverse_inverse_eq:
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    79
  "a \<noteq> 0 \<Longrightarrow> inverse (inverse a) = a"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    80
by (rule inverse_unique) simp
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    81
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    82
lemma nonzero_inverse_eq_imp_eq:
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    83
  assumes "inverse a = inverse b" and "a \<noteq> 0" and "b \<noteq> 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    84
  shows "a = b"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    85
proof -
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    86
  from `inverse a = inverse b`
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    87
  have "inverse (inverse a) = inverse (inverse b)" by (rule arg_cong)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    88
  with `a \<noteq> 0` and `b \<noteq> 0` show "a = b"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    89
    by (simp add: nonzero_inverse_inverse_eq)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    90
qed
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    91
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    92
lemma inverse_1 [simp]: "inverse 1 = 1"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    93
by (rule inverse_unique) simp
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    94
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    95
lemma nonzero_inverse_mult_distrib: 
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    96
  assumes "a \<noteq> 0" and "b \<noteq> 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    97
  shows "inverse (a * b) = inverse b * inverse a"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    98
proof -
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
    99
  have "a * (b * inverse b) * inverse a = 1" using assms by simp
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   100
  hence "a * b * (inverse b * inverse a) = 1" by (simp only: mult_assoc)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   101
  thus ?thesis by (rule inverse_unique)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   102
qed
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   103
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   104
lemma division_ring_inverse_add:
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   105
  "a \<noteq> 0 \<Longrightarrow> b \<noteq> 0 \<Longrightarrow> inverse a + inverse b = inverse a * (a + b) * inverse b"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   106
by (simp add: algebra_simps)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   107
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   108
lemma division_ring_inverse_diff:
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   109
  "a \<noteq> 0 \<Longrightarrow> b \<noteq> 0 \<Longrightarrow> inverse a - inverse b = inverse a * (b - a) * inverse b"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   110
by (simp add: algebra_simps)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   111
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   112
lemma right_inverse_eq: "b \<noteq> 0 \<Longrightarrow> a / b = 1 \<longleftrightarrow> a = b"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   113
proof
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   114
  assume neq: "b \<noteq> 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   115
  {
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   116
    hence "a = (a / b) * b" by (simp add: divide_inverse mult_assoc)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   117
    also assume "a / b = 1"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   118
    finally show "a = b" by simp
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   119
  next
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   120
    assume "a = b"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   121
    with neq show "a / b = 1" by (simp add: divide_inverse)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   122
  }
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   123
qed
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   124
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   125
lemma nonzero_inverse_eq_divide: "a \<noteq> 0 \<Longrightarrow> inverse a = 1 / a"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   126
by (simp add: divide_inverse)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   127
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   128
lemma divide_self [simp]: "a \<noteq> 0 \<Longrightarrow> a / a = 1"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   129
by (simp add: divide_inverse)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   130
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   131
lemma divide_zero_left [simp]: "0 / a = 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   132
by (simp add: divide_inverse)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   133
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   134
lemma inverse_eq_divide [field_simps]: "inverse a = 1 / a"
44064
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   135
by (simp add: divide_inverse)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   136
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   137
lemma add_divide_distrib: "(a+b) / c = a/c + b/c"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   138
by (simp add: divide_inverse algebra_simps)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   139
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   140
lemma divide_1 [simp]: "a / 1 = a"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   141
  by (simp add: divide_inverse)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   142
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   143
lemma times_divide_eq_right [simp]: "a * (b / c) = (a * b) / c"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   144
  by (simp add: divide_inverse mult_assoc)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   145
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   146
lemma minus_divide_left: "- (a / b) = (-a) / b"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   147
  by (simp add: divide_inverse)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   148
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   149
lemma nonzero_minus_divide_right: "b \<noteq> 0 ==> - (a / b) = a / (- b)"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   150
  by (simp add: divide_inverse nonzero_inverse_minus_eq)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   151
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   152
lemma nonzero_minus_divide_divide: "b \<noteq> 0 ==> (-a) / (-b) = a / b"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   153
  by (simp add: divide_inverse nonzero_inverse_minus_eq)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   154
56479
91958d4b30f7 revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents: 56445
diff changeset
   155
lemma divide_minus_left [simp]: "(-a) / b = - (a / b)"
44064
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   156
  by (simp add: divide_inverse)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   157
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   158
lemma diff_divide_distrib: "(a - b) / c = a / c - b / c"
56479
91958d4b30f7 revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents: 56445
diff changeset
   159
  using add_divide_distrib [of a "- b" c] by simp
44064
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   160
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   161
lemma nonzero_eq_divide_eq [field_simps]: "c \<noteq> 0 \<Longrightarrow> a = b / c \<longleftrightarrow> a * c = b"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   162
proof -
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   163
  assume [simp]: "c \<noteq> 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   164
  have "a = b / c \<longleftrightarrow> a * c = (b / c) * c" by simp
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   165
  also have "... \<longleftrightarrow> a * c = b" by (simp add: divide_inverse mult_assoc)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   166
  finally show ?thesis .
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   167
qed
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   168
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   169
lemma nonzero_divide_eq_eq [field_simps]: "c \<noteq> 0 \<Longrightarrow> b / c = a \<longleftrightarrow> b = a * c"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   170
proof -
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   171
  assume [simp]: "c \<noteq> 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   172
  have "b / c = a \<longleftrightarrow> (b / c) * c = a * c" by simp
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   173
  also have "... \<longleftrightarrow> b = a * c" by (simp add: divide_inverse mult_assoc) 
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   174
  finally show ?thesis .
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   175
qed
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   176
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   177
lemma nonzero_neg_divide_eq_eq [field_simps]: "b \<noteq> 0 \<Longrightarrow> - (a / b) = c \<longleftrightarrow> - a = c * b"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   178
  using nonzero_divide_eq_eq[of b "-a" c] by (simp add: divide_minus_left)
56441
49e95c9ebb59 made field_simps "more complete"
nipkow
parents: 56414
diff changeset
   179
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   180
lemma nonzero_neg_divide_eq_eq2 [field_simps]: "b \<noteq> 0 \<Longrightarrow> c = - (a / b) \<longleftrightarrow> c * b = - a"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   181
  using nonzero_neg_divide_eq_eq[of b a c] by auto
56441
49e95c9ebb59 made field_simps "more complete"
nipkow
parents: 56414
diff changeset
   182
44064
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   183
lemma divide_eq_imp: "c \<noteq> 0 \<Longrightarrow> b = a * c \<Longrightarrow> b / c = a"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   184
  by (simp add: divide_inverse mult_assoc)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   185
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   186
lemma eq_divide_imp: "c \<noteq> 0 \<Longrightarrow> a * c = b \<Longrightarrow> a = b / c"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   187
  by (drule sym) (simp add: divide_inverse mult_assoc)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   188
56445
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   189
lemma add_divide_eq_iff [field_simps]:
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   190
  "z \<noteq> 0 \<Longrightarrow> x + y / z = (x * z + y) / z"
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   191
  by (simp add: add_divide_distrib nonzero_eq_divide_eq)
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   192
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   193
lemma divide_add_eq_iff [field_simps]:
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   194
  "z \<noteq> 0 \<Longrightarrow> x / z + y = (x + y * z) / z"
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   195
  by (simp add: add_divide_distrib nonzero_eq_divide_eq)
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   196
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   197
lemma diff_divide_eq_iff [field_simps]:
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   198
  "z \<noteq> 0 \<Longrightarrow> x - y / z = (x * z - y) / z"
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   199
  by (simp add: diff_divide_distrib nonzero_eq_divide_eq eq_diff_eq)
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   200
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   201
lemma minus_divide_add_eq_iff [field_simps]:
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   202
  "z \<noteq> 0 \<Longrightarrow> - (x / z) + y = (- x + y * z) / z"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   203
  by (simp add: add_divide_distrib diff_divide_eq_iff divide_minus_left)
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   204
56445
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   205
lemma divide_diff_eq_iff [field_simps]:
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   206
  "z \<noteq> 0 \<Longrightarrow> x / z - y = (x - y * z) / z"
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   207
  by (simp add: field_simps)
82ce19612fe8 tuned lemmas: more general class
nipkow
parents: 56441
diff changeset
   208
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   209
lemma minus_divide_diff_eq_iff [field_simps]:
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   210
  "z \<noteq> 0 \<Longrightarrow> - (x / z) - y = (- x - y * z) / z"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   211
  by (simp add: divide_diff_eq_iff[symmetric] divide_minus_left)
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   212
44064
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   213
end
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   214
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   215
class division_ring_inverse_zero = division_ring +
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   216
  assumes inverse_zero [simp]: "inverse 0 = 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   217
begin
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   218
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   219
lemma divide_zero [simp]:
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   220
  "a / 0 = 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   221
  by (simp add: divide_inverse)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   222
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   223
lemma divide_self_if [simp]:
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   224
  "a / a = (if a = 0 then 0 else 1)"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   225
  by simp
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   226
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   227
lemma inverse_nonzero_iff_nonzero [simp]:
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   228
  "inverse a = 0 \<longleftrightarrow> a = 0"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   229
  by rule (fact inverse_zero_imp_zero, simp)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   230
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   231
lemma inverse_minus_eq [simp]:
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   232
  "inverse (- a) = - inverse a"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   233
proof cases
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   234
  assume "a=0" thus ?thesis by simp
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   235
next
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   236
  assume "a\<noteq>0" 
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   237
  thus ?thesis by (simp add: nonzero_inverse_minus_eq)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   238
qed
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   239
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   240
lemma inverse_inverse_eq [simp]:
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   241
  "inverse (inverse a) = a"
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   242
proof cases
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   243
  assume "a=0" thus ?thesis by simp
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   244
next
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   245
  assume "a\<noteq>0" 
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   246
  thus ?thesis by (simp add: nonzero_inverse_inverse_eq)
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   247
qed
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   248
44680
761f427ef1ab simplify proof
huffman
parents: 44064
diff changeset
   249
lemma inverse_eq_imp_eq:
761f427ef1ab simplify proof
huffman
parents: 44064
diff changeset
   250
  "inverse a = inverse b \<Longrightarrow> a = b"
761f427ef1ab simplify proof
huffman
parents: 44064
diff changeset
   251
  by (drule arg_cong [where f="inverse"], simp)
761f427ef1ab simplify proof
huffman
parents: 44064
diff changeset
   252
761f427ef1ab simplify proof
huffman
parents: 44064
diff changeset
   253
lemma inverse_eq_iff_eq [simp]:
761f427ef1ab simplify proof
huffman
parents: 44064
diff changeset
   254
  "inverse a = inverse b \<longleftrightarrow> a = b"
761f427ef1ab simplify proof
huffman
parents: 44064
diff changeset
   255
  by (force dest!: inverse_eq_imp_eq)
761f427ef1ab simplify proof
huffman
parents: 44064
diff changeset
   256
44064
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   257
end
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   258
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   259
subsection {* Fields *}
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   260
22987
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   261
class field = comm_ring_1 + inverse +
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   262
  assumes field_inverse: "a \<noteq> 0 \<Longrightarrow> inverse a * a = 1"
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   263
  assumes field_divide_inverse: "a / b = a * inverse b"
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   264
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
   265
25267
1f745c599b5c proper reinitialisation after subclass
haftmann
parents: 25238
diff changeset
   266
subclass division_ring
28823
dcbef866c9e2 tuned unfold_locales invocation
haftmann
parents: 28559
diff changeset
   267
proof
22987
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   268
  fix a :: 'a
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   269
  assume "a \<noteq> 0"
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   270
  thus "inverse a * a = 1" by (rule field_inverse)
550709aa8e66 instance division_ring < no_zero_divisors; clean up field instance proofs
huffman
parents: 22842
diff changeset
   271
  thus "a * inverse a = 1" by (simp only: mult_commute)
35084
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   272
next
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   273
  fix a b :: 'a
e25eedfc15ce moved constants inverse and divide to Ring.thy
haftmann
parents: 35050
diff changeset
   274
  show "a / b = a * inverse b" by (rule field_divide_inverse)
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14603
diff changeset
   275
qed
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   276
27516
9a5d4a8d4aac by intro_locales -> ..
huffman
parents: 26274
diff changeset
   277
subclass idom ..
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   278
30630
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   279
text{*There is no slick version using division by zero.*}
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   280
lemma inverse_add:
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   281
  "[| a \<noteq> 0;  b \<noteq> 0 |]
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   282
   ==> inverse a + inverse b = (a + b) * inverse a * inverse b"
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   283
by (simp add: division_ring_inverse_add mult_ac)
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   284
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   285
lemma nonzero_mult_divide_mult_cancel_left [simp]:
30630
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   286
assumes [simp]: "b\<noteq>0" and [simp]: "c\<noteq>0" shows "(c*a)/(c*b) = a/b"
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   287
proof -
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   288
  have "(c*a)/(c*b) = c * a * (inverse b * inverse c)"
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   289
    by (simp add: divide_inverse nonzero_inverse_mult_distrib)
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   290
  also have "... =  a * inverse b * (inverse c * c)"
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   291
    by (simp only: mult_ac)
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   292
  also have "... =  a * inverse b" by simp
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   293
    finally show ?thesis by (simp add: divide_inverse)
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   294
qed
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   295
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   296
lemma nonzero_mult_divide_mult_cancel_right [simp]:
30630
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   297
  "\<lbrakk>b \<noteq> 0; c \<noteq> 0\<rbrakk> \<Longrightarrow> (a * c) / (b * c) = a / b"
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   298
by (simp add: mult_commute [of _ c])
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   299
36304
6984744e6b34 less special treatment of times_divide_eq [simp]
haftmann
parents: 36301
diff changeset
   300
lemma times_divide_eq_left [simp]: "(b / c) * a = (b * a) / c"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   301
  by (simp add: divide_inverse mult_ac)
30630
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   302
44921
58eef4843641 tuned proofs
huffman
parents: 44680
diff changeset
   303
text{*It's not obvious whether @{text times_divide_eq} should be
58eef4843641 tuned proofs
huffman
parents: 44680
diff changeset
   304
  simprules or not. Their effect is to gather terms into one big
58eef4843641 tuned proofs
huffman
parents: 44680
diff changeset
   305
  fraction, like a*b*c / x*y*z. The rationale for that is unclear, but
58eef4843641 tuned proofs
huffman
parents: 44680
diff changeset
   306
  many proofs seem to need them.*}
58eef4843641 tuned proofs
huffman
parents: 44680
diff changeset
   307
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   308
lemmas times_divide_eq = times_divide_eq_right times_divide_eq_left
30630
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   309
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   310
lemma add_frac_eq:
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   311
  assumes "y \<noteq> 0" and "z \<noteq> 0"
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   312
  shows "x / y + w / z = (x * z + w * y) / (y * z)"
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   313
proof -
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   314
  have "x / y + w / z = (x * z) / (y * z) + (y * w) / (y * z)"
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   315
    using assms by simp
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   316
  also have "\<dots> = (x * z + y * w) / (y * z)"
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   317
    by (simp only: add_divide_distrib)
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   318
  finally show ?thesis
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   319
    by (simp only: mult_commute)
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   320
qed
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   321
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   322
text{*Special Cancellation Simprules for Division*}
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   323
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   324
lemma nonzero_mult_divide_cancel_right [simp]:
30630
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   325
  "b \<noteq> 0 \<Longrightarrow> a * b / b = a"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   326
  using nonzero_mult_divide_mult_cancel_right [of 1 b a] by simp
30630
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   327
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   328
lemma nonzero_mult_divide_cancel_left [simp]:
30630
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   329
  "a \<noteq> 0 \<Longrightarrow> a * b / a = b"
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   330
using nonzero_mult_divide_mult_cancel_left [of 1 a b] by simp
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   331
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   332
lemma nonzero_divide_mult_cancel_right [simp]:
30630
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   333
  "\<lbrakk>a \<noteq> 0; b \<noteq> 0\<rbrakk> \<Longrightarrow> b / (a * b) = 1 / a"
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   334
using nonzero_mult_divide_mult_cancel_right [of a b 1] by simp
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   335
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   336
lemma nonzero_divide_mult_cancel_left [simp]:
30630
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   337
  "\<lbrakk>a \<noteq> 0; b \<noteq> 0\<rbrakk> \<Longrightarrow> a / (a * b) = 1 / b"
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   338
using nonzero_mult_divide_mult_cancel_left [of b a 1] by simp
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   339
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   340
lemma nonzero_mult_divide_mult_cancel_left2 [simp]:
30630
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   341
  "\<lbrakk>b \<noteq> 0; c \<noteq> 0\<rbrakk> \<Longrightarrow> (c * a) / (b * c) = a / b"
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   342
using nonzero_mult_divide_mult_cancel_left [of b c a] by (simp add: mult_ac)
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   343
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   344
lemma nonzero_mult_divide_mult_cancel_right2 [simp]:
30630
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   345
  "\<lbrakk>b \<noteq> 0; c \<noteq> 0\<rbrakk> \<Longrightarrow> (a * c) / (c * b) = a / b"
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   346
using nonzero_mult_divide_mult_cancel_right [of b c a] by (simp add: mult_ac)
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   347
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   348
lemma diff_frac_eq:
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   349
  "y \<noteq> 0 \<Longrightarrow> z \<noteq> 0 \<Longrightarrow> x / y - w / z = (x * z - w * y) / (y * z)"
36348
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36343
diff changeset
   350
  by (simp add: field_simps)
30630
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   351
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   352
lemma frac_eq_eq:
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   353
  "y \<noteq> 0 \<Longrightarrow> z \<noteq> 0 \<Longrightarrow> (x / y = w / z) = (x * z = w * y)"
36348
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36343
diff changeset
   354
  by (simp add: field_simps)
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36343
diff changeset
   355
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36343
diff changeset
   356
end
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36343
diff changeset
   357
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36343
diff changeset
   358
class field_inverse_zero = field +
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36343
diff changeset
   359
  assumes field_inverse_zero: "inverse 0 = 0"
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36343
diff changeset
   360
begin
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36343
diff changeset
   361
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36343
diff changeset
   362
subclass division_ring_inverse_zero proof
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36343
diff changeset
   363
qed (fact field_inverse_zero)
25230
022029099a83 continued localization
haftmann
parents: 25193
diff changeset
   364
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   365
text{*This version builds in division by zero while also re-orienting
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   366
      the right-hand side.*}
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   367
lemma inverse_mult_distrib [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   368
  "inverse (a * b) = inverse a * inverse b"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   369
proof cases
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   370
  assume "a \<noteq> 0 & b \<noteq> 0" 
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   371
  thus ?thesis by (simp add: nonzero_inverse_mult_distrib mult_ac)
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   372
next
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   373
  assume "~ (a \<noteq> 0 & b \<noteq> 0)" 
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   374
  thus ?thesis by force
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   375
qed
14270
342451d763f9 More re-organising of numerical theorems
paulson
parents: 14269
diff changeset
   376
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
   377
lemma inverse_divide [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   378
  "inverse (a / b) = b / a"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   379
  by (simp add: divide_inverse mult_commute)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
   380
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
   381
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   382
text {* Calculations with fractions *}
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   383
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
   384
text{* There is a whole bunch of simp-rules just for class @{text
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
   385
field} but none for class @{text field} and @{text nonzero_divides}
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
   386
because the latter are covered by a simproc. *}
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
   387
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
   388
lemma mult_divide_mult_cancel_left:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   389
  "c \<noteq> 0 \<Longrightarrow> (c * a) / (c * b) = a / b"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
   390
apply (cases "b = 0")
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35090
diff changeset
   391
apply simp_all
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   392
done
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   393
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
   394
lemma mult_divide_mult_cancel_right:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   395
  "c \<noteq> 0 \<Longrightarrow> (a * c) / (b * c) = a / b"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
   396
apply (cases "b = 0")
35216
7641e8d831d2 get rid of many duplicate simp rule warnings
huffman
parents: 35090
diff changeset
   397
apply simp_all
14321
55c688d2eefa new theorems
paulson
parents: 14305
diff changeset
   398
done
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
   399
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   400
lemma divide_divide_eq_right [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   401
  "a / (b / c) = (a * c) / b"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   402
  by (simp add: divide_inverse mult_ac)
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
   403
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   404
lemma divide_divide_eq_left [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   405
  "(a / b) / c = a / (b * c)"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   406
  by (simp add: divide_inverse mult_assoc)
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
   407
56365
713f9b9a7e51 New theorems for extracting quotients
paulson <lp15@cam.ac.uk>
parents: 55718
diff changeset
   408
lemma divide_divide_times_eq:
713f9b9a7e51 New theorems for extracting quotients
paulson <lp15@cam.ac.uk>
parents: 55718
diff changeset
   409
  "(x / y) / (z / w) = (x * w) / (y * z)"
713f9b9a7e51 New theorems for extracting quotients
paulson <lp15@cam.ac.uk>
parents: 55718
diff changeset
   410
  by simp
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
   411
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   412
text {*Special Cancellation Simprules for Division*}
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   413
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   414
lemma mult_divide_mult_cancel_left_if [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   415
  shows "(c * a) / (c * b) = (if c = 0 then 0 else a / b)"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   416
  by (simp add: mult_divide_mult_cancel_left)
23413
5caa2710dd5b tuned laws for cancellation in divisions for fields.
nipkow
parents: 23406
diff changeset
   417
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   418
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   419
text {* Division and Unary Minus *}
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
   420
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   421
lemma minus_divide_right:
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   422
  "- (a / b) = a / - b"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   423
  by (simp add: divide_inverse)
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
   424
56479
91958d4b30f7 revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents: 56445
diff changeset
   425
lemma divide_minus_right [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   426
  "a / - b = - (a / b)"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   427
  by (simp add: divide_inverse)
30630
4fbe1401bac2 move field lemmas into class locale context
huffman
parents: 30242
diff changeset
   428
56479
91958d4b30f7 revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents: 56445
diff changeset
   429
lemma minus_divide_divide:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   430
  "(- a) / (- b) = a / b"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
   431
apply (cases "b=0", simp) 
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
   432
apply (simp add: nonzero_minus_divide_divide) 
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
   433
done
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
   434
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
   435
lemma eq_divide_eq:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   436
  "a = b / c \<longleftrightarrow> (if c \<noteq> 0 then a * c = b else a = 0)"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   437
  by (simp add: nonzero_eq_divide_eq)
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
   438
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
   439
lemma divide_eq_eq:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   440
  "b / c = a \<longleftrightarrow> (if c \<noteq> 0 then b = a * c else a = 0)"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   441
  by (force simp add: nonzero_divide_eq_eq)
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
   442
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   443
lemma inverse_eq_1_iff [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   444
  "inverse x = 1 \<longleftrightarrow> x = 1"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   445
  by (insert inverse_eq_iff_eq [of x 1], simp) 
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
   446
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   447
lemma divide_eq_0_iff [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   448
  "a / b = 0 \<longleftrightarrow> a = 0 \<or> b = 0"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   449
  by (simp add: divide_inverse)
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   450
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   451
lemma divide_cancel_right [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   452
  "a / c = b / c \<longleftrightarrow> c = 0 \<or> a = b"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   453
  apply (cases "c=0", simp)
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   454
  apply (simp add: divide_inverse)
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   455
  done
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   456
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   457
lemma divide_cancel_left [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   458
  "c / a = c / b \<longleftrightarrow> c = 0 \<or> a = b" 
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   459
  apply (cases "c=0", simp)
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   460
  apply (simp add: divide_inverse)
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   461
  done
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   462
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   463
lemma divide_eq_1_iff [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   464
  "a / b = 1 \<longleftrightarrow> b \<noteq> 0 \<and> a = b"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   465
  apply (cases "b=0", simp)
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   466
  apply (simp add: right_inverse_eq)
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   467
  done
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   468
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   469
lemma one_eq_divide_iff [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   470
  "1 = a / b \<longleftrightarrow> b \<noteq> 0 \<and> a = b"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   471
  by (simp add: eq_commute [of 1])
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   472
36719
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36425
diff changeset
   473
lemma times_divide_times_eq:
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36425
diff changeset
   474
  "(x / y) * (z / w) = (x * z) / (y * w)"
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36425
diff changeset
   475
  by simp
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36425
diff changeset
   476
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36425
diff changeset
   477
lemma add_frac_num:
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36425
diff changeset
   478
  "y \<noteq> 0 \<Longrightarrow> x / y + z = (x + z * y) / y"
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36425
diff changeset
   479
  by (simp add: add_divide_distrib)
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36425
diff changeset
   480
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36425
diff changeset
   481
lemma add_num_frac:
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36425
diff changeset
   482
  "y \<noteq> 0 \<Longrightarrow> z + x / y = (x + z * y) / y"
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36425
diff changeset
   483
  by (simp add: add_divide_distrib add.commute)
d396f6f63d94 moved some lemmas from Groebner_Basis here
haftmann
parents: 36425
diff changeset
   484
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   485
end
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   486
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   487
44064
5bce8ff0d9ae moved division ring stuff from Rings.thy to Fields.thy
huffman
parents: 42904
diff changeset
   488
subsection {* Ordered fields *}
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   489
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   490
class linordered_field = field + linordered_idom
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   491
begin
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   492
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   493
lemma positive_imp_inverse_positive: 
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   494
  assumes a_gt_0: "0 < a" 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   495
  shows "0 < inverse a"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
   496
proof -
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   497
  have "0 < a * inverse a" 
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   498
    by (simp add: a_gt_0 [THEN less_imp_not_eq2])
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   499
  thus "0 < inverse a" 
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   500
    by (simp add: a_gt_0 [THEN less_not_sym] zero_less_mult_iff)
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
   501
qed
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   502
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   503
lemma negative_imp_inverse_negative:
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   504
  "a < 0 \<Longrightarrow> inverse a < 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   505
  by (insert positive_imp_inverse_positive [of "-a"], 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   506
    simp add: nonzero_inverse_minus_eq less_imp_not_eq)
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   507
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   508
lemma inverse_le_imp_le:
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   509
  assumes invle: "inverse a \<le> inverse b" and apos: "0 < a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   510
  shows "b \<le> a"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
   511
proof (rule classical)
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   512
  assume "~ b \<le> a"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
   513
  hence "a < b"  by (simp add: linorder_not_le)
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   514
  hence bpos: "0 < b"  by (blast intro: apos less_trans)
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   515
  hence "a * inverse a \<le> a * inverse b"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   516
    by (simp add: apos invle less_imp_le mult_left_mono)
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   517
  hence "(a * inverse a) * b \<le> (a * inverse b) * b"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   518
    by (simp add: bpos less_imp_le mult_right_mono)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   519
  thus "b \<le> a"  by (simp add: mult_assoc apos bpos less_imp_not_eq2)
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
   520
qed
14268
5cf13e80be0e Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
paulson
parents: 14267
diff changeset
   521
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   522
lemma inverse_positive_imp_positive:
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   523
  assumes inv_gt_0: "0 < inverse a" and nz: "a \<noteq> 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   524
  shows "0 < a"
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
   525
proof -
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   526
  have "0 < inverse (inverse a)"
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
   527
    using inv_gt_0 by (rule positive_imp_inverse_positive)
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   528
  thus "0 < a"
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
   529
    using nz by (simp add: nonzero_inverse_inverse_eq)
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
   530
qed
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   531
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   532
lemma inverse_negative_imp_negative:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   533
  assumes inv_less_0: "inverse a < 0" and nz: "a \<noteq> 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   534
  shows "a < 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   535
proof -
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   536
  have "inverse (inverse a) < 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   537
    using inv_less_0 by (rule negative_imp_inverse_negative)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   538
  thus "a < 0" using nz by (simp add: nonzero_inverse_inverse_eq)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   539
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   540
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   541
lemma linordered_field_no_lb:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   542
  "\<forall>x. \<exists>y. y < x"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   543
proof
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   544
  fix x::'a
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   545
  have m1: "- (1::'a) < 0" by simp
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   546
  from add_strict_right_mono[OF m1, where c=x] 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   547
  have "(- 1) + x < x" by simp
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   548
  thus "\<exists>y. y < x" by blast
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   549
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   550
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   551
lemma linordered_field_no_ub:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   552
  "\<forall> x. \<exists>y. y > x"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   553
proof
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   554
  fix x::'a
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   555
  have m1: " (1::'a) > 0" by simp
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   556
  from add_strict_right_mono[OF m1, where c=x] 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   557
  have "1 + x > x" by simp
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   558
  thus "\<exists>y. y > x" by blast
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   559
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   560
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   561
lemma less_imp_inverse_less:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   562
  assumes less: "a < b" and apos:  "0 < a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   563
  shows "inverse b < inverse a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   564
proof (rule ccontr)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   565
  assume "~ inverse b < inverse a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   566
  hence "inverse a \<le> inverse b" by simp
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   567
  hence "~ (a < b)"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   568
    by (simp add: not_less inverse_le_imp_le [OF _ apos])
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   569
  thus False by (rule notE [OF _ less])
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   570
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   571
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   572
lemma inverse_less_imp_less:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   573
  "inverse a < inverse b \<Longrightarrow> 0 < a \<Longrightarrow> b < a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   574
apply (simp add: less_le [of "inverse a"] less_le [of "b"])
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   575
apply (force dest!: inverse_le_imp_le nonzero_inverse_eq_imp_eq) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   576
done
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
text{*Both premises are essential. Consider -1 and 1.*}
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   579
lemma inverse_less_iff_less [simp]:
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   580
  "0 < a \<Longrightarrow> 0 < b \<Longrightarrow> inverse a < inverse b \<longleftrightarrow> b < a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   581
  by (blast intro: less_imp_inverse_less dest: inverse_less_imp_less) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   582
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   583
lemma le_imp_inverse_le:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   584
  "a \<le> b \<Longrightarrow> 0 < a \<Longrightarrow> inverse b \<le> inverse a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   585
  by (force simp add: le_less less_imp_inverse_less)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   586
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   587
lemma inverse_le_iff_le [simp]:
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   588
  "0 < a \<Longrightarrow> 0 < b \<Longrightarrow> inverse a \<le> inverse b \<longleftrightarrow> b \<le> a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   589
  by (blast intro: le_imp_inverse_le dest: inverse_le_imp_le) 
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
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   592
text{*These results refer to both operands being negative.  The opposite-sign
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   593
case is trivial, since inverse preserves signs.*}
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   594
lemma inverse_le_imp_le_neg:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   595
  "inverse a \<le> inverse b \<Longrightarrow> b < 0 \<Longrightarrow> b \<le> a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   596
apply (rule classical) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   597
apply (subgoal_tac "a < 0") 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   598
 prefer 2 apply force
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   599
apply (insert inverse_le_imp_le [of "-b" "-a"])
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   600
apply (simp add: nonzero_inverse_minus_eq) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   601
done
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   602
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   603
lemma less_imp_inverse_less_neg:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   604
   "a < b \<Longrightarrow> b < 0 \<Longrightarrow> inverse b < inverse a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   605
apply (subgoal_tac "a < 0") 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   606
 prefer 2 apply (blast intro: less_trans) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   607
apply (insert less_imp_inverse_less [of "-b" "-a"])
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   608
apply (simp add: nonzero_inverse_minus_eq) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   609
done
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   610
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   611
lemma inverse_less_imp_less_neg:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   612
   "inverse a < inverse b \<Longrightarrow> b < 0 \<Longrightarrow> b < a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   613
apply (rule classical) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   614
apply (subgoal_tac "a < 0") 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   615
 prefer 2
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   616
 apply force
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   617
apply (insert inverse_less_imp_less [of "-b" "-a"])
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   618
apply (simp add: nonzero_inverse_minus_eq) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   619
done
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   620
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   621
lemma inverse_less_iff_less_neg [simp]:
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   622
  "a < 0 \<Longrightarrow> b < 0 \<Longrightarrow> inverse a < inverse b \<longleftrightarrow> b < a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   623
apply (insert inverse_less_iff_less [of "-b" "-a"])
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   624
apply (simp del: inverse_less_iff_less 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   625
            add: nonzero_inverse_minus_eq)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   626
done
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   627
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   628
lemma le_imp_inverse_le_neg:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   629
  "a \<le> b \<Longrightarrow> b < 0 ==> inverse b \<le> inverse a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   630
  by (force simp add: le_less less_imp_inverse_less_neg)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   631
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   632
lemma inverse_le_iff_le_neg [simp]:
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   633
  "a < 0 \<Longrightarrow> b < 0 \<Longrightarrow> inverse a \<le> inverse b \<longleftrightarrow> b \<le> a"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   634
  by (blast intro: le_imp_inverse_le_neg dest: inverse_le_imp_le_neg) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   635
36774
9e444b09fbef add lemmas one_less_inverse and one_le_inverse
huffman
parents: 36719
diff changeset
   636
lemma one_less_inverse:
9e444b09fbef add lemmas one_less_inverse and one_le_inverse
huffman
parents: 36719
diff changeset
   637
  "0 < a \<Longrightarrow> a < 1 \<Longrightarrow> 1 < inverse a"
9e444b09fbef add lemmas one_less_inverse and one_le_inverse
huffman
parents: 36719
diff changeset
   638
  using less_imp_inverse_less [of a 1, unfolded inverse_1] .
9e444b09fbef add lemmas one_less_inverse and one_le_inverse
huffman
parents: 36719
diff changeset
   639
9e444b09fbef add lemmas one_less_inverse and one_le_inverse
huffman
parents: 36719
diff changeset
   640
lemma one_le_inverse:
9e444b09fbef add lemmas one_less_inverse and one_le_inverse
huffman
parents: 36719
diff changeset
   641
  "0 < a \<Longrightarrow> a \<le> 1 \<Longrightarrow> 1 \<le> inverse a"
9e444b09fbef add lemmas one_less_inverse and one_le_inverse
huffman
parents: 36719
diff changeset
   642
  using le_imp_inverse_le [of a 1, unfolded inverse_1] .
9e444b09fbef add lemmas one_less_inverse and one_le_inverse
huffman
parents: 36719
diff changeset
   643
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   644
lemma pos_le_divide_eq [field_simps]: "0 < c \<Longrightarrow> a \<le> b / c \<longleftrightarrow> a * c \<le> b"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   645
proof -
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   646
  assume less: "0<c"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   647
  hence "(a \<le> b/c) = (a*c \<le> (b/c)*c)"
36304
6984744e6b34 less special treatment of times_divide_eq [simp]
haftmann
parents: 36301
diff changeset
   648
    by (simp add: mult_le_cancel_right less_not_sym [OF less] del: times_divide_eq)
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   649
  also have "... = (a*c \<le> b)"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   650
    by (simp add: less_imp_not_eq2 [OF less] divide_inverse mult_assoc) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   651
  finally show ?thesis .
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   652
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   653
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   654
lemma neg_le_divide_eq [field_simps]: "c < 0 \<Longrightarrow> a \<le> b / c \<longleftrightarrow> b \<le> a * c"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   655
proof -
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   656
  assume less: "c<0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   657
  hence "(a \<le> b/c) = ((b/c)*c \<le> a*c)"
36304
6984744e6b34 less special treatment of times_divide_eq [simp]
haftmann
parents: 36301
diff changeset
   658
    by (simp add: mult_le_cancel_right less_not_sym [OF less] del: times_divide_eq)
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   659
  also have "... = (b \<le> a*c)"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   660
    by (simp add: less_imp_not_eq [OF less] divide_inverse mult_assoc) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   661
  finally show ?thesis .
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   662
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   663
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   664
lemma pos_less_divide_eq [field_simps]: "0 < c \<Longrightarrow> a < b / c \<longleftrightarrow> a * c < b"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   665
proof -
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   666
  assume less: "0<c"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   667
  hence "(a < b/c) = (a*c < (b/c)*c)"
36304
6984744e6b34 less special treatment of times_divide_eq [simp]
haftmann
parents: 36301
diff changeset
   668
    by (simp add: mult_less_cancel_right_disj less_not_sym [OF less] del: times_divide_eq)
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   669
  also have "... = (a*c < b)"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   670
    by (simp add: less_imp_not_eq2 [OF less] divide_inverse mult_assoc) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   671
  finally show ?thesis .
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   672
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   673
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   674
lemma neg_less_divide_eq [field_simps]: "c < 0 \<Longrightarrow> a < b / c \<longleftrightarrow> b < a * c"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   675
proof -
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   676
  assume less: "c<0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   677
  hence "(a < b/c) = ((b/c)*c < a*c)"
36304
6984744e6b34 less special treatment of times_divide_eq [simp]
haftmann
parents: 36301
diff changeset
   678
    by (simp add: mult_less_cancel_right_disj less_not_sym [OF less] del: times_divide_eq)
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   679
  also have "... = (b < a*c)"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   680
    by (simp add: less_imp_not_eq [OF less] divide_inverse mult_assoc) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   681
  finally show ?thesis .
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   682
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   683
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   684
lemma pos_divide_less_eq [field_simps]: "0 < c \<Longrightarrow> b / c < a \<longleftrightarrow> b < a * c"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   685
proof -
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   686
  assume less: "0<c"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   687
  hence "(b/c < a) = ((b/c)*c < a*c)"
36304
6984744e6b34 less special treatment of times_divide_eq [simp]
haftmann
parents: 36301
diff changeset
   688
    by (simp add: mult_less_cancel_right_disj less_not_sym [OF less] del: times_divide_eq)
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   689
  also have "... = (b < a*c)"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   690
    by (simp add: less_imp_not_eq2 [OF less] divide_inverse mult_assoc) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   691
  finally show ?thesis .
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   692
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   693
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   694
lemma neg_divide_less_eq [field_simps]: "c < 0 \<Longrightarrow> b / c < a \<longleftrightarrow> a * c < b"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   695
proof -
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   696
  assume less: "c<0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   697
  hence "(b/c < a) = (a*c < (b/c)*c)"
36304
6984744e6b34 less special treatment of times_divide_eq [simp]
haftmann
parents: 36301
diff changeset
   698
    by (simp add: mult_less_cancel_right_disj less_not_sym [OF less] del: times_divide_eq)
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   699
  also have "... = (a*c < b)"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   700
    by (simp add: less_imp_not_eq [OF less] divide_inverse mult_assoc) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   701
  finally show ?thesis .
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   702
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   703
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   704
lemma pos_divide_le_eq [field_simps]: "0 < c \<Longrightarrow> b / c \<le> a \<longleftrightarrow> b \<le> a * c"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   705
proof -
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   706
  assume less: "0<c"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   707
  hence "(b/c \<le> a) = ((b/c)*c \<le> a*c)"
36304
6984744e6b34 less special treatment of times_divide_eq [simp]
haftmann
parents: 36301
diff changeset
   708
    by (simp add: mult_le_cancel_right less_not_sym [OF less] del: times_divide_eq)
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   709
  also have "... = (b \<le> a*c)"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   710
    by (simp add: less_imp_not_eq2 [OF less] divide_inverse mult_assoc) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   711
  finally show ?thesis .
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   712
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   713
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   714
lemma neg_divide_le_eq [field_simps]: "c < 0 \<Longrightarrow> b / c \<le> a \<longleftrightarrow> a * c \<le> b"
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   715
proof -
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   716
  assume less: "c<0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   717
  hence "(b/c \<le> a) = (a*c \<le> (b/c)*c)"
36304
6984744e6b34 less special treatment of times_divide_eq [simp]
haftmann
parents: 36301
diff changeset
   718
    by (simp add: mult_le_cancel_right less_not_sym [OF less] del: times_divide_eq)
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   719
  also have "... = (a*c \<le> b)"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   720
    by (simp add: less_imp_not_eq [OF less] divide_inverse mult_assoc) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   721
  finally show ?thesis .
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   722
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   723
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   724
text{* The following @{text field_simps} rules are necessary, as minus is always moved atop of
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   725
division but we want to get rid of division. *}
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   726
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   727
lemma pos_le_minus_divide_eq [field_simps]: "0 < c \<Longrightarrow> a \<le> - (b / c) \<longleftrightarrow> a * c \<le> - b"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   728
  unfolding minus_divide_left by (rule pos_le_divide_eq)
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   729
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   730
lemma neg_le_minus_divide_eq [field_simps]: "c < 0 \<Longrightarrow> a \<le> - (b / c) \<longleftrightarrow> - b \<le> a * c"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   731
  unfolding minus_divide_left by (rule neg_le_divide_eq)
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   732
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   733
lemma pos_less_minus_divide_eq [field_simps]: "0 < c \<Longrightarrow> a < - (b / c) \<longleftrightarrow> a * c < - b"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   734
  unfolding minus_divide_left by (rule pos_less_divide_eq)
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   735
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   736
lemma neg_less_minus_divide_eq [field_simps]: "c < 0 \<Longrightarrow> a < - (b / c) \<longleftrightarrow> - b < a * c"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   737
  unfolding minus_divide_left by (rule neg_less_divide_eq)
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   738
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   739
lemma pos_minus_divide_less_eq [field_simps]: "0 < c \<Longrightarrow> - (b / c) < a \<longleftrightarrow> - b < a * c"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   740
  unfolding minus_divide_left by (rule pos_divide_less_eq)
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   741
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   742
lemma neg_minus_divide_less_eq [field_simps]: "c < 0 \<Longrightarrow> - (b / c) < a \<longleftrightarrow> a * c < - b"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   743
  unfolding minus_divide_left by (rule neg_divide_less_eq)
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   744
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   745
lemma pos_minus_divide_le_eq [field_simps]: "0 < c \<Longrightarrow> - (b / c) \<le> a \<longleftrightarrow> - b \<le> a * c"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   746
  unfolding minus_divide_left by (rule pos_divide_le_eq)
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   747
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   748
lemma neg_minus_divide_le_eq [field_simps]: "c < 0 \<Longrightarrow> - (b / c) \<le> a \<longleftrightarrow> a * c \<le> - b"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   749
  unfolding minus_divide_left by (rule neg_divide_le_eq)
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   750
56365
713f9b9a7e51 New theorems for extracting quotients
paulson <lp15@cam.ac.uk>
parents: 55718
diff changeset
   751
lemma frac_less_eq:
713f9b9a7e51 New theorems for extracting quotients
paulson <lp15@cam.ac.uk>
parents: 55718
diff changeset
   752
  "y \<noteq> 0 \<Longrightarrow> z \<noteq> 0 \<Longrightarrow> x / y < w / z \<longleftrightarrow> (x * z - w * y) / (y * z) < 0"
713f9b9a7e51 New theorems for extracting quotients
paulson <lp15@cam.ac.uk>
parents: 55718
diff changeset
   753
  by (subst less_iff_diff_less_0) (simp add: diff_frac_eq )
713f9b9a7e51 New theorems for extracting quotients
paulson <lp15@cam.ac.uk>
parents: 55718
diff changeset
   754
713f9b9a7e51 New theorems for extracting quotients
paulson <lp15@cam.ac.uk>
parents: 55718
diff changeset
   755
lemma frac_le_eq:
713f9b9a7e51 New theorems for extracting quotients
paulson <lp15@cam.ac.uk>
parents: 55718
diff changeset
   756
  "y \<noteq> 0 \<Longrightarrow> z \<noteq> 0 \<Longrightarrow> x / y \<le> w / z \<longleftrightarrow> (x * z - w * y) / (y * z) \<le> 0"
713f9b9a7e51 New theorems for extracting quotients
paulson <lp15@cam.ac.uk>
parents: 55718
diff changeset
   757
  by (subst le_iff_diff_le_0) (simp add: diff_frac_eq )
713f9b9a7e51 New theorems for extracting quotients
paulson <lp15@cam.ac.uk>
parents: 55718
diff changeset
   758
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   759
text{* Lemmas @{text sign_simps} is a first attempt to automate proofs
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   760
of positivity/negativity needed for @{text field_simps}. Have not added @{text
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   761
sign_simps} to @{text field_simps} because the former can lead to case
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   762
explosions. *}
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   763
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   764
lemmas sign_simps = algebra_simps zero_less_mult_iff mult_less_0_iff
36348
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36343
diff changeset
   765
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   766
lemmas (in -) sign_simps = algebra_simps zero_less_mult_iff mult_less_0_iff
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   767
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   768
(* Only works once linear arithmetic is installed:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   769
text{*An example:*}
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   770
lemma fixes a b c d e f :: "'a::linordered_field"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   771
shows "\<lbrakk>a>b; c<d; e<f; 0 < u \<rbrakk> \<Longrightarrow>
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   772
 ((a-b)*(c-d)*(e-f))/((c-d)*(e-f)*(a-b)) <
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   773
 ((e-f)*(a-b)*(c-d))/((e-f)*(a-b)*(c-d)) + u"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   774
apply(subgoal_tac "(c-d)*(e-f)*(a-b) > 0")
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   775
 prefer 2 apply(simp add:sign_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   776
apply(subgoal_tac "(c-d)*(e-f)*(a-b)*u > 0")
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   777
 prefer 2 apply(simp add:sign_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   778
apply(simp add:field_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   779
done
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   780
*)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   781
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   782
lemma divide_pos_pos:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   783
  "0 < x ==> 0 < y ==> 0 < x / y"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   784
by(simp add:field_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   785
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   786
lemma divide_nonneg_pos:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   787
  "0 <= x ==> 0 < y ==> 0 <= x / y"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   788
by(simp add:field_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   789
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   790
lemma divide_neg_pos:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   791
  "x < 0 ==> 0 < y ==> x / y < 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   792
by(simp add:field_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   793
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   794
lemma divide_nonpos_pos:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   795
  "x <= 0 ==> 0 < y ==> x / y <= 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   796
by(simp add:field_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   797
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   798
lemma divide_pos_neg:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   799
  "0 < x ==> y < 0 ==> x / y < 0"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   800
by(simp add:field_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   801
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   802
lemma divide_nonneg_neg:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   803
  "0 <= x ==> y < 0 ==> x / y <= 0" 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   804
by(simp add:field_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   805
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   806
lemma divide_neg_neg:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   807
  "x < 0 ==> y < 0 ==> 0 < x / y"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   808
by(simp add:field_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   809
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   810
lemma divide_nonpos_neg:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   811
  "x <= 0 ==> y < 0 ==> 0 <= x / y"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   812
by(simp add:field_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   813
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   814
lemma divide_strict_right_mono:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   815
     "[|a < b; 0 < c|] ==> a / c < b / c"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   816
by (simp add: less_imp_not_eq2 divide_inverse mult_strict_right_mono 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   817
              positive_imp_inverse_positive)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   818
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   819
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   820
lemma divide_strict_right_mono_neg:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   821
     "[|b < a; c < 0|] ==> a / c < b / c"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   822
apply (drule divide_strict_right_mono [of _ _ "-c"], simp)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   823
apply (simp add: less_imp_not_eq nonzero_minus_divide_right [symmetric])
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   824
done
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   825
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   826
text{*The last premise ensures that @{term a} and @{term b} 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   827
      have the same sign*}
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   828
lemma divide_strict_left_mono:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   829
  "[|b < a; 0 < c; 0 < a*b|] ==> c / a < c / b"
44921
58eef4843641 tuned proofs
huffman
parents: 44680
diff changeset
   830
  by (auto simp: field_simps zero_less_mult_iff mult_strict_right_mono)
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   831
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   832
lemma divide_left_mono:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   833
  "[|b \<le> a; 0 \<le> c; 0 < a*b|] ==> c / a \<le> c / b"
44921
58eef4843641 tuned proofs
huffman
parents: 44680
diff changeset
   834
  by (auto simp: field_simps zero_less_mult_iff mult_right_mono)
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   835
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   836
lemma divide_strict_left_mono_neg:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   837
  "[|a < b; c < 0; 0 < a*b|] ==> c / a < c / b"
44921
58eef4843641 tuned proofs
huffman
parents: 44680
diff changeset
   838
  by (auto simp: field_simps zero_less_mult_iff mult_strict_right_mono_neg)
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   839
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   840
lemma mult_imp_div_pos_le: "0 < y ==> x <= z * y ==>
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   841
    x / y <= z"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   842
by (subst pos_divide_le_eq, assumption+)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   843
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   844
lemma mult_imp_le_div_pos: "0 < y ==> z * y <= x ==>
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   845
    z <= x / y"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   846
by(simp add:field_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   847
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   848
lemma mult_imp_div_pos_less: "0 < y ==> x < z * y ==>
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   849
    x / y < z"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   850
by(simp add:field_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   851
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   852
lemma mult_imp_less_div_pos: "0 < y ==> z * y < x ==>
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   853
    z < x / y"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   854
by(simp add:field_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   855
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   856
lemma frac_le: "0 <= x ==> 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   857
    x <= y ==> 0 < w ==> w <= z  ==> x / z <= y / w"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   858
  apply (rule mult_imp_div_pos_le)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   859
  apply simp
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   860
  apply (subst times_divide_eq_left)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   861
  apply (rule mult_imp_le_div_pos, assumption)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   862
  apply (rule mult_mono)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   863
  apply simp_all
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   864
done
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   865
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   866
lemma frac_less: "0 <= x ==> 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   867
    x < y ==> 0 < w ==> w <= z  ==> x / z < y / w"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   868
  apply (rule mult_imp_div_pos_less)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   869
  apply simp
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   870
  apply (subst times_divide_eq_left)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   871
  apply (rule mult_imp_less_div_pos, assumption)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   872
  apply (erule mult_less_le_imp_less)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   873
  apply simp_all
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   874
done
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   875
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   876
lemma frac_less2: "0 < x ==> 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   877
    x <= y ==> 0 < w ==> w < z  ==> x / z < y / w"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   878
  apply (rule mult_imp_div_pos_less)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   879
  apply simp_all
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   880
  apply (rule mult_imp_less_div_pos, assumption)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   881
  apply (erule mult_le_less_imp_less)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   882
  apply simp_all
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   883
done
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   884
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   885
lemma less_half_sum: "a < b ==> a < (a+b) / (1+1)"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   886
by (simp add: field_simps zero_less_two)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   887
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   888
lemma gt_half_sum: "a < b ==> (a+b)/(1+1) < b"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   889
by (simp add: field_simps zero_less_two)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   890
53215
5e47c31c6f7c renamed typeclass dense_linorder to unbounded_dense_linorder
hoelzl
parents: 52435
diff changeset
   891
subclass unbounded_dense_linorder
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   892
proof
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   893
  fix x y :: 'a
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   894
  from less_add_one show "\<exists>y. x < y" .. 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   895
  from less_add_one have "x + (- 1) < (x + 1) + (- 1)" by (rule add_strict_right_mono)
54230
b1d955791529 more simplification rules on unary and binary minus
haftmann
parents: 54147
diff changeset
   896
  then have "x - 1 < x + 1 - 1" by simp
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   897
  then have "x - 1 < x" by (simp add: algebra_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   898
  then show "\<exists>y. y < x" ..
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   899
  show "x < y \<Longrightarrow> \<exists>z>x. z < y" by (blast intro!: less_half_sum gt_half_sum)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   900
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   901
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   902
lemma nonzero_abs_inverse:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   903
     "a \<noteq> 0 ==> \<bar>inverse a\<bar> = inverse \<bar>a\<bar>"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   904
apply (auto simp add: neq_iff abs_if nonzero_inverse_minus_eq 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   905
                      negative_imp_inverse_negative)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   906
apply (blast intro: positive_imp_inverse_positive elim: less_asym) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   907
done
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   908
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   909
lemma nonzero_abs_divide:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   910
     "b \<noteq> 0 ==> \<bar>a / b\<bar> = \<bar>a\<bar> / \<bar>b\<bar>"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   911
  by (simp add: divide_inverse abs_mult nonzero_abs_inverse) 
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   912
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   913
lemma field_le_epsilon:
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   914
  assumes e: "\<And>e. 0 < e \<Longrightarrow> x \<le> y + e"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   915
  shows "x \<le> y"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   916
proof (rule dense_le)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   917
  fix t assume "t < x"
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   918
  hence "0 < x - t" by (simp add: less_diff_eq)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   919
  from e [OF this] have "x + 0 \<le> x + (y - t)" by (simp add: algebra_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   920
  then have "0 \<le> y - t" by (simp only: add_le_cancel_left)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   921
  then show "t \<le> y" by (simp add: algebra_simps)
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   922
qed
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   923
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   924
end
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   925
36414
a19ba9bbc8dc tuned class linordered_field_inverse_zero
haftmann
parents: 36409
diff changeset
   926
class linordered_field_inverse_zero = linordered_field + field_inverse_zero
36348
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36343
diff changeset
   927
begin
89c54f51f55a dropped group_simps, ring_simps, field_eq_simps; classes division_ring_inverse_zero, field_inverse_zero, linordered_field_inverse_zero
haftmann
parents: 36343
diff changeset
   928
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   929
lemma inverse_positive_iff_positive [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   930
  "(0 < inverse a) = (0 < a)"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
   931
apply (cases "a = 0", simp)
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   932
apply (blast intro: inverse_positive_imp_positive positive_imp_inverse_positive)
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   933
done
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   934
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   935
lemma inverse_negative_iff_negative [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   936
  "(inverse a < 0) = (a < 0)"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
   937
apply (cases "a = 0", simp)
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   938
apply (blast intro: inverse_negative_imp_negative negative_imp_inverse_negative)
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   939
done
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   940
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   941
lemma inverse_nonnegative_iff_nonnegative [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   942
  "0 \<le> inverse a \<longleftrightarrow> 0 \<le> a"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   943
  by (simp add: not_less [symmetric])
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   944
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   945
lemma inverse_nonpositive_iff_nonpositive [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   946
  "inverse a \<le> 0 \<longleftrightarrow> a \<le> 0"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   947
  by (simp add: not_less [symmetric])
14277
ad66687ece6e more field division lemmas transferred from Real to Ring_and_Field
paulson
parents: 14272
diff changeset
   948
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   949
lemma one_less_inverse_iff: "1 < inverse x \<longleftrightarrow> 0 < x \<and> x < 1"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   950
  using less_trans[of 1 x 0 for x]
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   951
  by (cases x 0 rule: linorder_cases) (auto simp add: field_simps)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
   952
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   953
lemma one_le_inverse_iff: "1 \<le> inverse x \<longleftrightarrow> 0 < x \<and> x \<le> 1"
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   954
proof (cases "x = 1")
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   955
  case True then show ?thesis by simp
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   956
next
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   957
  case False then have "inverse x \<noteq> 1" by simp
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   958
  then have "1 \<noteq> inverse x" by blast
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   959
  then have "1 \<le> inverse x \<longleftrightarrow> 1 < inverse x" by (simp add: le_less)
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   960
  with False show ?thesis by (auto simp add: one_less_inverse_iff)
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   961
qed
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
   962
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   963
lemma inverse_less_1_iff: "inverse x < 1 \<longleftrightarrow> x \<le> 0 \<or> 1 < x"
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   964
  by (simp add: not_le [symmetric] one_le_inverse_iff) 
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
   965
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   966
lemma inverse_le_1_iff: "inverse x \<le> 1 \<longleftrightarrow> x \<le> 0 \<or> 1 \<le> x"
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
   967
  by (simp add: not_less [symmetric] one_less_inverse_iff) 
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14353
diff changeset
   968
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   969
lemma 
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   970
  shows le_divide_eq: "a \<le> b / c \<longleftrightarrow> (if 0 < c then a * c \<le> b else if c < 0 then b \<le> a * c else a \<le> 0)"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   971
    and divide_le_eq: "b / c \<le> a \<longleftrightarrow> (if 0 < c then b \<le> a * c else if c < 0 then a * c \<le> b else 0 \<le> a)"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   972
    and less_divide_eq: "a < b / c \<longleftrightarrow> (if 0 < c then a * c < b else if c < 0 then b < a * c else a < 0)"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   973
    and divide_less_eq: "b / c < a \<longleftrightarrow> (if 0 < c then b < a * c else if c < 0 then a * c < b else 0 < a)"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   974
  by (auto simp: field_simps not_less dest: antisym)
14288
d149e3cbdb39 Moving some theorems from Real/RealArith0.ML
paulson
parents: 14284
diff changeset
   975
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   976
text {*Division and Signs*}
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   977
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   978
lemma
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   979
  shows zero_less_divide_iff: "0 < a / b \<longleftrightarrow> 0 < a \<and> 0 < b \<or> a < 0 \<and> b < 0"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   980
    and divide_less_0_iff: "a / b < 0 \<longleftrightarrow> 0 < a \<and> b < 0 \<or> a < 0 \<and> 0 < b"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   981
    and zero_le_divide_iff: "0 \<le> a / b \<longleftrightarrow> 0 \<le> a \<and> 0 \<le> b \<or> a \<le> 0 \<and> b \<le> 0"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   982
    and divide_le_0_iff: "a / b \<le> 0 \<longleftrightarrow> 0 \<le> a \<and> b \<le> 0 \<or> a \<le> 0 \<and> 0 \<le> b"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   983
  by (simp_all add: divide_inverse zero_less_mult_iff mult_less_0_iff zero_le_mult_iff mult_le_0_iff)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
   984
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
   985
text {* Division and the Number One *}
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
   986
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
   987
text{*Simplify expressions equated with 1*}
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
   988
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   989
lemma zero_eq_1_divide_iff [simp]: "0 = 1 / a \<longleftrightarrow> a = 0"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   990
  by (cases "a = 0") (auto simp: field_simps)
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
   991
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   992
lemma one_divide_eq_0_iff [simp]: "1 / a = 0 \<longleftrightarrow> a = 0"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
   993
  using zero_eq_1_divide_iff[of a] by simp
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
   994
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
   995
text{*Simplify expressions such as @{text "0 < 1/x"} to @{text "0 < x"}*}
36423
63fc238a7430 got rid of [simplified]
haftmann
parents: 36414
diff changeset
   996
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
   997
lemma zero_le_divide_1_iff [simp]:
36423
63fc238a7430 got rid of [simplified]
haftmann
parents: 36414
diff changeset
   998
  "0 \<le> 1 / a \<longleftrightarrow> 0 \<le> a"
63fc238a7430 got rid of [simplified]
haftmann
parents: 36414
diff changeset
   999
  by (simp add: zero_le_divide_iff)
17085
5b57f995a179 more simprules now have names
paulson
parents: 16775
diff changeset
  1000
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1001
lemma zero_less_divide_1_iff [simp]:
36423
63fc238a7430 got rid of [simplified]
haftmann
parents: 36414
diff changeset
  1002
  "0 < 1 / a \<longleftrightarrow> 0 < a"
63fc238a7430 got rid of [simplified]
haftmann
parents: 36414
diff changeset
  1003
  by (simp add: zero_less_divide_iff)
63fc238a7430 got rid of [simplified]
haftmann
parents: 36414
diff changeset
  1004
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1005
lemma divide_le_0_1_iff [simp]:
36423
63fc238a7430 got rid of [simplified]
haftmann
parents: 36414
diff changeset
  1006
  "1 / a \<le> 0 \<longleftrightarrow> a \<le> 0"
63fc238a7430 got rid of [simplified]
haftmann
parents: 36414
diff changeset
  1007
  by (simp add: divide_le_0_iff)
63fc238a7430 got rid of [simplified]
haftmann
parents: 36414
diff changeset
  1008
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1009
lemma divide_less_0_1_iff [simp]:
36423
63fc238a7430 got rid of [simplified]
haftmann
parents: 36414
diff changeset
  1010
  "1 / a < 0 \<longleftrightarrow> a < 0"
63fc238a7430 got rid of [simplified]
haftmann
parents: 36414
diff changeset
  1011
  by (simp add: divide_less_0_iff)
14353
79f9fbef9106 Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents: 14348
diff changeset
  1012
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1013
lemma divide_right_mono:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1014
     "[|a \<le> b; 0 \<le> c|] ==> a/c \<le> b/c"
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1015
by (force simp add: divide_strict_right_mono le_less)
14293
22542982bffd moving some division theorems to Ring_and_Field
paulson
parents: 14288
diff changeset
  1016
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1017
lemma divide_right_mono_neg: "a <= b 
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1018
    ==> c <= 0 ==> b / c <= a / c"
23482
2f4be6844f7c tuned and used field_simps
nipkow
parents: 23477
diff changeset
  1019
apply (drule divide_right_mono [of _ _ "- c"])
56479
91958d4b30f7 revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents: 56445
diff changeset
  1020
apply auto
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1021
done
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1022
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1023
lemma divide_left_mono_neg: "a <= b 
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1024
    ==> c <= 0 ==> 0 < a * b ==> c / a <= c / b"
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1025
  apply (drule divide_left_mono [of _ _ "- c"])
56479
91958d4b30f7 revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents: 56445
diff changeset
  1026
  apply (auto simp add: mult_commute)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1027
done
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1028
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
  1029
lemma inverse_le_iff: "inverse a \<le> inverse b \<longleftrightarrow> (0 < a * b \<longrightarrow> b \<le> a) \<and> (a * b \<le> 0 \<longrightarrow> a \<le> b)"
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
  1030
  by (cases a 0 b 0 rule: linorder_cases[case_product linorder_cases])
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
  1031
     (auto simp add: field_simps zero_less_mult_iff mult_le_0_iff)
42904
4aedcff42de6 add divide_.._cancel, inverse_.._iff
hoelzl
parents: 36774
diff changeset
  1032
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
  1033
lemma inverse_less_iff: "inverse a < inverse b \<longleftrightarrow> (0 < a * b \<longrightarrow> b < a) \<and> (a * b \<le> 0 \<longrightarrow> a < b)"
42904
4aedcff42de6 add divide_.._cancel, inverse_.._iff
hoelzl
parents: 36774
diff changeset
  1034
  by (subst less_le) (auto simp: inverse_le_iff)
4aedcff42de6 add divide_.._cancel, inverse_.._iff
hoelzl
parents: 36774
diff changeset
  1035
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
  1036
lemma divide_le_cancel: "a / c \<le> b / c \<longleftrightarrow> (0 < c \<longrightarrow> a \<le> b) \<and> (c < 0 \<longrightarrow> b \<le> a)"
42904
4aedcff42de6 add divide_.._cancel, inverse_.._iff
hoelzl
parents: 36774
diff changeset
  1037
  by (simp add: divide_inverse mult_le_cancel_right)
4aedcff42de6 add divide_.._cancel, inverse_.._iff
hoelzl
parents: 36774
diff changeset
  1038
56480
093ea91498e6 field_simps: better support for negation and division, and power
hoelzl
parents: 56479
diff changeset
  1039
lemma divide_less_cancel: "a / c < b / c \<longleftrightarrow> (0 < c \<longrightarrow> a < b) \<and> (c < 0 \<longrightarrow> b < a) \<and> c \<noteq> 0"
42904
4aedcff42de6 add divide_.._cancel, inverse_.._iff
hoelzl
parents: 36774
diff changeset
  1040
  by (auto simp add: divide_inverse mult_less_cancel_right)
4aedcff42de6 add divide_.._cancel, inverse_.._iff
hoelzl
parents: 36774
diff changeset
  1041
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1042
text{*Simplify quotients that are compared with the value 1.*}
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1043
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1044
lemma le_divide_eq_1:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1045
  "(1 \<le> b / a) = ((0 < a & a \<le> b) | (a < 0 & b \<le> a))"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1046
by (auto simp add: le_divide_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1047
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1048
lemma divide_le_eq_1:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1049
  "(b / a \<le> 1) = ((0 < a & b \<le> a) | (a < 0 & a \<le> b) | a=0)"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1050
by (auto simp add: divide_le_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1051
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1052
lemma less_divide_eq_1:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1053
  "(1 < b / a) = ((0 < a & a < b) | (a < 0 & b < a))"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1054
by (auto simp add: less_divide_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1055
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1056
lemma divide_less_eq_1:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1057
  "(b / a < 1) = ((0 < a & b < a) | (a < 0 & a < b) | a=0)"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1058
by (auto simp add: divide_less_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1059
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23326
diff changeset
  1060
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1061
text {*Conditional Simplification Rules: No Case Splits*}
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1062
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1063
lemma le_divide_eq_1_pos [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1064
  "0 < a \<Longrightarrow> (1 \<le> b/a) = (a \<le> b)"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1065
by (auto simp add: le_divide_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1066
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1067
lemma le_divide_eq_1_neg [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1068
  "a < 0 \<Longrightarrow> (1 \<le> b/a) = (b \<le> a)"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1069
by (auto simp add: le_divide_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1070
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1071
lemma divide_le_eq_1_pos [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1072
  "0 < a \<Longrightarrow> (b/a \<le> 1) = (b \<le> a)"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1073
by (auto simp add: divide_le_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1074
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1075
lemma divide_le_eq_1_neg [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1076
  "a < 0 \<Longrightarrow> (b/a \<le> 1) = (a \<le> b)"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1077
by (auto simp add: divide_le_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1078
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1079
lemma less_divide_eq_1_pos [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1080
  "0 < a \<Longrightarrow> (1 < b/a) = (a < b)"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1081
by (auto simp add: less_divide_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1082
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1083
lemma less_divide_eq_1_neg [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1084
  "a < 0 \<Longrightarrow> (1 < b/a) = (b < a)"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1085
by (auto simp add: less_divide_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1086
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1087
lemma divide_less_eq_1_pos [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1088
  "0 < a \<Longrightarrow> (b/a < 1) = (b < a)"
18649
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1089
by (auto simp add: divide_less_eq)
bb99c2e705ca tidied, and added missing thm divide_less_eq_1_neg
paulson
parents: 18623
diff changeset
  1090
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1091
lemma divide_less_eq_1_neg [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1092
  "a < 0 \<Longrightarrow> b/a < 1 <-> a < b"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1093
by (auto simp add: divide_less_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1094
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1095
lemma eq_divide_eq_1 [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1096
  "(1 = b/a) = ((a \<noteq> 0 & a = b))"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1097
by (auto simp add: eq_divide_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1098
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53374
diff changeset
  1099
lemma divide_eq_eq_1 [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1100
  "(b/a = 1) = ((a \<noteq> 0 & a = b))"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1101
by (auto simp add: divide_eq_eq)
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1102
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  1103
lemma abs_inverse [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1104
     "\<bar>inverse a\<bar> = 
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1105
      inverse \<bar>a\<bar>"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
  1106
apply (cases "a=0", simp) 
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  1107
apply (simp add: nonzero_abs_inverse) 
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  1108
done
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  1109
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
  1110
lemma abs_divide [simp]:
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1111
     "\<bar>a / b\<bar> = \<bar>a\<bar> / \<bar>b\<bar>"
21328
73bb86d0f483 dropped Inductive dependency
haftmann
parents: 21258
diff changeset
  1112
apply (cases "b=0", simp) 
14294
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  1113
apply (simp add: nonzero_abs_divide) 
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  1114
done
f4d806fd72ce absolute value theorems moved to HOL/Ring_and_Field
paulson
parents: 14293
diff changeset
  1115
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1116
lemma abs_div_pos: "0 < y ==> 
36301
72f4d079ebf8 more localization; factored out lemmas for division_ring
haftmann
parents: 35828
diff changeset
  1117
    \<bar>x\<bar> / y = \<bar>x / y\<bar>"
25304
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
  1118
  apply (subst abs_divide)
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
  1119
  apply (simp add: order_less_imp_le)
7491c00f0915 removed subclass edge ordered_ring < lordered_ring
haftmann
parents: 25267
diff changeset
  1120
done
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 16568
diff changeset
  1121
55718
34618f031ba9 A few lemmas about summations, etc.
paulson <lp15@cam.ac.uk>
parents: 54230
diff changeset
  1122
lemma zero_le_divide_abs_iff [simp]: "(0 \<le> a / abs b) = (0 \<le> a | b = 0)" 
34618f031ba9 A few lemmas about summations, etc.
paulson <lp15@cam.ac.uk>
parents: 54230
diff changeset
  1123
by (auto simp: zero_le_divide_iff)
34618f031ba9 A few lemmas about summations, etc.
paulson <lp15@cam.ac.uk>
parents: 54230
diff changeset
  1124
34618f031ba9 A few lemmas about summations, etc.
paulson <lp15@cam.ac.uk>
parents: 54230
diff changeset
  1125
lemma divide_le_0_abs_iff [simp]: "(a / abs b \<le> 0) = (a \<le> 0 | b = 0)" 
34618f031ba9 A few lemmas about summations, etc.
paulson <lp15@cam.ac.uk>
parents: 54230
diff changeset
  1126
by (auto simp: divide_le_0_iff)
34618f031ba9 A few lemmas about summations, etc.
paulson <lp15@cam.ac.uk>
parents: 54230
diff changeset
  1127
35579
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1128
lemma field_le_mult_one_interval:
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1129
  assumes *: "\<And>z. \<lbrakk> 0 < z ; z < 1 \<rbrakk> \<Longrightarrow> z * x \<le> y"
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1130
  shows "x \<le> y"
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1131
proof (cases "0 < x")
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1132
  assume "0 < x"
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1133
  thus ?thesis
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1134
    using dense_le_bounded[of 0 1 "y/x"] *
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1135
    unfolding le_divide_eq if_P[OF `0 < x`] by simp
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1136
next
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1137
  assume "\<not>0 < x" hence "x \<le> 0" by simp
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1138
  obtain s::'a where s: "0 < s" "s < 1" using dense[of 0 "1\<Colon>'a"] by auto
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1139
  hence "x \<le> s * x" using mult_le_cancel_right[of 1 x s] `x \<le> 0` by auto
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1140
  also note *[OF s]
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1141
  finally show ?thesis .
cc9a5a0ab5ea Add dense_le, dense_le_bounded, field_le_mult_one_interval.
hoelzl
parents: 35216
diff changeset
  1142
qed
35090
88cc65ae046e moved lemma field_le_epsilon from Real.thy to Fields.thy
haftmann
parents: 35084
diff changeset
  1143
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1144
end
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36348
diff changeset
  1145
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 44921
diff changeset
  1146
code_identifier
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 44921
diff changeset
  1147
  code_module Fields \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith
33364
2bd12592c5e8 tuned code setup
haftmann
parents: 33319
diff changeset
  1148
14265
95b42e69436c HOL: installation of Ring_and_Field as the basis for Naturals and Reals
paulson
parents:
diff changeset
  1149
end