| author | wenzelm | 
| Fri, 27 Jul 2012 15:37:28 +0200 | |
| changeset 48551 | 1f20dfc22000 | 
| parent 47952 | 36a8c477dae8 | 
| child 48891 | c0eafbd55de3 | 
| permissions | -rw-r--r-- | 
| 35372 | 1 | (* Title: HOL/Rat.thy | 
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 2 | Author: Markus Wenzel, TU Muenchen | 
| 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 3 | *) | 
| 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 4 | |
| 14691 | 5 | header {* Rational numbers *}
 | 
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 6 | |
| 35372 | 7 | theory Rat | 
| 30097 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 8 | imports GCD Archimedean_Field | 
| 35343 | 9 | uses ("Tools/float_syntax.ML")
 | 
| 15131 | 10 | begin | 
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 11 | |
| 27551 | 12 | subsection {* Rational numbers as quotient *}
 | 
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 13 | |
| 27551 | 14 | subsubsection {* Construction of the type of rational numbers *}
 | 
| 18913 | 15 | |
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
20522diff
changeset | 16 | definition | 
| 47906 | 17 | ratrel :: "(int \<times> int) \<Rightarrow> (int \<times> int) \<Rightarrow> bool" where | 
| 18 | "ratrel = (\<lambda>x y. snd x \<noteq> 0 \<and> snd y \<noteq> 0 \<and> fst x * snd y = fst y * snd x)" | |
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 19 | |
| 18913 | 20 | lemma ratrel_iff [simp]: | 
| 47906 | 21 | "ratrel x y \<longleftrightarrow> snd x \<noteq> 0 \<and> snd y \<noteq> 0 \<and> fst x * snd y = fst y * snd x" | 
| 27551 | 22 | by (simp add: ratrel_def) | 
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 23 | |
| 47906 | 24 | lemma exists_ratrel_refl: "\<exists>x. ratrel x x" | 
| 25 | by (auto intro!: one_neq_zero) | |
| 18913 | 26 | |
| 47906 | 27 | lemma symp_ratrel: "symp ratrel" | 
| 28 | by (simp add: ratrel_def symp_def) | |
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 29 | |
| 47906 | 30 | lemma transp_ratrel: "transp ratrel" | 
| 31 | proof (rule transpI, unfold split_paired_all) | |
| 27551 | 32 | fix a b a' b' a'' b'' :: int | 
| 47906 | 33 | assume A: "ratrel (a, b) (a', b')" | 
| 34 | assume B: "ratrel (a', b') (a'', b'')" | |
| 27551 | 35 | have "b' * (a * b'') = b'' * (a * b')" by simp | 
| 36 | also from A have "a * b' = a' * b" by auto | |
| 37 | also have "b'' * (a' * b) = b * (a' * b'')" by simp | |
| 38 | also from B have "a' * b'' = a'' * b'" by auto | |
| 39 | also have "b * (a'' * b') = b' * (a'' * b)" by simp | |
| 40 | finally have "b' * (a * b'') = b' * (a'' * b)" . | |
| 41 | moreover from B have "b' \<noteq> 0" by auto | |
| 42 | ultimately have "a * b'' = a'' * b" by simp | |
| 47906 | 43 | with A B show "ratrel (a, b) (a'', b'')" by auto | 
| 27551 | 44 | qed | 
| 45 | ||
| 47906 | 46 | lemma part_equivp_ratrel: "part_equivp ratrel" | 
| 47 | by (rule part_equivpI [OF exists_ratrel_refl symp_ratrel transp_ratrel]) | |
| 48 | ||
| 49 | quotient_type rat = "int \<times> int" / partial: "ratrel" | |
| 50 | morphisms Rep_Rat Abs_Rat | |
| 51 | by (rule part_equivp_ratrel) | |
| 27551 | 52 | |
| 47906 | 53 | declare rat.forall_transfer [transfer_rule del] | 
| 54 | ||
| 55 | lemma forall_rat_transfer [transfer_rule]: (* TODO: generate automatically *) | |
| 56 | "(fun_rel (fun_rel cr_rat op =) op =) | |
| 57 | (transfer_bforall (\<lambda>x. snd x \<noteq> 0)) transfer_forall" | |
| 58 | using rat.forall_transfer by simp | |
| 27551 | 59 | |
| 60 | ||
| 61 | subsubsection {* Representation and basic operations *}
 | |
| 62 | ||
| 47906 | 63 | lift_definition Fract :: "int \<Rightarrow> int \<Rightarrow> rat" | 
| 64 | is "\<lambda>a b. if b = 0 then (0, 1) else (a, b)" | |
| 65 | by simp | |
| 27551 | 66 | |
| 67 | lemma eq_rat: | |
| 68 | shows "\<And>a b c d. b \<noteq> 0 \<Longrightarrow> d \<noteq> 0 \<Longrightarrow> Fract a b = Fract c d \<longleftrightarrow> a * d = c * b" | |
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 69 | and "\<And>a. Fract a 0 = Fract 0 1" | 
| 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 70 | and "\<And>a c. Fract 0 a = Fract 0 c" | 
| 47906 | 71 | by (transfer, simp)+ | 
| 27551 | 72 | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 73 | lemma Rat_cases [case_names Fract, cases type: rat]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 74 | assumes "\<And>a b. q = Fract a b \<Longrightarrow> b > 0 \<Longrightarrow> coprime a b \<Longrightarrow> C" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 75 | shows C | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 76 | proof - | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 77 | obtain a b :: int where "q = Fract a b" and "b \<noteq> 0" | 
| 47906 | 78 | by transfer simp | 
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 79 | let ?a = "a div gcd a b" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 80 | let ?b = "b div gcd a b" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 81 | from `b \<noteq> 0` have "?b * gcd a b = b" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 82 | by (simp add: dvd_div_mult_self) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 83 | with `b \<noteq> 0` have "?b \<noteq> 0" by auto | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 84 | from `q = Fract a b` `b \<noteq> 0` `?b \<noteq> 0` have q: "q = Fract ?a ?b" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 85 | by (simp add: eq_rat dvd_div_mult mult_commute [of a]) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 86 | from `b \<noteq> 0` have coprime: "coprime ?a ?b" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 87 | by (auto intro: div_gcd_coprime_int) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 88 | show C proof (cases "b > 0") | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 89 | case True | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 90 | note assms | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 91 | moreover note q | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 92 | moreover from True have "?b > 0" by (simp add: nonneg1_imp_zdiv_pos_iff) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 93 | moreover note coprime | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 94 | ultimately show C . | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 95 | next | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 96 | case False | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 97 | note assms | 
| 47906 | 98 | moreover have "q = Fract (- ?a) (- ?b)" unfolding q by transfer simp | 
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 99 | moreover from False `b \<noteq> 0` have "- ?b > 0" by (simp add: pos_imp_zdiv_neg_iff) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 100 | moreover from coprime have "coprime (- ?a) (- ?b)" by simp | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 101 | ultimately show C . | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 102 | qed | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 103 | qed | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 104 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 105 | lemma Rat_induct [case_names Fract, induct type: rat]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 106 | assumes "\<And>a b. b > 0 \<Longrightarrow> coprime a b \<Longrightarrow> P (Fract a b)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 107 | shows "P q" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 108 | using assms by (cases q) simp | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 109 | |
| 47906 | 110 | instantiation rat :: field_inverse_zero | 
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 111 | begin | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 112 | |
| 47906 | 113 | lift_definition zero_rat :: "rat" is "(0, 1)" | 
| 114 | by simp | |
| 115 | ||
| 116 | lift_definition one_rat :: "rat" is "(1, 1)" | |
| 117 | by simp | |
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 118 | |
| 47906 | 119 | lemma Zero_rat_def: "0 = Fract 0 1" | 
| 120 | by transfer simp | |
| 18913 | 121 | |
| 47906 | 122 | lemma One_rat_def: "1 = Fract 1 1" | 
| 123 | by transfer simp | |
| 124 | ||
| 125 | lift_definition plus_rat :: "rat \<Rightarrow> rat \<Rightarrow> rat" | |
| 126 | is "\<lambda>x y. (fst x * snd y + fst y * snd x, snd x * snd y)" | |
| 127 | by (clarsimp, simp add: left_distrib, simp add: mult_ac) | |
| 27551 | 128 | |
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 129 | lemma add_rat [simp]: | 
| 27551 | 130 | assumes "b \<noteq> 0" and "d \<noteq> 0" | 
| 131 | shows "Fract a b + Fract c d = Fract (a * d + c * b) (b * d)" | |
| 47906 | 132 | using assms by transfer simp | 
| 18913 | 133 | |
| 47906 | 134 | lift_definition uminus_rat :: "rat \<Rightarrow> rat" is "\<lambda>x. (- fst x, snd x)" | 
| 135 | by simp | |
| 27551 | 136 | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 137 | lemma minus_rat [simp]: "- Fract a b = Fract (- a) b" | 
| 47906 | 138 | by transfer simp | 
| 27551 | 139 | |
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 140 | lemma minus_rat_cancel [simp]: "Fract (- a) (- b) = Fract a b" | 
| 27551 | 141 | by (cases "b = 0") (simp_all add: eq_rat) | 
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 142 | |
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 143 | definition | 
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 144 | diff_rat_def: "q - r = q + - (r::rat)" | 
| 18913 | 145 | |
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 146 | lemma diff_rat [simp]: | 
| 27551 | 147 | assumes "b \<noteq> 0" and "d \<noteq> 0" | 
| 148 | shows "Fract a b - Fract c d = Fract (a * d - c * b) (b * d)" | |
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 149 | using assms by (simp add: diff_rat_def) | 
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 150 | |
| 47906 | 151 | lift_definition times_rat :: "rat \<Rightarrow> rat \<Rightarrow> rat" | 
| 152 | is "\<lambda>x y. (fst x * fst y, snd x * snd y)" | |
| 153 | by (simp add: mult_ac) | |
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 154 | |
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 155 | lemma mult_rat [simp]: "Fract a b * Fract c d = Fract (a * c) (b * d)" | 
| 47906 | 156 | by transfer simp | 
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 157 | |
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 158 | lemma mult_rat_cancel: | 
| 27551 | 159 | assumes "c \<noteq> 0" | 
| 160 | shows "Fract (c * a) (c * b) = Fract a b" | |
| 47906 | 161 | using assms by transfer simp | 
| 162 | ||
| 163 | lift_definition inverse_rat :: "rat \<Rightarrow> rat" | |
| 164 | is "\<lambda>x. if fst x = 0 then (0, 1) else (snd x, fst x)" | |
| 165 | by (auto simp add: mult_commute) | |
| 166 | ||
| 167 | lemma inverse_rat [simp]: "inverse (Fract a b) = Fract b a" | |
| 168 | by transfer simp | |
| 169 | ||
| 170 | definition | |
| 171 | divide_rat_def: "q / r = q * inverse (r::rat)" | |
| 172 | ||
| 173 | lemma divide_rat [simp]: "Fract a b / Fract c d = Fract (a * d) (b * c)" | |
| 174 | by (simp add: divide_rat_def) | |
| 27509 | 175 | |
| 176 | instance proof | |
| 47906 | 177 | fix q r s :: rat | 
| 178 | show "(q * r) * s = q * (r * s)" | |
| 179 | by transfer simp | |
| 180 | show "q * r = r * q" | |
| 181 | by transfer simp | |
| 182 | show "1 * q = q" | |
| 183 | by transfer simp | |
| 184 | show "(q + r) + s = q + (r + s)" | |
| 185 | by transfer (simp add: algebra_simps) | |
| 186 | show "q + r = r + q" | |
| 187 | by transfer simp | |
| 188 | show "0 + q = q" | |
| 189 | by transfer simp | |
| 190 | show "- q + q = 0" | |
| 191 | by transfer simp | |
| 192 | show "q - r = q + - r" | |
| 193 | by (fact diff_rat_def) | |
| 194 | show "(q + r) * s = q * s + r * s" | |
| 195 | by transfer (simp add: algebra_simps) | |
| 196 | show "(0::rat) \<noteq> 1" | |
| 197 | by transfer simp | |
| 198 |   { assume "q \<noteq> 0" thus "inverse q * q = 1"
 | |
| 199 | by transfer simp } | |
| 200 | show "q / r = q * inverse r" | |
| 201 | by (fact divide_rat_def) | |
| 202 | show "inverse 0 = (0::rat)" | |
| 203 | by transfer simp | |
| 27509 | 204 | qed | 
| 205 | ||
| 206 | end | |
| 207 | ||
| 27551 | 208 | lemma of_nat_rat: "of_nat k = Fract (of_nat k) 1" | 
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 209 | by (induct k) (simp_all add: Zero_rat_def One_rat_def) | 
| 27551 | 210 | |
| 211 | lemma of_int_rat: "of_int k = Fract k 1" | |
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 212 | by (cases k rule: int_diff_cases) (simp add: of_nat_rat) | 
| 27551 | 213 | |
| 214 | lemma Fract_of_nat_eq: "Fract (of_nat k) 1 = of_nat k" | |
| 215 | by (rule of_nat_rat [symmetric]) | |
| 216 | ||
| 217 | lemma Fract_of_int_eq: "Fract k 1 = of_int k" | |
| 218 | by (rule of_int_rat [symmetric]) | |
| 219 | ||
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 220 | lemma rat_number_collapse: | 
| 27551 | 221 | "Fract 0 k = 0" | 
| 222 | "Fract 1 1 = 1" | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 223 | "Fract (numeral w) 1 = numeral w" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 224 | "Fract (neg_numeral w) 1 = neg_numeral w" | 
| 27551 | 225 | "Fract k 0 = 0" | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 226 | using Fract_of_int_eq [of "numeral w"] | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 227 | using Fract_of_int_eq [of "neg_numeral w"] | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 228 | by (simp_all add: Zero_rat_def One_rat_def eq_rat) | 
| 27551 | 229 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 230 | lemma rat_number_expand: | 
| 27551 | 231 | "0 = Fract 0 1" | 
| 232 | "1 = Fract 1 1" | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 233 | "numeral k = Fract (numeral k) 1" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 234 | "neg_numeral k = Fract (neg_numeral k) 1" | 
| 27551 | 235 | by (simp_all add: rat_number_collapse) | 
| 236 | ||
| 237 | lemma Rat_cases_nonzero [case_names Fract 0]: | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 238 | assumes Fract: "\<And>a b. q = Fract a b \<Longrightarrow> b > 0 \<Longrightarrow> a \<noteq> 0 \<Longrightarrow> coprime a b \<Longrightarrow> C" | 
| 27551 | 239 | assumes 0: "q = 0 \<Longrightarrow> C" | 
| 240 | shows C | |
| 241 | proof (cases "q = 0") | |
| 242 | case True then show C using 0 by auto | |
| 243 | next | |
| 244 | case False | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 245 | then obtain a b where "q = Fract a b" and "b > 0" and "coprime a b" by (cases q) auto | 
| 27551 | 246 | moreover with False have "0 \<noteq> Fract a b" by simp | 
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 247 | with `b > 0` have "a \<noteq> 0" by (simp add: Zero_rat_def eq_rat) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 248 | with Fract `q = Fract a b` `b > 0` `coprime a b` show C by blast | 
| 27551 | 249 | qed | 
| 250 | ||
| 33805 | 251 | subsubsection {* Function @{text normalize} *}
 | 
| 252 | ||
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 253 | lemma Fract_coprime: "Fract (a div gcd a b) (b div gcd a b) = Fract a b" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 254 | proof (cases "b = 0") | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 255 | case True then show ?thesis by (simp add: eq_rat) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 256 | next | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 257 | case False | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 258 | moreover have "b div gcd a b * gcd a b = b" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 259 | by (rule dvd_div_mult_self) simp | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 260 | ultimately have "b div gcd a b \<noteq> 0" by auto | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 261 | with False show ?thesis by (simp add: eq_rat dvd_div_mult mult_commute [of a]) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 262 | qed | 
| 33805 | 263 | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 264 | definition normalize :: "int \<times> int \<Rightarrow> int \<times> int" where | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 265 | "normalize p = (if snd p > 0 then (let a = gcd (fst p) (snd p) in (fst p div a, snd p div a)) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 266 | else if snd p = 0 then (0, 1) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 267 | else (let a = - gcd (fst p) (snd p) in (fst p div a, snd p div a)))" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 268 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 269 | lemma normalize_crossproduct: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 270 | assumes "q \<noteq> 0" "s \<noteq> 0" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 271 | assumes "normalize (p, q) = normalize (r, s)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 272 | shows "p * s = r * q" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 273 | proof - | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 274 | have aux: "p * gcd r s = sgn (q * s) * r * gcd p q \<Longrightarrow> q * gcd r s = sgn (q * s) * s * gcd p q \<Longrightarrow> p * s = q * r" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 275 | proof - | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 276 | assume "p * gcd r s = sgn (q * s) * r * gcd p q" and "q * gcd r s = sgn (q * s) * s * gcd p q" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 277 | then have "(p * gcd r s) * (sgn (q * s) * s * gcd p q) = (q * gcd r s) * (sgn (q * s) * r * gcd p q)" by simp | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 278 | with assms show "p * s = q * r" by (auto simp add: mult_ac sgn_times sgn_0_0) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 279 | qed | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 280 | from assms show ?thesis | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 281 | by (auto simp add: normalize_def Let_def dvd_div_div_eq_mult mult_commute sgn_times split: if_splits intro: aux) | 
| 33805 | 282 | qed | 
| 283 | ||
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 284 | lemma normalize_eq: "normalize (a, b) = (p, q) \<Longrightarrow> Fract p q = Fract a b" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 285 | by (auto simp add: normalize_def Let_def Fract_coprime dvd_div_neg rat_number_collapse | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 286 | split:split_if_asm) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 287 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 288 | lemma normalize_denom_pos: "normalize r = (p, q) \<Longrightarrow> q > 0" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 289 | by (auto simp add: normalize_def Let_def dvd_div_neg pos_imp_zdiv_neg_iff nonneg1_imp_zdiv_pos_iff | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 290 | split:split_if_asm) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 291 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 292 | lemma normalize_coprime: "normalize r = (p, q) \<Longrightarrow> coprime p q" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 293 | by (auto simp add: normalize_def Let_def dvd_div_neg div_gcd_coprime_int | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 294 | split:split_if_asm) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 295 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 296 | lemma normalize_stable [simp]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 297 | "q > 0 \<Longrightarrow> coprime p q \<Longrightarrow> normalize (p, q) = (p, q)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 298 | by (simp add: normalize_def) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 299 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 300 | lemma normalize_denom_zero [simp]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 301 | "normalize (p, 0) = (0, 1)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 302 | by (simp add: normalize_def) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 303 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 304 | lemma normalize_negative [simp]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 305 | "q < 0 \<Longrightarrow> normalize (p, q) = normalize (- p, - q)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 306 | by (simp add: normalize_def Let_def dvd_div_neg dvd_neg_div) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 307 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 308 | text{*
 | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 309 | Decompose a fraction into normalized, i.e. coprime numerator and denominator: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 310 | *} | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 311 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 312 | definition quotient_of :: "rat \<Rightarrow> int \<times> int" where | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 313 | "quotient_of x = (THE pair. x = Fract (fst pair) (snd pair) & | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 314 | snd pair > 0 & coprime (fst pair) (snd pair))" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 315 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 316 | lemma quotient_of_unique: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 317 | "\<exists>!p. r = Fract (fst p) (snd p) \<and> snd p > 0 \<and> coprime (fst p) (snd p)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 318 | proof (cases r) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 319 | case (Fract a b) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 320 | then have "r = Fract (fst (a, b)) (snd (a, b)) \<and> snd (a, b) > 0 \<and> coprime (fst (a, b)) (snd (a, b))" by auto | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 321 | then show ?thesis proof (rule ex1I) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 322 | fix p | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 323 | obtain c d :: int where p: "p = (c, d)" by (cases p) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 324 | assume "r = Fract (fst p) (snd p) \<and> snd p > 0 \<and> coprime (fst p) (snd p)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 325 | with p have Fract': "r = Fract c d" "d > 0" "coprime c d" by simp_all | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 326 | have "c = a \<and> d = b" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 327 | proof (cases "a = 0") | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 328 | case True with Fract Fract' show ?thesis by (simp add: eq_rat) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 329 | next | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 330 | case False | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 331 | with Fract Fract' have *: "c * b = a * d" and "c \<noteq> 0" by (auto simp add: eq_rat) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 332 | then have "c * b > 0 \<longleftrightarrow> a * d > 0" by auto | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 333 | with `b > 0` `d > 0` have "a > 0 \<longleftrightarrow> c > 0" by (simp add: zero_less_mult_iff) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 334 | with `a \<noteq> 0` `c \<noteq> 0` have sgn: "sgn a = sgn c" by (auto simp add: not_less) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 335 | from `coprime a b` `coprime c d` have "\<bar>a\<bar> * \<bar>d\<bar> = \<bar>c\<bar> * \<bar>b\<bar> \<longleftrightarrow> \<bar>a\<bar> = \<bar>c\<bar> \<and> \<bar>d\<bar> = \<bar>b\<bar>" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 336 | by (simp add: coprime_crossproduct_int) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 337 | with `b > 0` `d > 0` have "\<bar>a\<bar> * d = \<bar>c\<bar> * b \<longleftrightarrow> \<bar>a\<bar> = \<bar>c\<bar> \<and> d = b" by simp | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 338 | then have "a * sgn a * d = c * sgn c * b \<longleftrightarrow> a * sgn a = c * sgn c \<and> d = b" by (simp add: abs_sgn) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 339 | with sgn * show ?thesis by (auto simp add: sgn_0_0) | 
| 33805 | 340 | qed | 
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 341 | with p show "p = (a, b)" by simp | 
| 33805 | 342 | qed | 
| 343 | qed | |
| 344 | ||
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 345 | lemma quotient_of_Fract [code]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 346 | "quotient_of (Fract a b) = normalize (a, b)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 347 | proof - | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 348 | have "Fract a b = Fract (fst (normalize (a, b))) (snd (normalize (a, b)))" (is ?Fract) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 349 | by (rule sym) (auto intro: normalize_eq) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 350 | moreover have "0 < snd (normalize (a, b))" (is ?denom_pos) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 351 | by (cases "normalize (a, b)") (rule normalize_denom_pos, simp) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 352 | moreover have "coprime (fst (normalize (a, b))) (snd (normalize (a, b)))" (is ?coprime) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 353 | by (rule normalize_coprime) simp | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 354 | ultimately have "?Fract \<and> ?denom_pos \<and> ?coprime" by blast | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 355 | with quotient_of_unique have | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 356 | "(THE p. Fract a b = Fract (fst p) (snd p) \<and> 0 < snd p \<and> coprime (fst p) (snd p)) = normalize (a, b)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 357 | by (rule the1_equality) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 358 | then show ?thesis by (simp add: quotient_of_def) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 359 | qed | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 360 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 361 | lemma quotient_of_number [simp]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 362 | "quotient_of 0 = (0, 1)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 363 | "quotient_of 1 = (1, 1)" | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 364 | "quotient_of (numeral k) = (numeral k, 1)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 365 | "quotient_of (neg_numeral k) = (neg_numeral k, 1)" | 
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 366 | by (simp_all add: rat_number_expand quotient_of_Fract) | 
| 33805 | 367 | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 368 | lemma quotient_of_eq: "quotient_of (Fract a b) = (p, q) \<Longrightarrow> Fract p q = Fract a b" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 369 | by (simp add: quotient_of_Fract normalize_eq) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 370 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 371 | lemma quotient_of_denom_pos: "quotient_of r = (p, q) \<Longrightarrow> q > 0" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 372 | by (cases r) (simp add: quotient_of_Fract normalize_denom_pos) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 373 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 374 | lemma quotient_of_coprime: "quotient_of r = (p, q) \<Longrightarrow> coprime p q" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 375 | by (cases r) (simp add: quotient_of_Fract normalize_coprime) | 
| 33805 | 376 | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 377 | lemma quotient_of_inject: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 378 | assumes "quotient_of a = quotient_of b" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 379 | shows "a = b" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 380 | proof - | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 381 | obtain p q r s where a: "a = Fract p q" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 382 | and b: "b = Fract r s" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 383 | and "q > 0" and "s > 0" by (cases a, cases b) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 384 | with assms show ?thesis by (simp add: eq_rat quotient_of_Fract normalize_crossproduct) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 385 | qed | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 386 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 387 | lemma quotient_of_inject_eq: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 388 | "quotient_of a = quotient_of b \<longleftrightarrow> a = b" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 389 | by (auto simp add: quotient_of_inject) | 
| 33805 | 390 | |
| 27551 | 391 | |
| 392 | subsubsection {* Various *}
 | |
| 393 | ||
| 394 | lemma Fract_of_int_quotient: "Fract k l = of_int k / of_int l" | |
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 395 | by (simp add: Fract_of_int_eq [symmetric]) | 
| 27551 | 396 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 397 | lemma Fract_add_one: "n \<noteq> 0 ==> Fract (m + n) n = Fract m n + 1" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 398 | by (simp add: rat_number_expand) | 
| 27551 | 399 | |
| 400 | ||
| 401 | subsubsection {* The ordered field of rational numbers *}
 | |
| 27509 | 402 | |
| 47907 | 403 | lift_definition positive :: "rat \<Rightarrow> bool" | 
| 404 | is "\<lambda>x. 0 < fst x * snd x" | |
| 405 | proof (clarsimp) | |
| 406 | fix a b c d :: int | |
| 407 | assume "b \<noteq> 0" and "d \<noteq> 0" and "a * d = c * b" | |
| 408 | hence "a * d * b * d = c * b * b * d" | |
| 409 | by simp | |
| 410 | hence "a * b * d\<twosuperior> = c * d * b\<twosuperior>" | |
| 411 | unfolding power2_eq_square by (simp add: mult_ac) | |
| 412 | hence "0 < a * b * d\<twosuperior> \<longleftrightarrow> 0 < c * d * b\<twosuperior>" | |
| 413 | by simp | |
| 414 | thus "0 < a * b \<longleftrightarrow> 0 < c * d" | |
| 415 | using `b \<noteq> 0` and `d \<noteq> 0` | |
| 416 | by (simp add: zero_less_mult_iff) | |
| 417 | qed | |
| 418 | ||
| 419 | lemma positive_zero: "\<not> positive 0" | |
| 420 | by transfer simp | |
| 421 | ||
| 422 | lemma positive_add: | |
| 423 | "positive x \<Longrightarrow> positive y \<Longrightarrow> positive (x + y)" | |
| 424 | apply transfer | |
| 425 | apply (simp add: zero_less_mult_iff) | |
| 426 | apply (elim disjE, simp_all add: add_pos_pos add_neg_neg | |
| 427 | mult_pos_pos mult_pos_neg mult_neg_pos mult_neg_neg) | |
| 428 | done | |
| 429 | ||
| 430 | lemma positive_mult: | |
| 431 | "positive x \<Longrightarrow> positive y \<Longrightarrow> positive (x * y)" | |
| 432 | by transfer (drule (1) mult_pos_pos, simp add: mult_ac) | |
| 433 | ||
| 434 | lemma positive_minus: | |
| 435 | "\<not> positive x \<Longrightarrow> x \<noteq> 0 \<Longrightarrow> positive (- x)" | |
| 436 | by transfer (force simp: neq_iff zero_less_mult_iff mult_less_0_iff) | |
| 437 | ||
| 438 | instantiation rat :: linordered_field_inverse_zero | |
| 27509 | 439 | begin | 
| 440 | ||
| 47907 | 441 | definition | 
| 442 | "x < y \<longleftrightarrow> positive (y - x)" | |
| 443 | ||
| 444 | definition | |
| 445 | "x \<le> (y::rat) \<longleftrightarrow> x < y \<or> x = y" | |
| 446 | ||
| 447 | definition | |
| 448 | "abs (a::rat) = (if a < 0 then - a else a)" | |
| 449 | ||
| 450 | definition | |
| 451 | "sgn (a::rat) = (if a = 0 then 0 else if 0 < a then 1 else - 1)" | |
| 47906 | 452 | |
| 47907 | 453 | instance proof | 
| 454 | fix a b c :: rat | |
| 455 | show "\<bar>a\<bar> = (if a < 0 then - a else a)" | |
| 456 | by (rule abs_rat_def) | |
| 457 | show "a < b \<longleftrightarrow> a \<le> b \<and> \<not> b \<le> a" | |
| 458 | unfolding less_eq_rat_def less_rat_def | |
| 459 | by (auto, drule (1) positive_add, simp_all add: positive_zero) | |
| 460 | show "a \<le> a" | |
| 461 | unfolding less_eq_rat_def by simp | |
| 462 | show "a \<le> b \<Longrightarrow> b \<le> c \<Longrightarrow> a \<le> c" | |
| 463 | unfolding less_eq_rat_def less_rat_def | |
| 464 | by (auto, drule (1) positive_add, simp add: algebra_simps) | |
| 465 | show "a \<le> b \<Longrightarrow> b \<le> a \<Longrightarrow> a = b" | |
| 466 | unfolding less_eq_rat_def less_rat_def | |
| 467 | by (auto, drule (1) positive_add, simp add: positive_zero) | |
| 468 | show "a \<le> b \<Longrightarrow> c + a \<le> c + b" | |
| 469 | unfolding less_eq_rat_def less_rat_def by (auto simp: diff_minus) | |
| 470 | show "sgn a = (if a = 0 then 0 else if 0 < a then 1 else - 1)" | |
| 471 | by (rule sgn_rat_def) | |
| 472 | show "a \<le> b \<or> b \<le> a" | |
| 473 | unfolding less_eq_rat_def less_rat_def | |
| 474 | by (auto dest!: positive_minus) | |
| 475 | show "a < b \<Longrightarrow> 0 < c \<Longrightarrow> c * a < c * b" | |
| 476 | unfolding less_rat_def | |
| 477 | by (drule (1) positive_mult, simp add: algebra_simps) | |
| 47906 | 478 | qed | 
| 27551 | 479 | |
| 47907 | 480 | end | 
| 481 | ||
| 482 | instantiation rat :: distrib_lattice | |
| 483 | begin | |
| 484 | ||
| 485 | definition | |
| 486 | "(inf :: rat \<Rightarrow> rat \<Rightarrow> rat) = min" | |
| 27509 | 487 | |
| 488 | definition | |
| 47907 | 489 | "(sup :: rat \<Rightarrow> rat \<Rightarrow> rat) = max" | 
| 490 | ||
| 491 | instance proof | |
| 492 | qed (auto simp add: inf_rat_def sup_rat_def min_max.sup_inf_distrib1) | |
| 493 | ||
| 494 | end | |
| 495 | ||
| 496 | lemma positive_rat: "positive (Fract a b) \<longleftrightarrow> 0 < a * b" | |
| 497 | by transfer simp | |
| 27509 | 498 | |
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 499 | lemma less_rat [simp]: | 
| 27551 | 500 | assumes "b \<noteq> 0" and "d \<noteq> 0" | 
| 501 | shows "Fract a b < Fract c d \<longleftrightarrow> (a * d) * (b * d) < (c * b) * (b * d)" | |
| 47907 | 502 | using assms unfolding less_rat_def | 
| 503 | by (simp add: positive_rat algebra_simps) | |
| 27509 | 504 | |
| 47907 | 505 | lemma le_rat [simp]: | 
| 506 | assumes "b \<noteq> 0" and "d \<noteq> 0" | |
| 507 | shows "Fract a b \<le> Fract c d \<longleftrightarrow> (a * d) * (b * d) \<le> (c * b) * (b * d)" | |
| 508 | using assms unfolding le_less by (simp add: eq_rat) | |
| 27551 | 509 | |
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 510 | lemma abs_rat [simp, code]: "\<bar>Fract a b\<bar> = Fract \<bar>a\<bar> \<bar>b\<bar>" | 
| 35216 | 511 | by (auto simp add: abs_rat_def zabs_def Zero_rat_def not_less le_less eq_rat zero_less_mult_iff) | 
| 27551 | 512 | |
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 513 | lemma sgn_rat [simp, code]: "sgn (Fract a b) = of_int (sgn a * sgn b)" | 
| 27551 | 514 | unfolding Fract_of_int_eq | 
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 515 | by (auto simp: zsgn_def sgn_rat_def Zero_rat_def eq_rat) | 
| 27551 | 516 | (auto simp: rat_number_collapse not_less le_less zero_less_mult_iff) | 
| 517 | ||
| 518 | lemma Rat_induct_pos [case_names Fract, induct type: rat]: | |
| 519 | assumes step: "\<And>a b. 0 < b \<Longrightarrow> P (Fract a b)" | |
| 520 | shows "P q" | |
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 521 | proof (cases q) | 
| 27551 | 522 | have step': "\<And>a b. b < 0 \<Longrightarrow> P (Fract a b)" | 
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 523 | proof - | 
| 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 524 | fix a::int and b::int | 
| 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 525 | assume b: "b < 0" | 
| 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 526 | hence "0 < -b" by simp | 
| 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 527 | hence "P (Fract (-a) (-b))" by (rule step) | 
| 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 528 | thus "P (Fract a b)" by (simp add: order_less_imp_not_eq [OF b]) | 
| 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 529 | qed | 
| 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 530 | case (Fract a b) | 
| 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 531 | thus "P q" by (force simp add: linorder_neq_iff step step') | 
| 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 532 | qed | 
| 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 533 | |
| 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 534 | lemma zero_less_Fract_iff: | 
| 30095 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 535 | "0 < b \<Longrightarrow> 0 < Fract a b \<longleftrightarrow> 0 < a" | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 536 | by (simp add: Zero_rat_def zero_less_mult_iff) | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 537 | |
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 538 | lemma Fract_less_zero_iff: | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 539 | "0 < b \<Longrightarrow> Fract a b < 0 \<longleftrightarrow> a < 0" | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 540 | by (simp add: Zero_rat_def mult_less_0_iff) | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 541 | |
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 542 | lemma zero_le_Fract_iff: | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 543 | "0 < b \<Longrightarrow> 0 \<le> Fract a b \<longleftrightarrow> 0 \<le> a" | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 544 | by (simp add: Zero_rat_def zero_le_mult_iff) | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 545 | |
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 546 | lemma Fract_le_zero_iff: | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 547 | "0 < b \<Longrightarrow> Fract a b \<le> 0 \<longleftrightarrow> a \<le> 0" | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 548 | by (simp add: Zero_rat_def mult_le_0_iff) | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 549 | |
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 550 | lemma one_less_Fract_iff: | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 551 | "0 < b \<Longrightarrow> 1 < Fract a b \<longleftrightarrow> b < a" | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 552 | by (simp add: One_rat_def mult_less_cancel_right_disj) | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 553 | |
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 554 | lemma Fract_less_one_iff: | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 555 | "0 < b \<Longrightarrow> Fract a b < 1 \<longleftrightarrow> a < b" | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 556 | by (simp add: One_rat_def mult_less_cancel_right_disj) | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 557 | |
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 558 | lemma one_le_Fract_iff: | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 559 | "0 < b \<Longrightarrow> 1 \<le> Fract a b \<longleftrightarrow> b \<le> a" | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 560 | by (simp add: One_rat_def mult_le_cancel_right) | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 561 | |
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 562 | lemma Fract_le_one_iff: | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 563 | "0 < b \<Longrightarrow> Fract a b \<le> 1 \<longleftrightarrow> a \<le> b" | 
| 
c6e184561159
add lemmas about comparisons of Fract a b with 0 and 1
 huffman parents: 
29940diff
changeset | 564 | by (simp add: One_rat_def mult_le_cancel_right) | 
| 14365 
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
 paulson parents: diff
changeset | 565 | |
| 14378 
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
 paulson parents: 
14365diff
changeset | 566 | |
| 30097 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 567 | subsubsection {* Rationals are an Archimedean field *}
 | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 568 | |
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 569 | lemma rat_floor_lemma: | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 570 | shows "of_int (a div b) \<le> Fract a b \<and> Fract a b < of_int (a div b + 1)" | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 571 | proof - | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 572 | have "Fract a b = of_int (a div b) + Fract (a mod b) b" | 
| 35293 
06a98796453e
remove unneeded premise from rat_floor_lemma and floor_Fract
 huffman parents: 
35216diff
changeset | 573 | by (cases "b = 0", simp, simp add: of_int_rat) | 
| 30097 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 574 | moreover have "0 \<le> Fract (a mod b) b \<and> Fract (a mod b) b < 1" | 
| 35293 
06a98796453e
remove unneeded premise from rat_floor_lemma and floor_Fract
 huffman parents: 
35216diff
changeset | 575 | unfolding Fract_of_int_quotient | 
| 36409 | 576 | by (rule linorder_cases [of b 0]) (simp add: divide_nonpos_neg, simp, simp add: divide_nonneg_pos) | 
| 30097 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 577 | ultimately show ?thesis by simp | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 578 | qed | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 579 | |
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 580 | instance rat :: archimedean_field | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 581 | proof | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 582 | fix r :: rat | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 583 | show "\<exists>z. r \<le> of_int z" | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 584 | proof (induct r) | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 585 | case (Fract a b) | 
| 35293 
06a98796453e
remove unneeded premise from rat_floor_lemma and floor_Fract
 huffman parents: 
35216diff
changeset | 586 | have "Fract a b \<le> of_int (a div b + 1)" | 
| 
06a98796453e
remove unneeded premise from rat_floor_lemma and floor_Fract
 huffman parents: 
35216diff
changeset | 587 | using rat_floor_lemma [of a b] by simp | 
| 30097 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 588 | then show "\<exists>z. Fract a b \<le> of_int z" .. | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 589 | qed | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 590 | qed | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 591 | |
| 43732 
6b2bdc57155b
adding a floor_ceiling type class for different instantiations of floor (changeset from Brian Huffman)
 bulwahn parents: 
42311diff
changeset | 592 | instantiation rat :: floor_ceiling | 
| 
6b2bdc57155b
adding a floor_ceiling type class for different instantiations of floor (changeset from Brian Huffman)
 bulwahn parents: 
42311diff
changeset | 593 | begin | 
| 
6b2bdc57155b
adding a floor_ceiling type class for different instantiations of floor (changeset from Brian Huffman)
 bulwahn parents: 
42311diff
changeset | 594 | |
| 
6b2bdc57155b
adding a floor_ceiling type class for different instantiations of floor (changeset from Brian Huffman)
 bulwahn parents: 
42311diff
changeset | 595 | definition [code del]: | 
| 
6b2bdc57155b
adding a floor_ceiling type class for different instantiations of floor (changeset from Brian Huffman)
 bulwahn parents: 
42311diff
changeset | 596 | "floor (x::rat) = (THE z. of_int z \<le> x \<and> x < of_int (z + 1))" | 
| 
6b2bdc57155b
adding a floor_ceiling type class for different instantiations of floor (changeset from Brian Huffman)
 bulwahn parents: 
42311diff
changeset | 597 | |
| 
6b2bdc57155b
adding a floor_ceiling type class for different instantiations of floor (changeset from Brian Huffman)
 bulwahn parents: 
42311diff
changeset | 598 | instance proof | 
| 
6b2bdc57155b
adding a floor_ceiling type class for different instantiations of floor (changeset from Brian Huffman)
 bulwahn parents: 
42311diff
changeset | 599 | fix x :: rat | 
| 
6b2bdc57155b
adding a floor_ceiling type class for different instantiations of floor (changeset from Brian Huffman)
 bulwahn parents: 
42311diff
changeset | 600 | show "of_int (floor x) \<le> x \<and> x < of_int (floor x + 1)" | 
| 
6b2bdc57155b
adding a floor_ceiling type class for different instantiations of floor (changeset from Brian Huffman)
 bulwahn parents: 
42311diff
changeset | 601 | unfolding floor_rat_def using floor_exists1 by (rule theI') | 
| 
6b2bdc57155b
adding a floor_ceiling type class for different instantiations of floor (changeset from Brian Huffman)
 bulwahn parents: 
42311diff
changeset | 602 | qed | 
| 
6b2bdc57155b
adding a floor_ceiling type class for different instantiations of floor (changeset from Brian Huffman)
 bulwahn parents: 
42311diff
changeset | 603 | |
| 
6b2bdc57155b
adding a floor_ceiling type class for different instantiations of floor (changeset from Brian Huffman)
 bulwahn parents: 
42311diff
changeset | 604 | end | 
| 
6b2bdc57155b
adding a floor_ceiling type class for different instantiations of floor (changeset from Brian Huffman)
 bulwahn parents: 
42311diff
changeset | 605 | |
| 35293 
06a98796453e
remove unneeded premise from rat_floor_lemma and floor_Fract
 huffman parents: 
35216diff
changeset | 606 | lemma floor_Fract: "floor (Fract a b) = a div b" | 
| 
06a98796453e
remove unneeded premise from rat_floor_lemma and floor_Fract
 huffman parents: 
35216diff
changeset | 607 | using rat_floor_lemma [of a b] | 
| 30097 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 608 | by (simp add: floor_unique) | 
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 609 | |
| 
57df8626c23b
generalize floor/ceiling to work with real and rat; rename floor_mono2 to floor_mono
 huffman parents: 
30095diff
changeset | 610 | |
| 31100 | 611 | subsection {* Linear arithmetic setup *}
 | 
| 14387 
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
 paulson parents: 
14378diff
changeset | 612 | |
| 31100 | 613 | declaration {*
 | 
| 614 |   K (Lin_Arith.add_inj_thms [@{thm of_nat_le_iff} RS iffD2, @{thm of_nat_eq_iff} RS iffD2]
 | |
| 615 | (* not needed because x < (y::nat) can be rewritten as Suc x <= y: of_nat_less_iff RS iffD2 *) | |
| 616 |   #> Lin_Arith.add_inj_thms [@{thm of_int_le_iff} RS iffD2, @{thm of_int_eq_iff} RS iffD2]
 | |
| 617 | (* not needed because x < (y::int) can be rewritten as x + 1 <= y: of_int_less_iff RS iffD2 *) | |
| 618 |   #> Lin_Arith.add_simps [@{thm neg_less_iff_less},
 | |
| 619 |       @{thm True_implies_equals},
 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 620 |       read_instantiate @{context} [(("a", 0), "(numeral ?v)")] @{thm right_distrib},
 | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 621 |       read_instantiate @{context} [(("a", 0), "(neg_numeral ?v)")] @{thm right_distrib},
 | 
| 31100 | 622 |       @{thm divide_1}, @{thm divide_zero_left},
 | 
| 623 |       @{thm times_divide_eq_right}, @{thm times_divide_eq_left},
 | |
| 624 |       @{thm minus_divide_left} RS sym, @{thm minus_divide_right} RS sym,
 | |
| 625 |       @{thm of_int_minus}, @{thm of_int_diff},
 | |
| 626 |       @{thm of_int_of_nat_eq}]
 | |
| 627 | #> Lin_Arith.add_simprocs Numeral_Simprocs.field_cancel_numeral_factors | |
| 628 |   #> Lin_Arith.add_inj_const (@{const_name of_nat}, @{typ "nat => rat"})
 | |
| 629 |   #> Lin_Arith.add_inj_const (@{const_name of_int}, @{typ "int => rat"}))
 | |
| 630 | *} | |
| 14387 
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
 paulson parents: 
14378diff
changeset | 631 | |
| 23342 | 632 | |
| 633 | subsection {* Embedding from Rationals to other Fields *}
 | |
| 634 | ||
| 24198 | 635 | class field_char_0 = field + ring_char_0 | 
| 23342 | 636 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
33814diff
changeset | 637 | subclass (in linordered_field) field_char_0 .. | 
| 23342 | 638 | |
| 27551 | 639 | context field_char_0 | 
| 640 | begin | |
| 641 | ||
| 47906 | 642 | lift_definition of_rat :: "rat \<Rightarrow> 'a" | 
| 643 | is "\<lambda>x. of_int (fst x) / of_int (snd x)" | |
| 23342 | 644 | apply (clarsimp simp add: nonzero_divide_eq_eq nonzero_eq_divide_eq) | 
| 645 | apply (simp only: of_int_mult [symmetric]) | |
| 646 | done | |
| 647 | ||
| 47906 | 648 | end | 
| 649 | ||
| 27551 | 650 | lemma of_rat_rat: "b \<noteq> 0 \<Longrightarrow> of_rat (Fract a b) = of_int a / of_int b" | 
| 47906 | 651 | by transfer simp | 
| 23342 | 652 | |
| 653 | lemma of_rat_0 [simp]: "of_rat 0 = 0" | |
| 47906 | 654 | by transfer simp | 
| 23342 | 655 | |
| 656 | lemma of_rat_1 [simp]: "of_rat 1 = 1" | |
| 47906 | 657 | by transfer simp | 
| 23342 | 658 | |
| 659 | lemma of_rat_add: "of_rat (a + b) = of_rat a + of_rat b" | |
| 47906 | 660 | by transfer (simp add: add_frac_eq) | 
| 23342 | 661 | |
| 23343 | 662 | lemma of_rat_minus: "of_rat (- a) = - of_rat a" | 
| 47906 | 663 | by transfer simp | 
| 23343 | 664 | |
| 665 | lemma of_rat_diff: "of_rat (a - b) = of_rat a - of_rat b" | |
| 666 | by (simp only: diff_minus of_rat_add of_rat_minus) | |
| 667 | ||
| 23342 | 668 | lemma of_rat_mult: "of_rat (a * b) = of_rat a * of_rat b" | 
| 47906 | 669 | apply transfer | 
| 23342 | 670 | apply (simp add: divide_inverse nonzero_inverse_mult_distrib mult_ac) | 
| 671 | done | |
| 672 | ||
| 673 | lemma nonzero_of_rat_inverse: | |
| 674 | "a \<noteq> 0 \<Longrightarrow> of_rat (inverse a) = inverse (of_rat a)" | |
| 23343 | 675 | apply (rule inverse_unique [symmetric]) | 
| 676 | apply (simp add: of_rat_mult [symmetric]) | |
| 23342 | 677 | done | 
| 678 | ||
| 679 | lemma of_rat_inverse: | |
| 36409 | 680 |   "(of_rat (inverse a)::'a::{field_char_0, field_inverse_zero}) =
 | 
| 23342 | 681 | inverse (of_rat a)" | 
| 682 | by (cases "a = 0", simp_all add: nonzero_of_rat_inverse) | |
| 683 | ||
| 684 | lemma nonzero_of_rat_divide: | |
| 685 | "b \<noteq> 0 \<Longrightarrow> of_rat (a / b) = of_rat a / of_rat b" | |
| 686 | by (simp add: divide_inverse of_rat_mult nonzero_of_rat_inverse) | |
| 687 | ||
| 688 | lemma of_rat_divide: | |
| 36409 | 689 |   "(of_rat (a / b)::'a::{field_char_0, field_inverse_zero})
 | 
| 23342 | 690 | = of_rat a / of_rat b" | 
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 691 | by (cases "b = 0") (simp_all add: nonzero_of_rat_divide) | 
| 23342 | 692 | |
| 23343 | 693 | lemma of_rat_power: | 
| 31017 | 694 | "(of_rat (a ^ n)::'a::field_char_0) = of_rat a ^ n" | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30242diff
changeset | 695 | by (induct n) (simp_all add: of_rat_mult) | 
| 23343 | 696 | |
| 697 | lemma of_rat_eq_iff [simp]: "(of_rat a = of_rat b) = (a = b)" | |
| 47906 | 698 | apply transfer | 
| 23343 | 699 | apply (simp add: nonzero_divide_eq_eq nonzero_eq_divide_eq) | 
| 700 | apply (simp only: of_int_mult [symmetric] of_int_eq_iff) | |
| 701 | done | |
| 702 | ||
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 703 | lemma of_rat_less: | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
33814diff
changeset | 704 | "(of_rat r :: 'a::linordered_field) < of_rat s \<longleftrightarrow> r < s" | 
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 705 | proof (induct r, induct s) | 
| 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 706 | fix a b c d :: int | 
| 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 707 | assume not_zero: "b > 0" "d > 0" | 
| 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 708 | then have "b * d > 0" by (rule mult_pos_pos) | 
| 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 709 | have of_int_divide_less_eq: | 
| 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 710 | "(of_int a :: 'a) / of_int b < of_int c / of_int d | 
| 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 711 | \<longleftrightarrow> (of_int a :: 'a) * of_int d < of_int c * of_int b" | 
| 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 712 | using not_zero by (simp add: pos_less_divide_eq pos_divide_less_eq) | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
33814diff
changeset | 713 | show "(of_rat (Fract a b) :: 'a::linordered_field) < of_rat (Fract c d) | 
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 714 | \<longleftrightarrow> Fract a b < Fract c d" | 
| 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 715 | using not_zero `b * d > 0` | 
| 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 716 | by (simp add: of_rat_rat of_int_divide_less_eq of_int_mult [symmetric] del: of_int_mult) | 
| 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 717 | qed | 
| 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 718 | |
| 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 719 | lemma of_rat_less_eq: | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
33814diff
changeset | 720 | "(of_rat r :: 'a::linordered_field) \<le> of_rat s \<longleftrightarrow> r \<le> s" | 
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 721 | unfolding le_less by (auto simp add: of_rat_less) | 
| 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 722 | |
| 23343 | 723 | lemmas of_rat_eq_0_iff [simp] = of_rat_eq_iff [of _ 0, simplified] | 
| 724 | ||
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 725 | lemma of_rat_eq_id [simp]: "of_rat = id" | 
| 23343 | 726 | proof | 
| 727 | fix a | |
| 728 | show "of_rat a = id a" | |
| 729 | by (induct a) | |
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 730 | (simp add: of_rat_rat Fract_of_int_eq [symmetric]) | 
| 23343 | 731 | qed | 
| 732 | ||
| 733 | text{*Collapse nested embeddings*}
 | |
| 734 | lemma of_rat_of_nat_eq [simp]: "of_rat (of_nat n) = of_nat n" | |
| 735 | by (induct n) (simp_all add: of_rat_add) | |
| 736 | ||
| 737 | lemma of_rat_of_int_eq [simp]: "of_rat (of_int z) = of_int z" | |
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 738 | by (cases z rule: int_diff_cases) (simp add: of_rat_diff) | 
| 23343 | 739 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 740 | lemma of_rat_numeral_eq [simp]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 741 | "of_rat (numeral w) = numeral w" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 742 | using of_rat_of_int_eq [of "numeral w"] by simp | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 743 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 744 | lemma of_rat_neg_numeral_eq [simp]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 745 | "of_rat (neg_numeral w) = neg_numeral w" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 746 | using of_rat_of_int_eq [of "neg_numeral w"] by simp | 
| 23343 | 747 | |
| 23879 | 748 | lemmas zero_rat = Zero_rat_def | 
| 749 | lemmas one_rat = One_rat_def | |
| 750 | ||
| 24198 | 751 | abbreviation | 
| 752 | rat_of_nat :: "nat \<Rightarrow> rat" | |
| 753 | where | |
| 754 | "rat_of_nat \<equiv> of_nat" | |
| 755 | ||
| 756 | abbreviation | |
| 757 | rat_of_int :: "int \<Rightarrow> rat" | |
| 758 | where | |
| 759 | "rat_of_int \<equiv> of_int" | |
| 760 | ||
| 28010 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 761 | subsection {* The Set of Rational Numbers *}
 | 
| 24533 
fe1f93f6a15a
Added code generator setup (taken from Library/Executable_Rat.thy,
 berghofe parents: 
24506diff
changeset | 762 | |
| 28001 | 763 | context field_char_0 | 
| 764 | begin | |
| 765 | ||
| 766 | definition | |
| 767 | Rats :: "'a set" where | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 768 | "Rats = range of_rat" | 
| 28001 | 769 | |
| 770 | notation (xsymbols) | |
| 771 |   Rats  ("\<rat>")
 | |
| 772 | ||
| 773 | end | |
| 774 | ||
| 28010 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 775 | lemma Rats_of_rat [simp]: "of_rat r \<in> Rats" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 776 | by (simp add: Rats_def) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 777 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 778 | lemma Rats_of_int [simp]: "of_int z \<in> Rats" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 779 | by (subst of_rat_of_int_eq [symmetric], rule Rats_of_rat) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 780 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 781 | lemma Rats_of_nat [simp]: "of_nat n \<in> Rats" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 782 | by (subst of_rat_of_nat_eq [symmetric], rule Rats_of_rat) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 783 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 784 | lemma Rats_number_of [simp]: "numeral w \<in> Rats" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 785 | by (subst of_rat_numeral_eq [symmetric], rule Rats_of_rat) | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 786 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 787 | lemma Rats_neg_number_of [simp]: "neg_numeral w \<in> Rats" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 788 | by (subst of_rat_neg_numeral_eq [symmetric], rule Rats_of_rat) | 
| 28010 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 789 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 790 | lemma Rats_0 [simp]: "0 \<in> Rats" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 791 | apply (unfold Rats_def) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 792 | apply (rule range_eqI) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 793 | apply (rule of_rat_0 [symmetric]) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 794 | done | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 795 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 796 | lemma Rats_1 [simp]: "1 \<in> Rats" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 797 | apply (unfold Rats_def) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 798 | apply (rule range_eqI) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 799 | apply (rule of_rat_1 [symmetric]) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 800 | done | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 801 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 802 | lemma Rats_add [simp]: "\<lbrakk>a \<in> Rats; b \<in> Rats\<rbrakk> \<Longrightarrow> a + b \<in> Rats" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 803 | apply (auto simp add: Rats_def) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 804 | apply (rule range_eqI) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 805 | apply (rule of_rat_add [symmetric]) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 806 | done | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 807 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 808 | lemma Rats_minus [simp]: "a \<in> Rats \<Longrightarrow> - a \<in> Rats" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 809 | apply (auto simp add: Rats_def) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 810 | apply (rule range_eqI) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 811 | apply (rule of_rat_minus [symmetric]) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 812 | done | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 813 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 814 | lemma Rats_diff [simp]: "\<lbrakk>a \<in> Rats; b \<in> Rats\<rbrakk> \<Longrightarrow> a - b \<in> Rats" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 815 | apply (auto simp add: Rats_def) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 816 | apply (rule range_eqI) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 817 | apply (rule of_rat_diff [symmetric]) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 818 | done | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 819 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 820 | lemma Rats_mult [simp]: "\<lbrakk>a \<in> Rats; b \<in> Rats\<rbrakk> \<Longrightarrow> a * b \<in> Rats" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 821 | apply (auto simp add: Rats_def) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 822 | apply (rule range_eqI) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 823 | apply (rule of_rat_mult [symmetric]) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 824 | done | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 825 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 826 | lemma nonzero_Rats_inverse: | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 827 | fixes a :: "'a::field_char_0" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 828 | shows "\<lbrakk>a \<in> Rats; a \<noteq> 0\<rbrakk> \<Longrightarrow> inverse a \<in> Rats" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 829 | apply (auto simp add: Rats_def) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 830 | apply (rule range_eqI) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 831 | apply (erule nonzero_of_rat_inverse [symmetric]) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 832 | done | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 833 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 834 | lemma Rats_inverse [simp]: | 
| 36409 | 835 |   fixes a :: "'a::{field_char_0, field_inverse_zero}"
 | 
| 28010 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 836 | shows "a \<in> Rats \<Longrightarrow> inverse a \<in> Rats" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 837 | apply (auto simp add: Rats_def) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 838 | apply (rule range_eqI) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 839 | apply (rule of_rat_inverse [symmetric]) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 840 | done | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 841 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 842 | lemma nonzero_Rats_divide: | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 843 | fixes a b :: "'a::field_char_0" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 844 | shows "\<lbrakk>a \<in> Rats; b \<in> Rats; b \<noteq> 0\<rbrakk> \<Longrightarrow> a / b \<in> Rats" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 845 | apply (auto simp add: Rats_def) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 846 | apply (rule range_eqI) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 847 | apply (erule nonzero_of_rat_divide [symmetric]) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 848 | done | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 849 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 850 | lemma Rats_divide [simp]: | 
| 36409 | 851 |   fixes a b :: "'a::{field_char_0, field_inverse_zero}"
 | 
| 28010 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 852 | shows "\<lbrakk>a \<in> Rats; b \<in> Rats\<rbrakk> \<Longrightarrow> a / b \<in> Rats" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 853 | apply (auto simp add: Rats_def) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 854 | apply (rule range_eqI) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 855 | apply (rule of_rat_divide [symmetric]) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 856 | done | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 857 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 858 | lemma Rats_power [simp]: | 
| 31017 | 859 | fixes a :: "'a::field_char_0" | 
| 28010 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 860 | shows "a \<in> Rats \<Longrightarrow> a ^ n \<in> Rats" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 861 | apply (auto simp add: Rats_def) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 862 | apply (rule range_eqI) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 863 | apply (rule of_rat_power [symmetric]) | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 864 | done | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 865 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 866 | lemma Rats_cases [cases set: Rats]: | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 867 | assumes "q \<in> \<rat>" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 868 | obtains (of_rat) r where "q = of_rat r" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 869 | proof - | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 870 | from `q \<in> \<rat>` have "q \<in> range of_rat" unfolding Rats_def . | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 871 | then obtain r where "q = of_rat r" .. | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 872 | then show thesis .. | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 873 | qed | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 874 | |
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 875 | lemma Rats_induct [case_names of_rat, induct set: Rats]: | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 876 | "q \<in> \<rat> \<Longrightarrow> (\<And>r. P (of_rat r)) \<Longrightarrow> P q" | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 877 | by (rule Rats_cases) auto | 
| 
8312edc51969
add lemmas about Rats similar to those about Reals
 huffman parents: 
28001diff
changeset | 878 | |
| 28001 | 879 | |
| 24533 
fe1f93f6a15a
Added code generator setup (taken from Library/Executable_Rat.thy,
 berghofe parents: 
24506diff
changeset | 880 | subsection {* Implementation of rational numbers as pairs of integers *}
 | 
| 
fe1f93f6a15a
Added code generator setup (taken from Library/Executable_Rat.thy,
 berghofe parents: 
24506diff
changeset | 881 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 882 | text {* Formal constructor *}
 | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 883 | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 884 | definition Frct :: "int \<times> int \<Rightarrow> rat" where | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 885 | [simp]: "Frct p = Fract (fst p) (snd p)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 886 | |
| 36112 
7fa17a225852
user interface for abstract datatypes is an attribute, not a command
 haftmann parents: 
35726diff
changeset | 887 | lemma [code abstype]: | 
| 
7fa17a225852
user interface for abstract datatypes is an attribute, not a command
 haftmann parents: 
35726diff
changeset | 888 | "Frct (quotient_of q) = q" | 
| 
7fa17a225852
user interface for abstract datatypes is an attribute, not a command
 haftmann parents: 
35726diff
changeset | 889 | by (cases q) (auto intro: quotient_of_eq) | 
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 890 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 891 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 892 | text {* Numerals *}
 | 
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 893 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 894 | declare quotient_of_Fract [code abstract] | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 895 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 896 | definition of_int :: "int \<Rightarrow> rat" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 897 | where | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 898 | [code_abbrev]: "of_int = Int.of_int" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 899 | hide_const (open) of_int | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 900 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 901 | lemma quotient_of_int [code abstract]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 902 | "quotient_of (Rat.of_int a) = (a, 1)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 903 | by (simp add: of_int_def of_int_rat quotient_of_Fract) | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 904 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 905 | lemma [code_unfold]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 906 | "numeral k = Rat.of_int (numeral k)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 907 | by (simp add: Rat.of_int_def) | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 908 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 909 | lemma [code_unfold]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 910 | "neg_numeral k = Rat.of_int (neg_numeral k)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 911 | by (simp add: Rat.of_int_def) | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 912 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 913 | lemma Frct_code_post [code_post]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 914 | "Frct (0, a) = 0" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 915 | "Frct (a, 0) = 0" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 916 | "Frct (1, 1) = 1" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 917 | "Frct (numeral k, 1) = numeral k" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 918 | "Frct (neg_numeral k, 1) = neg_numeral k" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 919 | "Frct (1, numeral k) = 1 / numeral k" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 920 | "Frct (1, neg_numeral k) = 1 / neg_numeral k" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 921 | "Frct (numeral k, numeral l) = numeral k / numeral l" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 922 | "Frct (numeral k, neg_numeral l) = numeral k / neg_numeral l" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 923 | "Frct (neg_numeral k, numeral l) = neg_numeral k / numeral l" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 924 | "Frct (neg_numeral k, neg_numeral l) = neg_numeral k / neg_numeral l" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 925 | by (simp_all add: Fract_of_int_quotient) | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 926 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 927 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 928 | text {* Operations *}
 | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 929 | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 930 | lemma rat_zero_code [code abstract]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 931 | "quotient_of 0 = (0, 1)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 932 | by (simp add: Zero_rat_def quotient_of_Fract normalize_def) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 933 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 934 | lemma rat_one_code [code abstract]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 935 | "quotient_of 1 = (1, 1)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 936 | by (simp add: One_rat_def quotient_of_Fract normalize_def) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 937 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 938 | lemma rat_plus_code [code abstract]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 939 | "quotient_of (p + q) = (let (a, c) = quotient_of p; (b, d) = quotient_of q | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 940 | in normalize (a * d + b * c, c * d))" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 941 | by (cases p, cases q) (simp add: quotient_of_Fract) | 
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 942 | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 943 | lemma rat_uminus_code [code abstract]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 944 | "quotient_of (- p) = (let (a, b) = quotient_of p in (- a, b))" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 945 | by (cases p) (simp add: quotient_of_Fract) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 946 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 947 | lemma rat_minus_code [code abstract]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 948 | "quotient_of (p - q) = (let (a, c) = quotient_of p; (b, d) = quotient_of q | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 949 | in normalize (a * d - b * c, c * d))" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 950 | by (cases p, cases q) (simp add: quotient_of_Fract) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 951 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 952 | lemma rat_times_code [code abstract]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 953 | "quotient_of (p * q) = (let (a, c) = quotient_of p; (b, d) = quotient_of q | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 954 | in normalize (a * b, c * d))" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 955 | by (cases p, cases q) (simp add: quotient_of_Fract) | 
| 24533 
fe1f93f6a15a
Added code generator setup (taken from Library/Executable_Rat.thy,
 berghofe parents: 
24506diff
changeset | 956 | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 957 | lemma rat_inverse_code [code abstract]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 958 | "quotient_of (inverse p) = (let (a, b) = quotient_of p | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 959 | in if a = 0 then (0, 1) else (sgn a * b, \<bar>a\<bar>))" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 960 | proof (cases p) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 961 | case (Fract a b) then show ?thesis | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 962 | by (cases "0::int" a rule: linorder_cases) (simp_all add: quotient_of_Fract gcd_int.commute) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 963 | qed | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 964 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 965 | lemma rat_divide_code [code abstract]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 966 | "quotient_of (p / q) = (let (a, c) = quotient_of p; (b, d) = quotient_of q | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 967 | in normalize (a * d, c * b))" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 968 | by (cases p, cases q) (simp add: quotient_of_Fract) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 969 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 970 | lemma rat_abs_code [code abstract]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 971 | "quotient_of \<bar>p\<bar> = (let (a, b) = quotient_of p in (\<bar>a\<bar>, b))" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 972 | by (cases p) (simp add: quotient_of_Fract) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 973 | |
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 974 | lemma rat_sgn_code [code abstract]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 975 | "quotient_of (sgn p) = (sgn (fst (quotient_of p)), 1)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 976 | proof (cases p) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 977 | case (Fract a b) then show ?thesis | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 978 | by (cases "0::int" a rule: linorder_cases) (simp_all add: quotient_of_Fract) | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 979 | qed | 
| 24533 
fe1f93f6a15a
Added code generator setup (taken from Library/Executable_Rat.thy,
 berghofe parents: 
24506diff
changeset | 980 | |
| 43733 
a6ca7b83612f
adding code equations to execute floor and ceiling on rational and real numbers
 bulwahn parents: 
43732diff
changeset | 981 | lemma rat_floor_code [code]: | 
| 
a6ca7b83612f
adding code equations to execute floor and ceiling on rational and real numbers
 bulwahn parents: 
43732diff
changeset | 982 | "floor p = (let (a, b) = quotient_of p in a div b)" | 
| 
a6ca7b83612f
adding code equations to execute floor and ceiling on rational and real numbers
 bulwahn parents: 
43732diff
changeset | 983 | by (cases p) (simp add: quotient_of_Fract floor_Fract) | 
| 
a6ca7b83612f
adding code equations to execute floor and ceiling on rational and real numbers
 bulwahn parents: 
43732diff
changeset | 984 | |
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38287diff
changeset | 985 | instantiation rat :: equal | 
| 26513 | 986 | begin | 
| 987 | ||
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 988 | definition [code]: | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38287diff
changeset | 989 | "HOL.equal a b \<longleftrightarrow> quotient_of a = quotient_of b" | 
| 26513 | 990 | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 991 | instance proof | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38287diff
changeset | 992 | qed (simp add: equal_rat_def quotient_of_inject_eq) | 
| 26513 | 993 | |
| 28351 | 994 | lemma rat_eq_refl [code nbe]: | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38287diff
changeset | 995 | "HOL.equal (r::rat) r \<longleftrightarrow> True" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
38287diff
changeset | 996 | by (rule equal_refl) | 
| 28351 | 997 | |
| 26513 | 998 | end | 
| 24533 
fe1f93f6a15a
Added code generator setup (taken from Library/Executable_Rat.thy,
 berghofe parents: 
24506diff
changeset | 999 | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 1000 | lemma rat_less_eq_code [code]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 1001 | "p \<le> q \<longleftrightarrow> (let (a, c) = quotient_of p; (b, d) = quotient_of q in a * d \<le> c * b)" | 
| 35726 | 1002 | by (cases p, cases q) (simp add: quotient_of_Fract mult.commute) | 
| 24533 
fe1f93f6a15a
Added code generator setup (taken from Library/Executable_Rat.thy,
 berghofe parents: 
24506diff
changeset | 1003 | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 1004 | lemma rat_less_code [code]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 1005 | "p < q \<longleftrightarrow> (let (a, c) = quotient_of p; (b, d) = quotient_of q in a * d < c * b)" | 
| 35726 | 1006 | by (cases p, cases q) (simp add: quotient_of_Fract mult.commute) | 
| 24533 
fe1f93f6a15a
Added code generator setup (taken from Library/Executable_Rat.thy,
 berghofe parents: 
24506diff
changeset | 1007 | |
| 35369 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 1008 | lemma [code]: | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 1009 | "of_rat p = (let (a, b) = quotient_of p in of_int a / of_int b)" | 
| 
e4a7947e02b8
more general case and induct rules; normalize and quotient_of; abstract code generation
 haftmann parents: 
35293diff
changeset | 1010 | by (cases p) (simp add: quotient_of_Fract of_rat_rat) | 
| 27652 
818666de6c24
refined code generator setup for rational numbers; more simplification rules for rational numbers
 haftmann parents: 
27551diff
changeset | 1011 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 1012 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 1013 | text {* Quickcheck *}
 | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 1014 | |
| 31203 
5c8fb4fd67e0
moved Code_Index, Random and Quickcheck before Main
 haftmann parents: 
31100diff
changeset | 1015 | definition (in term_syntax) | 
| 32657 | 1016 | valterm_fract :: "int \<times> (unit \<Rightarrow> Code_Evaluation.term) \<Rightarrow> int \<times> (unit \<Rightarrow> Code_Evaluation.term) \<Rightarrow> rat \<times> (unit \<Rightarrow> Code_Evaluation.term)" where | 
| 1017 |   [code_unfold]: "valterm_fract k l = Code_Evaluation.valtermify Fract {\<cdot>} k {\<cdot>} l"
 | |
| 31203 
5c8fb4fd67e0
moved Code_Index, Random and Quickcheck before Main
 haftmann parents: 
31100diff
changeset | 1018 | |
| 37751 | 1019 | notation fcomp (infixl "\<circ>>" 60) | 
| 1020 | notation scomp (infixl "\<circ>\<rightarrow>" 60) | |
| 31203 
5c8fb4fd67e0
moved Code_Index, Random and Quickcheck before Main
 haftmann parents: 
31100diff
changeset | 1021 | |
| 
5c8fb4fd67e0
moved Code_Index, Random and Quickcheck before Main
 haftmann parents: 
31100diff
changeset | 1022 | instantiation rat :: random | 
| 
5c8fb4fd67e0
moved Code_Index, Random and Quickcheck before Main
 haftmann parents: 
31100diff
changeset | 1023 | begin | 
| 
5c8fb4fd67e0
moved Code_Index, Random and Quickcheck before Main
 haftmann parents: 
31100diff
changeset | 1024 | |
| 
5c8fb4fd67e0
moved Code_Index, Random and Quickcheck before Main
 haftmann parents: 
31100diff
changeset | 1025 | definition | 
| 37751 | 1026 | "Quickcheck.random i = Quickcheck.random i \<circ>\<rightarrow> (\<lambda>num. Random.range i \<circ>\<rightarrow> (\<lambda>denom. Pair ( | 
| 31205 
98370b26c2ce
String.literal replaces message_string, code_numeral replaces (code_)index
 haftmann parents: 
31203diff
changeset | 1027 | let j = Code_Numeral.int_of (denom + 1) | 
| 32657 | 1028 | in valterm_fract num (j, \<lambda>u. Code_Evaluation.term_of j))))" | 
| 31203 
5c8fb4fd67e0
moved Code_Index, Random and Quickcheck before Main
 haftmann parents: 
31100diff
changeset | 1029 | |
| 
5c8fb4fd67e0
moved Code_Index, Random and Quickcheck before Main
 haftmann parents: 
31100diff
changeset | 1030 | instance .. | 
| 
5c8fb4fd67e0
moved Code_Index, Random and Quickcheck before Main
 haftmann parents: 
31100diff
changeset | 1031 | |
| 
5c8fb4fd67e0
moved Code_Index, Random and Quickcheck before Main
 haftmann parents: 
31100diff
changeset | 1032 | end | 
| 
5c8fb4fd67e0
moved Code_Index, Random and Quickcheck before Main
 haftmann parents: 
31100diff
changeset | 1033 | |
| 37751 | 1034 | no_notation fcomp (infixl "\<circ>>" 60) | 
| 1035 | no_notation scomp (infixl "\<circ>\<rightarrow>" 60) | |
| 31203 
5c8fb4fd67e0
moved Code_Index, Random and Quickcheck before Main
 haftmann parents: 
31100diff
changeset | 1036 | |
| 41920 
d4fb7a418152
moving exhaustive_generators.ML to Quickcheck directory
 bulwahn parents: 
41792diff
changeset | 1037 | instantiation rat :: exhaustive | 
| 41231 
2e901158675e
adding exhaustive tester instances for numeric types: code_numeral, nat, rat and real
 bulwahn parents: 
40819diff
changeset | 1038 | begin | 
| 
2e901158675e
adding exhaustive tester instances for numeric types: code_numeral, nat, rat and real
 bulwahn parents: 
40819diff
changeset | 1039 | |
| 
2e901158675e
adding exhaustive tester instances for numeric types: code_numeral, nat, rat and real
 bulwahn parents: 
40819diff
changeset | 1040 | definition | 
| 45818 
53a697f5454a
hiding constants and facts in the Quickcheck_Exhaustive and Quickcheck_Narrowing theory;
 bulwahn parents: 
45694diff
changeset | 1041 | "exhaustive_rat f d = Quickcheck_Exhaustive.exhaustive (%l. Quickcheck_Exhaustive.exhaustive (%k. f (Fract k (Code_Numeral.int_of l + 1))) d) d" | 
| 42311 
eb32a8474a57
rational and real instances for new compilation scheme for exhaustive quickcheck
 bulwahn parents: 
41920diff
changeset | 1042 | |
| 
eb32a8474a57
rational and real instances for new compilation scheme for exhaustive quickcheck
 bulwahn parents: 
41920diff
changeset | 1043 | instance .. | 
| 
eb32a8474a57
rational and real instances for new compilation scheme for exhaustive quickcheck
 bulwahn parents: 
41920diff
changeset | 1044 | |
| 
eb32a8474a57
rational and real instances for new compilation scheme for exhaustive quickcheck
 bulwahn parents: 
41920diff
changeset | 1045 | end | 
| 
eb32a8474a57
rational and real instances for new compilation scheme for exhaustive quickcheck
 bulwahn parents: 
41920diff
changeset | 1046 | |
| 
eb32a8474a57
rational and real instances for new compilation scheme for exhaustive quickcheck
 bulwahn parents: 
41920diff
changeset | 1047 | instantiation rat :: full_exhaustive | 
| 
eb32a8474a57
rational and real instances for new compilation scheme for exhaustive quickcheck
 bulwahn parents: 
41920diff
changeset | 1048 | begin | 
| 
eb32a8474a57
rational and real instances for new compilation scheme for exhaustive quickcheck
 bulwahn parents: 
41920diff
changeset | 1049 | |
| 
eb32a8474a57
rational and real instances for new compilation scheme for exhaustive quickcheck
 bulwahn parents: 
41920diff
changeset | 1050 | definition | 
| 45818 
53a697f5454a
hiding constants and facts in the Quickcheck_Exhaustive and Quickcheck_Narrowing theory;
 bulwahn parents: 
45694diff
changeset | 1051 | "full_exhaustive_rat f d = Quickcheck_Exhaustive.full_exhaustive (%(l, _). Quickcheck_Exhaustive.full_exhaustive (%k. | 
| 45507 
6975db7fd6f0
improved generators for rational numbers to generate negative numbers;
 bulwahn parents: 
45478diff
changeset | 1052 | f (let j = Code_Numeral.int_of l + 1 | 
| 
6975db7fd6f0
improved generators for rational numbers to generate negative numbers;
 bulwahn parents: 
45478diff
changeset | 1053 | in valterm_fract k (j, %_. Code_Evaluation.term_of j))) d) d" | 
| 41231 
2e901158675e
adding exhaustive tester instances for numeric types: code_numeral, nat, rat and real
 bulwahn parents: 
40819diff
changeset | 1054 | |
| 
2e901158675e
adding exhaustive tester instances for numeric types: code_numeral, nat, rat and real
 bulwahn parents: 
40819diff
changeset | 1055 | instance .. | 
| 
2e901158675e
adding exhaustive tester instances for numeric types: code_numeral, nat, rat and real
 bulwahn parents: 
40819diff
changeset | 1056 | |
| 
2e901158675e
adding exhaustive tester instances for numeric types: code_numeral, nat, rat and real
 bulwahn parents: 
40819diff
changeset | 1057 | end | 
| 
2e901158675e
adding exhaustive tester instances for numeric types: code_numeral, nat, rat and real
 bulwahn parents: 
40819diff
changeset | 1058 | |
| 43889 
90d24cafb05d
adding code equations for partial_term_of for rational numbers
 bulwahn parents: 
43887diff
changeset | 1059 | instantiation rat :: partial_term_of | 
| 
90d24cafb05d
adding code equations for partial_term_of for rational numbers
 bulwahn parents: 
43887diff
changeset | 1060 | begin | 
| 
90d24cafb05d
adding code equations for partial_term_of for rational numbers
 bulwahn parents: 
43887diff
changeset | 1061 | |
| 
90d24cafb05d
adding code equations for partial_term_of for rational numbers
 bulwahn parents: 
43887diff
changeset | 1062 | instance .. | 
| 
90d24cafb05d
adding code equations for partial_term_of for rational numbers
 bulwahn parents: 
43887diff
changeset | 1063 | |
| 
90d24cafb05d
adding code equations for partial_term_of for rational numbers
 bulwahn parents: 
43887diff
changeset | 1064 | end | 
| 
90d24cafb05d
adding code equations for partial_term_of for rational numbers
 bulwahn parents: 
43887diff
changeset | 1065 | |
| 
90d24cafb05d
adding code equations for partial_term_of for rational numbers
 bulwahn parents: 
43887diff
changeset | 1066 | lemma [code]: | 
| 46758 
4106258260b3
choosing longer constant names in Quickcheck_Narrowing to reduce the chances of name clashes in Quickcheck-Narrowing
 bulwahn parents: 
45818diff
changeset | 1067 | "partial_term_of (ty :: rat itself) (Quickcheck_Narrowing.Narrowing_variable p tt) == Code_Evaluation.Free (STR ''_'') (Typerep.Typerep (STR ''Rat.rat'') [])" | 
| 
4106258260b3
choosing longer constant names in Quickcheck_Narrowing to reduce the chances of name clashes in Quickcheck-Narrowing
 bulwahn parents: 
45818diff
changeset | 1068 | "partial_term_of (ty :: rat itself) (Quickcheck_Narrowing.Narrowing_constructor 0 [l, k]) == | 
| 45507 
6975db7fd6f0
improved generators for rational numbers to generate negative numbers;
 bulwahn parents: 
45478diff
changeset | 1069 | Code_Evaluation.App (Code_Evaluation.Const (STR ''Rat.Frct'') | 
| 
6975db7fd6f0
improved generators for rational numbers to generate negative numbers;
 bulwahn parents: 
45478diff
changeset | 1070 | (Typerep.Typerep (STR ''fun'') [Typerep.Typerep (STR ''Product_Type.prod'') [Typerep.Typerep (STR ''Int.int'') [], Typerep.Typerep (STR ''Int.int'') []], | 
| 
6975db7fd6f0
improved generators for rational numbers to generate negative numbers;
 bulwahn parents: 
45478diff
changeset | 1071 | Typerep.Typerep (STR ''Rat.rat'') []])) (Code_Evaluation.App (Code_Evaluation.App (Code_Evaluation.Const (STR ''Product_Type.Pair'') (Typerep.Typerep (STR ''fun'') [Typerep.Typerep (STR ''Int.int'') [], Typerep.Typerep (STR ''fun'') [Typerep.Typerep (STR ''Int.int'') [], Typerep.Typerep (STR ''Product_Type.prod'') [Typerep.Typerep (STR ''Int.int'') [], Typerep.Typerep (STR ''Int.int'') []]]])) (partial_term_of (TYPE(int)) l)) (partial_term_of (TYPE(int)) k))" | 
| 43889 
90d24cafb05d
adding code equations for partial_term_of for rational numbers
 bulwahn parents: 
43887diff
changeset | 1072 | by (rule partial_term_of_anything)+ | 
| 
90d24cafb05d
adding code equations for partial_term_of for rational numbers
 bulwahn parents: 
43887diff
changeset | 1073 | |
| 43887 | 1074 | instantiation rat :: narrowing | 
| 1075 | begin | |
| 1076 | ||
| 1077 | definition | |
| 45507 
6975db7fd6f0
improved generators for rational numbers to generate negative numbers;
 bulwahn parents: 
45478diff
changeset | 1078 | "narrowing = Quickcheck_Narrowing.apply (Quickcheck_Narrowing.apply | 
| 
6975db7fd6f0
improved generators for rational numbers to generate negative numbers;
 bulwahn parents: 
45478diff
changeset | 1079 | (Quickcheck_Narrowing.cons (%nom denom. Fract nom denom)) narrowing) narrowing" | 
| 43887 | 1080 | |
| 1081 | instance .. | |
| 1082 | ||
| 1083 | end | |
| 1084 | ||
| 1085 | ||
| 45183 
2e1ad4a54189
removing old code generator setup for rational numbers; tuned
 bulwahn parents: 
43889diff
changeset | 1086 | subsection {* Setup for Nitpick *}
 | 
| 24533 
fe1f93f6a15a
Added code generator setup (taken from Library/Executable_Rat.thy,
 berghofe parents: 
24506diff
changeset | 1087 | |
| 38287 | 1088 | declaration {*
 | 
| 1089 |   Nitpick_HOL.register_frac_type @{type_name rat}
 | |
| 33209 | 1090 |    [(@{const_name zero_rat_inst.zero_rat}, @{const_name Nitpick.zero_frac}),
 | 
| 1091 |     (@{const_name one_rat_inst.one_rat}, @{const_name Nitpick.one_frac}),
 | |
| 1092 |     (@{const_name plus_rat_inst.plus_rat}, @{const_name Nitpick.plus_frac}),
 | |
| 1093 |     (@{const_name times_rat_inst.times_rat}, @{const_name Nitpick.times_frac}),
 | |
| 1094 |     (@{const_name uminus_rat_inst.uminus_rat}, @{const_name Nitpick.uminus_frac}),
 | |
| 1095 |     (@{const_name inverse_rat_inst.inverse_rat}, @{const_name Nitpick.inverse_frac}),
 | |
| 37397 
18000f9d783e
adjust Nitpick's handling of "<" on "rat"s and "reals"
 blanchet parents: 
37143diff
changeset | 1096 |     (@{const_name ord_rat_inst.less_rat}, @{const_name Nitpick.less_frac}),
 | 
| 33209 | 1097 |     (@{const_name ord_rat_inst.less_eq_rat}, @{const_name Nitpick.less_eq_frac}),
 | 
| 45478 | 1098 |     (@{const_name field_char_0_class.of_rat}, @{const_name Nitpick.of_frac})]
 | 
| 33197 
de6285ebcc05
continuation of Nitpick's integration into Isabelle;
 blanchet parents: 
32657diff
changeset | 1099 | *} | 
| 
de6285ebcc05
continuation of Nitpick's integration into Isabelle;
 blanchet parents: 
32657diff
changeset | 1100 | |
| 41792 
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
 blanchet parents: 
41231diff
changeset | 1101 | lemmas [nitpick_unfold] = inverse_rat_inst.inverse_rat | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46758diff
changeset | 1102 | one_rat_inst.one_rat ord_rat_inst.less_rat | 
| 37397 
18000f9d783e
adjust Nitpick's handling of "<" on "rat"s and "reals"
 blanchet parents: 
37143diff
changeset | 1103 | ord_rat_inst.less_eq_rat plus_rat_inst.plus_rat times_rat_inst.times_rat | 
| 
18000f9d783e
adjust Nitpick's handling of "<" on "rat"s and "reals"
 blanchet parents: 
37143diff
changeset | 1104 | uminus_rat_inst.uminus_rat zero_rat_inst.zero_rat | 
| 33197 
de6285ebcc05
continuation of Nitpick's integration into Isabelle;
 blanchet parents: 
32657diff
changeset | 1105 | |
| 35343 | 1106 | subsection{* Float syntax *}
 | 
| 1107 | ||
| 1108 | syntax "_Float" :: "float_const \<Rightarrow> 'a"    ("_")
 | |
| 1109 | ||
| 1110 | use "Tools/float_syntax.ML" | |
| 1111 | setup Float_Syntax.setup | |
| 1112 | ||
| 1113 | text{* Test: *}
 | |
| 1114 | lemma "123.456 = -111.111 + 200 + 30 + 4 + 5/10 + 6/100 + (7/1000::rat)" | |
| 1115 | by simp | |
| 1116 | ||
| 37143 | 1117 | |
| 47907 | 1118 | hide_const (open) normalize positive | 
| 37143 | 1119 | |
| 47906 | 1120 | lemmas [transfer_rule del] = | 
| 1121 | rat.All_transfer rat.Ex_transfer rat.rel_eq_transfer forall_rat_transfer | |
| 1122 | Fract.transfer zero_rat.transfer one_rat.transfer plus_rat.transfer | |
| 1123 | uminus_rat.transfer times_rat.transfer inverse_rat.transfer | |
| 47907 | 1124 | positive.transfer of_rat.transfer | 
| 47906 | 1125 | |
| 1126 | text {* De-register @{text "rat"} as a quotient type: *}
 | |
| 1127 | ||
| 47952 | 1128 | declare Quotient_rat[quot_del] | 
| 47906 | 1129 | |
| 29880 
3dee8ff45d3d
move countability proof from Rational to Countable; add instance rat :: countable
 huffman parents: 
29667diff
changeset | 1130 | end |