author | wenzelm |
Wed, 07 Sep 2011 16:37:50 +0200 | |
changeset 44779 | 98d597c4193d |
parent 42463 | f270e3e18be5 |
child 44780 | a13cdb1e9e08 |
permissions | -rw-r--r-- |
24197 | 1 |
(* Title: HOL/Library/Abstract_Rat.thy |
2 |
Author: Amine Chaieb |
|
3 |
*) |
|
4 |
||
5 |
header {* Abstract rational numbers *} |
|
6 |
||
7 |
theory Abstract_Rat |
|
36411 | 8 |
imports Complex_Main |
24197 | 9 |
begin |
10 |
||
42463 | 11 |
type_synonym Num = "int \<times> int" |
25005 | 12 |
|
44779 | 13 |
abbreviation Num0_syn :: Num ("0\<^sub>N") |
14 |
where "0\<^sub>N \<equiv> (0, 0)" |
|
25005 | 15 |
|
44779 | 16 |
abbreviation Numi_syn :: "int \<Rightarrow> Num" ("_\<^sub>N") |
17 |
where "i\<^sub>N \<equiv> (i, 1)" |
|
24197 | 18 |
|
44779 | 19 |
definition isnormNum :: "Num \<Rightarrow> bool" where |
31706 | 20 |
"isnormNum = (\<lambda>(a,b). (if a = 0 then b = 0 else b > 0 \<and> gcd a b = 1))" |
24197 | 21 |
|
44779 | 22 |
definition normNum :: "Num \<Rightarrow> Num" where |
23 |
"normNum = (\<lambda>(a,b). |
|
24 |
(if a=0 \<or> b = 0 then (0,0) else |
|
25 |
(let g = gcd a b |
|
26 |
in if b > 0 then (a div g, b div g) else (- (a div g), - (b div g)))))" |
|
24197 | 27 |
|
44779 | 28 |
declare gcd_dvd1_int[presburger] gcd_dvd2_int[presburger] |
29 |
||
24197 | 30 |
lemma normNum_isnormNum [simp]: "isnormNum (normNum x)" |
31 |
proof - |
|
32 |
have " \<exists> a b. x = (a,b)" by auto |
|
33 |
then obtain a b where x[simp]: "x = (a,b)" by blast |
|
44779 | 34 |
{ assume "a=0 \<or> b = 0" hence ?thesis by (simp add: normNum_def isnormNum_def) } |
24197 | 35 |
moreover |
44779 | 36 |
{ assume anz: "a \<noteq> 0" and bnz: "b \<noteq> 0" |
31706 | 37 |
let ?g = "gcd a b" |
24197 | 38 |
let ?a' = "a div ?g" |
39 |
let ?b' = "b div ?g" |
|
31706 | 40 |
let ?g' = "gcd ?a' ?b'" |
44779 | 41 |
from anz bnz have "?g \<noteq> 0" by simp with gcd_ge_0_int[of a b] |
41528 | 42 |
have gpos: "?g > 0" by arith |
44779 | 43 |
have gdvd: "?g dvd a" "?g dvd b" by arith+ |
44 |
from zdvd_mult_div_cancel[OF gdvd(1)] zdvd_mult_div_cancel[OF gdvd(2)] anz bnz |
|
45 |
have nz':"?a' \<noteq> 0" "?b' \<noteq> 0" by - (rule notI, simp)+ |
|
46 |
from anz bnz have stupid: "a \<noteq> 0 \<or> b \<noteq> 0" by arith |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31706
diff
changeset
|
47 |
from div_gcd_coprime_int[OF stupid] have gp1: "?g' = 1" . |
24197 | 48 |
from bnz have "b < 0 \<or> b > 0" by arith |
49 |
moreover |
|
44779 | 50 |
{ assume b: "b > 0" |
51 |
from b have "?b' \<ge> 0" |
|
52 |
by (presburger add: pos_imp_zdiv_nonneg_iff[OF gpos]) |
|
27668 | 53 |
with nz' have b': "?b' > 0" by arith |
24197 | 54 |
from b b' anz bnz nz' gp1 have ?thesis |
44779 | 55 |
by (simp add: isnormNum_def normNum_def Let_def split_def)} |
56 |
moreover { |
|
57 |
assume b: "b < 0" |
|
58 |
{ assume b': "?b' \<ge> 0" |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32456
diff
changeset
|
59 |
from gpos have th: "?g \<ge> 0" by arith |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32456
diff
changeset
|
60 |
from mult_nonneg_nonneg[OF th b'] zdvd_mult_div_cancel[OF gdvd(2)] |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32456
diff
changeset
|
61 |
have False using b by arith } |
44779 | 62 |
hence b': "?b' < 0" by (presburger add: linorder_not_le[symmetric]) |
24197 | 63 |
from anz bnz nz' b b' gp1 have ?thesis |
44779 | 64 |
by (simp add: isnormNum_def normNum_def Let_def split_def) } |
24197 | 65 |
ultimately have ?thesis by blast |
66 |
} |
|
67 |
ultimately show ?thesis by blast |
|
68 |
qed |
|
69 |
||
70 |
text {* Arithmetic over Num *} |
|
71 |
||
44779 | 72 |
definition Nadd :: "Num \<Rightarrow> Num \<Rightarrow> Num" (infixl "+\<^sub>N" 60) where |
73 |
"Nadd = (\<lambda>(a,b) (a',b'). if a = 0 \<or> b = 0 then normNum(a',b') |
|
24197 | 74 |
else if a'=0 \<or> b' = 0 then normNum(a,b) |
75 |
else normNum(a*b' + b*a', b*b'))" |
|
76 |
||
44779 | 77 |
definition Nmul :: "Num \<Rightarrow> Num \<Rightarrow> Num" (infixl "*\<^sub>N" 60) where |
31706 | 78 |
"Nmul = (\<lambda>(a,b) (a',b'). let g = gcd (a*a') (b*b') |
24197 | 79 |
in (a*a' div g, b*b' div g))" |
80 |
||
44779 | 81 |
definition Nneg :: "Num \<Rightarrow> Num" ("~\<^sub>N") |
82 |
where "Nneg \<equiv> (\<lambda>(a,b). (-a,b))" |
|
24197 | 83 |
|
44779 | 84 |
definition Nsub :: "Num \<Rightarrow> Num \<Rightarrow> Num" (infixl "-\<^sub>N" 60) |
85 |
where "Nsub = (\<lambda>a b. a +\<^sub>N ~\<^sub>N b)" |
|
24197 | 86 |
|
44779 | 87 |
definition Ninv :: "Num \<Rightarrow> Num" |
88 |
where "Ninv = (\<lambda>(a,b). if a < 0 then (-b, \<bar>a\<bar>) else (b,a))" |
|
24197 | 89 |
|
44779 | 90 |
definition Ndiv :: "Num \<Rightarrow> Num \<Rightarrow> Num" (infixl "\<div>\<^sub>N" 60) |
91 |
where "Ndiv = (\<lambda>a b. a *\<^sub>N Ninv b)" |
|
24197 | 92 |
|
93 |
lemma Nneg_normN[simp]: "isnormNum x \<Longrightarrow> isnormNum (~\<^sub>N x)" |
|
44779 | 94 |
by (simp add: isnormNum_def Nneg_def split_def) |
95 |
||
24197 | 96 |
lemma Nadd_normN[simp]: "isnormNum (x +\<^sub>N y)" |
97 |
by (simp add: Nadd_def split_def) |
|
44779 | 98 |
|
24197 | 99 |
lemma Nsub_normN[simp]: "\<lbrakk> isnormNum y\<rbrakk> \<Longrightarrow> isnormNum (x -\<^sub>N y)" |
100 |
by (simp add: Nsub_def split_def) |
|
44779 | 101 |
|
102 |
lemma Nmul_normN[simp]: |
|
103 |
assumes xn:"isnormNum x" and yn: "isnormNum y" |
|
24197 | 104 |
shows "isnormNum (x *\<^sub>N y)" |
44779 | 105 |
proof - |
24197 | 106 |
have "\<exists>a b. x = (a,b)" and "\<exists> a' b'. y = (a',b')" by auto |
44779 | 107 |
then obtain a b a' b' where ab: "x = (a,b)" and ab': "y = (a',b')" by blast |
24197 | 108 |
{assume "a = 0" |
109 |
hence ?thesis using xn ab ab' |
|
31706 | 110 |
by (simp add: isnormNum_def Let_def Nmul_def split_def)} |
24197 | 111 |
moreover |
112 |
{assume "a' = 0" |
|
113 |
hence ?thesis using yn ab ab' |
|
31706 | 114 |
by (simp add: isnormNum_def Let_def Nmul_def split_def)} |
24197 | 115 |
moreover |
116 |
{assume a: "a \<noteq>0" and a': "a'\<noteq>0" |
|
117 |
hence bp: "b > 0" "b' > 0" using xn yn ab ab' by (simp_all add: isnormNum_def) |
|
118 |
from mult_pos_pos[OF bp] have "x *\<^sub>N y = normNum (a*a', b*b')" |
|
119 |
using ab ab' a a' bp by (simp add: Nmul_def Let_def split_def normNum_def) |
|
120 |
hence ?thesis by simp} |
|
121 |
ultimately show ?thesis by blast |
|
122 |
qed |
|
123 |
||
124 |
lemma Ninv_normN[simp]: "isnormNum x \<Longrightarrow> isnormNum (Ninv x)" |
|
25005 | 125 |
by (simp add: Ninv_def isnormNum_def split_def) |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31706
diff
changeset
|
126 |
(cases "fst x = 0", auto simp add: gcd_commute_int) |
24197 | 127 |
|
128 |
lemma isnormNum_int[simp]: |
|
41528 | 129 |
"isnormNum 0\<^sub>N" "isnormNum ((1::int)\<^sub>N)" "i \<noteq> 0 \<Longrightarrow> isnormNum (i\<^sub>N)" |
31706 | 130 |
by (simp_all add: isnormNum_def) |
24197 | 131 |
|
132 |
||
133 |
text {* Relations over Num *} |
|
134 |
||
44779 | 135 |
definition Nlt0:: "Num \<Rightarrow> bool" ("0>\<^sub>N") |
136 |
where "Nlt0 = (\<lambda>(a,b). a < 0)" |
|
24197 | 137 |
|
44779 | 138 |
definition Nle0:: "Num \<Rightarrow> bool" ("0\<ge>\<^sub>N") |
139 |
where "Nle0 = (\<lambda>(a,b). a \<le> 0)" |
|
24197 | 140 |
|
44779 | 141 |
definition Ngt0:: "Num \<Rightarrow> bool" ("0<\<^sub>N") |
142 |
where "Ngt0 = (\<lambda>(a,b). a > 0)" |
|
24197 | 143 |
|
44779 | 144 |
definition Nge0:: "Num \<Rightarrow> bool" ("0\<le>\<^sub>N") |
145 |
where "Nge0 = (\<lambda>(a,b). a \<ge> 0)" |
|
24197 | 146 |
|
44779 | 147 |
definition Nlt :: "Num \<Rightarrow> Num \<Rightarrow> bool" (infix "<\<^sub>N" 55) |
148 |
where "Nlt = (\<lambda>a b. 0>\<^sub>N (a -\<^sub>N b))" |
|
24197 | 149 |
|
44779 | 150 |
definition Nle :: "Num \<Rightarrow> Num \<Rightarrow> bool" (infix "\<le>\<^sub>N" 55) |
151 |
where "Nle = (\<lambda>a b. 0\<ge>\<^sub>N (a -\<^sub>N b))" |
|
24197 | 152 |
|
44779 | 153 |
definition "INum = (\<lambda>(a,b). of_int a / of_int b)" |
24197 | 154 |
|
41528 | 155 |
lemma INum_int [simp]: "INum (i\<^sub>N) = ((of_int i) ::'a::field)" "INum 0\<^sub>N = (0::'a::field)" |
24197 | 156 |
by (simp_all add: INum_def) |
157 |
||
158 |
lemma isnormNum_unique[simp]: |
|
159 |
assumes na: "isnormNum x" and nb: "isnormNum y" |
|
36409 | 160 |
shows "((INum x ::'a::{field_char_0, field_inverse_zero}) = INum y) = (x = y)" (is "?lhs = ?rhs") |
24197 | 161 |
proof |
162 |
have "\<exists> a b a' b'. x = (a,b) \<and> y = (a',b')" by auto |
|
163 |
then obtain a b a' b' where xy[simp]: "x = (a,b)" "y=(a',b')" by blast |
|
164 |
assume H: ?lhs |
|
44779 | 165 |
{ assume "a = 0 \<or> b = 0 \<or> a' = 0 \<or> b' = 0" |
32456
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
31967
diff
changeset
|
166 |
hence ?rhs using na nb H |
44779 | 167 |
by (simp add: INum_def split_def isnormNum_def split: split_if_asm) } |
24197 | 168 |
moreover |
169 |
{ assume az: "a \<noteq> 0" and bz: "b \<noteq> 0" and a'z: "a'\<noteq>0" and b'z: "b'\<noteq>0" |
|
170 |
from az bz a'z b'z na nb have pos: "b > 0" "b' > 0" by (simp_all add: isnormNum_def) |
|
41528 | 171 |
from H bz b'z have eq:"a * b' = a'*b" |
24197 | 172 |
by (simp add: INum_def eq_divide_eq divide_eq_eq of_int_mult[symmetric] del: of_int_mult) |
41528 | 173 |
from az a'z na nb have gcd1: "gcd a b = 1" "gcd b a = 1" "gcd a' b' = 1" "gcd b' a' = 1" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31706
diff
changeset
|
174 |
by (simp_all add: isnormNum_def add: gcd_commute_int) |
27668 | 175 |
from eq have raw_dvd: "a dvd a'*b" "b dvd b'*a" "a' dvd a*b'" "b' dvd b*a'" |
176 |
apply - |
|
177 |
apply algebra |
|
178 |
apply algebra |
|
179 |
apply simp |
|
180 |
apply algebra |
|
24197 | 181 |
done |
33657 | 182 |
from zdvd_antisym_abs[OF coprime_dvd_mult_int[OF gcd1(2) raw_dvd(2)] |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31706
diff
changeset
|
183 |
coprime_dvd_mult_int[OF gcd1(4) raw_dvd(4)]] |
41528 | 184 |
have eq1: "b = b'" using pos by arith |
24197 | 185 |
with eq have "a = a'" using pos by simp |
186 |
with eq1 have ?rhs by simp} |
|
187 |
ultimately show ?rhs by blast |
|
188 |
next |
|
189 |
assume ?rhs thus ?lhs by simp |
|
190 |
qed |
|
191 |
||
192 |
||
44779 | 193 |
lemma isnormNum0[simp]: |
194 |
"isnormNum x \<Longrightarrow> (INum x = (0::'a::{field_char_0, field_inverse_zero})) = (x = 0\<^sub>N)" |
|
24197 | 195 |
unfolding INum_int(2)[symmetric] |
44779 | 196 |
by (rule isnormNum_unique) simp_all |
24197 | 197 |
|
36409 | 198 |
lemma of_int_div_aux: "d ~= 0 ==> ((of_int x)::'a::field_char_0) / (of_int d) = |
24197 | 199 |
of_int (x div d) + (of_int (x mod d)) / ((of_int d)::'a)" |
200 |
proof - |
|
201 |
assume "d ~= 0" |
|
202 |
let ?t = "of_int (x div d) * ((of_int d)::'a) + of_int(x mod d)" |
|
203 |
let ?f = "\<lambda>x. x / of_int d" |
|
204 |
have "x = (x div d) * d + x mod d" |
|
205 |
by auto |
|
206 |
then have eq: "of_int x = ?t" |
|
207 |
by (simp only: of_int_mult[symmetric] of_int_add [symmetric]) |
|
208 |
then have "of_int x / of_int d = ?t / of_int d" |
|
209 |
using cong[OF refl[of ?f] eq] by simp |
|
41528 | 210 |
then show ?thesis by (simp add: add_divide_distrib algebra_simps `d ~= 0`) |
24197 | 211 |
qed |
212 |
||
213 |
lemma of_int_div: "(d::int) ~= 0 ==> d dvd n ==> |
|
36409 | 214 |
(of_int(n div d)::'a::field_char_0) = of_int n / of_int d" |
24197 | 215 |
apply (frule of_int_div_aux [of d n, where ?'a = 'a]) |
216 |
apply simp |
|
30042 | 217 |
apply (simp add: dvd_eq_mod_eq_0) |
44779 | 218 |
done |
24197 | 219 |
|
220 |
||
36409 | 221 |
lemma normNum[simp]: "INum (normNum x) = (INum x :: 'a::{field_char_0, field_inverse_zero})" |
44779 | 222 |
proof - |
24197 | 223 |
have "\<exists> a b. x = (a,b)" by auto |
44779 | 224 |
then obtain a b where x: "x = (a,b)" by blast |
225 |
{ assume "a=0 \<or> b = 0" hence ?thesis |
|
226 |
by (simp add: x INum_def normNum_def split_def Let_def)} |
|
24197 | 227 |
moreover |
44779 | 228 |
{ assume a: "a\<noteq>0" and b: "b\<noteq>0" |
31706 | 229 |
let ?g = "gcd a b" |
24197 | 230 |
from a b have g: "?g \<noteq> 0"by simp |
231 |
from of_int_div[OF g, where ?'a = 'a] |
|
44779 | 232 |
have ?thesis by (auto simp add: x INum_def normNum_def split_def Let_def) } |
24197 | 233 |
ultimately show ?thesis by blast |
234 |
qed |
|
235 |
||
44779 | 236 |
lemma INum_normNum_iff: |
237 |
"(INum x ::'a::{field_char_0, field_inverse_zero}) = INum y \<longleftrightarrow> normNum x = normNum y" |
|
238 |
(is "?lhs = ?rhs") |
|
24197 | 239 |
proof - |
240 |
have "normNum x = normNum y \<longleftrightarrow> (INum (normNum x) :: 'a) = INum (normNum y)" |
|
241 |
by (simp del: normNum) |
|
242 |
also have "\<dots> = ?lhs" by simp |
|
243 |
finally show ?thesis by simp |
|
244 |
qed |
|
245 |
||
36409 | 246 |
lemma Nadd[simp]: "INum (x +\<^sub>N y) = INum x + (INum y :: 'a :: {field_char_0, field_inverse_zero})" |
44779 | 247 |
proof - |
248 |
let ?z = "0:: 'a" |
|
249 |
have "\<exists>a b. x = (a,b)" " \<exists> a' b'. y = (a',b')" by auto |
|
250 |
then obtain a b a' b' where x: "x = (a,b)" |
|
24197 | 251 |
and y[simp]: "y = (a',b')" by blast |
44779 | 252 |
{ assume "a=0 \<or> a'= 0 \<or> b =0 \<or> b' = 0" |
253 |
hence ?thesis |
|
254 |
apply (cases "a=0", simp_all add: x Nadd_def) |
|
255 |
apply (cases "b= 0", simp_all add: INum_def) |
|
256 |
apply (cases "a'= 0", simp_all) |
|
257 |
apply (cases "b'= 0", simp_all) |
|
24197 | 258 |
done } |
259 |
moreover |
|
44779 | 260 |
{ assume aa':"a \<noteq> 0" "a'\<noteq> 0" and bb': "b \<noteq> 0" "b' \<noteq> 0" |
261 |
{ assume z: "a * b' + b * a' = 0" |
|
24197 | 262 |
hence "of_int (a*b' + b*a') / (of_int b* of_int b') = ?z" by simp |
44779 | 263 |
hence "of_int b' * of_int a / (of_int b * of_int b') + of_int b * of_int a' / (of_int b * of_int b') = ?z" |
264 |
by (simp add:add_divide_distrib) |
|
265 |
hence th: "of_int a / of_int b + of_int a' / of_int b' = ?z" using bb' aa' |
|
266 |
by simp |
|
24197 | 267 |
from z aa' bb' have ?thesis |
44779 | 268 |
by (simp add: x th Nadd_def normNum_def INum_def split_def) } |
269 |
moreover { |
|
270 |
assume z: "a * b' + b * a' \<noteq> 0" |
|
31706 | 271 |
let ?g = "gcd (a * b' + b * a') (b*b')" |
24197 | 272 |
have gz: "?g \<noteq> 0" using z by simp |
273 |
have ?thesis using aa' bb' z gz |
|
44779 | 274 |
of_int_div[where ?'a = 'a, OF gz gcd_dvd1_int[where x="a * b' + b * a'" and y="b*b'"]] |
275 |
of_int_div[where ?'a = 'a, OF gz gcd_dvd2_int[where x="a * b' + b * a'" and y="b*b'"]] |
|
276 |
by (simp add: x Nadd_def INum_def normNum_def Let_def add_divide_distrib)} |
|
277 |
ultimately have ?thesis using aa' bb' |
|
278 |
by (simp add: x Nadd_def INum_def normNum_def Let_def) } |
|
24197 | 279 |
ultimately show ?thesis by blast |
280 |
qed |
|
281 |
||
44779 | 282 |
lemma Nmul[simp]: "INum (x *\<^sub>N y) = INum x * (INum y:: 'a :: {field_char_0, field_inverse_zero})" |
283 |
proof - |
|
24197 | 284 |
let ?z = "0::'a" |
44779 | 285 |
have "\<exists>a b. x = (a,b)" " \<exists> a' b'. y = (a',b')" by auto |
24197 | 286 |
then obtain a b a' b' where x: "x = (a,b)" and y: "y = (a',b')" by blast |
44779 | 287 |
{ assume "a=0 \<or> a'= 0 \<or> b = 0 \<or> b' = 0" |
288 |
hence ?thesis |
|
289 |
apply (cases "a=0", simp_all add: x y Nmul_def INum_def Let_def) |
|
290 |
apply (cases "b=0", simp_all) |
|
291 |
apply (cases "a'=0", simp_all) |
|
24197 | 292 |
done } |
293 |
moreover |
|
44779 | 294 |
{ assume z: "a \<noteq> 0" "a' \<noteq> 0" "b \<noteq> 0" "b' \<noteq> 0" |
31706 | 295 |
let ?g="gcd (a*a') (b*b')" |
24197 | 296 |
have gz: "?g \<noteq> 0" using z by simp |
44779 | 297 |
from z of_int_div[where ?'a = 'a, OF gz gcd_dvd1_int[where x="a*a'" and y="b*b'"]] |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31706
diff
changeset
|
298 |
of_int_div[where ?'a = 'a , OF gz gcd_dvd2_int[where x="a*a'" and y="b*b'"]] |
44779 | 299 |
have ?thesis by (simp add: Nmul_def x y Let_def INum_def) } |
24197 | 300 |
ultimately show ?thesis by blast |
301 |
qed |
|
302 |
||
303 |
lemma Nneg[simp]: "INum (~\<^sub>N x) = - (INum x ::'a:: field)" |
|
304 |
by (simp add: Nneg_def split_def INum_def) |
|
305 |
||
44779 | 306 |
lemma Nsub[simp]: "INum (x -\<^sub>N y) = INum x - (INum y:: 'a :: {field_char_0, field_inverse_zero})" |
307 |
by (simp add: Nsub_def split_def) |
|
24197 | 308 |
|
36409 | 309 |
lemma Ninv[simp]: "INum (Ninv x) = (1::'a :: field_inverse_zero) / (INum x)" |
24197 | 310 |
by (simp add: Ninv_def INum_def split_def) |
311 |
||
44779 | 312 |
lemma Ndiv[simp]: "INum (x \<div>\<^sub>N y) = INum x / (INum y ::'a :: {field_char_0, field_inverse_zero})" |
313 |
by (simp add: Ndiv_def) |
|
24197 | 314 |
|
44779 | 315 |
lemma Nlt0_iff[simp]: |
316 |
assumes nx: "isnormNum x" |
|
317 |
shows "((INum x :: 'a :: {field_char_0, linordered_field_inverse_zero})< 0) = 0>\<^sub>N x" |
|
318 |
proof - |
|
319 |
have "\<exists> a b. x = (a,b)" by simp |
|
24197 | 320 |
then obtain a b where x[simp]:"x = (a,b)" by blast |
321 |
{assume "a = 0" hence ?thesis by (simp add: Nlt0_def INum_def) } |
|
322 |
moreover |
|
44779 | 323 |
{ assume a: "a\<noteq>0" hence b: "(of_int b::'a) > 0" using nx by (simp add: isnormNum_def) |
24197 | 324 |
from pos_divide_less_eq[OF b, where b="of_int a" and a="0::'a"] |
44779 | 325 |
have ?thesis by (simp add: Nlt0_def INum_def) } |
24197 | 326 |
ultimately show ?thesis by blast |
327 |
qed |
|
328 |
||
44779 | 329 |
lemma Nle0_iff[simp]: |
330 |
assumes nx: "isnormNum x" |
|
36409 | 331 |
shows "((INum x :: 'a :: {field_char_0, linordered_field_inverse_zero}) \<le> 0) = 0\<ge>\<^sub>N x" |
44779 | 332 |
proof - |
333 |
have "\<exists>a b. x = (a,b)" by simp |
|
24197 | 334 |
then obtain a b where x[simp]:"x = (a,b)" by blast |
44779 | 335 |
{ assume "a = 0" hence ?thesis by (simp add: Nle0_def INum_def) } |
24197 | 336 |
moreover |
44779 | 337 |
{ assume a: "a\<noteq>0" hence b: "(of_int b :: 'a) > 0" using nx by (simp add: isnormNum_def) |
24197 | 338 |
from pos_divide_le_eq[OF b, where b="of_int a" and a="0::'a"] |
339 |
have ?thesis by (simp add: Nle0_def INum_def)} |
|
340 |
ultimately show ?thesis by blast |
|
341 |
qed |
|
342 |
||
44779 | 343 |
lemma Ngt0_iff[simp]: |
344 |
assumes nx: "isnormNum x" |
|
345 |
shows "((INum x :: 'a :: {field_char_0, linordered_field_inverse_zero})> 0) = 0<\<^sub>N x" |
|
346 |
proof - |
|
347 |
have "\<exists> a b. x = (a,b)" by simp |
|
24197 | 348 |
then obtain a b where x[simp]:"x = (a,b)" by blast |
44779 | 349 |
{ assume "a = 0" hence ?thesis by (simp add: Ngt0_def INum_def) } |
24197 | 350 |
moreover |
44779 | 351 |
{ assume a: "a\<noteq>0" hence b: "(of_int b::'a) > 0" using nx |
352 |
by (simp add: isnormNum_def) |
|
24197 | 353 |
from pos_less_divide_eq[OF b, where b="of_int a" and a="0::'a"] |
44779 | 354 |
have ?thesis by (simp add: Ngt0_def INum_def) } |
24197 | 355 |
ultimately show ?thesis by blast |
356 |
qed |
|
357 |
||
44779 | 358 |
lemma Nge0_iff[simp]: |
359 |
assumes nx: "isnormNum x" |
|
360 |
shows "((INum x :: 'a :: {field_char_0, linordered_field_inverse_zero}) \<ge> 0) = 0\<le>\<^sub>N x" |
|
361 |
proof - |
|
362 |
have "\<exists> a b. x = (a,b)" by simp |
|
363 |
then obtain a b where x[simp]:"x = (a,b)" by blast |
|
364 |
{ assume "a = 0" hence ?thesis by (simp add: Nge0_def INum_def) } |
|
365 |
moreover |
|
366 |
{ assume "a \<noteq> 0" hence b: "(of_int b::'a) > 0" using nx |
|
367 |
by (simp add: isnormNum_def) |
|
368 |
from pos_le_divide_eq[OF b, where b="of_int a" and a="0::'a"] |
|
369 |
have ?thesis by (simp add: Nge0_def INum_def) } |
|
370 |
ultimately show ?thesis by blast |
|
371 |
qed |
|
372 |
||
373 |
lemma Nlt_iff[simp]: |
|
374 |
assumes nx: "isnormNum x" and ny: "isnormNum y" |
|
36409 | 375 |
shows "((INum x :: 'a :: {field_char_0, linordered_field_inverse_zero}) < INum y) = (x <\<^sub>N y)" |
44779 | 376 |
proof - |
24197 | 377 |
let ?z = "0::'a" |
44779 | 378 |
have "((INum x ::'a) < INum y) = (INum (x -\<^sub>N y) < ?z)" |
379 |
using nx ny by simp |
|
380 |
also have "\<dots> = (0>\<^sub>N (x -\<^sub>N y))" |
|
381 |
using Nlt0_iff[OF Nsub_normN[OF ny]] by simp |
|
24197 | 382 |
finally show ?thesis by (simp add: Nlt_def) |
383 |
qed |
|
384 |
||
44779 | 385 |
lemma Nle_iff[simp]: |
386 |
assumes nx: "isnormNum x" and ny: "isnormNum y" |
|
36409 | 387 |
shows "((INum x :: 'a :: {field_char_0, linordered_field_inverse_zero})\<le> INum y) = (x \<le>\<^sub>N y)" |
44779 | 388 |
proof - |
389 |
have "((INum x ::'a) \<le> INum y) = (INum (x -\<^sub>N y) \<le> (0::'a))" |
|
390 |
using nx ny by simp |
|
391 |
also have "\<dots> = (0\<ge>\<^sub>N (x -\<^sub>N y))" |
|
392 |
using Nle0_iff[OF Nsub_normN[OF ny]] by simp |
|
24197 | 393 |
finally show ?thesis by (simp add: Nle_def) |
394 |
qed |
|
395 |
||
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
396 |
lemma Nadd_commute: |
36409 | 397 |
assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})" |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
398 |
shows "x +\<^sub>N y = y +\<^sub>N x" |
44779 | 399 |
proof - |
24197 | 400 |
have n: "isnormNum (x +\<^sub>N y)" "isnormNum (y +\<^sub>N x)" by simp_all |
31964 | 401 |
have "(INum (x +\<^sub>N y)::'a) = INum (y +\<^sub>N x)" by simp |
24197 | 402 |
with isnormNum_unique[OF n] show ?thesis by simp |
403 |
qed |
|
404 |
||
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
405 |
lemma [simp]: |
36409 | 406 |
assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})" |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
407 |
shows "(0, b) +\<^sub>N y = normNum y" |
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
408 |
and "(a, 0) +\<^sub>N y = normNum y" |
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
409 |
and "x +\<^sub>N (0, b) = normNum x" |
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
410 |
and "x +\<^sub>N (a, 0) = normNum x" |
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
411 |
apply (simp add: Nadd_def split_def) |
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
412 |
apply (simp add: Nadd_def split_def) |
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
413 |
apply (subst Nadd_commute, simp add: Nadd_def split_def) |
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
414 |
apply (subst Nadd_commute, simp add: Nadd_def split_def) |
24197 | 415 |
done |
416 |
||
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
417 |
lemma normNum_nilpotent_aux[simp]: |
36409 | 418 |
assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})" |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
419 |
assumes nx: "isnormNum x" |
24197 | 420 |
shows "normNum x = x" |
44779 | 421 |
proof - |
24197 | 422 |
let ?a = "normNum x" |
423 |
have n: "isnormNum ?a" by simp |
|
44779 | 424 |
have th: "INum ?a = (INum x ::'a)" by simp |
425 |
with isnormNum_unique[OF n nx] show ?thesis by simp |
|
24197 | 426 |
qed |
427 |
||
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
428 |
lemma normNum_nilpotent[simp]: |
36409 | 429 |
assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})" |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
430 |
shows "normNum (normNum x) = normNum x" |
24197 | 431 |
by simp |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
432 |
|
24197 | 433 |
lemma normNum0[simp]: "normNum (0,b) = 0\<^sub>N" "normNum (a,0) = 0\<^sub>N" |
434 |
by (simp_all add: normNum_def) |
|
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
435 |
|
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
436 |
lemma normNum_Nadd: |
36409 | 437 |
assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})" |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
438 |
shows "normNum (x +\<^sub>N y) = x +\<^sub>N y" by simp |
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
439 |
|
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
440 |
lemma Nadd_normNum1[simp]: |
36409 | 441 |
assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})" |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
442 |
shows "normNum x +\<^sub>N y = x +\<^sub>N y" |
44779 | 443 |
proof - |
24197 | 444 |
have n: "isnormNum (normNum x +\<^sub>N y)" "isnormNum (x +\<^sub>N y)" by simp_all |
31964 | 445 |
have "INum (normNum x +\<^sub>N y) = INum x + (INum y :: 'a)" by simp |
24197 | 446 |
also have "\<dots> = INum (x +\<^sub>N y)" by simp |
447 |
finally show ?thesis using isnormNum_unique[OF n] by simp |
|
448 |
qed |
|
449 |
||
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
450 |
lemma Nadd_normNum2[simp]: |
36409 | 451 |
assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})" |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
452 |
shows "x +\<^sub>N normNum y = x +\<^sub>N y" |
44779 | 453 |
proof - |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
454 |
have n: "isnormNum (x +\<^sub>N normNum y)" "isnormNum (x +\<^sub>N y)" by simp_all |
31964 | 455 |
have "INum (x +\<^sub>N normNum y) = INum x + (INum y :: 'a)" by simp |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
456 |
also have "\<dots> = INum (x +\<^sub>N y)" by simp |
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
457 |
finally show ?thesis using isnormNum_unique[OF n] by simp |
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
458 |
qed |
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
459 |
|
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
460 |
lemma Nadd_assoc: |
36409 | 461 |
assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})" |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
462 |
shows "x +\<^sub>N y +\<^sub>N z = x +\<^sub>N (y +\<^sub>N z)" |
44779 | 463 |
proof - |
24197 | 464 |
have n: "isnormNum (x +\<^sub>N y +\<^sub>N z)" "isnormNum (x +\<^sub>N (y +\<^sub>N z))" by simp_all |
31964 | 465 |
have "INum (x +\<^sub>N y +\<^sub>N z) = (INum (x +\<^sub>N (y +\<^sub>N z)) :: 'a)" by simp |
24197 | 466 |
with isnormNum_unique[OF n] show ?thesis by simp |
467 |
qed |
|
468 |
||
469 |
lemma Nmul_commute: "isnormNum x \<Longrightarrow> isnormNum y \<Longrightarrow> x *\<^sub>N y = y *\<^sub>N x" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31706
diff
changeset
|
470 |
by (simp add: Nmul_def split_def Let_def gcd_commute_int mult_commute) |
24197 | 471 |
|
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
472 |
lemma Nmul_assoc: |
36409 | 473 |
assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})" |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
474 |
assumes nx: "isnormNum x" and ny:"isnormNum y" and nz:"isnormNum z" |
24197 | 475 |
shows "x *\<^sub>N y *\<^sub>N z = x *\<^sub>N (y *\<^sub>N z)" |
44779 | 476 |
proof - |
24197 | 477 |
from nx ny nz have n: "isnormNum (x *\<^sub>N y *\<^sub>N z)" "isnormNum (x *\<^sub>N (y *\<^sub>N z))" |
478 |
by simp_all |
|
31964 | 479 |
have "INum (x +\<^sub>N y +\<^sub>N z) = (INum (x +\<^sub>N (y +\<^sub>N z)) :: 'a)" by simp |
24197 | 480 |
with isnormNum_unique[OF n] show ?thesis by simp |
481 |
qed |
|
482 |
||
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
483 |
lemma Nsub0: |
36409 | 484 |
assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})" |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
485 |
assumes x: "isnormNum x" and y:"isnormNum y" shows "(x -\<^sub>N y = 0\<^sub>N) = (x = y)" |
44779 | 486 |
proof - |
487 |
fix h :: 'a |
|
488 |
from isnormNum_unique[where 'a = 'a, OF Nsub_normN[OF y], where y="0\<^sub>N"] |
|
489 |
have "(x -\<^sub>N y = 0\<^sub>N) = (INum (x -\<^sub>N y) = (INum 0\<^sub>N :: 'a)) " by simp |
|
490 |
also have "\<dots> = (INum x = (INum y :: 'a))" by simp |
|
491 |
also have "\<dots> = (x = y)" using x y by simp |
|
492 |
finally show ?thesis . |
|
24197 | 493 |
qed |
494 |
||
495 |
lemma Nmul0[simp]: "c *\<^sub>N 0\<^sub>N = 0\<^sub>N" " 0\<^sub>N *\<^sub>N c = 0\<^sub>N" |
|
496 |
by (simp_all add: Nmul_def Let_def split_def) |
|
497 |
||
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
498 |
lemma Nmul_eq0[simp]: |
36409 | 499 |
assumes "SORT_CONSTRAINT('a::{field_char_0, field_inverse_zero})" |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
500 |
assumes nx:"isnormNum x" and ny: "isnormNum y" |
24197 | 501 |
shows "(x*\<^sub>N y = 0\<^sub>N) = (x = 0\<^sub>N \<or> y = 0\<^sub>N)" |
44779 | 502 |
proof - |
503 |
fix h :: 'a |
|
504 |
have " \<exists> a b a' b'. x = (a,b) \<and> y= (a',b')" by auto |
|
505 |
then obtain a b a' b' where xy[simp]: "x = (a,b)" "y = (a',b')" by blast |
|
506 |
have n0: "isnormNum 0\<^sub>N" by simp |
|
507 |
show ?thesis using nx ny |
|
508 |
apply (simp only: isnormNum_unique[where ?'a = 'a, OF Nmul_normN[OF nx ny] n0, symmetric] |
|
509 |
Nmul[where ?'a = 'a]) |
|
510 |
apply (simp add: INum_def split_def isnormNum_def split: split_if_asm) |
|
511 |
done |
|
24197 | 512 |
qed |
44779 | 513 |
|
24197 | 514 |
lemma Nneg_Nneg[simp]: "~\<^sub>N (~\<^sub>N c) = c" |
515 |
by (simp add: Nneg_def split_def) |
|
516 |
||
517 |
lemma Nmul1[simp]: |
|
518 |
"isnormNum c \<Longrightarrow> 1\<^sub>N *\<^sub>N c = c" |
|
41528 | 519 |
"isnormNum c \<Longrightarrow> c *\<^sub>N (1\<^sub>N) = c" |
24197 | 520 |
apply (simp_all add: Nmul_def Let_def split_def isnormNum_def) |
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
521 |
apply (cases "fst c = 0", simp_all, cases c, simp_all)+ |
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
522 |
done |
24197 | 523 |
|
28615
4c8fa015ec7f
explicit SORT_CONSTRAINT for proofs depending implicitly on certain sorts;
wenzelm
parents:
27668
diff
changeset
|
524 |
end |