| author | nipkow | 
| Mon, 16 Sep 2019 18:00:27 +0200 | |
| changeset 70708 | 3e11f35496b3 | 
| parent 70357 | 4d0b789e4e21 | 
| child 70817 | dd675800469d | 
| permissions | -rw-r--r-- | 
| 35050 
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
 haftmann parents: 
35043diff
changeset | 1 | (* Title: HOL/Fields.thy | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
30961diff
changeset | 2 | Author: Gertrud Bauer | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
30961diff
changeset | 3 | Author: Steven Obua | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
30961diff
changeset | 4 | Author: Tobias Nipkow | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
30961diff
changeset | 5 | Author: Lawrence C Paulson | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
30961diff
changeset | 6 | Author: Markus Wenzel | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
30961diff
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 | |
| 60758 | 10 | section \<open>Fields\<close> | 
| 25152 | 11 | |
| 35050 
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
 haftmann parents: 
35043diff
changeset | 12 | theory Fields | 
| 62481 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62347diff
changeset | 13 | imports Nat | 
| 25186 | 14 | begin | 
| 14421 
ee97b6463cb4
new Ring_and_Field hierarchy, eliminating redundant axioms
 paulson parents: 
14398diff
changeset | 15 | |
| 69502 | 16 | context idom | 
| 17 | begin | |
| 18 | ||
| 19 | lemma inj_mult_left [simp]: \<open>inj ((*) a) \<longleftrightarrow> a \<noteq> 0\<close> (is \<open>?P \<longleftrightarrow> ?Q\<close>) | |
| 20 | proof | |
| 21 | assume ?P | |
| 22 | show ?Q | |
| 23 | proof | |
| 24 | assume \<open>a = 0\<close> | |
| 25 | with \<open>?P\<close> have "inj ((*) 0)" | |
| 26 | by simp | |
| 27 | moreover have "0 * 0 = 0 * 1" | |
| 28 | by simp | |
| 29 | ultimately have "0 = 1" | |
| 30 | by (rule injD) | |
| 31 | then show False | |
| 32 | by simp | |
| 33 | qed | |
| 34 | next | |
| 35 | assume ?Q then show ?P | |
| 36 | by (auto intro: injI) | |
| 37 | qed | |
| 38 | ||
| 39 | end | |
| 40 | ||
| 41 | ||
| 60758 | 42 | subsection \<open>Division rings\<close> | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 43 | |
| 60758 | 44 | text \<open> | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 45 | A division ring is like a field, but without the commutativity requirement. | 
| 60758 | 46 | \<close> | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 47 | |
| 60352 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 haftmann parents: 
59867diff
changeset | 48 | class inverse = divide + | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 49 | fixes inverse :: "'a \<Rightarrow> 'a" | 
| 58776 
95e58e04e534
use NO_MATCH-simproc for distribution rules in field_simps, otherwise field_simps on '(a / (c + d)) * (e + f)' can be non-terminating
 hoelzl parents: 
58512diff
changeset | 50 | begin | 
| 60352 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 haftmann parents: 
59867diff
changeset | 51 | |
| 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 haftmann parents: 
59867diff
changeset | 52 | abbreviation inverse_divide :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "'/" 70) | 
| 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 haftmann parents: 
59867diff
changeset | 53 | where | 
| 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 haftmann parents: 
59867diff
changeset | 54 | "inverse_divide \<equiv> divide" | 
| 58776 
95e58e04e534
use NO_MATCH-simproc for distribution rules in field_simps, otherwise field_simps on '(a / (c + d)) * (e + f)' can be non-terminating
 hoelzl parents: 
58512diff
changeset | 55 | |
| 
95e58e04e534
use NO_MATCH-simproc for distribution rules in field_simps, otherwise field_simps on '(a / (c + d)) * (e + f)' can be non-terminating
 hoelzl parents: 
58512diff
changeset | 56 | end | 
| 
95e58e04e534
use NO_MATCH-simproc for distribution rules in field_simps, otherwise field_simps on '(a / (c + d)) * (e + f)' can be non-terminating
 hoelzl parents: 
58512diff
changeset | 57 | |
| 62481 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62347diff
changeset | 58 | text \<open>Setup for linear arithmetic prover\<close> | 
| 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62347diff
changeset | 59 | |
| 69605 | 60 | ML_file \<open>~~/src/Provers/Arith/fast_lin_arith.ML\<close> | 
| 61 | ML_file \<open>Tools/lin_arith.ML\<close> | |
| 62481 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62347diff
changeset | 62 | setup \<open>Lin_Arith.global_setup\<close> | 
| 70356 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 63 | declaration \<open>K ( | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 64 | Lin_Arith.init_arith_data | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 65 | #> Lin_Arith.add_discrete_type \<^type_name>\<open>nat\<close> | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 66 |   #> Lin_Arith.add_lessD @{thm Suc_leI}
 | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 67 |   #> Lin_Arith.add_simps @{thms simp_thms ring_distribs if_True if_False
 | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 68 | minus_diff_eq | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 69 | add_0_left add_0_right order_less_irrefl | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 70 | zero_neq_one zero_less_one zero_le_one | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 71 | zero_neq_one [THEN not_sym] not_one_le_zero not_one_less_zero | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 72 | add_Suc add_Suc_right nat.inject | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 73 | Suc_le_mono Suc_less_eq Zero_not_Suc | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 74 | Suc_not_Zero le_0_eq One_nat_def} | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 75 | #> Lin_Arith.add_simprocs [\<^simproc>\<open>group_cancel_add\<close>, \<^simproc>\<open>group_cancel_diff\<close>, | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 76 | \<^simproc>\<open>group_cancel_eq\<close>, \<^simproc>\<open>group_cancel_le\<close>, | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 77 | \<^simproc>\<open>group_cancel_less\<close>, | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 78 | \<^simproc>\<open>nateq_cancel_sums\<close>,\<^simproc>\<open>natless_cancel_sums\<close>, | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 79 | \<^simproc>\<open>natle_cancel_sums\<close>])\<close> | 
| 62481 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62347diff
changeset | 80 | |
| 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62347diff
changeset | 81 | simproc_setup fast_arith_nat ("(m::nat) < n" | "(m::nat) \<le> n" | "(m::nat) = n") =
 | 
| 70356 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 82 | \<open>K Lin_Arith.simproc\<close> \<comment> \<open>Because of this simproc, the arithmetic solver is | 
| 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 83 | really only useful to detect inconsistencies among the premises for subgoals which are | 
| 70357 | 84 | \<^emph>\<open>not\<close> themselves (in)equalities, because the latter activate | 
| 85 | \<^text>\<open>fast_nat_arith_simproc\<close> anyway. However, it seems cheaper to activate the | |
| 70356 
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
 haftmann parents: 
70344diff
changeset | 86 | solver all the time rather than add the additional check.\<close> | 
| 62481 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62347diff
changeset | 87 | |
| 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62347diff
changeset | 88 | lemmas [arith_split] = nat_diff_split split_min split_max | 
| 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62347diff
changeset | 89 | |
| 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62347diff
changeset | 90 | |
| 61799 | 91 | text\<open>Lemmas \<open>divide_simps\<close> move division to the outside and eliminates them on (in)equalities.\<close> | 
| 56481 | 92 | |
| 57950 | 93 | named_theorems divide_simps "rewrite rules to eliminate divisions" | 
| 56481 | 94 | |
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 95 | class division_ring = ring_1 + inverse + | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 96 | 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: 
42904diff
changeset | 97 | 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: 
42904diff
changeset | 98 | assumes divide_inverse: "a / b = a * inverse b" | 
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59779diff
changeset | 99 | assumes inverse_zero [simp]: "inverse 0 = 0" | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 100 | begin | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 101 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 102 | subclass ring_1_no_zero_divisors | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 103 | proof | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 104 | fix a b :: 'a | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 105 | assume a: "a \<noteq> 0" and b: "b \<noteq> 0" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 106 | show "a * b \<noteq> 0" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 107 | proof | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 108 | assume ab: "a * b = 0" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 109 | hence "0 = inverse a * (a * b) * inverse b" by simp | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 110 | also have "\<dots> = (inverse a * a) * (b * inverse b)" | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56571diff
changeset | 111 | by (simp only: mult.assoc) | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 112 | also have "\<dots> = 1" using a b by simp | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 113 | finally show False by simp | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 114 | qed | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 115 | qed | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 116 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 117 | lemma nonzero_imp_inverse_nonzero: | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 118 | "a \<noteq> 0 \<Longrightarrow> inverse a \<noteq> 0" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 119 | proof | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 120 | assume ianz: "inverse a = 0" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 121 | assume "a \<noteq> 0" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 122 | hence "1 = a * inverse a" by simp | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 123 | also have "... = 0" by (simp add: ianz) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 124 | finally have "1 = 0" . | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 125 | thus False by (simp add: eq_commute) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 126 | qed | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 127 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 128 | lemma inverse_zero_imp_zero: | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 129 | "inverse a = 0 \<Longrightarrow> a = 0" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 130 | apply (rule classical) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 131 | apply (drule nonzero_imp_inverse_nonzero) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 132 | apply auto | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 133 | done | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 134 | |
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 135 | lemma inverse_unique: | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 136 | assumes ab: "a * b = 1" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 137 | shows "inverse a = b" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 138 | proof - | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 139 | 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: 
42904diff
changeset | 140 | moreover have "inverse a * (a * b) = inverse a" by (simp add: ab) | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56571diff
changeset | 141 | ultimately show ?thesis by (simp add: mult.assoc [symmetric]) | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 142 | qed | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 143 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 144 | lemma nonzero_inverse_minus_eq: | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 145 | "a \<noteq> 0 \<Longrightarrow> inverse (- a) = - inverse a" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 146 | by (rule inverse_unique) simp | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 147 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 148 | lemma nonzero_inverse_inverse_eq: | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 149 | "a \<noteq> 0 \<Longrightarrow> inverse (inverse a) = a" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 150 | by (rule inverse_unique) simp | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 151 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 152 | lemma nonzero_inverse_eq_imp_eq: | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 153 | 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: 
42904diff
changeset | 154 | shows "a = b" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 155 | proof - | 
| 60758 | 156 | from \<open>inverse a = inverse b\<close> | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 157 | have "inverse (inverse a) = inverse (inverse b)" by (rule arg_cong) | 
| 60758 | 158 | with \<open>a \<noteq> 0\<close> and \<open>b \<noteq> 0\<close> show "a = b" | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 159 | by (simp add: nonzero_inverse_inverse_eq) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 160 | qed | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 161 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 162 | lemma inverse_1 [simp]: "inverse 1 = 1" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 163 | by (rule inverse_unique) simp | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 164 | |
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 165 | lemma nonzero_inverse_mult_distrib: | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 166 | assumes "a \<noteq> 0" and "b \<noteq> 0" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 167 | shows "inverse (a * b) = inverse b * inverse a" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 168 | proof - | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 169 | have "a * (b * inverse b) * inverse a = 1" using assms by simp | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56571diff
changeset | 170 | hence "a * b * (inverse b * inverse a) = 1" by (simp only: mult.assoc) | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 171 | thus ?thesis by (rule inverse_unique) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 172 | qed | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 173 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 174 | lemma division_ring_inverse_add: | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 175 | "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: 
42904diff
changeset | 176 | by (simp add: algebra_simps) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 177 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 178 | lemma division_ring_inverse_diff: | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 179 | "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: 
42904diff
changeset | 180 | by (simp add: algebra_simps) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 181 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 182 | 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: 
42904diff
changeset | 183 | proof | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 184 | assume neq: "b \<noteq> 0" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 185 |   {
 | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56571diff
changeset | 186 | hence "a = (a / b) * b" by (simp add: divide_inverse mult.assoc) | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 187 | also assume "a / b = 1" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 188 | finally show "a = b" by simp | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 189 | next | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 190 | assume "a = b" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 191 | with neq show "a / b = 1" by (simp add: divide_inverse) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 192 | } | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 193 | qed | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 194 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 195 | 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: 
42904diff
changeset | 196 | by (simp add: divide_inverse) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 197 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 198 | lemma divide_self [simp]: "a \<noteq> 0 \<Longrightarrow> a / a = 1" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 199 | by (simp add: divide_inverse) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 200 | |
| 56481 | 201 | lemma inverse_eq_divide [field_simps, divide_simps]: "inverse a = 1 / a" | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 202 | by (simp add: divide_inverse) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 203 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 204 | lemma add_divide_distrib: "(a+b) / c = a/c + b/c" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 205 | by (simp add: divide_inverse algebra_simps) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 206 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 207 | lemma times_divide_eq_right [simp]: "a * (b / c) = (a * b) / c" | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56571diff
changeset | 208 | by (simp add: divide_inverse mult.assoc) | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 209 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 210 | lemma minus_divide_left: "- (a / b) = (-a) / b" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 211 | by (simp add: divide_inverse) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 212 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 213 | 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: 
42904diff
changeset | 214 | by (simp add: divide_inverse nonzero_inverse_minus_eq) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 215 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 216 | 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: 
42904diff
changeset | 217 | by (simp add: divide_inverse nonzero_inverse_minus_eq) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 218 | |
| 56479 
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
 hoelzl parents: 
56445diff
changeset | 219 | lemma divide_minus_left [simp]: "(-a) / b = - (a / b)" | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 220 | by (simp add: divide_inverse) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 221 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 222 | 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: 
56445diff
changeset | 223 | using add_divide_distrib [of a "- b" c] by simp | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 224 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 225 | 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: 
42904diff
changeset | 226 | proof - | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 227 | assume [simp]: "c \<noteq> 0" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 228 | have "a = b / c \<longleftrightarrow> a * c = (b / c) * c" by simp | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56571diff
changeset | 229 | also have "... \<longleftrightarrow> a * c = b" by (simp add: divide_inverse mult.assoc) | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 230 | finally show ?thesis . | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 231 | qed | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 232 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 233 | 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: 
42904diff
changeset | 234 | proof - | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 235 | assume [simp]: "c \<noteq> 0" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 236 | have "b / c = a \<longleftrightarrow> (b / c) * c = a * c" by simp | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 237 | also have "... \<longleftrightarrow> b = a * c" by (simp add: divide_inverse mult.assoc) | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 238 | finally show ?thesis . | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 239 | qed | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 240 | |
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 241 | lemma nonzero_neg_divide_eq_eq [field_simps]: "b \<noteq> 0 \<Longrightarrow> - (a / b) = c \<longleftrightarrow> - a = c * b" | 
| 59535 | 242 | using nonzero_divide_eq_eq[of b "-a" c] by simp | 
| 56441 | 243 | |
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 244 | 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: 
56479diff
changeset | 245 | using nonzero_neg_divide_eq_eq[of b a c] by auto | 
| 56441 | 246 | |
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 247 | lemma divide_eq_imp: "c \<noteq> 0 \<Longrightarrow> b = a * c \<Longrightarrow> b / c = a" | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56571diff
changeset | 248 | by (simp add: divide_inverse mult.assoc) | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 249 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 250 | lemma eq_divide_imp: "c \<noteq> 0 \<Longrightarrow> a * c = b \<Longrightarrow> a = b / c" | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56571diff
changeset | 251 | by (drule sym) (simp add: divide_inverse mult.assoc) | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 252 | |
| 56445 | 253 | lemma add_divide_eq_iff [field_simps]: | 
| 254 | "z \<noteq> 0 \<Longrightarrow> x + y / z = (x * z + y) / z" | |
| 255 | by (simp add: add_divide_distrib nonzero_eq_divide_eq) | |
| 256 | ||
| 257 | lemma divide_add_eq_iff [field_simps]: | |
| 258 | "z \<noteq> 0 \<Longrightarrow> x / z + y = (x + y * z) / z" | |
| 259 | by (simp add: add_divide_distrib nonzero_eq_divide_eq) | |
| 260 | ||
| 261 | lemma diff_divide_eq_iff [field_simps]: | |
| 262 | "z \<noteq> 0 \<Longrightarrow> x - y / z = (x * z - y) / z" | |
| 263 | by (simp add: diff_divide_distrib nonzero_eq_divide_eq eq_diff_eq) | |
| 264 | ||
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 265 | lemma minus_divide_add_eq_iff [field_simps]: | 
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 266 | "z \<noteq> 0 \<Longrightarrow> - (x / z) + y = (- x + y * z) / z" | 
| 59535 | 267 | by (simp add: add_divide_distrib diff_divide_eq_iff) | 
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 268 | |
| 56445 | 269 | lemma divide_diff_eq_iff [field_simps]: | 
| 270 | "z \<noteq> 0 \<Longrightarrow> x / z - y = (x - y * z) / z" | |
| 271 | by (simp add: field_simps) | |
| 272 | ||
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 273 | lemma minus_divide_diff_eq_iff [field_simps]: | 
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 274 | "z \<noteq> 0 \<Longrightarrow> - (x / z) - y = (- x - y * z) / z" | 
| 59535 | 275 | by (simp add: divide_diff_eq_iff[symmetric]) | 
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 276 | |
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 277 | lemma division_ring_divide_zero [simp]: | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 278 | "a / 0 = 0" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 279 | by (simp add: divide_inverse) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 280 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 281 | lemma divide_self_if [simp]: | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 282 | "a / a = (if a = 0 then 0 else 1)" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 283 | by simp | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 284 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 285 | lemma inverse_nonzero_iff_nonzero [simp]: | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 286 | "inverse a = 0 \<longleftrightarrow> a = 0" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 287 | by rule (fact inverse_zero_imp_zero, simp) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 288 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 289 | lemma inverse_minus_eq [simp]: | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 290 | "inverse (- a) = - inverse a" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 291 | proof cases | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 292 | assume "a=0" thus ?thesis by simp | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 293 | next | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 294 | assume "a\<noteq>0" | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 295 | thus ?thesis by (simp add: nonzero_inverse_minus_eq) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 296 | qed | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 297 | |
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 298 | lemma inverse_inverse_eq [simp]: | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 299 | "inverse (inverse a) = a" | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 300 | proof cases | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 301 | assume "a=0" thus ?thesis by simp | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 302 | next | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 303 | assume "a\<noteq>0" | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 304 | thus ?thesis by (simp add: nonzero_inverse_inverse_eq) | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 305 | qed | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 306 | |
| 44680 | 307 | lemma inverse_eq_imp_eq: | 
| 308 | "inverse a = inverse b \<Longrightarrow> a = b" | |
| 309 | by (drule arg_cong [where f="inverse"], simp) | |
| 310 | ||
| 311 | lemma inverse_eq_iff_eq [simp]: | |
| 312 | "inverse a = inverse b \<longleftrightarrow> a = b" | |
| 313 | by (force dest!: inverse_eq_imp_eq) | |
| 314 | ||
| 69791 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 315 | lemma mult_commute_imp_mult_inverse_commute: | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 316 | assumes "y * x = x * y" | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 317 | shows "inverse y * x = x * inverse y" | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 318 | proof (cases "y=0") | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 319 | case False | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 320 | hence "x * inverse y = inverse y * y * x * inverse y" | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 321 | by simp | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 322 | also have "\<dots> = inverse y * (x * y * inverse y)" | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 323 | by (simp add: mult.assoc assms) | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 324 | finally show ?thesis by (simp add: mult.assoc False) | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 325 | qed simp | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 326 | |
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 327 | lemmas mult_inverse_of_nat_commute = | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 328 | mult_commute_imp_mult_inverse_commute[OF mult_of_nat_commute] | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 329 | |
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 330 | lemma divide_divide_eq_left': | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 331 | "(a / b) / c = a / (c * b)" | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 332 | by (cases "b = 0 \<or> c = 0") | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 333 | (auto simp: divide_inverse mult.assoc nonzero_inverse_mult_distrib) | 
| 
195aeee8b30a
Formal Laurent series and overhaul of Formal power series (due to Jeremy Sylvestre)
 Manuel Eberl <eberlm@in.tum.de> parents: 
69605diff
changeset | 334 | |
| 56481 | 335 | lemma add_divide_eq_if_simps [divide_simps]: | 
| 336 | "a + b / z = (if z = 0 then a else (a * z + b) / z)" | |
| 337 | "a / z + b = (if z = 0 then b else (a + b * z) / z)" | |
| 338 | "- (a / z) + b = (if z = 0 then b else (-a + b * z) / z)" | |
| 339 | "a - b / z = (if z = 0 then a else (a * z - b) / z)" | |
| 340 | "a / z - b = (if z = 0 then -b else (a - b * z) / z)" | |
| 341 | "- (a / z) - b = (if z = 0 then -b else (- a - b * z) / z)" | |
| 342 | by (simp_all add: add_divide_eq_iff divide_add_eq_iff diff_divide_eq_iff divide_diff_eq_iff | |
| 343 | minus_divide_diff_eq_iff) | |
| 344 | ||
| 345 | lemma [divide_simps]: | |
| 346 | shows divide_eq_eq: "b / c = a \<longleftrightarrow> (if c \<noteq> 0 then b = a * c else a = 0)" | |
| 347 | and eq_divide_eq: "a = b / c \<longleftrightarrow> (if c \<noteq> 0 then a * c = b else a = 0)" | |
| 348 | and minus_divide_eq_eq: "- (b / c) = a \<longleftrightarrow> (if c \<noteq> 0 then - b = a * c else a = 0)" | |
| 349 | and eq_minus_divide_eq: "a = - (b / c) \<longleftrightarrow> (if c \<noteq> 0 then a * c = - b else a = 0)" | |
| 350 | by (auto simp add: field_simps) | |
| 351 | ||
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 352 | end | 
| 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 353 | |
| 60758 | 354 | subsection \<open>Fields\<close> | 
| 44064 
5bce8ff0d9ae
moved division ring stuff from Rings.thy to Fields.thy
 huffman parents: 
42904diff
changeset | 355 | |
| 22987 
550709aa8e66
instance division_ring < no_zero_divisors; clean up field instance proofs
 huffman parents: 
22842diff
changeset | 356 | class field = comm_ring_1 + inverse + | 
| 35084 | 357 | assumes field_inverse: "a \<noteq> 0 \<Longrightarrow> inverse a * a = 1" | 
| 358 | assumes field_divide_inverse: "a / b = a * inverse b" | |
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59779diff
changeset | 359 | assumes field_inverse_zero: "inverse 0 = 0" | 
| 25267 | 360 | 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: 
19404diff
changeset | 361 | |
| 25267 | 362 | subclass division_ring | 
| 28823 | 363 | proof | 
| 22987 
550709aa8e66
instance division_ring < no_zero_divisors; clean up field instance proofs
 huffman parents: 
22842diff
changeset | 364 | fix a :: 'a | 
| 
550709aa8e66
instance division_ring < no_zero_divisors; clean up field instance proofs
 huffman parents: 
22842diff
changeset | 365 | assume "a \<noteq> 0" | 
| 
550709aa8e66
instance division_ring < no_zero_divisors; clean up field instance proofs
 huffman parents: 
22842diff
changeset | 366 | thus "inverse a * a = 1" by (rule field_inverse) | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56571diff
changeset | 367 | thus "a * inverse a = 1" by (simp only: mult.commute) | 
| 35084 | 368 | next | 
| 369 | fix a b :: 'a | |
| 370 | show "a / b = a * inverse b" by (rule field_divide_inverse) | |
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59779diff
changeset | 371 | next | 
| 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59779diff
changeset | 372 | show "inverse 0 = 0" | 
| 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59779diff
changeset | 373 | by (fact field_inverse_zero) | 
| 14738 | 374 | qed | 
| 25230 | 375 | |
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 376 | subclass idom_divide | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 377 | proof | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 378 | fix b a | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 379 | assume "b \<noteq> 0" | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 380 | then show "a * b / b = a" | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 381 | by (simp add: divide_inverse ac_simps) | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 382 | next | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 383 | fix a | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 384 | show "a / 0 = 0" | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 385 | by (simp add: divide_inverse) | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 386 | qed | 
| 25230 | 387 | |
| 60758 | 388 | text\<open>There is no slick version using division by zero.\<close> | 
| 30630 | 389 | lemma inverse_add: | 
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 390 | "a \<noteq> 0 \<Longrightarrow> b \<noteq> 0 \<Longrightarrow> inverse a + inverse b = (a + b) * inverse a * inverse b" | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 391 | by (simp add: division_ring_inverse_add ac_simps) | 
| 30630 | 392 | |
| 70147 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 393 | lemma nonzero_mult_divide_mult_cancel_left [simp]: | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 394 | assumes [simp]: "c \<noteq> 0" | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 395 | shows "(c * a) / (c * b) = a / b" | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 396 | proof (cases "b = 0") | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 397 | case True then show ?thesis by simp | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 398 | next | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 399 | case False | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 400 | then have "(c*a)/(c*b) = c * a * (inverse b * inverse c)" | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 401 | by (simp add: divide_inverse nonzero_inverse_mult_distrib) | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 402 | also have "... = a * inverse b * (inverse c * c)" | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 403 | by (simp only: ac_simps) | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 404 | also have "... = a * inverse b" by simp | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 405 | finally show ?thesis by (simp add: divide_inverse) | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 406 | qed | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 407 | |
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 408 | lemma nonzero_mult_divide_mult_cancel_right [simp]: | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 409 | "c \<noteq> 0 \<Longrightarrow> (a * c) / (b * c) = a / b" | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 410 | using nonzero_mult_divide_mult_cancel_left [of c a b] by (simp add: ac_simps) | 
| 
1657688a6406
backed out a93e6472ac9c, which does not bring anything substantial: division_ring is not commutative in multiplication but semidom_divide is
 haftmann parents: 
70094diff
changeset | 411 | |
| 36304 
6984744e6b34
less special treatment of times_divide_eq [simp]
 haftmann parents: 
36301diff
changeset | 412 | lemma times_divide_eq_left [simp]: "(b / c) * a = (b * a) / c" | 
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
57512diff
changeset | 413 | by (simp add: divide_inverse ac_simps) | 
| 30630 | 414 | |
| 61238 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 415 | lemma divide_inverse_commute: "a / b = inverse b * a" | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 416 | by (simp add: divide_inverse mult.commute) | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 417 | |
| 30630 | 418 | lemma add_frac_eq: | 
| 419 | assumes "y \<noteq> 0" and "z \<noteq> 0" | |
| 420 | shows "x / y + w / z = (x * z + w * y) / (y * z)" | |
| 421 | proof - | |
| 422 | have "x / y + w / z = (x * z) / (y * z) + (y * w) / (y * z)" | |
| 423 | using assms by simp | |
| 424 | also have "\<dots> = (x * z + y * w) / (y * z)" | |
| 425 | by (simp only: add_divide_distrib) | |
| 426 | finally show ?thesis | |
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56571diff
changeset | 427 | by (simp only: mult.commute) | 
| 30630 | 428 | qed | 
| 429 | ||
| 60758 | 430 | text\<open>Special Cancellation Simprules for Division\<close> | 
| 30630 | 431 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 432 | lemma nonzero_divide_mult_cancel_right [simp]: | 
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 433 | "b \<noteq> 0 \<Longrightarrow> b / (a * b) = 1 / a" | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 434 | using nonzero_mult_divide_mult_cancel_right [of b 1 a] by simp | 
| 30630 | 435 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 436 | lemma nonzero_divide_mult_cancel_left [simp]: | 
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 437 | "a \<noteq> 0 \<Longrightarrow> a / (a * b) = 1 / b" | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 438 | using nonzero_mult_divide_mult_cancel_left [of a 1 b] by simp | 
| 30630 | 439 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 440 | lemma nonzero_mult_divide_mult_cancel_left2 [simp]: | 
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 441 | "c \<noteq> 0 \<Longrightarrow> (c * a) / (b * c) = a / b" | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 442 | using nonzero_mult_divide_mult_cancel_left [of c a b] by (simp add: ac_simps) | 
| 30630 | 443 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 444 | lemma nonzero_mult_divide_mult_cancel_right2 [simp]: | 
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 445 | "c \<noteq> 0 \<Longrightarrow> (a * c) / (c * b) = a / b" | 
| 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 446 | using nonzero_mult_divide_mult_cancel_right [of b c a] by (simp add: ac_simps) | 
| 30630 | 447 | |
| 448 | lemma diff_frac_eq: | |
| 449 | "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: 
36343diff
changeset | 450 | by (simp add: field_simps) | 
| 30630 | 451 | |
| 452 | lemma frac_eq_eq: | |
| 453 | "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: 
36343diff
changeset | 454 | 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: 
36343diff
changeset | 455 | |
| 58512 
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
 haftmann parents: 
57950diff
changeset | 456 | lemma divide_minus1 [simp]: "x / - 1 = - x" | 
| 
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
 haftmann parents: 
57950diff
changeset | 457 | using nonzero_minus_divide_right [of "1" x] by simp | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 458 | |
| 60758 | 459 | text\<open>This version builds in division by zero while also re-orienting | 
| 460 | the right-hand side.\<close> | |
| 14270 | 461 | lemma inverse_mult_distrib [simp]: | 
| 36409 | 462 | "inverse (a * b) = inverse a * inverse b" | 
| 463 | proof cases | |
| 67091 | 464 | assume "a \<noteq> 0 \<and> b \<noteq> 0" | 
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
57512diff
changeset | 465 | thus ?thesis by (simp add: nonzero_inverse_mult_distrib ac_simps) | 
| 36409 | 466 | next | 
| 67091 | 467 | assume "\<not> (a \<noteq> 0 \<and> b \<noteq> 0)" | 
| 36409 | 468 | thus ?thesis by force | 
| 469 | qed | |
| 14270 | 470 | |
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: 
14353diff
changeset | 471 | lemma inverse_divide [simp]: | 
| 36409 | 472 | "inverse (a / b) = b / a" | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56571diff
changeset | 473 | by (simp add: divide_inverse mult.commute) | 
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: 
14353diff
changeset | 474 | |
| 23389 | 475 | |
| 60758 | 476 | text \<open>Calculations with fractions\<close> | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 477 | |
| 61799 | 478 | text\<open>There is a whole bunch of simp-rules just for class \<open>field\<close> but none for class \<open>field\<close> and \<open>nonzero_divides\<close> | 
| 60758 | 479 | because the latter are covered by a simproc.\<close> | 
| 23413 
5caa2710dd5b
tuned laws for cancellation in divisions for fields.
 nipkow parents: 
23406diff
changeset | 480 | |
| 68527 
2f4e2aab190a
Generalising and renaming some basic results
 paulson <lp15@cam.ac.uk> parents: 
67969diff
changeset | 481 | lemmas mult_divide_mult_cancel_left = nonzero_mult_divide_mult_cancel_left | 
| 14277 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 482 | |
| 68527 
2f4e2aab190a
Generalising and renaming some basic results
 paulson <lp15@cam.ac.uk> parents: 
67969diff
changeset | 483 | lemmas mult_divide_mult_cancel_right = nonzero_mult_divide_mult_cancel_right | 
| 23413 
5caa2710dd5b
tuned laws for cancellation in divisions for fields.
 nipkow parents: 
23406diff
changeset | 484 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 485 | lemma divide_divide_eq_right [simp]: | 
| 36409 | 486 | "a / (b / c) = (a * c) / b" | 
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
57512diff
changeset | 487 | by (simp add: divide_inverse ac_simps) | 
| 14288 | 488 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 489 | lemma divide_divide_eq_left [simp]: | 
| 36409 | 490 | "(a / b) / c = a / (b * c)" | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56571diff
changeset | 491 | by (simp add: divide_inverse mult.assoc) | 
| 14288 | 492 | |
| 56365 
713f9b9a7e51
New theorems for extracting quotients
 paulson <lp15@cam.ac.uk> parents: 
55718diff
changeset | 493 | lemma divide_divide_times_eq: | 
| 
713f9b9a7e51
New theorems for extracting quotients
 paulson <lp15@cam.ac.uk> parents: 
55718diff
changeset | 494 | "(x / y) / (z / w) = (x * w) / (y * z)" | 
| 
713f9b9a7e51
New theorems for extracting quotients
 paulson <lp15@cam.ac.uk> parents: 
55718diff
changeset | 495 | by simp | 
| 23389 | 496 | |
| 60758 | 497 | text \<open>Special Cancellation Simprules for Division\<close> | 
| 15234 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 498 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 499 | lemma mult_divide_mult_cancel_left_if [simp]: | 
| 36409 | 500 | shows "(c * a) / (c * b) = (if c = 0 then 0 else a / b)" | 
| 60353 
838025c6e278
implicit partial divison operation in integral domains
 haftmann parents: 
60352diff
changeset | 501 | by simp | 
| 23413 
5caa2710dd5b
tuned laws for cancellation in divisions for fields.
 nipkow parents: 
23406diff
changeset | 502 | |
| 15234 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 503 | |
| 60758 | 504 | text \<open>Division and Unary Minus\<close> | 
| 14293 | 505 | |
| 36409 | 506 | lemma minus_divide_right: | 
| 507 | "- (a / b) = a / - b" | |
| 508 | by (simp add: divide_inverse) | |
| 14430 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14421diff
changeset | 509 | |
| 56479 
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
 hoelzl parents: 
56445diff
changeset | 510 | lemma divide_minus_right [simp]: | 
| 36409 | 511 | "a / - b = - (a / b)" | 
| 512 | by (simp add: divide_inverse) | |
| 30630 | 513 | |
| 56479 
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
 hoelzl parents: 
56445diff
changeset | 514 | lemma minus_divide_divide: | 
| 36409 | 515 | "(- a) / (- b) = a / b" | 
| 68527 
2f4e2aab190a
Generalising and renaming some basic results
 paulson <lp15@cam.ac.uk> parents: 
67969diff
changeset | 516 | by (cases "b=0") (simp_all add: nonzero_minus_divide_divide) | 
| 14293 | 517 | |
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 518 | lemma inverse_eq_1_iff [simp]: | 
| 36409 | 519 | "inverse x = 1 \<longleftrightarrow> x = 1" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 520 | by (insert inverse_eq_iff_eq [of x 1], simp) | 
| 23389 | 521 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 522 | lemma divide_eq_0_iff [simp]: | 
| 36409 | 523 | "a / b = 0 \<longleftrightarrow> a = 0 \<or> b = 0" | 
| 524 | by (simp add: divide_inverse) | |
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 525 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 526 | lemma divide_cancel_right [simp]: | 
| 36409 | 527 | "a / c = b / c \<longleftrightarrow> c = 0 \<or> a = b" | 
| 68527 
2f4e2aab190a
Generalising and renaming some basic results
 paulson <lp15@cam.ac.uk> parents: 
67969diff
changeset | 528 | by (cases "c=0") (simp_all add: divide_inverse) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 529 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 530 | lemma divide_cancel_left [simp]: | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 531 | "c / a = c / b \<longleftrightarrow> c = 0 \<or> a = b" | 
| 68527 
2f4e2aab190a
Generalising and renaming some basic results
 paulson <lp15@cam.ac.uk> parents: 
67969diff
changeset | 532 | by (cases "c=0") (simp_all add: divide_inverse) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 533 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 534 | lemma divide_eq_1_iff [simp]: | 
| 36409 | 535 | "a / b = 1 \<longleftrightarrow> b \<noteq> 0 \<and> a = b" | 
| 68527 
2f4e2aab190a
Generalising and renaming some basic results
 paulson <lp15@cam.ac.uk> parents: 
67969diff
changeset | 536 | by (cases "b=0") (simp_all add: right_inverse_eq) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 537 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 538 | lemma one_eq_divide_iff [simp]: | 
| 36409 | 539 | "1 = a / b \<longleftrightarrow> b \<noteq> 0 \<and> a = b" | 
| 540 | by (simp add: eq_commute [of 1]) | |
| 541 | ||
| 65057 
799bbbb3a395
Some new lemmas thanks to Lukas Bulwahn. Also, NEWS.
 paulson <lp15@cam.ac.uk> parents: 
64591diff
changeset | 542 | lemma divide_eq_minus_1_iff: | 
| 
799bbbb3a395
Some new lemmas thanks to Lukas Bulwahn. Also, NEWS.
 paulson <lp15@cam.ac.uk> parents: 
64591diff
changeset | 543 | "(a / b = - 1) \<longleftrightarrow> b \<noteq> 0 \<and> a = - b" | 
| 
799bbbb3a395
Some new lemmas thanks to Lukas Bulwahn. Also, NEWS.
 paulson <lp15@cam.ac.uk> parents: 
64591diff
changeset | 544 | using divide_eq_1_iff by fastforce | 
| 
799bbbb3a395
Some new lemmas thanks to Lukas Bulwahn. Also, NEWS.
 paulson <lp15@cam.ac.uk> parents: 
64591diff
changeset | 545 | |
| 36719 | 546 | lemma times_divide_times_eq: | 
| 547 | "(x / y) * (z / w) = (x * z) / (y * w)" | |
| 548 | by simp | |
| 549 | ||
| 550 | lemma add_frac_num: | |
| 551 | "y \<noteq> 0 \<Longrightarrow> x / y + z = (x + z * y) / y" | |
| 552 | by (simp add: add_divide_distrib) | |
| 553 | ||
| 554 | lemma add_num_frac: | |
| 555 | "y \<noteq> 0 \<Longrightarrow> z + x / y = (x + z * y) / y" | |
| 556 | by (simp add: add_divide_distrib add.commute) | |
| 557 | ||
| 64591 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64329diff
changeset | 558 | lemma dvd_field_iff: | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64329diff
changeset | 559 | "a dvd b \<longleftrightarrow> (a = 0 \<longrightarrow> b = 0)" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64329diff
changeset | 560 | proof (cases "a = 0") | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64329diff
changeset | 561 | case False | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64329diff
changeset | 562 | then have "b = a * (b / a)" | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64329diff
changeset | 563 | by (simp add: field_simps) | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64329diff
changeset | 564 | then have "a dvd b" .. | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64329diff
changeset | 565 | with False show ?thesis | 
| 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64329diff
changeset | 566 | by simp | 
| 68527 
2f4e2aab190a
Generalising and renaming some basic results
 paulson <lp15@cam.ac.uk> parents: 
67969diff
changeset | 567 | qed simp | 
| 64591 
240a39af9ec4
restructured matter on polynomials and normalized fractions
 haftmann parents: 
64329diff
changeset | 568 | |
| 69502 | 569 | lemma inj_divide_right [simp]: | 
| 570 | "inj (\<lambda>b. b / a) \<longleftrightarrow> a \<noteq> 0" | |
| 571 | proof - | |
| 572 | have "(\<lambda>b. b / a) = (*) (inverse a)" | |
| 573 | by (simp add: field_simps fun_eq_iff) | |
| 574 | then have "inj (\<lambda>y. y / a) \<longleftrightarrow> inj ((*) (inverse a))" | |
| 575 | by simp | |
| 576 | also have "\<dots> \<longleftrightarrow> inverse a \<noteq> 0" | |
| 577 | by simp | |
| 578 | also have "\<dots> \<longleftrightarrow> a \<noteq> 0" | |
| 579 | by simp | |
| 580 | finally show ?thesis | |
| 581 | by simp | |
| 582 | qed | |
| 583 | ||
| 36409 | 584 | end | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 585 | |
| 62481 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62347diff
changeset | 586 | class field_char_0 = field + ring_char_0 | 
| 
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
 haftmann parents: 
62347diff
changeset | 587 | |
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 588 | |
| 60758 | 589 | subsection \<open>Ordered fields\<close> | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 590 | |
| 64290 | 591 | class field_abs_sgn = field + idom_abs_sgn | 
| 592 | begin | |
| 593 | ||
| 594 | lemma sgn_inverse [simp]: | |
| 595 | "sgn (inverse a) = inverse (sgn a)" | |
| 596 | proof (cases "a = 0") | |
| 597 | case True then show ?thesis by simp | |
| 598 | next | |
| 599 | case False | |
| 600 | then have "a * inverse a = 1" | |
| 601 | by simp | |
| 602 | then have "sgn (a * inverse a) = sgn 1" | |
| 603 | by simp | |
| 604 | then have "sgn a * sgn (inverse a) = 1" | |
| 605 | by (simp add: sgn_mult) | |
| 606 | then have "inverse (sgn a) * (sgn a * sgn (inverse a)) = inverse (sgn a) * 1" | |
| 607 | by simp | |
| 608 | then have "(inverse (sgn a) * sgn a) * sgn (inverse a) = inverse (sgn a)" | |
| 609 | by (simp add: ac_simps) | |
| 610 | with False show ?thesis | |
| 611 | by (simp add: sgn_eq_0_iff) | |
| 612 | qed | |
| 613 | ||
| 614 | lemma abs_inverse [simp]: | |
| 615 | "\<bar>inverse a\<bar> = inverse \<bar>a\<bar>" | |
| 616 | proof - | |
| 617 | from sgn_mult_abs [of "inverse a"] sgn_mult_abs [of a] | |
| 618 | have "inverse (sgn a) * \<bar>inverse a\<bar> = inverse (sgn a * \<bar>a\<bar>)" | |
| 619 | by simp | |
| 620 | then show ?thesis by (auto simp add: sgn_eq_0_iff) | |
| 621 | qed | |
| 622 | ||
| 623 | lemma sgn_divide [simp]: | |
| 624 | "sgn (a / b) = sgn a / sgn b" | |
| 625 | unfolding divide_inverse sgn_mult by simp | |
| 626 | ||
| 627 | lemma abs_divide [simp]: | |
| 628 | "\<bar>a / b\<bar> = \<bar>a\<bar> / \<bar>b\<bar>" | |
| 629 | unfolding divide_inverse abs_mult by simp | |
| 630 | ||
| 631 | end | |
| 632 | ||
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 633 | class linordered_field = field + linordered_idom | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 634 | begin | 
| 14268 
5cf13e80be0e
Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
 paulson parents: 
14267diff
changeset | 635 | |
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 636 | lemma positive_imp_inverse_positive: | 
| 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 637 | assumes a_gt_0: "0 < a" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 638 | shows "0 < inverse a" | 
| 23482 | 639 | proof - | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 640 | have "0 < a * inverse a" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 641 | by (simp add: a_gt_0 [THEN less_imp_not_eq2]) | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 642 | thus "0 < inverse a" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 643 | by (simp add: a_gt_0 [THEN less_not_sym] zero_less_mult_iff) | 
| 23482 | 644 | qed | 
| 14268 
5cf13e80be0e
Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
 paulson parents: 
14267diff
changeset | 645 | |
| 14277 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 646 | lemma negative_imp_inverse_negative: | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 647 | "a < 0 \<Longrightarrow> inverse a < 0" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 648 | by (insert positive_imp_inverse_positive [of "-a"], | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 649 | 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: 
14267diff
changeset | 650 | |
| 
5cf13e80be0e
Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
 paulson parents: 
14267diff
changeset | 651 | lemma inverse_le_imp_le: | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 652 | assumes invle: "inverse a \<le> inverse b" and apos: "0 < a" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 653 | shows "b \<le> a" | 
| 23482 | 654 | proof (rule classical) | 
| 67091 | 655 | assume "\<not> b \<le> a" | 
| 23482 | 656 | hence "a < b" by (simp add: linorder_not_le) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 657 | 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: 
14267diff
changeset | 658 | hence "a * inverse a \<le> a * inverse b" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 659 | 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: 
14267diff
changeset | 660 | hence "(a * inverse a) * b \<le> (a * inverse b) * b" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 661 | by (simp add: bpos less_imp_le mult_right_mono) | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56571diff
changeset | 662 | thus "b \<le> a" by (simp add: mult.assoc apos bpos less_imp_not_eq2) | 
| 23482 | 663 | qed | 
| 14268 
5cf13e80be0e
Removal of Hyperreal/ExtraThms2.ML, sending the material to the correct files.
 paulson parents: 
14267diff
changeset | 664 | |
| 14277 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 665 | lemma inverse_positive_imp_positive: | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 666 | assumes inv_gt_0: "0 < inverse a" and nz: "a \<noteq> 0" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 667 | shows "0 < a" | 
| 23389 | 668 | proof - | 
| 14277 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 669 | have "0 < inverse (inverse a)" | 
| 23389 | 670 | 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: 
14272diff
changeset | 671 | thus "0 < a" | 
| 23389 | 672 | using nz by (simp add: nonzero_inverse_inverse_eq) | 
| 673 | qed | |
| 14277 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 674 | |
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 675 | lemma inverse_negative_imp_negative: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 676 | assumes inv_less_0: "inverse a < 0" and nz: "a \<noteq> 0" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 677 | shows "a < 0" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 678 | proof - | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 679 | have "inverse (inverse a) < 0" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 680 | using inv_less_0 by (rule negative_imp_inverse_negative) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 681 | thus "a < 0" using nz by (simp add: nonzero_inverse_inverse_eq) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 682 | qed | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 683 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 684 | lemma linordered_field_no_lb: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 685 | "\<forall>x. \<exists>y. y < x" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 686 | proof | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 687 | fix x::'a | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 688 | have m1: "- (1::'a) < 0" by simp | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 689 | from add_strict_right_mono[OF m1, where c=x] | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 690 | have "(- 1) + x < x" by simp | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 691 | thus "\<exists>y. y < x" by blast | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 692 | qed | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 693 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 694 | lemma linordered_field_no_ub: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 695 | "\<forall> x. \<exists>y. y > x" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 696 | proof | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 697 | fix x::'a | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 698 | have m1: " (1::'a) > 0" by simp | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 699 | from add_strict_right_mono[OF m1, where c=x] | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 700 | have "1 + x > x" by simp | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 701 | thus "\<exists>y. y > x" by blast | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 702 | qed | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 703 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 704 | lemma less_imp_inverse_less: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 705 | assumes less: "a < b" and apos: "0 < a" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 706 | shows "inverse b < inverse a" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 707 | proof (rule ccontr) | 
| 67091 | 708 | assume "\<not> inverse b < inverse a" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 709 | hence "inverse a \<le> inverse b" by simp | 
| 67091 | 710 | hence "\<not> (a < b)" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 711 | by (simp add: not_less inverse_le_imp_le [OF _ apos]) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 712 | thus False by (rule notE [OF _ less]) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 713 | qed | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 714 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 715 | lemma inverse_less_imp_less: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 716 | "inverse a < inverse b \<Longrightarrow> 0 < a \<Longrightarrow> b < a" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 717 | apply (simp add: less_le [of "inverse a"] less_le [of "b"]) | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 718 | apply (force dest!: inverse_le_imp_le nonzero_inverse_eq_imp_eq) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 719 | done | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 720 | |
| 60758 | 721 | text\<open>Both premises are essential. Consider -1 and 1.\<close> | 
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 722 | lemma inverse_less_iff_less [simp]: | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 723 | "0 < a \<Longrightarrow> 0 < b \<Longrightarrow> inverse a < inverse b \<longleftrightarrow> b < a" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 724 | by (blast intro: less_imp_inverse_less dest: inverse_less_imp_less) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 725 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 726 | lemma le_imp_inverse_le: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 727 | "a \<le> b \<Longrightarrow> 0 < a \<Longrightarrow> inverse b \<le> inverse a" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 728 | by (force simp add: le_less less_imp_inverse_less) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 729 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 730 | lemma inverse_le_iff_le [simp]: | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 731 | "0 < a \<Longrightarrow> 0 < b \<Longrightarrow> inverse a \<le> inverse b \<longleftrightarrow> b \<le> a" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 732 | by (blast intro: le_imp_inverse_le dest: inverse_le_imp_le) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 733 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 734 | |
| 60758 | 735 | text\<open>These results refer to both operands being negative. The opposite-sign | 
| 736 | case is trivial, since inverse preserves signs.\<close> | |
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 737 | lemma inverse_le_imp_le_neg: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 738 | "inverse a \<le> inverse b \<Longrightarrow> b < 0 \<Longrightarrow> b \<le> a" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 739 | apply (rule classical) | 
| 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 740 | apply (subgoal_tac "a < 0") | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 741 | prefer 2 apply force | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 742 | apply (insert inverse_le_imp_le [of "-b" "-a"]) | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 743 | apply (simp add: nonzero_inverse_minus_eq) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 744 | done | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 745 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 746 | lemma less_imp_inverse_less_neg: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 747 | "a < b \<Longrightarrow> b < 0 \<Longrightarrow> inverse b < inverse a" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 748 | apply (subgoal_tac "a < 0") | 
| 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 749 | prefer 2 apply (blast intro: less_trans) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 750 | apply (insert less_imp_inverse_less [of "-b" "-a"]) | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 751 | apply (simp add: nonzero_inverse_minus_eq) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 752 | done | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 753 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 754 | lemma inverse_less_imp_less_neg: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 755 | "inverse a < inverse b \<Longrightarrow> b < 0 \<Longrightarrow> b < a" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 756 | apply (rule classical) | 
| 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 757 | apply (subgoal_tac "a < 0") | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 758 | prefer 2 | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 759 | apply force | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 760 | apply (insert inverse_less_imp_less [of "-b" "-a"]) | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 761 | apply (simp add: nonzero_inverse_minus_eq) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 762 | done | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 763 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 764 | lemma inverse_less_iff_less_neg [simp]: | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 765 | "a < 0 \<Longrightarrow> b < 0 \<Longrightarrow> inverse a < inverse b \<longleftrightarrow> b < a" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 766 | apply (insert inverse_less_iff_less [of "-b" "-a"]) | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 767 | apply (simp del: inverse_less_iff_less | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 768 | add: nonzero_inverse_minus_eq) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 769 | done | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 770 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 771 | lemma le_imp_inverse_le_neg: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 772 | "a \<le> b \<Longrightarrow> b < 0 ==> inverse b \<le> inverse a" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 773 | by (force simp add: le_less less_imp_inverse_less_neg) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 774 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 775 | lemma inverse_le_iff_le_neg [simp]: | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 776 | "a < 0 \<Longrightarrow> b < 0 \<Longrightarrow> inverse a \<le> inverse b \<longleftrightarrow> b \<le> a" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 777 | by (blast intro: le_imp_inverse_le_neg dest: inverse_le_imp_le_neg) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 778 | |
| 36774 | 779 | lemma one_less_inverse: | 
| 780 | "0 < a \<Longrightarrow> a < 1 \<Longrightarrow> 1 < inverse a" | |
| 781 | using less_imp_inverse_less [of a 1, unfolded inverse_1] . | |
| 782 | ||
| 783 | lemma one_le_inverse: | |
| 784 | "0 < a \<Longrightarrow> a \<le> 1 \<Longrightarrow> 1 \<le> inverse a" | |
| 785 | using le_imp_inverse_le [of a 1, unfolded inverse_1] . | |
| 786 | ||
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 787 | lemma pos_le_divide_eq [field_simps]: | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 788 | assumes "0 < c" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 789 | shows "a \<le> b / c \<longleftrightarrow> a * c \<le> b" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 790 | proof - | 
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 791 | from assms have "a \<le> b / c \<longleftrightarrow> a * c \<le> (b / c) * c" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 792 | using mult_le_cancel_right [of a c "b * inverse c"] by (auto simp add: field_simps) | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 793 | also have "... \<longleftrightarrow> a * c \<le> b" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 794 | by (simp add: less_imp_not_eq2 [OF assms] divide_inverse mult.assoc) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 795 | finally show ?thesis . | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 796 | qed | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 797 | |
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 798 | lemma pos_less_divide_eq [field_simps]: | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 799 | assumes "0 < c" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 800 | shows "a < b / c \<longleftrightarrow> a * c < b" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 801 | proof - | 
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 802 | from assms have "a < b / c \<longleftrightarrow> a * c < (b / c) * c" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 803 | using mult_less_cancel_right [of a c "b / c"] by auto | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 804 | also have "... = (a*c < b)" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 805 | by (simp add: less_imp_not_eq2 [OF assms] divide_inverse mult.assoc) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 806 | finally show ?thesis . | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 807 | qed | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 808 | |
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 809 | lemma neg_less_divide_eq [field_simps]: | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 810 | assumes "c < 0" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 811 | shows "a < b / c \<longleftrightarrow> b < a * c" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 812 | proof - | 
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 813 | from assms have "a < b / c \<longleftrightarrow> (b / c) * c < a * c" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 814 | using mult_less_cancel_right [of "b / c" c a] by auto | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 815 | also have "... \<longleftrightarrow> b < a * c" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 816 | by (simp add: less_imp_not_eq [OF assms] divide_inverse mult.assoc) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 817 | finally show ?thesis . | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 818 | qed | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 819 | |
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 820 | lemma neg_le_divide_eq [field_simps]: | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 821 | assumes "c < 0" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 822 | shows "a \<le> b / c \<longleftrightarrow> b \<le> a * c" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 823 | proof - | 
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 824 | from assms have "a \<le> b / c \<longleftrightarrow> (b / c) * c \<le> a * c" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 825 | using mult_le_cancel_right [of "b * inverse c" c a] by (auto simp add: field_simps) | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 826 | also have "... \<longleftrightarrow> b \<le> a * c" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 827 | by (simp add: less_imp_not_eq [OF assms] divide_inverse mult.assoc) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 828 | finally show ?thesis . | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 829 | qed | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 830 | |
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 831 | lemma pos_divide_le_eq [field_simps]: | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 832 | assumes "0 < c" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 833 | shows "b / c \<le> a \<longleftrightarrow> b \<le> a * c" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 834 | proof - | 
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 835 | from assms have "b / c \<le> a \<longleftrightarrow> (b / c) * c \<le> a * c" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 836 | using mult_le_cancel_right [of "b / c" c a] by auto | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 837 | also have "... \<longleftrightarrow> b \<le> a * c" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 838 | by (simp add: less_imp_not_eq2 [OF assms] divide_inverse mult.assoc) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 839 | finally show ?thesis . | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 840 | qed | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 841 | |
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 842 | lemma pos_divide_less_eq [field_simps]: | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 843 | assumes "0 < c" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 844 | shows "b / c < a \<longleftrightarrow> b < a * c" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 845 | proof - | 
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 846 | from assms have "b / c < a \<longleftrightarrow> (b / c) * c < a * c" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 847 | using mult_less_cancel_right [of "b / c" c a] by auto | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 848 | also have "... \<longleftrightarrow> b < a * c" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 849 | by (simp add: less_imp_not_eq2 [OF assms] divide_inverse mult.assoc) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 850 | finally show ?thesis . | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 851 | qed | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 852 | |
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 853 | lemma neg_divide_le_eq [field_simps]: | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 854 | assumes "c < 0" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 855 | shows "b / c \<le> a \<longleftrightarrow> a * c \<le> b" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 856 | proof - | 
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 857 | from assms have "b / c \<le> a \<longleftrightarrow> a * c \<le> (b / c) * c" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 858 | using mult_le_cancel_right [of a c "b / c"] by auto | 
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 859 | also have "... \<longleftrightarrow> a * c \<le> b" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 860 | by (simp add: less_imp_not_eq [OF assms] divide_inverse mult.assoc) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 861 | finally show ?thesis . | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 862 | qed | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 863 | |
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 864 | lemma neg_divide_less_eq [field_simps]: | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 865 | assumes "c < 0" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 866 | shows "b / c < a \<longleftrightarrow> a * c < b" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 867 | proof - | 
| 59546 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 868 | from assms have "b / c < a \<longleftrightarrow> a * c < b / c * c" | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 869 | using mult_less_cancel_right [of a c "b / c"] by auto | 
| 
3850a2d20f19
times_divide_eq rules are already [simp] despite of comment
 haftmann parents: 
59535diff
changeset | 870 | also have "... \<longleftrightarrow> a * c < b" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 871 | by (simp add: less_imp_not_eq [OF assms] divide_inverse mult.assoc) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 872 | finally show ?thesis . | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 873 | qed | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 874 | |
| 61799 | 875 | text\<open>The following \<open>field_simps\<close> rules are necessary, as minus is always moved atop of | 
| 60758 | 876 | division but we want to get rid of division.\<close> | 
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 877 | |
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 878 | 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: 
56479diff
changeset | 879 | unfolding minus_divide_left by (rule pos_le_divide_eq) | 
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 880 | |
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 881 | 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: 
56479diff
changeset | 882 | unfolding minus_divide_left by (rule neg_le_divide_eq) | 
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 883 | |
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 884 | 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: 
56479diff
changeset | 885 | unfolding minus_divide_left by (rule pos_less_divide_eq) | 
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 886 | |
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 887 | 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: 
56479diff
changeset | 888 | unfolding minus_divide_left by (rule neg_less_divide_eq) | 
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 889 | |
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 890 | 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: 
56479diff
changeset | 891 | unfolding minus_divide_left by (rule pos_divide_less_eq) | 
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 892 | |
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 893 | 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: 
56479diff
changeset | 894 | unfolding minus_divide_left by (rule neg_divide_less_eq) | 
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 895 | |
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 896 | 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: 
56479diff
changeset | 897 | unfolding minus_divide_left by (rule pos_divide_le_eq) | 
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 898 | |
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 899 | 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: 
56479diff
changeset | 900 | unfolding minus_divide_left by (rule neg_divide_le_eq) | 
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 901 | |
| 56365 
713f9b9a7e51
New theorems for extracting quotients
 paulson <lp15@cam.ac.uk> parents: 
55718diff
changeset | 902 | lemma frac_less_eq: | 
| 
713f9b9a7e51
New theorems for extracting quotients
 paulson <lp15@cam.ac.uk> parents: 
55718diff
changeset | 903 | "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: 
55718diff
changeset | 904 | by (subst less_iff_diff_less_0) (simp add: diff_frac_eq ) | 
| 
713f9b9a7e51
New theorems for extracting quotients
 paulson <lp15@cam.ac.uk> parents: 
55718diff
changeset | 905 | |
| 
713f9b9a7e51
New theorems for extracting quotients
 paulson <lp15@cam.ac.uk> parents: 
55718diff
changeset | 906 | lemma frac_le_eq: | 
| 
713f9b9a7e51
New theorems for extracting quotients
 paulson <lp15@cam.ac.uk> parents: 
55718diff
changeset | 907 | "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: 
55718diff
changeset | 908 | by (subst le_iff_diff_le_0) (simp add: diff_frac_eq ) | 
| 
713f9b9a7e51
New theorems for extracting quotients
 paulson <lp15@cam.ac.uk> parents: 
55718diff
changeset | 909 | |
| 56541 | 910 | lemma divide_pos_pos[simp]: | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 911 | "0 < x ==> 0 < y ==> 0 < x / y" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 912 | by(simp add:field_simps) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 913 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 914 | lemma divide_nonneg_pos: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 915 | "0 <= x ==> 0 < y ==> 0 <= x / y" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 916 | by(simp add:field_simps) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 917 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 918 | lemma divide_neg_pos: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 919 | "x < 0 ==> 0 < y ==> x / y < 0" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 920 | by(simp add:field_simps) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 921 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 922 | lemma divide_nonpos_pos: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 923 | "x <= 0 ==> 0 < y ==> x / y <= 0" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 924 | by(simp add:field_simps) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 925 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 926 | lemma divide_pos_neg: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 927 | "0 < x ==> y < 0 ==> x / y < 0" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 928 | by(simp add:field_simps) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 929 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 930 | lemma divide_nonneg_neg: | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 931 | "0 <= x ==> y < 0 ==> x / y <= 0" | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 932 | by(simp add:field_simps) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 933 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 934 | lemma divide_neg_neg: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 935 | "x < 0 ==> y < 0 ==> 0 < x / y" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 936 | by(simp add:field_simps) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 937 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 938 | lemma divide_nonpos_neg: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 939 | "x <= 0 ==> y < 0 ==> 0 <= x / y" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 940 | by(simp add:field_simps) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 941 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 942 | lemma divide_strict_right_mono: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 943 | "[|a < b; 0 < c|] ==> a / c < b / c" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 944 | by (simp add: less_imp_not_eq2 divide_inverse mult_strict_right_mono | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 945 | positive_imp_inverse_positive) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 946 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 947 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 948 | lemma divide_strict_right_mono_neg: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 949 | "[|b < a; c < 0|] ==> a / c < b / c" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 950 | apply (drule divide_strict_right_mono [of _ _ "-c"], simp) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 951 | apply (simp add: less_imp_not_eq nonzero_minus_divide_right [symmetric]) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 952 | done | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 953 | |
| 69593 | 954 | text\<open>The last premise ensures that \<^term>\<open>a\<close> and \<^term>\<open>b\<close> | 
| 60758 | 955 | have the same sign\<close> | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 956 | lemma divide_strict_left_mono: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 957 | "[|b < a; 0 < c; 0 < a*b|] ==> c / a < c / b" | 
| 44921 | 958 | 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: 
35828diff
changeset | 959 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 960 | lemma divide_left_mono: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 961 | "[|b \<le> a; 0 \<le> c; 0 < a*b|] ==> c / a \<le> c / b" | 
| 44921 | 962 | by (auto simp: field_simps zero_less_mult_iff mult_right_mono) | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 963 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 964 | lemma divide_strict_left_mono_neg: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 965 | "[|a < b; c < 0; 0 < a*b|] ==> c / a < c / b" | 
| 44921 | 966 | 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: 
35828diff
changeset | 967 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 968 | lemma mult_imp_div_pos_le: "0 < y ==> x <= z * y ==> | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 969 | x / y <= z" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 970 | by (subst pos_divide_le_eq, assumption+) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 971 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 972 | lemma mult_imp_le_div_pos: "0 < y ==> z * y <= x ==> | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 973 | z <= x / y" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 974 | by(simp add:field_simps) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 975 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 976 | lemma mult_imp_div_pos_less: "0 < y ==> x < z * y ==> | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 977 | x / y < z" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 978 | by(simp add:field_simps) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 979 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 980 | lemma mult_imp_less_div_pos: "0 < y ==> z * y < x ==> | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 981 | z < x / y" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 982 | by(simp add:field_simps) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 983 | |
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 984 | lemma frac_le: "0 <= x ==> | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 985 | x <= y ==> 0 < w ==> w <= z ==> x / z <= y / w" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 986 | apply (rule mult_imp_div_pos_le) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 987 | apply simp | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 988 | apply (subst times_divide_eq_left) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 989 | apply (rule mult_imp_le_div_pos, assumption) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 990 | apply (rule mult_mono) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 991 | apply simp_all | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 992 | done | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 993 | |
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 994 | lemma frac_less: "0 <= x ==> | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 995 | x < y ==> 0 < w ==> w <= z ==> x / z < y / w" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 996 | apply (rule mult_imp_div_pos_less) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 997 | apply simp | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 998 | apply (subst times_divide_eq_left) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 999 | apply (rule mult_imp_less_div_pos, assumption) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1000 | apply (erule mult_less_le_imp_less) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1001 | apply simp_all | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1002 | done | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1003 | |
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 1004 | lemma frac_less2: "0 < x ==> | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1005 | x <= y ==> 0 < w ==> w < z ==> x / z < y / w" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1006 | apply (rule mult_imp_div_pos_less) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1007 | apply simp_all | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1008 | apply (rule mult_imp_less_div_pos, assumption) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1009 | apply (erule mult_le_less_imp_less) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1010 | apply simp_all | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1011 | done | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1012 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1013 | lemma less_half_sum: "a < b ==> a < (a+b) / (1+1)" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1014 | by (simp add: field_simps zero_less_two) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1015 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1016 | lemma gt_half_sum: "a < b ==> (a+b)/(1+1) < b" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1017 | by (simp add: field_simps zero_less_two) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1018 | |
| 53215 
5e47c31c6f7c
renamed typeclass dense_linorder to unbounded_dense_linorder
 hoelzl parents: 
52435diff
changeset | 1019 | subclass unbounded_dense_linorder | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1020 | proof | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1021 | fix x y :: 'a | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 1022 | from less_add_one show "\<exists>y. x < y" .. | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1023 | 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: 
54147diff
changeset | 1024 | then have "x - 1 < x + 1 - 1" by simp | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1025 | then have "x - 1 < x" by (simp add: algebra_simps) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1026 | then show "\<exists>y. y < x" .. | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1027 | 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: 
35828diff
changeset | 1028 | qed | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1029 | |
| 64290 | 1030 | subclass field_abs_sgn .. | 
| 1031 | ||
| 64329 | 1032 | lemma inverse_sgn [simp]: | 
| 1033 | "inverse (sgn a) = sgn a" | |
| 1034 | by (cases a 0 rule: linorder_cases) simp_all | |
| 1035 | ||
| 1036 | lemma divide_sgn [simp]: | |
| 1037 | "a / sgn b = a * sgn b" | |
| 1038 | by (cases b 0 rule: linorder_cases) simp_all | |
| 1039 | ||
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1040 | lemma nonzero_abs_inverse: | 
| 64290 | 1041 | "a \<noteq> 0 ==> \<bar>inverse a\<bar> = inverse \<bar>a\<bar>" | 
| 1042 | by (rule abs_inverse) | |
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1043 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1044 | lemma nonzero_abs_divide: | 
| 64290 | 1045 | "b \<noteq> 0 ==> \<bar>a / b\<bar> = \<bar>a\<bar> / \<bar>b\<bar>" | 
| 1046 | by (rule abs_divide) | |
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1047 | |
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1048 | lemma field_le_epsilon: | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1049 | assumes e: "\<And>e. 0 < e \<Longrightarrow> x \<le> y + e" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1050 | shows "x \<le> y" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1051 | proof (rule dense_le) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1052 | fix t assume "t < x" | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1053 | hence "0 < x - t" by (simp add: less_diff_eq) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1054 | 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: 
35828diff
changeset | 1055 | then have "0 \<le> y - t" by (simp only: add_le_cancel_left) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1056 | then show "t \<le> y" by (simp add: algebra_simps) | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1057 | qed | 
| 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1058 | |
| 14277 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 1059 | lemma inverse_positive_iff_positive [simp]: | 
| 36409 | 1060 | "(0 < inverse a) = (0 < a)" | 
| 21328 | 1061 | apply (cases "a = 0", simp) | 
| 14277 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 1062 | 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: 
14272diff
changeset | 1063 | done | 
| 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 1064 | |
| 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 1065 | lemma inverse_negative_iff_negative [simp]: | 
| 36409 | 1066 | "(inverse a < 0) = (a < 0)" | 
| 21328 | 1067 | apply (cases "a = 0", simp) | 
| 14277 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 1068 | 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: 
14272diff
changeset | 1069 | done | 
| 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 1070 | |
| 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 1071 | lemma inverse_nonnegative_iff_nonnegative [simp]: | 
| 36409 | 1072 | "0 \<le> inverse a \<longleftrightarrow> 0 \<le> a" | 
| 1073 | by (simp add: not_less [symmetric]) | |
| 14277 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 1074 | |
| 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 1075 | lemma inverse_nonpositive_iff_nonpositive [simp]: | 
| 36409 | 1076 | "inverse a \<le> 0 \<longleftrightarrow> a \<le> 0" | 
| 1077 | by (simp add: not_less [symmetric]) | |
| 14277 
ad66687ece6e
more field division lemmas transferred from Real to Ring_and_Field
 paulson parents: 
14272diff
changeset | 1078 | |
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1079 | 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: 
56479diff
changeset | 1080 | using less_trans[of 1 x 0 for x] | 
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1081 | 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: 
14353diff
changeset | 1082 | |
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1083 | lemma one_le_inverse_iff: "1 \<le> inverse x \<longleftrightarrow> 0 < x \<and> x \<le> 1" | 
| 36409 | 1084 | proof (cases "x = 1") | 
| 1085 | case True then show ?thesis by simp | |
| 1086 | next | |
| 1087 | case False then have "inverse x \<noteq> 1" by simp | |
| 1088 | then have "1 \<noteq> inverse x" by blast | |
| 1089 | then have "1 \<le> inverse x \<longleftrightarrow> 1 < inverse x" by (simp add: le_less) | |
| 1090 | with False show ?thesis by (auto simp add: one_less_inverse_iff) | |
| 1091 | qed | |
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: 
14353diff
changeset | 1092 | |
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1093 | lemma inverse_less_1_iff: "inverse x < 1 \<longleftrightarrow> x \<le> 0 \<or> 1 < x" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 1094 | by (simp add: not_le [symmetric] one_le_inverse_iff) | 
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: 
14353diff
changeset | 1095 | |
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1096 | lemma inverse_le_1_iff: "inverse x \<le> 1 \<longleftrightarrow> x \<le> 0 \<or> 1 \<le> x" | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 1097 | by (simp add: not_less [symmetric] one_less_inverse_iff) | 
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: 
14353diff
changeset | 1098 | |
| 56481 | 1099 | lemma [divide_simps]: | 
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1100 | 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: 
56479diff
changeset | 1101 | 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: 
56479diff
changeset | 1102 | 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: 
56479diff
changeset | 1103 | 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)" | 
| 56481 | 1104 | and le_minus_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)" | 
| 1105 | and minus_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)" | |
| 1106 | and less_minus_divide_eq: "a < - (b / c) \<longleftrightarrow> (if 0 < c then a * c < - b else if c < 0 then - b < a * c else a < 0)" | |
| 1107 | and minus_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)" | |
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1108 | by (auto simp: field_simps not_less dest: antisym) | 
| 14288 | 1109 | |
| 60758 | 1110 | text \<open>Division and Signs\<close> | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1111 | |
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1112 | lemma | 
| 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1113 | 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: 
56479diff
changeset | 1114 | 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: 
56479diff
changeset | 1115 | 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: 
56479diff
changeset | 1116 | 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" | 
| 56481 | 1117 | by (auto simp add: divide_simps) | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1118 | |
| 60758 | 1119 | text \<open>Division and the Number One\<close> | 
| 14353 
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
 paulson parents: 
14348diff
changeset | 1120 | |
| 60758 | 1121 | text\<open>Simplify expressions equated with 1\<close> | 
| 14353 
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
 paulson parents: 
14348diff
changeset | 1122 | |
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1123 | 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: 
56479diff
changeset | 1124 | by (cases "a = 0") (auto simp: field_simps) | 
| 14353 
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
 paulson parents: 
14348diff
changeset | 1125 | |
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1126 | 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: 
56479diff
changeset | 1127 | 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: 
14348diff
changeset | 1128 | |
| 61799 | 1129 | text\<open>Simplify expressions such as \<open>0 < 1/x\<close> to \<open>0 < x\<close>\<close> | 
| 36423 | 1130 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1131 | lemma zero_le_divide_1_iff [simp]: | 
| 36423 | 1132 | "0 \<le> 1 / a \<longleftrightarrow> 0 \<le> a" | 
| 1133 | by (simp add: zero_le_divide_iff) | |
| 17085 | 1134 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1135 | lemma zero_less_divide_1_iff [simp]: | 
| 36423 | 1136 | "0 < 1 / a \<longleftrightarrow> 0 < a" | 
| 1137 | by (simp add: zero_less_divide_iff) | |
| 1138 | ||
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1139 | lemma divide_le_0_1_iff [simp]: | 
| 36423 | 1140 | "1 / a \<le> 0 \<longleftrightarrow> a \<le> 0" | 
| 1141 | by (simp add: divide_le_0_iff) | |
| 1142 | ||
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1143 | lemma divide_less_0_1_iff [simp]: | 
| 36423 | 1144 | "1 / a < 0 \<longleftrightarrow> a < 0" | 
| 1145 | by (simp add: divide_less_0_iff) | |
| 14353 
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
 paulson parents: 
14348diff
changeset | 1146 | |
| 14293 | 1147 | lemma divide_right_mono: | 
| 36409 | 1148 | "[|a \<le> b; 0 \<le> c|] ==> a/c \<le> b/c" | 
| 1149 | by (force simp add: divide_strict_right_mono le_less) | |
| 14293 | 1150 | |
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 1151 | lemma divide_right_mono_neg: "a <= b | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1152 | ==> c <= 0 ==> b / c <= a / c" | 
| 23482 | 1153 | apply (drule divide_right_mono [of _ _ "- c"]) | 
| 56479 
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
 hoelzl parents: 
56445diff
changeset | 1154 | apply auto | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1155 | done | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1156 | |
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 1157 | lemma divide_left_mono_neg: "a <= b | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1158 | ==> c <= 0 ==> 0 < a * b ==> c / a <= c / b" | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1159 | apply (drule divide_left_mono [of _ _ "- c"]) | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56571diff
changeset | 1160 | apply (auto simp add: mult.commute) | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1161 | done | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1162 | |
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1163 | 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: 
56479diff
changeset | 1164 | 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: 
56479diff
changeset | 1165 | (auto simp add: field_simps zero_less_mult_iff mult_le_0_iff) | 
| 42904 | 1166 | |
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1167 | lemma inverse_less_iff: "inverse a < inverse b \<longleftrightarrow> (0 < a * b \<longrightarrow> b < a) \<and> (a * b \<le> 0 \<longrightarrow> a < b)" | 
| 42904 | 1168 | by (subst less_le) (auto simp: inverse_le_iff) | 
| 1169 | ||
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1170 | lemma divide_le_cancel: "a / c \<le> b / c \<longleftrightarrow> (0 < c \<longrightarrow> a \<le> b) \<and> (c < 0 \<longrightarrow> b \<le> a)" | 
| 42904 | 1171 | by (simp add: divide_inverse mult_le_cancel_right) | 
| 1172 | ||
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 1173 | 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 | 1174 | by (auto simp add: divide_inverse mult_less_cancel_right) | 
| 1175 | ||
| 60758 | 1176 | text\<open>Simplify quotients that are compared with the value 1.\<close> | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1177 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1178 | lemma le_divide_eq_1: | 
| 67091 | 1179 | "(1 \<le> b / a) = ((0 < a \<and> a \<le> b) \<or> (a < 0 \<and> b \<le> a))" | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1180 | by (auto simp add: le_divide_eq) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1181 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1182 | lemma divide_le_eq_1: | 
| 67091 | 1183 | "(b / a \<le> 1) = ((0 < a \<and> b \<le> a) \<or> (a < 0 \<and> a \<le> b) \<or> a=0)" | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1184 | by (auto simp add: divide_le_eq) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1185 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1186 | lemma less_divide_eq_1: | 
| 67091 | 1187 | "(1 < b / a) = ((0 < a \<and> a < b) \<or> (a < 0 \<and> b < a))" | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1188 | by (auto simp add: less_divide_eq) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1189 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1190 | lemma divide_less_eq_1: | 
| 67091 | 1191 | "(b / a < 1) = ((0 < a \<and> b < a) \<or> (a < 0 \<and> a < b) \<or> a=0)" | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1192 | by (auto simp add: divide_less_eq) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1193 | |
| 56571 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1194 | lemma divide_nonneg_nonneg [simp]: | 
| 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1195 | "0 \<le> x \<Longrightarrow> 0 \<le> y \<Longrightarrow> 0 \<le> x / y" | 
| 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1196 | by (auto simp add: divide_simps) | 
| 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1197 | |
| 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1198 | lemma divide_nonpos_nonpos: | 
| 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1199 | "x \<le> 0 \<Longrightarrow> y \<le> 0 \<Longrightarrow> 0 \<le> x / y" | 
| 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1200 | by (auto simp add: divide_simps) | 
| 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1201 | |
| 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1202 | lemma divide_nonneg_nonpos: | 
| 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1203 | "0 \<le> x \<Longrightarrow> y \<le> 0 \<Longrightarrow> x / y \<le> 0" | 
| 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1204 | by (auto simp add: divide_simps) | 
| 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1205 | |
| 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1206 | lemma divide_nonpos_nonneg: | 
| 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1207 | "x \<le> 0 \<Longrightarrow> 0 \<le> y \<Longrightarrow> x / y \<le> 0" | 
| 
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
 hoelzl parents: 
56541diff
changeset | 1208 | by (auto simp add: divide_simps) | 
| 23389 | 1209 | |
| 60758 | 1210 | text \<open>Conditional Simplification Rules: No Case Splits\<close> | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1211 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1212 | lemma le_divide_eq_1_pos [simp]: | 
| 36409 | 1213 | "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: 
16568diff
changeset | 1214 | by (auto simp add: le_divide_eq) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1215 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1216 | lemma le_divide_eq_1_neg [simp]: | 
| 36409 | 1217 | "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: 
16568diff
changeset | 1218 | by (auto simp add: le_divide_eq) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1219 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1220 | lemma divide_le_eq_1_pos [simp]: | 
| 36409 | 1221 | "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: 
16568diff
changeset | 1222 | by (auto simp add: divide_le_eq) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1223 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1224 | lemma divide_le_eq_1_neg [simp]: | 
| 36409 | 1225 | "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: 
16568diff
changeset | 1226 | by (auto simp add: divide_le_eq) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1227 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1228 | lemma less_divide_eq_1_pos [simp]: | 
| 36409 | 1229 | "0 < a \<Longrightarrow> (1 < b/a) = (a < b)" | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1230 | by (auto simp add: less_divide_eq) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1231 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1232 | lemma less_divide_eq_1_neg [simp]: | 
| 36409 | 1233 | "a < 0 \<Longrightarrow> (1 < b/a) = (b < a)" | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1234 | by (auto simp add: less_divide_eq) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1235 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1236 | lemma divide_less_eq_1_pos [simp]: | 
| 36409 | 1237 | "0 < a \<Longrightarrow> (b/a < 1) = (b < a)" | 
| 18649 
bb99c2e705ca
tidied, and added missing thm divide_less_eq_1_neg
 paulson parents: 
18623diff
changeset | 1238 | by (auto simp add: divide_less_eq) | 
| 
bb99c2e705ca
tidied, and added missing thm divide_less_eq_1_neg
 paulson parents: 
18623diff
changeset | 1239 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1240 | lemma divide_less_eq_1_neg [simp]: | 
| 61941 | 1241 | "a < 0 \<Longrightarrow> b/a < 1 \<longleftrightarrow> a < b" | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1242 | by (auto simp add: divide_less_eq) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1243 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1244 | lemma eq_divide_eq_1 [simp]: | 
| 67091 | 1245 | "(1 = b/a) = ((a \<noteq> 0 \<and> a = b))" | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1246 | by (auto simp add: eq_divide_eq) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1247 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53374diff
changeset | 1248 | lemma divide_eq_eq_1 [simp]: | 
| 67091 | 1249 | "(b/a = 1) = ((a \<noteq> 0 \<and> a = b))" | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1250 | by (auto simp add: divide_eq_eq) | 
| 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1251 | |
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 1252 | lemma abs_div_pos: "0 < y ==> | 
| 36301 
72f4d079ebf8
more localization; factored out lemmas for division_ring
 haftmann parents: 
35828diff
changeset | 1253 | \<bar>x\<bar> / y = \<bar>x / y\<bar>" | 
| 25304 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 1254 | apply (subst abs_divide) | 
| 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 1255 | apply (simp add: order_less_imp_le) | 
| 
7491c00f0915
removed subclass edge ordered_ring < lordered_ring
 haftmann parents: 
25267diff
changeset | 1256 | done | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
16568diff
changeset | 1257 | |
| 67091 | 1258 | lemma zero_le_divide_abs_iff [simp]: "(0 \<le> a / \<bar>b\<bar>) = (0 \<le> a \<or> b = 0)" | 
| 55718 
34618f031ba9
A few lemmas about summations, etc.
 paulson <lp15@cam.ac.uk> parents: 
54230diff
changeset | 1259 | by (auto simp: zero_le_divide_iff) | 
| 
34618f031ba9
A few lemmas about summations, etc.
 paulson <lp15@cam.ac.uk> parents: 
54230diff
changeset | 1260 | |
| 67091 | 1261 | lemma divide_le_0_abs_iff [simp]: "(a / \<bar>b\<bar> \<le> 0) = (a \<le> 0 \<or> b = 0)" | 
| 55718 
34618f031ba9
A few lemmas about summations, etc.
 paulson <lp15@cam.ac.uk> parents: 
54230diff
changeset | 1262 | by (auto simp: divide_le_0_iff) | 
| 
34618f031ba9
A few lemmas about summations, etc.
 paulson <lp15@cam.ac.uk> parents: 
54230diff
changeset | 1263 | |
| 35579 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 hoelzl parents: 
35216diff
changeset | 1264 | lemma field_le_mult_one_interval: | 
| 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 hoelzl parents: 
35216diff
changeset | 1265 | 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: 
35216diff
changeset | 1266 | shows "x \<le> y" | 
| 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 hoelzl parents: 
35216diff
changeset | 1267 | proof (cases "0 < x") | 
| 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 hoelzl parents: 
35216diff
changeset | 1268 | assume "0 < x" | 
| 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 hoelzl parents: 
35216diff
changeset | 1269 | thus ?thesis | 
| 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 hoelzl parents: 
35216diff
changeset | 1270 | using dense_le_bounded[of 0 1 "y/x"] * | 
| 60758 | 1271 | unfolding le_divide_eq if_P[OF \<open>0 < x\<close>] by simp | 
| 35579 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 hoelzl parents: 
35216diff
changeset | 1272 | next | 
| 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 hoelzl parents: 
35216diff
changeset | 1273 | assume "\<not>0 < x" hence "x \<le> 0" by simp | 
| 61076 | 1274 | obtain s::'a where s: "0 < s" "s < 1" using dense[of 0 "1::'a"] by auto | 
| 60758 | 1275 | hence "x \<le> s * x" using mult_le_cancel_right[of 1 x s] \<open>x \<le> 0\<close> by auto | 
| 35579 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 hoelzl parents: 
35216diff
changeset | 1276 | also note *[OF s] | 
| 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 hoelzl parents: 
35216diff
changeset | 1277 | finally show ?thesis . | 
| 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 hoelzl parents: 
35216diff
changeset | 1278 | qed | 
| 35090 
88cc65ae046e
moved lemma field_le_epsilon from Real.thy to Fields.thy
 haftmann parents: 
35084diff
changeset | 1279 | |
| 69593 | 1280 | text\<open>For creating values between \<^term>\<open>u\<close> and \<^term>\<open>v\<close>.\<close> | 
| 63952 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
62481diff
changeset | 1281 | lemma scaling_mono: | 
| 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
62481diff
changeset | 1282 | assumes "u \<le> v" "0 \<le> r" "r \<le> s" | 
| 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
62481diff
changeset | 1283 | shows "u + r * (v - u) / s \<le> v" | 
| 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
62481diff
changeset | 1284 | proof - | 
| 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
62481diff
changeset | 1285 | have "r/s \<le> 1" using assms | 
| 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
62481diff
changeset | 1286 | using divide_le_eq_1 by fastforce | 
| 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
62481diff
changeset | 1287 | then have "(r/s) * (v - u) \<le> 1 * (v - u)" | 
| 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
62481diff
changeset | 1288 | apply (rule mult_right_mono) | 
| 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
62481diff
changeset | 1289 | using assms by simp | 
| 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
62481diff
changeset | 1290 | then show ?thesis | 
| 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
62481diff
changeset | 1291 | by (simp add: field_simps) | 
| 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
62481diff
changeset | 1292 | qed | 
| 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
62481diff
changeset | 1293 | |
| 36409 | 1294 | end | 
| 1295 | ||
| 61238 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1296 | text \<open>Min/max Simplification Rules\<close> | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1297 | |
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1298 | lemma min_mult_distrib_left: | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1299 | fixes x::"'a::linordered_idom" | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1300 | shows "p * min x y = (if 0 \<le> p then min (p*x) (p*y) else max (p*x) (p*y))" | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1301 | by (auto simp add: min_def max_def mult_le_cancel_left) | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1302 | |
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1303 | lemma min_mult_distrib_right: | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1304 | fixes x::"'a::linordered_idom" | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1305 | shows "min x y * p = (if 0 \<le> p then min (x*p) (y*p) else max (x*p) (y*p))" | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1306 | by (auto simp add: min_def max_def mult_le_cancel_right) | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1307 | |
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1308 | lemma min_divide_distrib_right: | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1309 | fixes x::"'a::linordered_field" | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1310 | shows "min x y / p = (if 0 \<le> p then min (x/p) (y/p) else max (x/p) (y/p))" | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1311 | by (simp add: min_mult_distrib_right divide_inverse) | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1312 | |
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1313 | lemma max_mult_distrib_left: | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1314 | fixes x::"'a::linordered_idom" | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1315 | shows "p * max x y = (if 0 \<le> p then max (p*x) (p*y) else min (p*x) (p*y))" | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1316 | by (auto simp add: min_def max_def mult_le_cancel_left) | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1317 | |
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1318 | lemma max_mult_distrib_right: | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1319 | fixes x::"'a::linordered_idom" | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1320 | shows "max x y * p = (if 0 \<le> p then max (x*p) (y*p) else min (x*p) (y*p))" | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1321 | by (auto simp add: min_def max_def mult_le_cancel_right) | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1322 | |
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1323 | lemma max_divide_distrib_right: | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1324 | fixes x::"'a::linordered_field" | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1325 | shows "max x y / p = (if 0 \<le> p then max (x/p) (y/p) else min (x/p) (y/p))" | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1326 | by (simp add: max_mult_distrib_right divide_inverse) | 
| 
e3d8a313a649
Useful facts about min/max, etc.
 paulson <lp15@cam.ac.uk> parents: 
61076diff
changeset | 1327 | |
| 59557 | 1328 | hide_fact (open) field_inverse field_divide_inverse field_inverse_zero | 
| 1329 | ||
| 52435 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
44921diff
changeset | 1330 | code_identifier | 
| 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
44921diff
changeset | 1331 | code_module Fields \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59557diff
changeset | 1332 | |
| 14265 
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
 paulson parents: diff
changeset | 1333 | end |