author | wenzelm |
Mon, 18 Jun 2007 23:30:46 +0200 | |
changeset 23414 | 927203ad4b3a |
parent 23365 | f31794033ae1 |
child 23429 | 5a55a9409e57 |
permissions | -rw-r--r-- |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
1 |
(* Title: HOL/Library/Rational.thy |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
2 |
ID: $Id$ |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
3 |
Author: Markus Wenzel, TU Muenchen |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
4 |
*) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
5 |
|
14691 | 6 |
header {* Rational numbers *} |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
7 |
|
15131 | 8 |
theory Rational |
18913 | 9 |
imports Main |
16417 | 10 |
uses ("rat_arith.ML") |
15131 | 11 |
begin |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
12 |
|
18913 | 13 |
subsection {* Rational numbers *} |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
14 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
15 |
subsubsection {* Equivalence of fractions *} |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
16 |
|
19765 | 17 |
definition |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
20522
diff
changeset
|
18 |
fraction :: "(int \<times> int) set" where |
19765 | 19 |
"fraction = {x. snd x \<noteq> 0}" |
18913 | 20 |
|
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
20522
diff
changeset
|
21 |
definition |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
20522
diff
changeset
|
22 |
ratrel :: "((int \<times> int) \<times> (int \<times> int)) set" where |
19765 | 23 |
"ratrel = {(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
|
24 |
|
18913 | 25 |
lemma fraction_iff [simp]: "(x \<in> fraction) = (snd x \<noteq> 0)" |
26 |
by (simp add: fraction_def) |
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
27 |
|
18913 | 28 |
lemma ratrel_iff [simp]: |
29 |
"((x,y) \<in> ratrel) = |
|
30 |
(snd x \<noteq> 0 \<and> snd y \<noteq> 0 \<and> fst x * snd y = fst y * snd x)" |
|
31 |
by (simp add: ratrel_def) |
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
32 |
|
18913 | 33 |
lemma refl_ratrel: "refl fraction ratrel" |
34 |
by (auto simp add: refl_def fraction_def ratrel_def) |
|
35 |
||
36 |
lemma sym_ratrel: "sym ratrel" |
|
37 |
by (simp add: ratrel_def sym_def) |
|
38 |
||
39 |
lemma trans_ratrel_lemma: |
|
40 |
assumes 1: "a * b' = a' * b" |
|
41 |
assumes 2: "a' * b'' = a'' * b'" |
|
42 |
assumes 3: "b' \<noteq> (0::int)" |
|
43 |
shows "a * b'' = a'' * b" |
|
44 |
proof - |
|
45 |
have "b' * (a * b'') = b'' * (a * b')" by simp |
|
46 |
also note 1 |
|
47 |
also have "b'' * (a' * b) = b * (a' * b'')" by simp |
|
48 |
also note 2 |
|
49 |
also have "b * (a'' * b') = b' * (a'' * b)" by simp |
|
50 |
finally have "b' * (a * b'') = b' * (a'' * b)" . |
|
51 |
with 3 show "a * b'' = a'' * b" by simp |
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
52 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
53 |
|
18913 | 54 |
lemma trans_ratrel: "trans ratrel" |
55 |
by (auto simp add: trans_def elim: trans_ratrel_lemma) |
|
56 |
||
57 |
lemma equiv_ratrel: "equiv fraction ratrel" |
|
58 |
by (rule equiv.intro [OF refl_ratrel sym_ratrel trans_ratrel]) |
|
59 |
||
60 |
lemmas equiv_ratrel_iff [iff] = eq_equiv_class_iff [OF equiv_ratrel] |
|
61 |
||
62 |
lemma equiv_ratrel_iff2: |
|
63 |
"\<lbrakk>snd x \<noteq> 0; snd y \<noteq> 0\<rbrakk> |
|
64 |
\<Longrightarrow> (ratrel `` {x} = ratrel `` {y}) = ((x,y) \<in> ratrel)" |
|
65 |
by (rule eq_equiv_class_iff [OF equiv_ratrel], simp_all) |
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
66 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
67 |
|
18913 | 68 |
subsubsection {* The type of rational numbers *} |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
69 |
|
18913 | 70 |
typedef (Rat) rat = "fraction//ratrel" |
71 |
proof |
|
72 |
have "(0,1) \<in> fraction" by (simp add: fraction_def) |
|
73 |
thus "ratrel``{(0,1)} \<in> fraction//ratrel" by (rule quotientI) |
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
74 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
75 |
|
18913 | 76 |
lemma ratrel_in_Rat [simp]: "snd x \<noteq> 0 \<Longrightarrow> ratrel``{x} \<in> Rat" |
77 |
by (simp add: Rat_def quotientI) |
|
78 |
||
79 |
declare Abs_Rat_inject [simp] Abs_Rat_inverse [simp] |
|
80 |
||
81 |
||
19765 | 82 |
definition |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
20522
diff
changeset
|
83 |
Fract :: "int \<Rightarrow> int \<Rightarrow> rat" where |
19765 | 84 |
"Fract a b = Abs_Rat (ratrel``{(a,b)})" |
18913 | 85 |
|
86 |
theorem Rat_cases [case_names Fract, cases type: rat]: |
|
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
20522
diff
changeset
|
87 |
"(!!a b. q = Fract a b ==> b \<noteq> 0 ==> C) ==> C" |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
20522
diff
changeset
|
88 |
by (cases q) (clarsimp simp add: Fract_def Rat_def fraction_def quotient_def) |
18913 | 89 |
|
90 |
theorem Rat_induct [case_names Fract, induct type: rat]: |
|
91 |
"(!!a b. b \<noteq> 0 ==> P (Fract a b)) ==> P q" |
|
92 |
by (cases q) simp |
|
93 |
||
94 |
||
95 |
subsubsection {* Congruence lemmas *} |
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
96 |
|
18913 | 97 |
lemma add_congruent2: |
98 |
"(\<lambda>x y. ratrel``{(fst x * snd y + fst y * snd x, snd x * snd y)}) |
|
99 |
respects2 ratrel" |
|
100 |
apply (rule equiv_ratrel [THEN congruent2_commuteI]) |
|
101 |
apply (simp_all add: left_distrib) |
|
102 |
done |
|
103 |
||
104 |
lemma minus_congruent: |
|
105 |
"(\<lambda>x. ratrel``{(- fst x, snd x)}) respects ratrel" |
|
106 |
by (simp add: congruent_def) |
|
107 |
||
108 |
lemma mult_congruent2: |
|
109 |
"(\<lambda>x y. ratrel``{(fst x * fst y, snd x * snd y)}) respects2 ratrel" |
|
110 |
by (rule equiv_ratrel [THEN congruent2_commuteI], simp_all) |
|
111 |
||
112 |
lemma inverse_congruent: |
|
113 |
"(\<lambda>x. ratrel``{if fst x=0 then (0,1) else (snd x, fst x)}) respects ratrel" |
|
114 |
by (auto simp add: congruent_def mult_commute) |
|
115 |
||
116 |
lemma le_congruent2: |
|
18982 | 117 |
"(\<lambda>x y. {(fst x * snd y)*(snd x * snd y) \<le> (fst y * snd x)*(snd x * snd y)}) |
18913 | 118 |
respects2 ratrel" |
119 |
proof (clarsimp simp add: congruent2_def) |
|
120 |
fix a b a' b' c d c' d'::int |
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
121 |
assume neq: "b \<noteq> 0" "b' \<noteq> 0" "d \<noteq> 0" "d' \<noteq> 0" |
18913 | 122 |
assume eq1: "a * b' = a' * b" |
123 |
assume eq2: "c * d' = c' * d" |
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
124 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
125 |
let ?le = "\<lambda>a b c d. ((a * d) * (b * d) \<le> (c * b) * (b * d))" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
126 |
{ |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
127 |
fix a b c d x :: int assume x: "x \<noteq> 0" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
128 |
have "?le a b c d = ?le (a * x) (b * x) c d" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
129 |
proof - |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
130 |
from x have "0 < x * x" by (auto simp add: zero_less_mult_iff) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
131 |
hence "?le a b c d = |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
132 |
((a * d) * (b * d) * (x * x) \<le> (c * b) * (b * d) * (x * x))" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
133 |
by (simp add: mult_le_cancel_right) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
134 |
also have "... = ?le (a * x) (b * x) c d" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
135 |
by (simp add: mult_ac) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
136 |
finally show ?thesis . |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
137 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
138 |
} note le_factor = this |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
139 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
140 |
let ?D = "b * d" and ?D' = "b' * d'" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
141 |
from neq have D: "?D \<noteq> 0" by simp |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
142 |
from neq have "?D' \<noteq> 0" by simp |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
143 |
hence "?le a b c d = ?le (a * ?D') (b * ?D') c d" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
144 |
by (rule le_factor) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
145 |
also have "... = ((a * b') * ?D * ?D' * d * d' \<le> (c * d') * ?D * ?D' * b * b')" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
146 |
by (simp add: mult_ac) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
147 |
also have "... = ((a' * b) * ?D * ?D' * d * d' \<le> (c' * d) * ?D * ?D' * b * b')" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
148 |
by (simp only: eq1 eq2) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
149 |
also have "... = ?le (a' * ?D) (b' * ?D) c' d'" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
150 |
by (simp add: mult_ac) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
151 |
also from D have "... = ?le a' b' c' d'" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
152 |
by (rule le_factor [symmetric]) |
18913 | 153 |
finally show "?le a b c d = ?le a' b' c' d'" . |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
154 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
155 |
|
18913 | 156 |
lemmas UN_ratrel = UN_equiv_class [OF equiv_ratrel] |
157 |
lemmas UN_ratrel2 = UN_equiv_class2 [OF equiv_ratrel equiv_ratrel] |
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
158 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
159 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
160 |
subsubsection {* Standard operations on rational numbers *} |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
161 |
|
20522 | 162 |
instance rat :: "{ord, zero, one, plus, times, minus, inverse, power}" .. |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
163 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
164 |
defs (overloaded) |
18913 | 165 |
Zero_rat_def: "0 == Fract 0 1" |
166 |
One_rat_def: "1 == Fract 1 1" |
|
167 |
||
168 |
add_rat_def: |
|
169 |
"q + r == |
|
170 |
Abs_Rat (\<Union>x \<in> Rep_Rat q. \<Union>y \<in> Rep_Rat r. |
|
171 |
ratrel``{(fst x * snd y + fst y * snd x, snd x * snd y)})" |
|
172 |
||
173 |
minus_rat_def: |
|
174 |
"- q == Abs_Rat (\<Union>x \<in> Rep_Rat q. ratrel``{(- fst x, snd x)})" |
|
175 |
||
176 |
diff_rat_def: "q - r == q + - (r::rat)" |
|
177 |
||
178 |
mult_rat_def: |
|
179 |
"q * r == |
|
180 |
Abs_Rat (\<Union>x \<in> Rep_Rat q. \<Union>y \<in> Rep_Rat r. |
|
181 |
ratrel``{(fst x * fst y, snd x * snd y)})" |
|
182 |
||
183 |
inverse_rat_def: |
|
184 |
"inverse q == |
|
185 |
Abs_Rat (\<Union>x \<in> Rep_Rat q. |
|
186 |
ratrel``{if fst x=0 then (0,1) else (snd x, fst x)})" |
|
187 |
||
188 |
divide_rat_def: "q / r == q * inverse (r::rat)" |
|
189 |
||
190 |
le_rat_def: |
|
18982 | 191 |
"q \<le> r == contents (\<Union>x \<in> Rep_Rat q. \<Union>y \<in> Rep_Rat r. |
192 |
{(fst x * snd y)*(snd x * snd y) \<le> (fst y * snd x)*(snd x * snd y)})" |
|
18913 | 193 |
|
194 |
less_rat_def: "(z < (w::rat)) == (z \<le> w & z \<noteq> w)" |
|
195 |
||
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
196 |
abs_rat_def: "\<bar>q\<bar> == if q < 0 then -q else (q::rat)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
197 |
|
20522 | 198 |
primrec (rat) |
199 |
rat_power_0: "q ^ 0 = 1" |
|
200 |
rat_power_Suc: "q ^ (Suc n) = (q::rat) * (q ^ n)" |
|
201 |
||
18913 | 202 |
lemma zero_rat: "0 = Fract 0 1" |
203 |
by (simp add: Zero_rat_def) |
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
204 |
|
18913 | 205 |
lemma one_rat: "1 = Fract 1 1" |
206 |
by (simp add: One_rat_def) |
|
207 |
||
208 |
theorem eq_rat: "b \<noteq> 0 ==> d \<noteq> 0 ==> |
|
209 |
(Fract a b = Fract c d) = (a * d = c * b)" |
|
210 |
by (simp add: Fract_def) |
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
211 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
212 |
theorem add_rat: "b \<noteq> 0 ==> d \<noteq> 0 ==> |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
213 |
Fract a b + Fract c d = Fract (a * d + c * b) (b * d)" |
18913 | 214 |
by (simp add: Fract_def add_rat_def add_congruent2 UN_ratrel2) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
215 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
216 |
theorem minus_rat: "b \<noteq> 0 ==> -(Fract a b) = Fract (-a) b" |
18913 | 217 |
by (simp add: Fract_def minus_rat_def minus_congruent UN_ratrel) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
218 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
219 |
theorem diff_rat: "b \<noteq> 0 ==> d \<noteq> 0 ==> |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
220 |
Fract a b - Fract c d = Fract (a * d - c * b) (b * d)" |
18913 | 221 |
by (simp add: diff_rat_def add_rat minus_rat) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
222 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
223 |
theorem mult_rat: "b \<noteq> 0 ==> d \<noteq> 0 ==> |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
224 |
Fract a b * Fract c d = Fract (a * c) (b * d)" |
18913 | 225 |
by (simp add: Fract_def mult_rat_def mult_congruent2 UN_ratrel2) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
226 |
|
18913 | 227 |
theorem inverse_rat: "a \<noteq> 0 ==> b \<noteq> 0 ==> |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
228 |
inverse (Fract a b) = Fract b a" |
18913 | 229 |
by (simp add: Fract_def inverse_rat_def inverse_congruent UN_ratrel) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
230 |
|
18913 | 231 |
theorem divide_rat: "c \<noteq> 0 ==> b \<noteq> 0 ==> d \<noteq> 0 ==> |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
232 |
Fract a b / Fract c d = Fract (a * d) (b * c)" |
18913 | 233 |
by (simp add: divide_rat_def inverse_rat mult_rat) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
234 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
235 |
theorem le_rat: "b \<noteq> 0 ==> d \<noteq> 0 ==> |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
236 |
(Fract a b \<le> Fract c d) = ((a * d) * (b * d) \<le> (c * b) * (b * d))" |
18982 | 237 |
by (simp add: Fract_def le_rat_def le_congruent2 UN_ratrel2) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
238 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
239 |
theorem less_rat: "b \<noteq> 0 ==> d \<noteq> 0 ==> |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
240 |
(Fract a b < Fract c d) = ((a * d) * (b * d) < (c * b) * (b * d))" |
18913 | 241 |
by (simp add: less_rat_def le_rat eq_rat order_less_le) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
242 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
243 |
theorem abs_rat: "b \<noteq> 0 ==> \<bar>Fract a b\<bar> = Fract \<bar>a\<bar> \<bar>b\<bar>" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
244 |
by (simp add: abs_rat_def minus_rat zero_rat less_rat eq_rat) |
14691 | 245 |
(auto simp add: mult_less_0_iff zero_less_mult_iff order_le_less |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
246 |
split: abs_split) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
247 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
248 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
249 |
subsubsection {* The ordered field of rational numbers *} |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
250 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
251 |
instance rat :: field |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
252 |
proof |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
253 |
fix q r s :: rat |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
254 |
show "(q + r) + s = q + (r + s)" |
18913 | 255 |
by (induct q, induct r, induct s) |
256 |
(simp add: add_rat add_ac mult_ac int_distrib) |
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
257 |
show "q + r = r + q" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
258 |
by (induct q, induct r) (simp add: add_rat add_ac mult_ac) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
259 |
show "0 + q = q" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
260 |
by (induct q) (simp add: zero_rat add_rat) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
261 |
show "(-q) + q = 0" |
18913 | 262 |
by (induct q) (simp add: zero_rat minus_rat add_rat eq_rat) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
263 |
show "q - r = q + (-r)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
264 |
by (induct q, induct r) (simp add: add_rat minus_rat diff_rat) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
265 |
show "(q * r) * s = q * (r * s)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
266 |
by (induct q, induct r, induct s) (simp add: mult_rat mult_ac) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
267 |
show "q * r = r * q" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
268 |
by (induct q, induct r) (simp add: mult_rat mult_ac) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
269 |
show "1 * q = q" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
270 |
by (induct q) (simp add: one_rat mult_rat) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
271 |
show "(q + r) * s = q * s + r * s" |
14691 | 272 |
by (induct q, induct r, induct s) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
273 |
(simp add: add_rat mult_rat eq_rat int_distrib) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
274 |
show "q \<noteq> 0 ==> inverse q * q = 1" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
275 |
by (induct q) (simp add: inverse_rat mult_rat one_rat zero_rat eq_rat) |
14430
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
paulson
parents:
14421
diff
changeset
|
276 |
show "q / r = q * inverse r" |
14691 | 277 |
by (simp add: divide_rat_def) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
278 |
show "0 \<noteq> (1::rat)" |
14691 | 279 |
by (simp add: zero_rat one_rat eq_rat) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
280 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
281 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
282 |
instance rat :: linorder |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
283 |
proof |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
284 |
fix q r s :: rat |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
285 |
{ |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
286 |
assume "q \<le> r" and "r \<le> s" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
287 |
show "q \<le> s" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
288 |
proof (insert prems, induct q, induct r, induct s) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
289 |
fix a b c d e f :: int |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
290 |
assume neq: "b \<noteq> 0" "d \<noteq> 0" "f \<noteq> 0" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
291 |
assume 1: "Fract a b \<le> Fract c d" and 2: "Fract c d \<le> Fract e f" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
292 |
show "Fract a b \<le> Fract e f" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
293 |
proof - |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
294 |
from neq obtain bb: "0 < b * b" and dd: "0 < d * d" and ff: "0 < f * f" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
295 |
by (auto simp add: zero_less_mult_iff linorder_neq_iff) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
296 |
have "(a * d) * (b * d) * (f * f) \<le> (c * b) * (b * d) * (f * f)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
297 |
proof - |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
298 |
from neq 1 have "(a * d) * (b * d) \<le> (c * b) * (b * d)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
299 |
by (simp add: le_rat) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
300 |
with ff show ?thesis by (simp add: mult_le_cancel_right) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
301 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
302 |
also have "... = (c * f) * (d * f) * (b * b)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
303 |
by (simp only: mult_ac) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
304 |
also have "... \<le> (e * d) * (d * f) * (b * b)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
305 |
proof - |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
306 |
from neq 2 have "(c * f) * (d * f) \<le> (e * d) * (d * f)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
307 |
by (simp add: le_rat) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
308 |
with bb show ?thesis by (simp add: mult_le_cancel_right) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
309 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
310 |
finally have "(a * f) * (b * f) * (d * d) \<le> e * b * (b * f) * (d * d)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
311 |
by (simp only: mult_ac) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
312 |
with dd have "(a * f) * (b * f) \<le> (e * b) * (b * f)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
313 |
by (simp add: mult_le_cancel_right) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
314 |
with neq show ?thesis by (simp add: le_rat) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
315 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
316 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
317 |
next |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
318 |
assume "q \<le> r" and "r \<le> q" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
319 |
show "q = r" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
320 |
proof (insert prems, induct q, induct r) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
321 |
fix a b c d :: int |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
322 |
assume neq: "b \<noteq> 0" "d \<noteq> 0" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
323 |
assume 1: "Fract a b \<le> Fract c d" and 2: "Fract c d \<le> Fract a b" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
324 |
show "Fract a b = Fract c d" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
325 |
proof - |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
326 |
from neq 1 have "(a * d) * (b * d) \<le> (c * b) * (b * d)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
327 |
by (simp add: le_rat) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
328 |
also have "... \<le> (a * d) * (b * d)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
329 |
proof - |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
330 |
from neq 2 have "(c * b) * (d * b) \<le> (a * d) * (d * b)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
331 |
by (simp add: le_rat) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
332 |
thus ?thesis by (simp only: mult_ac) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
333 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
334 |
finally have "(a * d) * (b * d) = (c * b) * (b * d)" . |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
335 |
moreover from neq have "b * d \<noteq> 0" by simp |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
336 |
ultimately have "a * d = c * b" by simp |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
337 |
with neq show ?thesis by (simp add: eq_rat) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
338 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
339 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
340 |
next |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
341 |
show "q \<le> q" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
342 |
by (induct q) (simp add: le_rat) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
343 |
show "(q < r) = (q \<le> r \<and> q \<noteq> r)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
344 |
by (simp only: less_rat_def) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
345 |
show "q \<le> r \<or> r \<le> q" |
18913 | 346 |
by (induct q, induct r) |
347 |
(simp add: le_rat mult_commute, rule linorder_linear) |
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
348 |
} |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
349 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
350 |
|
22456 | 351 |
instance rat :: distrib_lattice |
352 |
"inf r s \<equiv> min r s" |
|
353 |
"sup r s \<equiv> max r s" |
|
354 |
by default (auto simp add: min_max.sup_inf_distrib1 inf_rat_def sup_rat_def) |
|
355 |
||
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
356 |
instance rat :: ordered_field |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
357 |
proof |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
358 |
fix q r s :: rat |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
359 |
show "q \<le> r ==> s + q \<le> s + r" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
360 |
proof (induct q, induct r, induct s) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
361 |
fix a b c d e f :: int |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
362 |
assume neq: "b \<noteq> 0" "d \<noteq> 0" "f \<noteq> 0" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
363 |
assume le: "Fract a b \<le> Fract c d" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
364 |
show "Fract e f + Fract a b \<le> Fract e f + Fract c d" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
365 |
proof - |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
366 |
let ?F = "f * f" from neq have F: "0 < ?F" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
367 |
by (auto simp add: zero_less_mult_iff) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
368 |
from neq le have "(a * d) * (b * d) \<le> (c * b) * (b * d)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
369 |
by (simp add: le_rat) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
370 |
with F have "(a * d) * (b * d) * ?F * ?F \<le> (c * b) * (b * d) * ?F * ?F" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
371 |
by (simp add: mult_le_cancel_right) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
372 |
with neq show ?thesis by (simp add: add_rat le_rat mult_ac int_distrib) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
373 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
374 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
375 |
show "q < r ==> 0 < s ==> s * q < s * r" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
376 |
proof (induct q, induct r, induct s) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
377 |
fix a b c d e f :: int |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
378 |
assume neq: "b \<noteq> 0" "d \<noteq> 0" "f \<noteq> 0" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
379 |
assume le: "Fract a b < Fract c d" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
380 |
assume gt: "0 < Fract e f" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
381 |
show "Fract e f * Fract a b < Fract e f * Fract c d" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
382 |
proof - |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
383 |
let ?E = "e * f" and ?F = "f * f" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
384 |
from neq gt have "0 < ?E" |
14378
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
385 |
by (auto simp add: zero_rat less_rat le_rat order_less_le eq_rat) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
386 |
moreover from neq have "0 < ?F" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
387 |
by (auto simp add: zero_less_mult_iff) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
388 |
moreover from neq le have "(a * d) * (b * d) < (c * b) * (b * d)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
389 |
by (simp add: less_rat) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
390 |
ultimately have "(a * d) * (b * d) * ?E * ?F < (c * b) * (b * d) * ?E * ?F" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
391 |
by (simp add: mult_less_cancel_right) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
392 |
with neq show ?thesis |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
393 |
by (simp add: less_rat mult_rat mult_ac) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
394 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
395 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
396 |
show "\<bar>q\<bar> = (if q < 0 then -q else q)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
397 |
by (simp only: abs_rat_def) |
22456 | 398 |
qed auto |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
399 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
400 |
instance rat :: division_by_zero |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
401 |
proof |
18913 | 402 |
show "inverse 0 = (0::rat)" |
403 |
by (simp add: zero_rat Fract_def inverse_rat_def |
|
404 |
inverse_congruent UN_ratrel) |
|
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
405 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
406 |
|
20522 | 407 |
instance rat :: recpower |
408 |
proof |
|
409 |
fix q :: rat |
|
410 |
fix n :: nat |
|
411 |
show "q ^ 0 = 1" by simp |
|
412 |
show "q ^ (Suc n) = q * (q ^ n)" by simp |
|
413 |
qed |
|
414 |
||
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
415 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
416 |
subsection {* Various Other Results *} |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
417 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
418 |
lemma minus_rat_cancel [simp]: "b \<noteq> 0 ==> Fract (-a) (-b) = Fract a b" |
18913 | 419 |
by (simp add: eq_rat) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
420 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
421 |
theorem Rat_induct_pos [case_names Fract, induct type: rat]: |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
422 |
assumes step: "!!a b. 0 < b ==> P (Fract a b)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
423 |
shows "P q" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
424 |
proof (cases q) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
425 |
have step': "!!a b. b < 0 ==> P (Fract a b)" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
426 |
proof - |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
427 |
fix a::int and b::int |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
428 |
assume b: "b < 0" |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
429 |
hence "0 < -b" by simp |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
430 |
hence "P (Fract (-a) (-b))" by (rule step) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
431 |
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
|
432 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
433 |
case (Fract a b) |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
434 |
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
|
435 |
qed |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
436 |
|
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
437 |
lemma zero_less_Fract_iff: |
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
438 |
"0 < b ==> (0 < Fract a b) = (0 < a)" |
14691 | 439 |
by (simp add: zero_rat less_rat order_less_imp_not_eq2 zero_less_mult_iff) |
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
440 |
|
14378
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
441 |
lemma Fract_add_one: "n \<noteq> 0 ==> Fract (m + n) n = Fract m n + 1" |
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
442 |
apply (insert add_rat [of concl: m n 1 1]) |
14691 | 443 |
apply (simp add: one_rat [symmetric]) |
14378
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
444 |
done |
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
445 |
|
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
446 |
lemma Fract_of_nat_eq: "Fract (of_nat k) 1 = of_nat k" |
14691 | 447 |
apply (induct k) |
448 |
apply (simp add: zero_rat) |
|
449 |
apply (simp add: Fract_add_one) |
|
14378
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
450 |
done |
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
451 |
|
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
452 |
lemma Fract_of_int_eq: "Fract k 1 = of_int k" |
14691 | 453 |
proof (cases k rule: int_cases) |
14378
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
454 |
case (nonneg n) |
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
455 |
thus ?thesis by (simp add: int_eq_of_nat Fract_of_nat_eq) |
14691 | 456 |
next |
14378
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
457 |
case (neg n) |
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
458 |
hence "Fract k 1 = - (Fract (of_nat (Suc n)) 1)" |
14691 | 459 |
by (simp only: minus_rat int_eq_of_nat) |
14378
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
460 |
also have "... = - (of_nat (Suc n))" |
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
461 |
by (simp only: Fract_of_nat_eq) |
14691 | 462 |
finally show ?thesis |
463 |
by (simp add: only: prems int_eq_of_nat of_int_minus of_int_of_nat_eq) |
|
464 |
qed |
|
14378
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
465 |
|
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14365
diff
changeset
|
466 |
|
14691 | 467 |
subsection {* Numerals and Arithmetic *} |
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14378
diff
changeset
|
468 |
|
22456 | 469 |
instance rat :: number |
470 |
rat_number_of_def: "(number_of w :: rat) \<equiv> of_int w" .. |
|
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14378
diff
changeset
|
471 |
|
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14378
diff
changeset
|
472 |
instance rat :: number_ring |
19765 | 473 |
by default (simp add: rat_number_of_def) |
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14378
diff
changeset
|
474 |
|
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14378
diff
changeset
|
475 |
use "rat_arith.ML" |
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14378
diff
changeset
|
476 |
setup rat_arith_setup |
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14378
diff
changeset
|
477 |
|
23342 | 478 |
|
479 |
subsection {* Embedding from Rationals to other Fields *} |
|
480 |
||
481 |
axclass field_char_0 < field, ring_char_0 |
|
482 |
||
483 |
instance ordered_field < field_char_0 .. |
|
484 |
||
485 |
definition |
|
486 |
of_rat :: "rat \<Rightarrow> 'a::field_char_0" |
|
487 |
where |
|
488 |
"of_rat q = contents (\<Union>(a,b) \<in> Rep_Rat q. {of_int a / of_int b})" |
|
489 |
||
490 |
lemma of_rat_congruent: |
|
491 |
"(\<lambda>(a, b). {of_int a / of_int b::'a::field_char_0}) respects ratrel" |
|
492 |
apply (rule congruent.intro) |
|
493 |
apply (clarsimp simp add: nonzero_divide_eq_eq nonzero_eq_divide_eq) |
|
494 |
apply (simp only: of_int_mult [symmetric]) |
|
495 |
done |
|
496 |
||
497 |
lemma of_rat_rat: |
|
498 |
"b \<noteq> 0 \<Longrightarrow> of_rat (Fract a b) = of_int a / of_int b" |
|
499 |
unfolding Fract_def of_rat_def |
|
500 |
by (simp add: UN_ratrel of_rat_congruent) |
|
501 |
||
502 |
lemma of_rat_0 [simp]: "of_rat 0 = 0" |
|
503 |
by (simp add: Zero_rat_def of_rat_rat) |
|
504 |
||
505 |
lemma of_rat_1 [simp]: "of_rat 1 = 1" |
|
506 |
by (simp add: One_rat_def of_rat_rat) |
|
507 |
||
508 |
lemma of_rat_add: "of_rat (a + b) = of_rat a + of_rat b" |
|
509 |
by (induct a, induct b, simp add: add_rat of_rat_rat add_frac_eq) |
|
510 |
||
23343 | 511 |
lemma of_rat_minus: "of_rat (- a) = - of_rat a" |
512 |
by (induct a, simp add: minus_rat of_rat_rat) |
|
513 |
||
514 |
lemma of_rat_diff: "of_rat (a - b) = of_rat a - of_rat b" |
|
515 |
by (simp only: diff_minus of_rat_add of_rat_minus) |
|
516 |
||
23342 | 517 |
lemma of_rat_mult: "of_rat (a * b) = of_rat a * of_rat b" |
518 |
apply (induct a, induct b, simp add: mult_rat of_rat_rat) |
|
519 |
apply (simp add: divide_inverse nonzero_inverse_mult_distrib mult_ac) |
|
520 |
done |
|
521 |
||
522 |
lemma nonzero_of_rat_inverse: |
|
523 |
"a \<noteq> 0 \<Longrightarrow> of_rat (inverse a) = inverse (of_rat a)" |
|
23343 | 524 |
apply (rule inverse_unique [symmetric]) |
525 |
apply (simp add: of_rat_mult [symmetric]) |
|
23342 | 526 |
done |
527 |
||
528 |
lemma of_rat_inverse: |
|
529 |
"(of_rat (inverse a)::'a::{field_char_0,division_by_zero}) = |
|
530 |
inverse (of_rat a)" |
|
531 |
by (cases "a = 0", simp_all add: nonzero_of_rat_inverse) |
|
532 |
||
533 |
lemma nonzero_of_rat_divide: |
|
534 |
"b \<noteq> 0 \<Longrightarrow> of_rat (a / b) = of_rat a / of_rat b" |
|
535 |
by (simp add: divide_inverse of_rat_mult nonzero_of_rat_inverse) |
|
536 |
||
537 |
lemma of_rat_divide: |
|
538 |
"(of_rat (a / b)::'a::{field_char_0,division_by_zero}) |
|
539 |
= of_rat a / of_rat b" |
|
540 |
by (cases "b = 0", simp_all add: nonzero_of_rat_divide) |
|
541 |
||
23343 | 542 |
lemma of_rat_power: |
543 |
"(of_rat (a ^ n)::'a::{field_char_0,recpower}) = of_rat a ^ n" |
|
544 |
by (induct n) (simp_all add: of_rat_mult power_Suc) |
|
545 |
||
546 |
lemma of_rat_eq_iff [simp]: "(of_rat a = of_rat b) = (a = b)" |
|
547 |
apply (induct a, induct b) |
|
548 |
apply (simp add: of_rat_rat eq_rat) |
|
549 |
apply (simp add: nonzero_divide_eq_eq nonzero_eq_divide_eq) |
|
550 |
apply (simp only: of_int_mult [symmetric] of_int_eq_iff) |
|
551 |
done |
|
552 |
||
553 |
lemmas of_rat_eq_0_iff [simp] = of_rat_eq_iff [of _ 0, simplified] |
|
554 |
||
555 |
lemma of_rat_eq_id [simp]: "of_rat = (id :: rat \<Rightarrow> rat)" |
|
556 |
proof |
|
557 |
fix a |
|
558 |
show "of_rat a = id a" |
|
559 |
by (induct a) |
|
560 |
(simp add: of_rat_rat divide_rat Fract_of_int_eq [symmetric]) |
|
561 |
qed |
|
562 |
||
563 |
text{*Collapse nested embeddings*} |
|
564 |
lemma of_rat_of_nat_eq [simp]: "of_rat (of_nat n) = of_nat n" |
|
565 |
by (induct n) (simp_all add: of_rat_add) |
|
566 |
||
567 |
lemma of_rat_of_int_eq [simp]: "of_rat (of_int z) = of_int z" |
|
23365 | 568 |
by (cases z rule: int_diff_cases, simp add: of_rat_diff) |
23343 | 569 |
|
570 |
lemma of_rat_number_of_eq [simp]: |
|
571 |
"of_rat (number_of w) = (number_of w :: 'a::{number_ring,field_char_0})" |
|
572 |
by (simp add: number_of_eq) |
|
573 |
||
14365
3d4df8c166ae
replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents:
diff
changeset
|
574 |
end |