author | haftmann |
Tue, 24 Jul 2007 15:20:48 +0200 | |
changeset 23950 | f54c0e339061 |
parent 23879 | 4776af8be741 |
child 24196 | f1dbfd7e3223 |
permissions | -rw-r--r-- |
23164 | 1 |
(* Title: IntDef.thy |
2 |
ID: $Id$ |
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
4 |
Copyright 1996 University of Cambridge |
|
5 |
||
6 |
*) |
|
7 |
||
8 |
header{*The Integers as Equivalence Classes over Pairs of Natural Numbers*} |
|
9 |
||
10 |
theory IntDef |
|
11 |
imports Equiv_Relations Nat |
|
12 |
begin |
|
13 |
||
23705 | 14 |
|
23164 | 15 |
text {* the equivalence relation underlying the integers *} |
16 |
||
17 |
definition |
|
18 |
intrel :: "((nat \<times> nat) \<times> (nat \<times> nat)) set" |
|
19 |
where |
|
20 |
"intrel = {((x, y), (u, v)) | x y u v. x + v = u +y }" |
|
21 |
||
22 |
typedef (Integ) |
|
23 |
int = "UNIV//intrel" |
|
24 |
by (auto simp add: quotient_def) |
|
25 |
||
26 |
instance int :: zero |
|
23299
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
27 |
Zero_int_def: "0 \<equiv> Abs_Integ (intrel `` {(0, 0)})" .. |
23164 | 28 |
|
29 |
instance int :: one |
|
23299
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
30 |
One_int_def: "1 \<equiv> Abs_Integ (intrel `` {(1, 0)})" .. |
23164 | 31 |
|
32 |
instance int :: plus |
|
33 |
add_int_def: "z + w \<equiv> Abs_Integ |
|
34 |
(\<Union>(x, y) \<in> Rep_Integ z. \<Union>(u, v) \<in> Rep_Integ w. |
|
35 |
intrel `` {(x + u, y + v)})" .. |
|
36 |
||
37 |
instance int :: minus |
|
38 |
minus_int_def: |
|
39 |
"- z \<equiv> Abs_Integ (\<Union>(x, y) \<in> Rep_Integ z. intrel `` {(y, x)})" |
|
40 |
diff_int_def: "z - w \<equiv> z + (-w)" .. |
|
41 |
||
42 |
instance int :: times |
|
43 |
mult_int_def: "z * w \<equiv> Abs_Integ |
|
44 |
(\<Union>(x, y) \<in> Rep_Integ z. \<Union>(u,v ) \<in> Rep_Integ w. |
|
45 |
intrel `` {(x*u + y*v, x*v + y*u)})" .. |
|
46 |
||
47 |
instance int :: ord |
|
48 |
le_int_def: |
|
49 |
"z \<le> w \<equiv> \<exists>x y u v. x+v \<le> u+y \<and> (x, y) \<in> Rep_Integ z \<and> (u, v) \<in> Rep_Integ w" |
|
50 |
less_int_def: "z < w \<equiv> z \<le> w \<and> z \<noteq> w" .. |
|
51 |
||
52 |
lemmas [code func del] = Zero_int_def One_int_def add_int_def |
|
53 |
minus_int_def mult_int_def le_int_def less_int_def |
|
54 |
||
55 |
||
56 |
subsection{*Construction of the Integers*} |
|
57 |
||
58 |
lemma intrel_iff [simp]: "(((x,y),(u,v)) \<in> intrel) = (x+v = u+y)" |
|
59 |
by (simp add: intrel_def) |
|
60 |
||
61 |
lemma equiv_intrel: "equiv UNIV intrel" |
|
62 |
by (simp add: intrel_def equiv_def refl_def sym_def trans_def) |
|
63 |
||
64 |
text{*Reduces equality of equivalence classes to the @{term intrel} relation: |
|
65 |
@{term "(intrel `` {x} = intrel `` {y}) = ((x,y) \<in> intrel)"} *} |
|
66 |
lemmas equiv_intrel_iff [simp] = eq_equiv_class_iff [OF equiv_intrel UNIV_I UNIV_I] |
|
67 |
||
68 |
text{*All equivalence classes belong to set of representatives*} |
|
69 |
lemma [simp]: "intrel``{(x,y)} \<in> Integ" |
|
70 |
by (auto simp add: Integ_def intrel_def quotient_def) |
|
71 |
||
72 |
text{*Reduces equality on abstractions to equality on representatives: |
|
73 |
@{prop "\<lbrakk>x \<in> Integ; y \<in> Integ\<rbrakk> \<Longrightarrow> (Abs_Integ x = Abs_Integ y) = (x=y)"} *} |
|
74 |
declare Abs_Integ_inject [simp] Abs_Integ_inverse [simp] |
|
75 |
||
76 |
text{*Case analysis on the representation of an integer as an equivalence |
|
77 |
class of pairs of naturals.*} |
|
78 |
lemma eq_Abs_Integ [case_names Abs_Integ, cases type: int]: |
|
79 |
"(!!x y. z = Abs_Integ(intrel``{(x,y)}) ==> P) ==> P" |
|
80 |
apply (rule Abs_Integ_cases [of z]) |
|
81 |
apply (auto simp add: Integ_def quotient_def) |
|
82 |
done |
|
83 |
||
84 |
||
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
85 |
subsection{*Arithmetic Operations*} |
23164 | 86 |
|
87 |
lemma minus: "- Abs_Integ(intrel``{(x,y)}) = Abs_Integ(intrel `` {(y,x)})" |
|
88 |
proof - |
|
89 |
have "(\<lambda>(x,y). intrel``{(y,x)}) respects intrel" |
|
90 |
by (simp add: congruent_def) |
|
91 |
thus ?thesis |
|
92 |
by (simp add: minus_int_def UN_equiv_class [OF equiv_intrel]) |
|
93 |
qed |
|
94 |
||
95 |
lemma add: |
|
96 |
"Abs_Integ (intrel``{(x,y)}) + Abs_Integ (intrel``{(u,v)}) = |
|
97 |
Abs_Integ (intrel``{(x+u, y+v)})" |
|
98 |
proof - |
|
99 |
have "(\<lambda>z w. (\<lambda>(x,y). (\<lambda>(u,v). intrel `` {(x+u, y+v)}) w) z) |
|
100 |
respects2 intrel" |
|
101 |
by (simp add: congruent2_def) |
|
102 |
thus ?thesis |
|
103 |
by (simp add: add_int_def UN_UN_split_split_eq |
|
104 |
UN_equiv_class2 [OF equiv_intrel equiv_intrel]) |
|
105 |
qed |
|
106 |
||
107 |
text{*Congruence property for multiplication*} |
|
108 |
lemma mult_congruent2: |
|
109 |
"(%p1 p2. (%(x,y). (%(u,v). intrel``{(x*u + y*v, x*v + y*u)}) p2) p1) |
|
110 |
respects2 intrel" |
|
111 |
apply (rule equiv_intrel [THEN congruent2_commuteI]) |
|
112 |
apply (force simp add: mult_ac, clarify) |
|
113 |
apply (simp add: congruent_def mult_ac) |
|
114 |
apply (rename_tac u v w x y z) |
|
115 |
apply (subgoal_tac "u*y + x*y = w*y + v*y & u*z + x*z = w*z + v*z") |
|
116 |
apply (simp add: mult_ac) |
|
117 |
apply (simp add: add_mult_distrib [symmetric]) |
|
118 |
done |
|
119 |
||
120 |
lemma mult: |
|
121 |
"Abs_Integ((intrel``{(x,y)})) * Abs_Integ((intrel``{(u,v)})) = |
|
122 |
Abs_Integ(intrel `` {(x*u + y*v, x*v + y*u)})" |
|
123 |
by (simp add: mult_int_def UN_UN_split_split_eq mult_congruent2 |
|
124 |
UN_equiv_class2 [OF equiv_intrel equiv_intrel]) |
|
125 |
||
126 |
text{*The integers form a @{text comm_ring_1}*} |
|
127 |
instance int :: comm_ring_1 |
|
128 |
proof |
|
129 |
fix i j k :: int |
|
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
130 |
show "(i + j) + k = i + (j + k)" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
131 |
by (cases i, cases j, cases k) (simp add: add add_assoc) |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
132 |
show "i + j = j + i" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
133 |
by (cases i, cases j) (simp add: add_ac add) |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
134 |
show "0 + i = i" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
135 |
by (cases i) (simp add: Zero_int_def add) |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
136 |
show "- i + i = 0" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
137 |
by (cases i) (simp add: Zero_int_def minus add) |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
138 |
show "i - j = i + - j" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
139 |
by (simp add: diff_int_def) |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
140 |
show "(i * j) * k = i * (j * k)" |
23477
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents:
23438
diff
changeset
|
141 |
by (cases i, cases j, cases k) (simp add: mult ring_simps) |
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
142 |
show "i * j = j * i" |
23477
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents:
23438
diff
changeset
|
143 |
by (cases i, cases j) (simp add: mult ring_simps) |
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
144 |
show "1 * i = i" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
145 |
by (cases i) (simp add: One_int_def mult) |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
146 |
show "(i + j) * k = i * k + j * k" |
23477
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents:
23438
diff
changeset
|
147 |
by (cases i, cases j, cases k) (simp add: add mult ring_simps) |
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
148 |
show "0 \<noteq> (1::int)" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
149 |
by (simp add: Zero_int_def One_int_def) |
23164 | 150 |
qed |
151 |
||
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
152 |
abbreviation |
23365 | 153 |
int :: "nat \<Rightarrow> int" |
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
154 |
where |
23365 | 155 |
"int \<equiv> of_nat" |
156 |
||
157 |
lemma int_def: "int m = Abs_Integ (intrel `` {(m, 0)})" |
|
158 |
by (induct m, simp_all add: Zero_int_def One_int_def add) |
|
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
159 |
|
23164 | 160 |
|
161 |
subsection{*The @{text "\<le>"} Ordering*} |
|
162 |
||
163 |
lemma le: |
|
164 |
"(Abs_Integ(intrel``{(x,y)}) \<le> Abs_Integ(intrel``{(u,v)})) = (x+v \<le> u+y)" |
|
165 |
by (force simp add: le_int_def) |
|
166 |
||
23299
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
167 |
lemma less: |
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
168 |
"(Abs_Integ(intrel``{(x,y)}) < Abs_Integ(intrel``{(u,v)})) = (x+v < u+y)" |
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
169 |
by (simp add: less_int_def le order_less_le) |
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
170 |
|
23164 | 171 |
instance int :: linorder |
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
172 |
proof |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
173 |
fix i j k :: int |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
174 |
show "(i < j) = (i \<le> j \<and> i \<noteq> j)" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
175 |
by (simp add: less_int_def) |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
176 |
show "i \<le> i" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
177 |
by (cases i) (simp add: le) |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
178 |
show "i \<le> j \<Longrightarrow> j \<le> k \<Longrightarrow> i \<le> k" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
179 |
by (cases i, cases j, cases k) (simp add: le) |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
180 |
show "i \<le> j \<Longrightarrow> j \<le> i \<Longrightarrow> i = j" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
181 |
by (cases i, cases j) (simp add: le) |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
182 |
show "i \<le> j \<or> j \<le> i" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
183 |
by (cases i, cases j) (simp add: le linorder_linear) |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
184 |
qed |
23164 | 185 |
|
23299
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
186 |
instance int :: pordered_cancel_ab_semigroup_add |
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
187 |
proof |
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
188 |
fix i j k :: int |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
189 |
show "i \<le> j \<Longrightarrow> k + i \<le> k + j" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
190 |
by (cases i, cases j, cases k) (simp add: le add) |
23299
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
191 |
qed |
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
192 |
|
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
193 |
text{*Strict Monotonicity of Multiplication*} |
23164 | 194 |
|
195 |
text{*strict, in 1st argument; proof is by induction on k>0*} |
|
196 |
lemma zmult_zless_mono2_lemma: |
|
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
197 |
"(i::int)<j ==> 0<k ==> int k * i < int k * j" |
23164 | 198 |
apply (induct "k", simp) |
23299
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
199 |
apply (simp add: left_distrib) |
23164 | 200 |
apply (case_tac "k=0") |
23299
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
201 |
apply (simp_all add: add_strict_mono) |
23164 | 202 |
done |
203 |
||
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
204 |
lemma zero_le_imp_eq_int: "(0::int) \<le> k ==> \<exists>n. k = int n" |
23164 | 205 |
apply (cases k) |
23365 | 206 |
apply (auto simp add: le add int_def Zero_int_def) |
23299
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
207 |
apply (rule_tac x="x-y" in exI, simp) |
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
208 |
done |
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
209 |
|
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
210 |
lemma zero_less_imp_eq_int: "(0::int) < k ==> \<exists>n>0. k = int n" |
23299
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
211 |
apply (cases k) |
23365 | 212 |
apply (simp add: less int_def Zero_int_def) |
23164 | 213 |
apply (rule_tac x="x-y" in exI, simp) |
214 |
done |
|
215 |
||
216 |
lemma zmult_zless_mono2: "[| i<j; (0::int) < k |] ==> k*i < k*j" |
|
23299
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
217 |
apply (drule zero_less_imp_eq_int) |
23164 | 218 |
apply (auto simp add: zmult_zless_mono2_lemma) |
219 |
done |
|
220 |
||
23879 | 221 |
instance int :: abs |
23164 | 222 |
zabs_def: "\<bar>i\<Colon>int\<bar> \<equiv> if i < 0 then - i else i" .. |
223 |
||
224 |
instance int :: distrib_lattice |
|
225 |
"inf \<equiv> min" |
|
226 |
"sup \<equiv> max" |
|
227 |
by intro_classes |
|
228 |
(auto simp add: inf_int_def sup_int_def min_max.sup_inf_distrib1) |
|
229 |
||
23299
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
230 |
text{*The integers form an ordered integral domain*} |
23164 | 231 |
instance int :: ordered_idom |
232 |
proof |
|
233 |
fix i j k :: int |
|
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
234 |
show "i < j \<Longrightarrow> 0 < k \<Longrightarrow> k * i < k * j" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
235 |
by (rule zmult_zless_mono2) |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
236 |
show "\<bar>i\<bar> = (if i < 0 then -i else i)" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
237 |
by (simp only: zabs_def) |
23164 | 238 |
qed |
239 |
||
240 |
lemma zless_imp_add1_zle: "w<z ==> w + (1::int) \<le> z" |
|
241 |
apply (cases w, cases z) |
|
23299
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
242 |
apply (simp add: less le add One_int_def) |
23164 | 243 |
done |
244 |
||
23299
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
245 |
|
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
246 |
subsection{*Magnitude of an Integer, as a Natural Number: @{term nat}*} |
23164 | 247 |
|
248 |
definition |
|
249 |
nat :: "int \<Rightarrow> nat" |
|
250 |
where |
|
251 |
[code func del]: "nat z = contents (\<Union>(x, y) \<in> Rep_Integ z. {x-y})" |
|
252 |
||
253 |
lemma nat: "nat (Abs_Integ (intrel``{(x,y)})) = x-y" |
|
254 |
proof - |
|
255 |
have "(\<lambda>(x,y). {x-y}) respects intrel" |
|
256 |
by (simp add: congruent_def) arith |
|
257 |
thus ?thesis |
|
258 |
by (simp add: nat_def UN_equiv_class [OF equiv_intrel]) |
|
259 |
qed |
|
260 |
||
23365 | 261 |
lemma nat_int [simp]: "nat (int n) = n" |
262 |
by (simp add: nat int_def) |
|
23164 | 263 |
|
264 |
lemma nat_zero [simp]: "nat 0 = 0" |
|
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
265 |
by (simp add: Zero_int_def nat) |
23164 | 266 |
|
23365 | 267 |
lemma int_nat_eq [simp]: "int (nat z) = (if 0 \<le> z then z else 0)" |
268 |
by (cases z, simp add: nat le int_def Zero_int_def) |
|
23164 | 269 |
|
23365 | 270 |
corollary nat_0_le: "0 \<le> z ==> int (nat z) = z" |
23164 | 271 |
by simp |
272 |
||
273 |
lemma nat_le_0 [simp]: "z \<le> 0 ==> nat z = 0" |
|
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
274 |
by (cases z, simp add: nat le Zero_int_def) |
23164 | 275 |
|
276 |
lemma nat_le_eq_zle: "0 < w | 0 \<le> z ==> (nat w \<le> nat z) = (w\<le>z)" |
|
277 |
apply (cases w, cases z) |
|
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
278 |
apply (simp add: nat le linorder_not_le [symmetric] Zero_int_def, arith) |
23164 | 279 |
done |
280 |
||
281 |
text{*An alternative condition is @{term "0 \<le> w"} *} |
|
282 |
corollary nat_mono_iff: "0 < z ==> (nat w < nat z) = (w < z)" |
|
283 |
by (simp add: nat_le_eq_zle linorder_not_le [symmetric]) |
|
284 |
||
285 |
corollary nat_less_eq_zless: "0 \<le> w ==> (nat w < nat z) = (w<z)" |
|
286 |
by (simp add: nat_le_eq_zle linorder_not_le [symmetric]) |
|
287 |
||
23365 | 288 |
lemma zless_nat_conj [simp]: "(nat w < nat z) = (0 < z & w < z)" |
23164 | 289 |
apply (cases w, cases z) |
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
290 |
apply (simp add: nat le Zero_int_def linorder_not_le [symmetric], arith) |
23164 | 291 |
done |
292 |
||
23365 | 293 |
lemma nonneg_eq_int: "[| 0 \<le> z; !!m. z = int m ==> P |] ==> P" |
294 |
by (blast dest: nat_0_le sym) |
|
23164 | 295 |
|
23365 | 296 |
lemma nat_eq_iff: "(nat w = m) = (if 0 \<le> w then w = int m else m=0)" |
297 |
by (cases w, simp add: nat le int_def Zero_int_def, arith) |
|
23164 | 298 |
|
23365 | 299 |
corollary nat_eq_iff2: "(m = nat w) = (if 0 \<le> w then w = int m else m=0)" |
300 |
by (simp only: eq_commute [of m] nat_eq_iff) |
|
23164 | 301 |
|
23365 | 302 |
lemma nat_less_iff: "0 \<le> w ==> (nat w < m) = (w < int m)" |
23164 | 303 |
apply (cases w) |
23365 | 304 |
apply (simp add: nat le int_def Zero_int_def linorder_not_le [symmetric], arith) |
23164 | 305 |
done |
306 |
||
23365 | 307 |
lemma int_eq_iff: "(int m = z) = (m = nat z & 0 \<le> z)" |
308 |
by (auto simp add: nat_eq_iff2) |
|
23164 | 309 |
|
310 |
lemma zero_less_nat_eq [simp]: "(0 < nat z) = (0 < z)" |
|
311 |
by (insert zless_nat_conj [of 0], auto) |
|
312 |
||
313 |
lemma nat_add_distrib: |
|
314 |
"[| (0::int) \<le> z; 0 \<le> z' |] ==> nat (z+z') = nat z + nat z'" |
|
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
315 |
by (cases z, cases z', simp add: nat add le Zero_int_def) |
23164 | 316 |
|
317 |
lemma nat_diff_distrib: |
|
318 |
"[| (0::int) \<le> z'; z' \<le> z |] ==> nat (z-z') = nat z - nat z'" |
|
319 |
by (cases z, cases z', |
|
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
320 |
simp add: nat add minus diff_minus le Zero_int_def) |
23164 | 321 |
|
23365 | 322 |
lemma nat_zminus_int [simp]: "nat (- (int n)) = 0" |
323 |
by (simp add: int_def minus nat Zero_int_def) |
|
23164 | 324 |
|
23365 | 325 |
lemma zless_nat_eq_int_zless: "(m < nat z) = (int m < z)" |
326 |
by (cases z, simp add: nat less int_def, arith) |
|
23164 | 327 |
|
328 |
||
329 |
subsection{*Lemmas about the Function @{term int} and Orderings*} |
|
330 |
||
23365 | 331 |
lemma negative_zless_0: "- (int (Suc n)) < 0" |
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
332 |
by (simp add: order_less_le del: of_nat_Suc) |
23164 | 333 |
|
23365 | 334 |
lemma negative_zless [iff]: "- (int (Suc n)) < int m" |
335 |
by (rule negative_zless_0 [THEN order_less_le_trans], simp) |
|
23164 | 336 |
|
23365 | 337 |
lemma negative_zle_0: "- int n \<le> 0" |
23164 | 338 |
by (simp add: minus_le_iff) |
339 |
||
23365 | 340 |
lemma negative_zle [iff]: "- int n \<le> int m" |
341 |
by (rule order_trans [OF negative_zle_0 of_nat_0_le_iff]) |
|
23164 | 342 |
|
23365 | 343 |
lemma not_zle_0_negative [simp]: "~ (0 \<le> - (int (Suc n)))" |
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
344 |
by (subst le_minus_iff, simp del: of_nat_Suc) |
23164 | 345 |
|
23365 | 346 |
lemma int_zle_neg: "(int n \<le> - int m) = (n = 0 & m = 0)" |
347 |
by (simp add: int_def le minus Zero_int_def) |
|
23164 | 348 |
|
23365 | 349 |
lemma not_int_zless_negative [simp]: "~ (int n < - int m)" |
23164 | 350 |
by (simp add: linorder_not_less) |
351 |
||
23365 | 352 |
lemma negative_eq_positive [simp]: "(- int n = int m) = (n = 0 & m = 0)" |
353 |
by (force simp add: order_eq_iff [of "- int n"] int_zle_neg) |
|
23164 | 354 |
|
23365 | 355 |
lemma zle_iff_zadd: "(w \<le> z) = (\<exists>n. z = w + int n)" |
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
356 |
proof - |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
357 |
have "(w \<le> z) = (0 \<le> z - w)" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
358 |
by (simp only: le_diff_eq add_0_left) |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
359 |
also have "\<dots> = (\<exists>n. z - w = int n)" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
360 |
by (auto elim: zero_le_imp_eq_int) |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
361 |
also have "\<dots> = (\<exists>n. z = w + int n)" |
23477
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents:
23438
diff
changeset
|
362 |
by (simp only: group_simps) |
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
363 |
finally show ?thesis . |
23164 | 364 |
qed |
365 |
||
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
366 |
lemma zadd_int_left: "(int m) + (int n + z) = int (m + n) + z" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
367 |
by simp |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
368 |
|
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
369 |
lemma int_Suc0_eq_1: "int (Suc 0) = 1" |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
370 |
by simp |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
371 |
|
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
372 |
lemma abs_of_nat [simp]: "\<bar>of_nat n::'a::ordered_idom\<bar> = of_nat n" |
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
373 |
by (rule of_nat_0_le_iff [THEN abs_of_nonneg]) (* belongs in Nat.thy *) |
23164 | 374 |
|
375 |
text{*This version is proved for all ordered rings, not just integers! |
|
376 |
It is proved here because attribute @{text arith_split} is not available |
|
377 |
in theory @{text Ring_and_Field}. |
|
378 |
But is it really better than just rewriting with @{text abs_if}?*} |
|
379 |
lemma abs_split [arith_split]: |
|
380 |
"P(abs(a::'a::ordered_idom)) = ((0 \<le> a --> P a) & (a < 0 --> P(-a)))" |
|
381 |
by (force dest: order_less_le_trans simp add: abs_if linorder_not_less) |
|
382 |
||
383 |
||
384 |
subsection {* Constants @{term neg} and @{term iszero} *} |
|
385 |
||
386 |
definition |
|
387 |
neg :: "'a\<Colon>ordered_idom \<Rightarrow> bool" |
|
388 |
where |
|
389 |
[code inline]: "neg Z \<longleftrightarrow> Z < 0" |
|
390 |
||
391 |
definition (*for simplifying equalities*) |
|
23276
a70934b63910
generalize of_nat and related constants to class semiring_1
huffman
parents:
23164
diff
changeset
|
392 |
iszero :: "'a\<Colon>semiring_1 \<Rightarrow> bool" |
23164 | 393 |
where |
394 |
"iszero z \<longleftrightarrow> z = 0" |
|
395 |
||
23365 | 396 |
lemma not_neg_int [simp]: "~ neg (int n)" |
23164 | 397 |
by (simp add: neg_def) |
398 |
||
23365 | 399 |
lemma neg_zminus_int [simp]: "neg (- (int (Suc n)))" |
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
400 |
by (simp add: neg_def neg_less_0_iff_less del: of_nat_Suc) |
23164 | 401 |
|
402 |
lemmas neg_eq_less_0 = neg_def |
|
403 |
||
404 |
lemma not_neg_eq_ge_0: "(~neg x) = (0 \<le> x)" |
|
405 |
by (simp add: neg_def linorder_not_less) |
|
406 |
||
407 |
||
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
408 |
text{*To simplify inequalities when Numeral1 can get simplified to 1*} |
23164 | 409 |
|
410 |
lemma not_neg_0: "~ neg 0" |
|
411 |
by (simp add: One_int_def neg_def) |
|
412 |
||
413 |
lemma not_neg_1: "~ neg 1" |
|
414 |
by (simp add: neg_def linorder_not_less zero_le_one) |
|
415 |
||
416 |
lemma iszero_0: "iszero 0" |
|
417 |
by (simp add: iszero_def) |
|
418 |
||
419 |
lemma not_iszero_1: "~ iszero 1" |
|
420 |
by (simp add: iszero_def eq_commute) |
|
421 |
||
422 |
lemma neg_nat: "neg z ==> nat z = 0" |
|
423 |
by (simp add: neg_def order_less_imp_le) |
|
424 |
||
23365 | 425 |
lemma not_neg_nat: "~ neg z ==> int (nat z) = z" |
23164 | 426 |
by (simp add: linorder_not_less neg_def) |
427 |
||
428 |
||
23852 | 429 |
subsection{*Embedding of the Integers into any @{text ring_1}: @{term of_int}*} |
23164 | 430 |
|
23950 | 431 |
definition |
432 |
of_int :: "int \<Rightarrow> 'a\<Colon>ring_1" |
|
433 |
where |
|
434 |
"of_int z = contents (\<Union>(i, j) \<in> Rep_Integ z. { of_nat i - of_nat j })" |
|
23852 | 435 |
lemmas [code func del] = of_int_def |
23164 | 436 |
|
437 |
lemma of_int: "of_int (Abs_Integ (intrel `` {(i,j)})) = of_nat i - of_nat j" |
|
438 |
proof - |
|
439 |
have "(\<lambda>(i,j). { of_nat i - (of_nat j :: 'a) }) respects intrel" |
|
440 |
by (simp add: congruent_def compare_rls of_nat_add [symmetric] |
|
441 |
del: of_nat_add) |
|
442 |
thus ?thesis |
|
443 |
by (simp add: of_int_def UN_equiv_class [OF equiv_intrel]) |
|
444 |
qed |
|
445 |
||
446 |
lemma of_int_0 [simp]: "of_int 0 = 0" |
|
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
447 |
by (simp add: of_int Zero_int_def) |
23164 | 448 |
|
449 |
lemma of_int_1 [simp]: "of_int 1 = 1" |
|
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
450 |
by (simp add: of_int One_int_def) |
23164 | 451 |
|
452 |
lemma of_int_add [simp]: "of_int (w+z) = of_int w + of_int z" |
|
453 |
by (cases w, cases z, simp add: compare_rls of_int add) |
|
454 |
||
455 |
lemma of_int_minus [simp]: "of_int (-z) = - (of_int z)" |
|
456 |
by (cases z, simp add: compare_rls of_int minus) |
|
457 |
||
458 |
lemma of_int_diff [simp]: "of_int (w-z) = of_int w - of_int z" |
|
459 |
by (simp add: diff_minus) |
|
460 |
||
461 |
lemma of_int_mult [simp]: "of_int (w*z) = of_int w * of_int z" |
|
462 |
apply (cases w, cases z) |
|
463 |
apply (simp add: compare_rls of_int left_diff_distrib right_diff_distrib |
|
23431
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
464 |
mult add_ac of_nat_mult) |
23164 | 465 |
done |
466 |
||
467 |
lemma of_int_le_iff [simp]: |
|
468 |
"(of_int w \<le> (of_int z::'a::ordered_idom)) = (w \<le> z)" |
|
469 |
apply (cases w) |
|
470 |
apply (cases z) |
|
471 |
apply (simp add: compare_rls of_int le diff_int_def add minus |
|
472 |
of_nat_add [symmetric] del: of_nat_add) |
|
473 |
done |
|
474 |
||
475 |
text{*Special cases where either operand is zero*} |
|
476 |
lemmas of_int_0_le_iff [simp] = of_int_le_iff [of 0, simplified] |
|
477 |
lemmas of_int_le_0_iff [simp] = of_int_le_iff [of _ 0, simplified] |
|
478 |
||
479 |
||
480 |
lemma of_int_less_iff [simp]: |
|
481 |
"(of_int w < (of_int z::'a::ordered_idom)) = (w < z)" |
|
482 |
by (simp add: linorder_not_le [symmetric]) |
|
483 |
||
484 |
text{*Special cases where either operand is zero*} |
|
485 |
lemmas of_int_0_less_iff [simp] = of_int_less_iff [of 0, simplified] |
|
486 |
lemmas of_int_less_0_iff [simp] = of_int_less_iff [of _ 0, simplified] |
|
487 |
||
488 |
text{*Class for unital rings with characteristic zero. |
|
489 |
Includes non-ordered rings like the complex numbers.*} |
|
23950 | 490 |
class ring_char_0 = ring_1 + semiring_char_0 |
23164 | 491 |
|
492 |
lemma of_int_eq_iff [simp]: |
|
493 |
"(of_int w = (of_int z::'a::ring_char_0)) = (w = z)" |
|
23282
dfc459989d24
add axclass semiring_char_0 for types where of_nat is injective
huffman
parents:
23276
diff
changeset
|
494 |
apply (cases w, cases z, simp add: of_int) |
dfc459989d24
add axclass semiring_char_0 for types where of_nat is injective
huffman
parents:
23276
diff
changeset
|
495 |
apply (simp only: diff_eq_eq diff_add_eq eq_diff_eq) |
dfc459989d24
add axclass semiring_char_0 for types where of_nat is injective
huffman
parents:
23276
diff
changeset
|
496 |
apply (simp only: of_nat_add [symmetric] of_nat_eq_iff) |
dfc459989d24
add axclass semiring_char_0 for types where of_nat is injective
huffman
parents:
23276
diff
changeset
|
497 |
done |
23164 | 498 |
|
499 |
text{*Every @{text ordered_idom} has characteristic zero.*} |
|
23282
dfc459989d24
add axclass semiring_char_0 for types where of_nat is injective
huffman
parents:
23276
diff
changeset
|
500 |
instance ordered_idom < ring_char_0 .. |
23164 | 501 |
|
502 |
text{*Special cases where either operand is zero*} |
|
503 |
lemmas of_int_0_eq_iff [simp] = of_int_eq_iff [of 0, simplified] |
|
504 |
lemmas of_int_eq_0_iff [simp] = of_int_eq_iff [of _ 0, simplified] |
|
505 |
||
506 |
lemma of_int_eq_id [simp]: "of_int = (id :: int => int)" |
|
507 |
proof |
|
508 |
fix z |
|
23299
292b1cbd05dc
remove dependencies of proofs on constant int::nat=>int, preparing to remove it
huffman
parents:
23282
diff
changeset
|
509 |
show "of_int z = id z" |
23164 | 510 |
by (cases z) |
23365 | 511 |
(simp add: of_int add minus int_def diff_minus) |
23164 | 512 |
qed |
513 |
||
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
514 |
lemma of_nat_nat: "0 \<le> z ==> of_nat (nat z) = of_int z" |
23438
dd824e86fa8a
remove simp attribute from of_nat_diff, for backward compatibility with zdiff_int
huffman
parents:
23431
diff
changeset
|
515 |
by (cases z rule: eq_Abs_Integ) |
dd824e86fa8a
remove simp attribute from of_nat_diff, for backward compatibility with zdiff_int
huffman
parents:
23431
diff
changeset
|
516 |
(simp add: nat le of_int Zero_int_def of_nat_diff) |
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
517 |
|
23164 | 518 |
|
519 |
subsection{*The Set of Integers*} |
|
520 |
||
521 |
constdefs |
|
522 |
Ints :: "'a::ring_1 set" |
|
523 |
"Ints == range of_int" |
|
524 |
||
525 |
notation (xsymbols) |
|
526 |
Ints ("\<int>") |
|
527 |
||
528 |
lemma Ints_0 [simp]: "0 \<in> Ints" |
|
529 |
apply (simp add: Ints_def) |
|
530 |
apply (rule range_eqI) |
|
531 |
apply (rule of_int_0 [symmetric]) |
|
532 |
done |
|
533 |
||
534 |
lemma Ints_1 [simp]: "1 \<in> Ints" |
|
535 |
apply (simp add: Ints_def) |
|
536 |
apply (rule range_eqI) |
|
537 |
apply (rule of_int_1 [symmetric]) |
|
538 |
done |
|
539 |
||
540 |
lemma Ints_add [simp]: "[|a \<in> Ints; b \<in> Ints|] ==> a+b \<in> Ints" |
|
541 |
apply (auto simp add: Ints_def) |
|
542 |
apply (rule range_eqI) |
|
543 |
apply (rule of_int_add [symmetric]) |
|
544 |
done |
|
545 |
||
546 |
lemma Ints_minus [simp]: "a \<in> Ints ==> -a \<in> Ints" |
|
547 |
apply (auto simp add: Ints_def) |
|
548 |
apply (rule range_eqI) |
|
549 |
apply (rule of_int_minus [symmetric]) |
|
550 |
done |
|
551 |
||
552 |
lemma Ints_diff [simp]: "[|a \<in> Ints; b \<in> Ints|] ==> a-b \<in> Ints" |
|
553 |
apply (auto simp add: Ints_def) |
|
554 |
apply (rule range_eqI) |
|
555 |
apply (rule of_int_diff [symmetric]) |
|
556 |
done |
|
557 |
||
558 |
lemma Ints_mult [simp]: "[|a \<in> Ints; b \<in> Ints|] ==> a*b \<in> Ints" |
|
559 |
apply (auto simp add: Ints_def) |
|
560 |
apply (rule range_eqI) |
|
561 |
apply (rule of_int_mult [symmetric]) |
|
562 |
done |
|
563 |
||
564 |
text{*Collapse nested embeddings*} |
|
565 |
lemma of_int_of_nat_eq [simp]: "of_int (of_nat n) = of_nat n" |
|
566 |
by (induct n, auto) |
|
567 |
||
568 |
lemma Ints_cases [cases set: Ints]: |
|
569 |
assumes "q \<in> \<int>" |
|
570 |
obtains (of_int) z where "q = of_int z" |
|
571 |
unfolding Ints_def |
|
572 |
proof - |
|
573 |
from `q \<in> \<int>` have "q \<in> range of_int" unfolding Ints_def . |
|
574 |
then obtain z where "q = of_int z" .. |
|
575 |
then show thesis .. |
|
576 |
qed |
|
577 |
||
578 |
lemma Ints_induct [case_names of_int, induct set: Ints]: |
|
579 |
"q \<in> \<int> ==> (!!z. P (of_int z)) ==> P q" |
|
580 |
by (rule Ints_cases) auto |
|
581 |
||
582 |
||
583 |
subsection {* Further properties *} |
|
584 |
||
585 |
text{*Now we replace the case analysis rule by a more conventional one: |
|
586 |
whether an integer is negative or not.*} |
|
587 |
||
23365 | 588 |
lemma zless_iff_Suc_zadd: |
589 |
"(w < z) = (\<exists>n. z = w + int (Suc n))" |
|
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
590 |
apply (cases z, cases w) |
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
591 |
apply (auto simp add: less add int_def) |
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
592 |
apply (rename_tac a b c d) |
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
593 |
apply (rule_tac x="a+d - Suc(c+b)" in exI) |
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
594 |
apply arith |
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
595 |
done |
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
596 |
|
23365 | 597 |
lemma negD: "x<0 ==> \<exists>n. x = - (int (Suc n))" |
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
598 |
apply (cases x) |
23365 | 599 |
apply (auto simp add: le minus Zero_int_def int_def order_less_le) |
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
600 |
apply (rule_tac x="y - Suc x" in exI, arith) |
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
601 |
done |
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
602 |
|
23365 | 603 |
theorem int_cases [cases type: int, case_names nonneg neg]: |
604 |
"[|!! n. z = int n ==> P; !! n. z = - (int (Suc n)) ==> P |] ==> P" |
|
605 |
apply (cases "z < 0", blast dest!: negD) |
|
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
606 |
apply (simp add: linorder_not_less del: of_nat_Suc) |
23365 | 607 |
apply (blast dest: nat_0_le [THEN sym]) |
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
608 |
done |
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
609 |
|
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
610 |
theorem int_induct [induct type: int, case_names nonneg neg]: |
23365 | 611 |
"[|!! n. P (int n); !!n. P (- (int (Suc n))) |] ==> P z" |
612 |
by (cases z rule: int_cases) auto |
|
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
613 |
|
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
614 |
text{*Contributed by Brian Huffman*} |
23365 | 615 |
theorem int_diff_cases [case_names diff]: |
616 |
assumes prem: "!!m n. z = int m - int n ==> P" shows "P" |
|
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
617 |
apply (cases z rule: eq_Abs_Integ) |
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
618 |
apply (rule_tac m=x and n=y in prem) |
23365 | 619 |
apply (simp add: int_def diff_def minus add) |
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
620 |
done |
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
621 |
|
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
622 |
|
23365 | 623 |
subsection {* Legacy theorems *} |
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
624 |
|
23431
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
625 |
lemmas zminus_zminus = minus_minus [of "?z::int"] |
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
626 |
lemmas zminus_0 = minus_zero [where 'a=int] |
23431
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
627 |
lemmas zminus_zadd_distrib = minus_add_distrib [of "?z::int" "?w"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
628 |
lemmas zadd_commute = add_commute [of "?z::int" "?w"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
629 |
lemmas zadd_assoc = add_assoc [of "?z1.0::int" "?z2.0" "?z3.0"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
630 |
lemmas zadd_left_commute = add_left_commute [of "?x::int" "?y" "?z"] |
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
631 |
lemmas zadd_ac = zadd_assoc zadd_commute zadd_left_commute |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
632 |
lemmas zmult_ac = OrderedGroup.mult_ac |
23431
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
633 |
lemmas zadd_0 = OrderedGroup.add_0_left [of "?z::int"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
634 |
lemmas zadd_0_right = OrderedGroup.add_0_left [of "?z::int"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
635 |
lemmas zadd_zminus_inverse2 = left_minus [of "?z::int"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
636 |
lemmas zmult_zminus = mult_minus_left [of "?z::int" "?w"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
637 |
lemmas zmult_commute = mult_commute [of "?z::int" "?w"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
638 |
lemmas zmult_assoc = mult_assoc [of "?z1.0::int" "?z2.0" "?z3.0"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
639 |
lemmas zadd_zmult_distrib = left_distrib [of "?z1.0::int" "?z2.0" "?w"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
640 |
lemmas zadd_zmult_distrib2 = right_distrib [of "?w::int" "?z1.0" "?z2.0"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
641 |
lemmas zdiff_zmult_distrib = left_diff_distrib [of "?z1.0::int" "?z2.0" "?w"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
642 |
lemmas zdiff_zmult_distrib2 = right_diff_distrib [of "?w::int" "?z1.0" "?z2.0"] |
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
643 |
|
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
644 |
lemmas int_distrib = |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
645 |
zadd_zmult_distrib zadd_zmult_distrib2 |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
646 |
zdiff_zmult_distrib zdiff_zmult_distrib2 |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
647 |
|
23431
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
648 |
lemmas zmult_1 = mult_1_left [of "?z::int"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
649 |
lemmas zmult_1_right = mult_1_right [of "?z::int"] |
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
650 |
|
23431
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
651 |
lemmas zle_refl = order_refl [of "?w::int"] |
23402 | 652 |
lemmas zle_trans = order_trans [where 'a=int and x="?i" and y="?j" and z="?k"] |
23431
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
653 |
lemmas zle_anti_sym = order_antisym [of "?z::int" "?w"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
654 |
lemmas zle_linear = linorder_linear [of "?z::int" "?w"] |
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
655 |
lemmas zless_linear = linorder_less_linear [where 'a = int] |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
656 |
|
23431
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
657 |
lemmas zadd_left_mono = add_left_mono [of "?i::int" "?j" "?k"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
658 |
lemmas zadd_strict_right_mono = add_strict_right_mono [of "?i::int" "?j" "?k"] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
659 |
lemmas zadd_zless_mono = add_less_le_mono [of "?w'::int" "?w" "?z'" "?z"] |
23372
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
660 |
|
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
661 |
lemmas int_0_less_1 = zero_less_one [where 'a=int] |
0035be079bee
clean up instance proofs; reorganize section headings
huffman
parents:
23365
diff
changeset
|
662 |
lemmas int_0_neq_1 = zero_neq_one [where 'a=int] |
23303
6091e530ff77
add abbreviation int_of_nat for of_nat::nat=>int;
huffman
parents:
23299
diff
changeset
|
663 |
|
23365 | 664 |
lemmas inj_int = inj_of_nat [where 'a=int] |
665 |
lemmas int_int_eq = of_nat_eq_iff [where 'a=int] |
|
666 |
lemmas zadd_int = of_nat_add [where 'a=int, symmetric] |
|
667 |
lemmas int_mult = of_nat_mult [where 'a=int] |
|
668 |
lemmas zmult_int = of_nat_mult [where 'a=int, symmetric] |
|
23431
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
669 |
lemmas int_eq_0_conv = of_nat_eq_0_iff [where 'a=int and m="?n"] |
23365 | 670 |
lemmas zless_int = of_nat_less_iff [where 'a=int] |
23431
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
671 |
lemmas int_less_0_conv = of_nat_less_0_iff [where 'a=int and m="?k"] |
23365 | 672 |
lemmas zero_less_int_conv = of_nat_0_less_iff [where 'a=int] |
673 |
lemmas zle_int = of_nat_le_iff [where 'a=int] |
|
674 |
lemmas zero_zle_int = of_nat_0_le_iff [where 'a=int] |
|
23431
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
675 |
lemmas int_le_0_conv = of_nat_le_0_iff [where 'a=int and m="?n"] |
23365 | 676 |
lemmas int_0 = of_nat_0 [where ?'a_1.0=int] |
677 |
lemmas int_1 = of_nat_1 [where 'a=int] |
|
23431
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
678 |
lemmas int_Suc = of_nat_Suc [where ?'a_1.0=int] |
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23402
diff
changeset
|
679 |
lemmas abs_int_eq = abs_of_nat [where 'a=int and n="?m"] |
23365 | 680 |
lemmas of_int_int_eq = of_int_of_nat_eq [where 'a=int] |
681 |
lemmas zdiff_int = of_nat_diff [where 'a=int, symmetric] |
|
682 |
lemmas zless_le = less_int_def [THEN meta_eq_to_obj_eq] |
|
683 |
lemmas int_eq_of_nat = TrueI |
|
23164 | 684 |
|
23365 | 685 |
abbreviation |
686 |
int_of_nat :: "nat \<Rightarrow> int" |
|
687 |
where |
|
688 |
"int_of_nat \<equiv> of_nat" |
|
23164 | 689 |
|
690 |
end |