author | paulson |
Wed, 11 Jan 2006 10:59:55 +0100 | |
changeset 18648 | 22f96cd085d5 |
parent 17508 | c84af7f39a6b |
child 18978 | 8971c306b94f |
permissions | -rw-r--r-- |
6917 | 1 |
(* Title: HOL/IntDiv.thy |
2 |
ID: $Id$ |
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
4 |
Copyright 1999 University of Cambridge |
|
5 |
||
15221 | 6 |
*) |
7 |
||
8 |
||
9 |
header{*The Division Operators div and mod; the Divides Relation dvd*} |
|
10 |
||
11 |
theory IntDiv |
|
17508 | 12 |
imports SetInterval Recdef |
16417 | 13 |
uses ("IntDiv_setup.ML") |
15221 | 14 |
begin |
15 |
||
16 |
declare zless_nat_conj [simp] |
|
17 |
||
18 |
constdefs |
|
19 |
quorem :: "(int*int) * (int*int) => bool" |
|
20 |
--{*definition of quotient and remainder*} |
|
21 |
"quorem == %((a,b), (q,r)). |
|
22 |
a = b*q + r & |
|
23 |
(if 0 < b then 0\<le>r & r<b else b<r & r \<le> 0)" |
|
24 |
||
25 |
adjust :: "[int, int*int] => int*int" |
|
26 |
--{*for the division algorithm*} |
|
27 |
"adjust b == %(q,r). if 0 \<le> r-b then (2*q + 1, r-b) |
|
28 |
else (2*q, r)" |
|
29 |
||
30 |
text{*algorithm for the case @{text "a\<ge>0, b>0"}*} |
|
31 |
consts posDivAlg :: "int*int => int*int" |
|
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15320
diff
changeset
|
32 |
recdef posDivAlg "measure (%(a,b). nat(a - b + 1))" |
15221 | 33 |
"posDivAlg (a,b) = |
34 |
(if (a<b | b\<le>0) then (0,a) |
|
35 |
else adjust b (posDivAlg(a, 2*b)))" |
|
13183 | 36 |
|
15221 | 37 |
text{*algorithm for the case @{text "a<0, b>0"}*} |
38 |
consts negDivAlg :: "int*int => int*int" |
|
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15320
diff
changeset
|
39 |
recdef negDivAlg "measure (%(a,b). nat(- a - b))" |
15221 | 40 |
"negDivAlg (a,b) = |
41 |
(if (0\<le>a+b | b\<le>0) then (-1,a+b) |
|
42 |
else adjust b (negDivAlg(a, 2*b)))" |
|
43 |
||
44 |
text{*algorithm for the general case @{term "b\<noteq>0"}*} |
|
45 |
constdefs |
|
46 |
negateSnd :: "int*int => int*int" |
|
47 |
"negateSnd == %(q,r). (q,-r)" |
|
48 |
||
49 |
divAlg :: "int*int => int*int" |
|
50 |
--{*The full division algorithm considers all possible signs for a, b |
|
51 |
including the special case @{text "a=0, b<0"} because |
|
52 |
@{term negDivAlg} requires @{term "a<0"}.*} |
|
53 |
"divAlg == |
|
54 |
%(a,b). if 0\<le>a then |
|
55 |
if 0\<le>b then posDivAlg (a,b) |
|
56 |
else if a=0 then (0,0) |
|
57 |
else negateSnd (negDivAlg (-a,-b)) |
|
58 |
else |
|
59 |
if 0<b then negDivAlg (a,b) |
|
60 |
else negateSnd (posDivAlg (-a,-b))" |
|
61 |
||
62 |
instance |
|
63 |
int :: "Divides.div" .. --{*avoid clash with 'div' token*} |
|
64 |
||
65 |
text{*The operators are defined with reference to the algorithm, which is |
|
66 |
proved to satisfy the specification.*} |
|
67 |
defs |
|
68 |
div_def: "a div b == fst (divAlg (a,b))" |
|
69 |
mod_def: "a mod b == snd (divAlg (a,b))" |
|
70 |
||
71 |
||
72 |
text{* |
|
13183 | 73 |
Here is the division algorithm in ML: |
74 |
||
15221 | 75 |
\begin{verbatim} |
13183 | 76 |
fun posDivAlg (a,b) = |
77 |
if a<b then (0,a) |
|
78 |
else let val (q,r) = posDivAlg(a, 2*b) |
|
14288 | 79 |
in if 0\<le>r-b then (2*q+1, r-b) else (2*q, r) |
13183 | 80 |
end |
81 |
||
82 |
fun negDivAlg (a,b) = |
|
14288 | 83 |
if 0\<le>a+b then (~1,a+b) |
13183 | 84 |
else let val (q,r) = negDivAlg(a, 2*b) |
14288 | 85 |
in if 0\<le>r-b then (2*q+1, r-b) else (2*q, r) |
13183 | 86 |
end; |
87 |
||
88 |
fun negateSnd (q,r:int) = (q,~r); |
|
89 |
||
14288 | 90 |
fun divAlg (a,b) = if 0\<le>a then |
13183 | 91 |
if b>0 then posDivAlg (a,b) |
92 |
else if a=0 then (0,0) |
|
93 |
else negateSnd (negDivAlg (~a,~b)) |
|
94 |
else |
|
95 |
if 0<b then negDivAlg (a,b) |
|
96 |
else negateSnd (posDivAlg (~a,~b)); |
|
15221 | 97 |
\end{verbatim} |
98 |
*} |
|
13183 | 99 |
|
100 |
||
101 |
||
14271 | 102 |
subsection{*Uniqueness and Monotonicity of Quotients and Remainders*} |
13183 | 103 |
|
104 |
lemma unique_quotient_lemma: |
|
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16417
diff
changeset
|
105 |
"[| b*q' + r' \<le> b*q + r; 0 \<le> r'; r' < b; r < b |] |
14288 | 106 |
==> q' \<le> (q::int)" |
107 |
apply (subgoal_tac "r' + b * (q'-q) \<le> r") |
|
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
108 |
prefer 2 apply (simp add: right_diff_distrib) |
13183 | 109 |
apply (subgoal_tac "0 < b * (1 + q - q') ") |
110 |
apply (erule_tac [2] order_le_less_trans) |
|
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
111 |
prefer 2 apply (simp add: right_diff_distrib right_distrib) |
13183 | 112 |
apply (subgoal_tac "b * q' < b * (1 + q) ") |
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
113 |
prefer 2 apply (simp add: right_diff_distrib right_distrib) |
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14378
diff
changeset
|
114 |
apply (simp add: mult_less_cancel_left) |
13183 | 115 |
done |
116 |
||
117 |
lemma unique_quotient_lemma_neg: |
|
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16417
diff
changeset
|
118 |
"[| b*q' + r' \<le> b*q + r; r \<le> 0; b < r; b < r' |] |
14288 | 119 |
==> q \<le> (q'::int)" |
13183 | 120 |
by (rule_tac b = "-b" and r = "-r'" and r' = "-r" in unique_quotient_lemma, |
121 |
auto) |
|
122 |
||
123 |
lemma unique_quotient: |
|
15221 | 124 |
"[| quorem ((a,b), (q,r)); quorem ((a,b), (q',r')); b \<noteq> 0 |] |
13183 | 125 |
==> q = q'" |
126 |
apply (simp add: quorem_def linorder_neq_iff split: split_if_asm) |
|
127 |
apply (blast intro: order_antisym |
|
128 |
dest: order_eq_refl [THEN unique_quotient_lemma] |
|
129 |
order_eq_refl [THEN unique_quotient_lemma_neg] sym)+ |
|
130 |
done |
|
131 |
||
132 |
||
133 |
lemma unique_remainder: |
|
15221 | 134 |
"[| quorem ((a,b), (q,r)); quorem ((a,b), (q',r')); b \<noteq> 0 |] |
13183 | 135 |
==> r = r'" |
136 |
apply (subgoal_tac "q = q'") |
|
137 |
apply (simp add: quorem_def) |
|
138 |
apply (blast intro: unique_quotient) |
|
139 |
done |
|
140 |
||
141 |
||
15221 | 142 |
subsection{*Correctness of @{term posDivAlg}, the Algorithm for Non-Negative Dividends*} |
14271 | 143 |
|
144 |
text{*And positive divisors*} |
|
13183 | 145 |
|
146 |
lemma adjust_eq [simp]: |
|
147 |
"adjust b (q,r) = |
|
148 |
(let diff = r-b in |
|
14288 | 149 |
if 0 \<le> diff then (2*q + 1, diff) |
13183 | 150 |
else (2*q, r))" |
151 |
by (simp add: Let_def adjust_def) |
|
152 |
||
153 |
declare posDivAlg.simps [simp del] |
|
154 |
||
15221 | 155 |
text{*use with a simproc to avoid repeatedly proving the premise*} |
13183 | 156 |
lemma posDivAlg_eqn: |
157 |
"0 < b ==> |
|
158 |
posDivAlg (a,b) = (if a<b then (0,a) else adjust b (posDivAlg(a, 2*b)))" |
|
159 |
by (rule posDivAlg.simps [THEN trans], simp) |
|
160 |
||
15221 | 161 |
text{*Correctness of @{term posDivAlg}: it computes quotients correctly*} |
162 |
theorem posDivAlg_correct [rule_format]: |
|
14288 | 163 |
"0 \<le> a --> 0 < b --> quorem ((a, b), posDivAlg (a, b))" |
13183 | 164 |
apply (induct_tac a b rule: posDivAlg.induct, auto) |
165 |
apply (simp_all add: quorem_def) |
|
166 |
(*base case: a<b*) |
|
167 |
apply (simp add: posDivAlg_eqn) |
|
168 |
(*main argument*) |
|
169 |
apply (subst posDivAlg_eqn, simp_all) |
|
170 |
apply (erule splitE) |
|
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
171 |
apply (auto simp add: right_distrib Let_def) |
13183 | 172 |
done |
173 |
||
174 |
||
15221 | 175 |
subsection{*Correctness of @{term negDivAlg}, the Algorithm for Negative Dividends*} |
14271 | 176 |
|
177 |
text{*And positive divisors*} |
|
13183 | 178 |
|
179 |
declare negDivAlg.simps [simp del] |
|
180 |
||
15221 | 181 |
text{*use with a simproc to avoid repeatedly proving the premise*} |
13183 | 182 |
lemma negDivAlg_eqn: |
183 |
"0 < b ==> |
|
184 |
negDivAlg (a,b) = |
|
14288 | 185 |
(if 0\<le>a+b then (-1,a+b) else adjust b (negDivAlg(a, 2*b)))" |
13183 | 186 |
by (rule negDivAlg.simps [THEN trans], simp) |
187 |
||
188 |
(*Correctness of negDivAlg: it computes quotients correctly |
|
189 |
It doesn't work if a=0 because the 0/b equals 0, not -1*) |
|
190 |
lemma negDivAlg_correct [rule_format]: |
|
191 |
"a < 0 --> 0 < b --> quorem ((a, b), negDivAlg (a, b))" |
|
192 |
apply (induct_tac a b rule: negDivAlg.induct, auto) |
|
193 |
apply (simp_all add: quorem_def) |
|
14288 | 194 |
(*base case: 0\<le>a+b*) |
13183 | 195 |
apply (simp add: negDivAlg_eqn) |
196 |
(*main argument*) |
|
197 |
apply (subst negDivAlg_eqn, assumption) |
|
198 |
apply (erule splitE) |
|
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
199 |
apply (auto simp add: right_distrib Let_def) |
13183 | 200 |
done |
201 |
||
202 |
||
14271 | 203 |
subsection{*Existence Shown by Proving the Division Algorithm to be Correct*} |
13183 | 204 |
|
205 |
(*the case a=0*) |
|
15221 | 206 |
lemma quorem_0: "b \<noteq> 0 ==> quorem ((0,b), (0,0))" |
13183 | 207 |
by (auto simp add: quorem_def linorder_neq_iff) |
208 |
||
209 |
lemma posDivAlg_0 [simp]: "posDivAlg (0, b) = (0, 0)" |
|
210 |
by (subst posDivAlg.simps, auto) |
|
211 |
||
212 |
lemma negDivAlg_minus1 [simp]: "negDivAlg (-1, b) = (-1, b - 1)" |
|
213 |
by (subst negDivAlg.simps, auto) |
|
214 |
||
215 |
lemma negateSnd_eq [simp]: "negateSnd(q,r) = (q,-r)" |
|
15221 | 216 |
by (simp add: negateSnd_def) |
13183 | 217 |
|
218 |
lemma quorem_neg: "quorem ((-a,-b), qr) ==> quorem ((a,b), negateSnd qr)" |
|
219 |
by (auto simp add: split_ifs quorem_def) |
|
220 |
||
15221 | 221 |
lemma divAlg_correct: "b \<noteq> 0 ==> quorem ((a,b), divAlg(a,b))" |
13183 | 222 |
by (force simp add: linorder_neq_iff quorem_0 divAlg_def quorem_neg |
223 |
posDivAlg_correct negDivAlg_correct) |
|
224 |
||
15221 | 225 |
text{*Arbitrary definitions for division by zero. Useful to simplify |
226 |
certain equations.*} |
|
13183 | 227 |
|
14271 | 228 |
lemma DIVISION_BY_ZERO [simp]: "a div (0::int) = 0 & a mod (0::int) = a" |
229 |
by (simp add: div_def mod_def divAlg_def posDivAlg.simps) |
|
13183 | 230 |
|
15221 | 231 |
|
232 |
text{*Basic laws about division and remainder*} |
|
13183 | 233 |
|
234 |
lemma zmod_zdiv_equality: "(a::int) = b * (a div b) + (a mod b)" |
|
15013 | 235 |
apply (case_tac "b = 0", simp) |
13183 | 236 |
apply (cut_tac a = a and b = b in divAlg_correct) |
237 |
apply (auto simp add: quorem_def div_def mod_def) |
|
238 |
done |
|
239 |
||
13517 | 240 |
lemma zdiv_zmod_equality: "(b * (a div b) + (a mod b)) + k = (a::int)+k" |
241 |
by(simp add: zmod_zdiv_equality[symmetric]) |
|
242 |
||
243 |
lemma zdiv_zmod_equality2: "((a div b) * b + (a mod b)) + k = (a::int)+k" |
|
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15221
diff
changeset
|
244 |
by(simp add: mult_commute zmod_zdiv_equality[symmetric]) |
13517 | 245 |
|
246 |
use "IntDiv_setup.ML" |
|
247 |
||
14288 | 248 |
lemma pos_mod_conj : "(0::int) < b ==> 0 \<le> a mod b & a mod b < b" |
13183 | 249 |
apply (cut_tac a = a and b = b in divAlg_correct) |
250 |
apply (auto simp add: quorem_def mod_def) |
|
251 |
done |
|
252 |
||
18648 | 253 |
lemmas pos_mod_sign = pos_mod_conj [THEN conjunct1, standard] |
254 |
and pos_mod_bound = pos_mod_conj [THEN conjunct2, standard] |
|
255 |
||
256 |
declare pos_mod_sign[simp] pos_mod_bound[simp] |
|
13183 | 257 |
|
14288 | 258 |
lemma neg_mod_conj : "b < (0::int) ==> a mod b \<le> 0 & b < a mod b" |
13183 | 259 |
apply (cut_tac a = a and b = b in divAlg_correct) |
260 |
apply (auto simp add: quorem_def div_def mod_def) |
|
261 |
done |
|
262 |
||
18648 | 263 |
lemmas neg_mod_sign = neg_mod_conj [THEN conjunct1, standard] |
264 |
and neg_mod_bound = neg_mod_conj [THEN conjunct2, standard] |
|
265 |
declare neg_mod_sign[simp] neg_mod_bound[simp] |
|
13183 | 266 |
|
267 |
||
13260 | 268 |
|
15221 | 269 |
subsection{*General Properties of div and mod*} |
13183 | 270 |
|
15221 | 271 |
lemma quorem_div_mod: "b \<noteq> 0 ==> quorem ((a, b), (a div b, a mod b))" |
13183 | 272 |
apply (cut_tac a = a and b = b in zmod_zdiv_equality) |
13788 | 273 |
apply (force simp add: quorem_def linorder_neq_iff) |
13183 | 274 |
done |
275 |
||
15221 | 276 |
lemma quorem_div: "[| quorem((a,b),(q,r)); b \<noteq> 0 |] ==> a div b = q" |
13183 | 277 |
by (simp add: quorem_div_mod [THEN unique_quotient]) |
278 |
||
15221 | 279 |
lemma quorem_mod: "[| quorem((a,b),(q,r)); b \<noteq> 0 |] ==> a mod b = r" |
13183 | 280 |
by (simp add: quorem_div_mod [THEN unique_remainder]) |
281 |
||
14288 | 282 |
lemma div_pos_pos_trivial: "[| (0::int) \<le> a; a < b |] ==> a div b = 0" |
13183 | 283 |
apply (rule quorem_div) |
284 |
apply (auto simp add: quorem_def) |
|
285 |
done |
|
286 |
||
14288 | 287 |
lemma div_neg_neg_trivial: "[| a \<le> (0::int); b < a |] ==> a div b = 0" |
13183 | 288 |
apply (rule quorem_div) |
289 |
apply (auto simp add: quorem_def) |
|
290 |
done |
|
291 |
||
14288 | 292 |
lemma div_pos_neg_trivial: "[| (0::int) < a; a+b \<le> 0 |] ==> a div b = -1" |
13183 | 293 |
apply (rule quorem_div) |
294 |
apply (auto simp add: quorem_def) |
|
295 |
done |
|
296 |
||
297 |
(*There is no div_neg_pos_trivial because 0 div b = 0 would supersede it*) |
|
298 |
||
14288 | 299 |
lemma mod_pos_pos_trivial: "[| (0::int) \<le> a; a < b |] ==> a mod b = a" |
13183 | 300 |
apply (rule_tac q = 0 in quorem_mod) |
301 |
apply (auto simp add: quorem_def) |
|
302 |
done |
|
303 |
||
14288 | 304 |
lemma mod_neg_neg_trivial: "[| a \<le> (0::int); b < a |] ==> a mod b = a" |
13183 | 305 |
apply (rule_tac q = 0 in quorem_mod) |
306 |
apply (auto simp add: quorem_def) |
|
307 |
done |
|
308 |
||
14288 | 309 |
lemma mod_pos_neg_trivial: "[| (0::int) < a; a+b \<le> 0 |] ==> a mod b = a+b" |
13183 | 310 |
apply (rule_tac q = "-1" in quorem_mod) |
311 |
apply (auto simp add: quorem_def) |
|
312 |
done |
|
313 |
||
15221 | 314 |
text{*There is no @{text mod_neg_pos_trivial}.*} |
13183 | 315 |
|
316 |
||
317 |
(*Simpler laws such as -a div b = -(a div b) FAIL, but see just below*) |
|
318 |
lemma zdiv_zminus_zminus [simp]: "(-a) div (-b) = a div (b::int)" |
|
15013 | 319 |
apply (case_tac "b = 0", simp) |
13183 | 320 |
apply (simp add: quorem_div_mod [THEN quorem_neg, simplified, |
321 |
THEN quorem_div, THEN sym]) |
|
322 |
||
323 |
done |
|
324 |
||
325 |
(*Simpler laws such as -a mod b = -(a mod b) FAIL, but see just below*) |
|
326 |
lemma zmod_zminus_zminus [simp]: "(-a) mod (-b) = - (a mod (b::int))" |
|
15013 | 327 |
apply (case_tac "b = 0", simp) |
13183 | 328 |
apply (subst quorem_div_mod [THEN quorem_neg, simplified, THEN quorem_mod], |
329 |
auto) |
|
330 |
done |
|
331 |
||
15221 | 332 |
|
333 |
subsection{*Laws for div and mod with Unary Minus*} |
|
13183 | 334 |
|
335 |
lemma zminus1_lemma: |
|
336 |
"quorem((a,b),(q,r)) |
|
337 |
==> quorem ((-a,b), (if r=0 then -q else -q - 1), |
|
338 |
(if r=0 then 0 else b-r))" |
|
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
339 |
by (force simp add: split_ifs quorem_def linorder_neq_iff right_diff_distrib) |
13183 | 340 |
|
341 |
||
342 |
lemma zdiv_zminus1_eq_if: |
|
15221 | 343 |
"b \<noteq> (0::int) |
13183 | 344 |
==> (-a) div b = |
345 |
(if a mod b = 0 then - (a div b) else - (a div b) - 1)" |
|
346 |
by (blast intro: quorem_div_mod [THEN zminus1_lemma, THEN quorem_div]) |
|
347 |
||
348 |
lemma zmod_zminus1_eq_if: |
|
349 |
"(-a::int) mod b = (if a mod b = 0 then 0 else b - (a mod b))" |
|
15013 | 350 |
apply (case_tac "b = 0", simp) |
13183 | 351 |
apply (blast intro: quorem_div_mod [THEN zminus1_lemma, THEN quorem_mod]) |
352 |
done |
|
353 |
||
354 |
lemma zdiv_zminus2: "a div (-b) = (-a::int) div b" |
|
355 |
by (cut_tac a = "-a" in zdiv_zminus_zminus, auto) |
|
356 |
||
357 |
lemma zmod_zminus2: "a mod (-b) = - ((-a::int) mod b)" |
|
358 |
by (cut_tac a = "-a" and b = b in zmod_zminus_zminus, auto) |
|
359 |
||
360 |
lemma zdiv_zminus2_eq_if: |
|
15221 | 361 |
"b \<noteq> (0::int) |
13183 | 362 |
==> a div (-b) = |
363 |
(if a mod b = 0 then - (a div b) else - (a div b) - 1)" |
|
364 |
by (simp add: zdiv_zminus1_eq_if zdiv_zminus2) |
|
365 |
||
366 |
lemma zmod_zminus2_eq_if: |
|
367 |
"a mod (-b::int) = (if a mod b = 0 then 0 else (a mod b) - b)" |
|
368 |
by (simp add: zmod_zminus1_eq_if zmod_zminus2) |
|
369 |
||
370 |
||
14271 | 371 |
subsection{*Division of a Number by Itself*} |
13183 | 372 |
|
14288 | 373 |
lemma self_quotient_aux1: "[| (0::int) < a; a = r + a*q; r < a |] ==> 1 \<le> q" |
13183 | 374 |
apply (subgoal_tac "0 < a*q") |
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
375 |
apply (simp add: zero_less_mult_iff, arith) |
13183 | 376 |
done |
377 |
||
14288 | 378 |
lemma self_quotient_aux2: "[| (0::int) < a; a = r + a*q; 0 \<le> r |] ==> q \<le> 1" |
379 |
apply (subgoal_tac "0 \<le> a* (1-q) ") |
|
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
380 |
apply (simp add: zero_le_mult_iff) |
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
381 |
apply (simp add: right_diff_distrib) |
13183 | 382 |
done |
383 |
||
15221 | 384 |
lemma self_quotient: "[| quorem((a,a),(q,r)); a \<noteq> (0::int) |] ==> q = 1" |
13183 | 385 |
apply (simp add: split_ifs quorem_def linorder_neq_iff) |
15221 | 386 |
apply (rule order_antisym, safe, simp_all) |
13524 | 387 |
apply (rule_tac [3] a = "-a" and r = "-r" in self_quotient_aux1) |
388 |
apply (rule_tac a = "-a" and r = "-r" in self_quotient_aux2) |
|
15221 | 389 |
apply (force intro: self_quotient_aux1 self_quotient_aux2 simp add: add_commute)+ |
13183 | 390 |
done |
391 |
||
15221 | 392 |
lemma self_remainder: "[| quorem((a,a),(q,r)); a \<noteq> (0::int) |] ==> r = 0" |
13183 | 393 |
apply (frule self_quotient, assumption) |
394 |
apply (simp add: quorem_def) |
|
395 |
done |
|
396 |
||
15221 | 397 |
lemma zdiv_self [simp]: "a \<noteq> 0 ==> a div a = (1::int)" |
13183 | 398 |
by (simp add: quorem_div_mod [THEN self_quotient]) |
399 |
||
400 |
(*Here we have 0 mod 0 = 0, also assumed by Knuth (who puts m mod 0 = 0) *) |
|
401 |
lemma zmod_self [simp]: "a mod a = (0::int)" |
|
15013 | 402 |
apply (case_tac "a = 0", simp) |
13183 | 403 |
apply (simp add: quorem_div_mod [THEN self_remainder]) |
404 |
done |
|
405 |
||
406 |
||
14271 | 407 |
subsection{*Computation of Division and Remainder*} |
13183 | 408 |
|
409 |
lemma zdiv_zero [simp]: "(0::int) div b = 0" |
|
410 |
by (simp add: div_def divAlg_def) |
|
411 |
||
412 |
lemma div_eq_minus1: "(0::int) < b ==> -1 div b = -1" |
|
413 |
by (simp add: div_def divAlg_def) |
|
414 |
||
415 |
lemma zmod_zero [simp]: "(0::int) mod b = 0" |
|
416 |
by (simp add: mod_def divAlg_def) |
|
417 |
||
418 |
lemma zdiv_minus1: "(0::int) < b ==> -1 div b = -1" |
|
419 |
by (simp add: div_def divAlg_def) |
|
420 |
||
421 |
lemma zmod_minus1: "(0::int) < b ==> -1 mod b = b - 1" |
|
422 |
by (simp add: mod_def divAlg_def) |
|
423 |
||
15221 | 424 |
text{*a positive, b positive *} |
13183 | 425 |
|
14288 | 426 |
lemma div_pos_pos: "[| 0 < a; 0 \<le> b |] ==> a div b = fst (posDivAlg(a,b))" |
13183 | 427 |
by (simp add: div_def divAlg_def) |
428 |
||
14288 | 429 |
lemma mod_pos_pos: "[| 0 < a; 0 \<le> b |] ==> a mod b = snd (posDivAlg(a,b))" |
13183 | 430 |
by (simp add: mod_def divAlg_def) |
431 |
||
15221 | 432 |
text{*a negative, b positive *} |
13183 | 433 |
|
434 |
lemma div_neg_pos: "[| a < 0; 0 < b |] ==> a div b = fst (negDivAlg(a,b))" |
|
435 |
by (simp add: div_def divAlg_def) |
|
436 |
||
437 |
lemma mod_neg_pos: "[| a < 0; 0 < b |] ==> a mod b = snd (negDivAlg(a,b))" |
|
438 |
by (simp add: mod_def divAlg_def) |
|
439 |
||
15221 | 440 |
text{*a positive, b negative *} |
13183 | 441 |
|
442 |
lemma div_pos_neg: |
|
443 |
"[| 0 < a; b < 0 |] ==> a div b = fst (negateSnd(negDivAlg(-a,-b)))" |
|
444 |
by (simp add: div_def divAlg_def) |
|
445 |
||
446 |
lemma mod_pos_neg: |
|
447 |
"[| 0 < a; b < 0 |] ==> a mod b = snd (negateSnd(negDivAlg(-a,-b)))" |
|
448 |
by (simp add: mod_def divAlg_def) |
|
449 |
||
15221 | 450 |
text{*a negative, b negative *} |
13183 | 451 |
|
452 |
lemma div_neg_neg: |
|
14288 | 453 |
"[| a < 0; b \<le> 0 |] ==> a div b = fst (negateSnd(posDivAlg(-a,-b)))" |
13183 | 454 |
by (simp add: div_def divAlg_def) |
455 |
||
456 |
lemma mod_neg_neg: |
|
14288 | 457 |
"[| a < 0; b \<le> 0 |] ==> a mod b = snd (negateSnd(posDivAlg(-a,-b)))" |
13183 | 458 |
by (simp add: mod_def divAlg_def) |
459 |
||
460 |
text {*Simplify expresions in which div and mod combine numerical constants*} |
|
461 |
||
17085 | 462 |
lemmas div_pos_pos_number_of = |
463 |
div_pos_pos [of "number_of v" "number_of w", standard] |
|
464 |
declare div_pos_pos_number_of [simp] |
|
465 |
||
466 |
lemmas div_neg_pos_number_of = |
|
467 |
div_neg_pos [of "number_of v" "number_of w", standard] |
|
468 |
declare div_neg_pos_number_of [simp] |
|
469 |
||
470 |
lemmas div_pos_neg_number_of = |
|
471 |
div_pos_neg [of "number_of v" "number_of w", standard] |
|
472 |
declare div_pos_neg_number_of [simp] |
|
473 |
||
474 |
lemmas div_neg_neg_number_of = |
|
475 |
div_neg_neg [of "number_of v" "number_of w", standard] |
|
476 |
declare div_neg_neg_number_of [simp] |
|
477 |
||
478 |
||
479 |
lemmas mod_pos_pos_number_of = |
|
480 |
mod_pos_pos [of "number_of v" "number_of w", standard] |
|
481 |
declare mod_pos_pos_number_of [simp] |
|
13183 | 482 |
|
17085 | 483 |
lemmas mod_neg_pos_number_of = |
484 |
mod_neg_pos [of "number_of v" "number_of w", standard] |
|
485 |
declare mod_neg_pos_number_of [simp] |
|
486 |
||
487 |
lemmas mod_pos_neg_number_of = |
|
488 |
mod_pos_neg [of "number_of v" "number_of w", standard] |
|
489 |
declare mod_pos_neg_number_of [simp] |
|
13183 | 490 |
|
17085 | 491 |
lemmas mod_neg_neg_number_of = |
492 |
mod_neg_neg [of "number_of v" "number_of w", standard] |
|
493 |
declare mod_neg_neg_number_of [simp] |
|
494 |
||
495 |
||
496 |
lemmas posDivAlg_eqn_number_of = |
|
497 |
posDivAlg_eqn [of "number_of v" "number_of w", standard] |
|
498 |
declare posDivAlg_eqn_number_of [simp] |
|
499 |
||
500 |
lemmas negDivAlg_eqn_number_of = |
|
501 |
negDivAlg_eqn [of "number_of v" "number_of w", standard] |
|
502 |
declare negDivAlg_eqn_number_of [simp] |
|
503 |
||
13183 | 504 |
|
505 |
||
15221 | 506 |
text{*Special-case simplification *} |
13183 | 507 |
|
508 |
lemma zmod_1 [simp]: "a mod (1::int) = 0" |
|
509 |
apply (cut_tac a = a and b = 1 in pos_mod_sign) |
|
13788 | 510 |
apply (cut_tac [2] a = a and b = 1 in pos_mod_bound) |
511 |
apply (auto simp del:pos_mod_bound pos_mod_sign) |
|
512 |
done |
|
13183 | 513 |
|
514 |
lemma zdiv_1 [simp]: "a div (1::int) = a" |
|
515 |
by (cut_tac a = a and b = 1 in zmod_zdiv_equality, auto) |
|
516 |
||
517 |
lemma zmod_minus1_right [simp]: "a mod (-1::int) = 0" |
|
518 |
apply (cut_tac a = a and b = "-1" in neg_mod_sign) |
|
13788 | 519 |
apply (cut_tac [2] a = a and b = "-1" in neg_mod_bound) |
520 |
apply (auto simp del: neg_mod_sign neg_mod_bound) |
|
13183 | 521 |
done |
522 |
||
523 |
lemma zdiv_minus1_right [simp]: "a div (-1::int) = -a" |
|
524 |
by (cut_tac a = a and b = "-1" in zmod_zdiv_equality, auto) |
|
525 |
||
526 |
(** The last remaining special cases for constant arithmetic: |
|
527 |
1 div z and 1 mod z **) |
|
528 |
||
17085 | 529 |
lemmas div_pos_pos_1_number_of = |
530 |
div_pos_pos [OF int_0_less_1, of "number_of w", standard] |
|
531 |
declare div_pos_pos_1_number_of [simp] |
|
532 |
||
533 |
lemmas div_pos_neg_1_number_of = |
|
534 |
div_pos_neg [OF int_0_less_1, of "number_of w", standard] |
|
535 |
declare div_pos_neg_1_number_of [simp] |
|
536 |
||
537 |
lemmas mod_pos_pos_1_number_of = |
|
538 |
mod_pos_pos [OF int_0_less_1, of "number_of w", standard] |
|
539 |
declare mod_pos_pos_1_number_of [simp] |
|
13183 | 540 |
|
17085 | 541 |
lemmas mod_pos_neg_1_number_of = |
542 |
mod_pos_neg [OF int_0_less_1, of "number_of w", standard] |
|
543 |
declare mod_pos_neg_1_number_of [simp] |
|
544 |
||
545 |
||
546 |
lemmas posDivAlg_eqn_1_number_of = |
|
547 |
posDivAlg_eqn [of concl: 1 "number_of w", standard] |
|
548 |
declare posDivAlg_eqn_1_number_of [simp] |
|
549 |
||
550 |
lemmas negDivAlg_eqn_1_number_of = |
|
551 |
negDivAlg_eqn [of concl: 1 "number_of w", standard] |
|
552 |
declare negDivAlg_eqn_1_number_of [simp] |
|
553 |
||
13183 | 554 |
|
555 |
||
14271 | 556 |
subsection{*Monotonicity in the First Argument (Dividend)*} |
13183 | 557 |
|
14288 | 558 |
lemma zdiv_mono1: "[| a \<le> a'; 0 < (b::int) |] ==> a div b \<le> a' div b" |
13183 | 559 |
apply (cut_tac a = a and b = b in zmod_zdiv_equality) |
560 |
apply (cut_tac a = a' and b = b in zmod_zdiv_equality) |
|
561 |
apply (rule unique_quotient_lemma) |
|
562 |
apply (erule subst) |
|
15221 | 563 |
apply (erule subst, simp_all) |
13183 | 564 |
done |
565 |
||
14288 | 566 |
lemma zdiv_mono1_neg: "[| a \<le> a'; (b::int) < 0 |] ==> a' div b \<le> a div b" |
13183 | 567 |
apply (cut_tac a = a and b = b in zmod_zdiv_equality) |
568 |
apply (cut_tac a = a' and b = b in zmod_zdiv_equality) |
|
569 |
apply (rule unique_quotient_lemma_neg) |
|
570 |
apply (erule subst) |
|
15221 | 571 |
apply (erule subst, simp_all) |
13183 | 572 |
done |
6917 | 573 |
|
574 |
||
14271 | 575 |
subsection{*Monotonicity in the Second Argument (Divisor)*} |
13183 | 576 |
|
577 |
lemma q_pos_lemma: |
|
14288 | 578 |
"[| 0 \<le> b'*q' + r'; r' < b'; 0 < b' |] ==> 0 \<le> (q'::int)" |
13183 | 579 |
apply (subgoal_tac "0 < b'* (q' + 1) ") |
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
580 |
apply (simp add: zero_less_mult_iff) |
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
581 |
apply (simp add: right_distrib) |
13183 | 582 |
done |
583 |
||
584 |
lemma zdiv_mono2_lemma: |
|
14288 | 585 |
"[| b*q + r = b'*q' + r'; 0 \<le> b'*q' + r'; |
586 |
r' < b'; 0 \<le> r; 0 < b'; b' \<le> b |] |
|
587 |
==> q \<le> (q'::int)" |
|
13183 | 588 |
apply (frule q_pos_lemma, assumption+) |
589 |
apply (subgoal_tac "b*q < b* (q' + 1) ") |
|
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14378
diff
changeset
|
590 |
apply (simp add: mult_less_cancel_left) |
13183 | 591 |
apply (subgoal_tac "b*q = r' - r + b'*q'") |
592 |
prefer 2 apply simp |
|
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
593 |
apply (simp (no_asm_simp) add: right_distrib) |
15221 | 594 |
apply (subst add_commute, rule zadd_zless_mono, arith) |
14378
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14353
diff
changeset
|
595 |
apply (rule mult_right_mono, auto) |
13183 | 596 |
done |
597 |
||
598 |
lemma zdiv_mono2: |
|
14288 | 599 |
"[| (0::int) \<le> a; 0 < b'; b' \<le> b |] ==> a div b \<le> a div b'" |
15221 | 600 |
apply (subgoal_tac "b \<noteq> 0") |
13183 | 601 |
prefer 2 apply arith |
602 |
apply (cut_tac a = a and b = b in zmod_zdiv_equality) |
|
603 |
apply (cut_tac a = a and b = b' in zmod_zdiv_equality) |
|
604 |
apply (rule zdiv_mono2_lemma) |
|
605 |
apply (erule subst) |
|
15221 | 606 |
apply (erule subst, simp_all) |
13183 | 607 |
done |
608 |
||
609 |
lemma q_neg_lemma: |
|
14288 | 610 |
"[| b'*q' + r' < 0; 0 \<le> r'; 0 < b' |] ==> q' \<le> (0::int)" |
13183 | 611 |
apply (subgoal_tac "b'*q' < 0") |
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
612 |
apply (simp add: mult_less_0_iff, arith) |
13183 | 613 |
done |
614 |
||
615 |
lemma zdiv_mono2_neg_lemma: |
|
616 |
"[| b*q + r = b'*q' + r'; b'*q' + r' < 0; |
|
14288 | 617 |
r < b; 0 \<le> r'; 0 < b'; b' \<le> b |] |
618 |
==> q' \<le> (q::int)" |
|
13183 | 619 |
apply (frule q_neg_lemma, assumption+) |
620 |
apply (subgoal_tac "b*q' < b* (q + 1) ") |
|
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14378
diff
changeset
|
621 |
apply (simp add: mult_less_cancel_left) |
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
622 |
apply (simp add: right_distrib) |
14288 | 623 |
apply (subgoal_tac "b*q' \<le> b'*q'") |
15221 | 624 |
prefer 2 apply (simp add: mult_right_mono_neg, arith) |
13183 | 625 |
done |
626 |
||
627 |
lemma zdiv_mono2_neg: |
|
14288 | 628 |
"[| a < (0::int); 0 < b'; b' \<le> b |] ==> a div b' \<le> a div b" |
13183 | 629 |
apply (cut_tac a = a and b = b in zmod_zdiv_equality) |
630 |
apply (cut_tac a = a and b = b' in zmod_zdiv_equality) |
|
631 |
apply (rule zdiv_mono2_neg_lemma) |
|
632 |
apply (erule subst) |
|
15221 | 633 |
apply (erule subst, simp_all) |
13183 | 634 |
done |
635 |
||
14271 | 636 |
subsection{*More Algebraic Laws for div and mod*} |
13183 | 637 |
|
15221 | 638 |
text{*proving (a*b) div c = a * (b div c) + a * (b mod c) *} |
13183 | 639 |
|
640 |
lemma zmult1_lemma: |
|
15221 | 641 |
"[| quorem((b,c),(q,r)); c \<noteq> 0 |] |
13183 | 642 |
==> quorem ((a*b, c), (a*q + a*r div c, a*r mod c))" |
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
643 |
by (force simp add: split_ifs quorem_def linorder_neq_iff right_distrib) |
13183 | 644 |
|
645 |
lemma zdiv_zmult1_eq: "(a*b) div c = a*(b div c) + a*(b mod c) div (c::int)" |
|
15013 | 646 |
apply (case_tac "c = 0", simp) |
13183 | 647 |
apply (blast intro: quorem_div_mod [THEN zmult1_lemma, THEN quorem_div]) |
648 |
done |
|
649 |
||
650 |
lemma zmod_zmult1_eq: "(a*b) mod c = a*(b mod c) mod (c::int)" |
|
15013 | 651 |
apply (case_tac "c = 0", simp) |
13183 | 652 |
apply (blast intro: quorem_div_mod [THEN zmult1_lemma, THEN quorem_mod]) |
653 |
done |
|
654 |
||
655 |
lemma zmod_zmult1_eq': "(a*b) mod (c::int) = ((a mod c) * b) mod c" |
|
656 |
apply (rule trans) |
|
657 |
apply (rule_tac s = "b*a mod c" in trans) |
|
658 |
apply (rule_tac [2] zmod_zmult1_eq) |
|
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15221
diff
changeset
|
659 |
apply (simp_all add: mult_commute) |
13183 | 660 |
done |
661 |
||
662 |
lemma zmod_zmult_distrib: "(a*b) mod (c::int) = ((a mod c) * (b mod c)) mod c" |
|
663 |
apply (rule zmod_zmult1_eq' [THEN trans]) |
|
664 |
apply (rule zmod_zmult1_eq) |
|
665 |
done |
|
666 |
||
15221 | 667 |
lemma zdiv_zmult_self1 [simp]: "b \<noteq> (0::int) ==> (a*b) div b = a" |
13183 | 668 |
by (simp add: zdiv_zmult1_eq) |
669 |
||
15221 | 670 |
lemma zdiv_zmult_self2 [simp]: "b \<noteq> (0::int) ==> (b*a) div b = a" |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15221
diff
changeset
|
671 |
by (subst mult_commute, erule zdiv_zmult_self1) |
13183 | 672 |
|
673 |
lemma zmod_zmult_self1 [simp]: "(a*b) mod b = (0::int)" |
|
674 |
by (simp add: zmod_zmult1_eq) |
|
675 |
||
676 |
lemma zmod_zmult_self2 [simp]: "(b*a) mod b = (0::int)" |
|
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15221
diff
changeset
|
677 |
by (simp add: mult_commute zmod_zmult1_eq) |
13183 | 678 |
|
679 |
lemma zmod_eq_0_iff: "(m mod d = 0) = (EX q::int. m = d*q)" |
|
13517 | 680 |
proof |
681 |
assume "m mod d = 0" |
|
14473 | 682 |
with zmod_zdiv_equality[of m d] show "EX q::int. m = d*q" by auto |
13517 | 683 |
next |
684 |
assume "EX q::int. m = d*q" |
|
685 |
thus "m mod d = 0" by auto |
|
686 |
qed |
|
13183 | 687 |
|
17084
fb0a80aef0be
classical rules must have names for ATP integration
paulson
parents:
16733
diff
changeset
|
688 |
lemmas zmod_eq_0D = zmod_eq_0_iff [THEN iffD1] |
fb0a80aef0be
classical rules must have names for ATP integration
paulson
parents:
16733
diff
changeset
|
689 |
declare zmod_eq_0D [dest!] |
13183 | 690 |
|
15221 | 691 |
text{*proving (a+b) div c = a div c + b div c + ((a mod c + b mod c) div c) *} |
13183 | 692 |
|
693 |
lemma zadd1_lemma: |
|
15221 | 694 |
"[| quorem((a,c),(aq,ar)); quorem((b,c),(bq,br)); c \<noteq> 0 |] |
13183 | 695 |
==> quorem ((a+b, c), (aq + bq + (ar+br) div c, (ar+br) mod c))" |
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
696 |
by (force simp add: split_ifs quorem_def linorder_neq_iff right_distrib) |
13183 | 697 |
|
698 |
(*NOT suitable for rewriting: the RHS has an instance of the LHS*) |
|
699 |
lemma zdiv_zadd1_eq: |
|
700 |
"(a+b) div (c::int) = a div c + b div c + ((a mod c + b mod c) div c)" |
|
15013 | 701 |
apply (case_tac "c = 0", simp) |
13183 | 702 |
apply (blast intro: zadd1_lemma [OF quorem_div_mod quorem_div_mod] quorem_div) |
703 |
done |
|
704 |
||
705 |
lemma zmod_zadd1_eq: "(a+b) mod (c::int) = (a mod c + b mod c) mod c" |
|
15013 | 706 |
apply (case_tac "c = 0", simp) |
13183 | 707 |
apply (blast intro: zadd1_lemma [OF quorem_div_mod quorem_div_mod] quorem_mod) |
708 |
done |
|
709 |
||
710 |
lemma mod_div_trivial [simp]: "(a mod b) div b = (0::int)" |
|
15013 | 711 |
apply (case_tac "b = 0", simp) |
13788 | 712 |
apply (auto simp add: linorder_neq_iff div_pos_pos_trivial div_neg_neg_trivial) |
13183 | 713 |
done |
714 |
||
715 |
lemma mod_mod_trivial [simp]: "(a mod b) mod b = a mod (b::int)" |
|
15013 | 716 |
apply (case_tac "b = 0", simp) |
13788 | 717 |
apply (force simp add: linorder_neq_iff mod_pos_pos_trivial mod_neg_neg_trivial) |
13183 | 718 |
done |
719 |
||
720 |
lemma zmod_zadd_left_eq: "(a+b) mod (c::int) = ((a mod c) + b) mod c" |
|
721 |
apply (rule trans [symmetric]) |
|
722 |
apply (rule zmod_zadd1_eq, simp) |
|
723 |
apply (rule zmod_zadd1_eq [symmetric]) |
|
724 |
done |
|
725 |
||
726 |
lemma zmod_zadd_right_eq: "(a+b) mod (c::int) = (a + (b mod c)) mod c" |
|
727 |
apply (rule trans [symmetric]) |
|
728 |
apply (rule zmod_zadd1_eq, simp) |
|
729 |
apply (rule zmod_zadd1_eq [symmetric]) |
|
730 |
done |
|
731 |
||
15221 | 732 |
lemma zdiv_zadd_self1[simp]: "a \<noteq> (0::int) ==> (a+b) div a = b div a + 1" |
13183 | 733 |
by (simp add: zdiv_zadd1_eq) |
734 |
||
15221 | 735 |
lemma zdiv_zadd_self2[simp]: "a \<noteq> (0::int) ==> (b+a) div a = b div a + 1" |
13183 | 736 |
by (simp add: zdiv_zadd1_eq) |
737 |
||
738 |
lemma zmod_zadd_self1[simp]: "(a+b) mod a = b mod (a::int)" |
|
15013 | 739 |
apply (case_tac "a = 0", simp) |
13183 | 740 |
apply (simp add: zmod_zadd1_eq) |
741 |
done |
|
742 |
||
743 |
lemma zmod_zadd_self2[simp]: "(b+a) mod a = b mod (a::int)" |
|
15013 | 744 |
apply (case_tac "a = 0", simp) |
13183 | 745 |
apply (simp add: zmod_zadd1_eq) |
746 |
done |
|
747 |
||
748 |
||
14271 | 749 |
subsection{*Proving @{term "a div (b*c) = (a div b) div c"} *} |
13183 | 750 |
|
751 |
(*The condition c>0 seems necessary. Consider that 7 div ~6 = ~2 but |
|
752 |
7 div 2 div ~3 = 3 div ~3 = ~1. The subcase (a div b) mod c = 0 seems |
|
753 |
to cause particular problems.*) |
|
754 |
||
15221 | 755 |
text{*first, four lemmas to bound the remainder for the cases b<0 and b>0 *} |
13183 | 756 |
|
14288 | 757 |
lemma zmult2_lemma_aux1: "[| (0::int) < c; b < r; r \<le> 0 |] ==> b*c < b*(q mod c) + r" |
13183 | 758 |
apply (subgoal_tac "b * (c - q mod c) < r * 1") |
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
759 |
apply (simp add: right_diff_distrib) |
13183 | 760 |
apply (rule order_le_less_trans) |
14378
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14353
diff
changeset
|
761 |
apply (erule_tac [2] mult_strict_right_mono) |
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14353
diff
changeset
|
762 |
apply (rule mult_left_mono_neg) |
15221 | 763 |
apply (auto simp add: compare_rls add_commute [of 1] |
13183 | 764 |
add1_zle_eq pos_mod_bound) |
765 |
done |
|
766 |
||
15221 | 767 |
lemma zmult2_lemma_aux2: |
768 |
"[| (0::int) < c; b < r; r \<le> 0 |] ==> b * (q mod c) + r \<le> 0" |
|
14288 | 769 |
apply (subgoal_tac "b * (q mod c) \<le> 0") |
13183 | 770 |
apply arith |
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
771 |
apply (simp add: mult_le_0_iff) |
13183 | 772 |
done |
773 |
||
14288 | 774 |
lemma zmult2_lemma_aux3: "[| (0::int) < c; 0 \<le> r; r < b |] ==> 0 \<le> b * (q mod c) + r" |
775 |
apply (subgoal_tac "0 \<le> b * (q mod c) ") |
|
13183 | 776 |
apply arith |
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
777 |
apply (simp add: zero_le_mult_iff) |
13183 | 778 |
done |
779 |
||
14288 | 780 |
lemma zmult2_lemma_aux4: "[| (0::int) < c; 0 \<le> r; r < b |] ==> b * (q mod c) + r < b * c" |
13183 | 781 |
apply (subgoal_tac "r * 1 < b * (c - q mod c) ") |
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
782 |
apply (simp add: right_diff_distrib) |
13183 | 783 |
apply (rule order_less_le_trans) |
14378
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14353
diff
changeset
|
784 |
apply (erule mult_strict_right_mono) |
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14378
diff
changeset
|
785 |
apply (rule_tac [2] mult_left_mono) |
15221 | 786 |
apply (auto simp add: compare_rls add_commute [of 1] |
13183 | 787 |
add1_zle_eq pos_mod_bound) |
788 |
done |
|
789 |
||
15221 | 790 |
lemma zmult2_lemma: "[| quorem ((a,b), (q,r)); b \<noteq> 0; 0 < c |] |
13183 | 791 |
==> quorem ((a, b*c), (q div c, b*(q mod c) + r))" |
14271 | 792 |
by (auto simp add: mult_ac quorem_def linorder_neq_iff |
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
793 |
zero_less_mult_iff right_distrib [symmetric] |
13524 | 794 |
zmult2_lemma_aux1 zmult2_lemma_aux2 zmult2_lemma_aux3 zmult2_lemma_aux4) |
13183 | 795 |
|
796 |
lemma zdiv_zmult2_eq: "(0::int) < c ==> a div (b*c) = (a div b) div c" |
|
15013 | 797 |
apply (case_tac "b = 0", simp) |
13183 | 798 |
apply (force simp add: quorem_div_mod [THEN zmult2_lemma, THEN quorem_div]) |
799 |
done |
|
800 |
||
801 |
lemma zmod_zmult2_eq: |
|
802 |
"(0::int) < c ==> a mod (b*c) = b*(a div b mod c) + a mod b" |
|
15013 | 803 |
apply (case_tac "b = 0", simp) |
13183 | 804 |
apply (force simp add: quorem_div_mod [THEN zmult2_lemma, THEN quorem_mod]) |
805 |
done |
|
806 |
||
807 |
||
14271 | 808 |
subsection{*Cancellation of Common Factors in div*} |
13183 | 809 |
|
15221 | 810 |
lemma zdiv_zmult_zmult1_aux1: |
811 |
"[| (0::int) < b; c \<noteq> 0 |] ==> (c*a) div (c*b) = a div b" |
|
13183 | 812 |
by (subst zdiv_zmult2_eq, auto) |
813 |
||
15221 | 814 |
lemma zdiv_zmult_zmult1_aux2: |
815 |
"[| b < (0::int); c \<noteq> 0 |] ==> (c*a) div (c*b) = a div b" |
|
13183 | 816 |
apply (subgoal_tac " (c * (-a)) div (c * (-b)) = (-a) div (-b) ") |
13524 | 817 |
apply (rule_tac [2] zdiv_zmult_zmult1_aux1, auto) |
13183 | 818 |
done |
819 |
||
15221 | 820 |
lemma zdiv_zmult_zmult1: "c \<noteq> (0::int) ==> (c*a) div (c*b) = a div b" |
15013 | 821 |
apply (case_tac "b = 0", simp) |
13524 | 822 |
apply (auto simp add: linorder_neq_iff zdiv_zmult_zmult1_aux1 zdiv_zmult_zmult1_aux2) |
13183 | 823 |
done |
824 |
||
15221 | 825 |
lemma zdiv_zmult_zmult2: "c \<noteq> (0::int) ==> (a*c) div (b*c) = a div b" |
13183 | 826 |
apply (drule zdiv_zmult_zmult1) |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15221
diff
changeset
|
827 |
apply (auto simp add: mult_commute) |
13183 | 828 |
done |
829 |
||
830 |
||
831 |
||
14271 | 832 |
subsection{*Distribution of Factors over mod*} |
13183 | 833 |
|
15221 | 834 |
lemma zmod_zmult_zmult1_aux1: |
835 |
"[| (0::int) < b; c \<noteq> 0 |] ==> (c*a) mod (c*b) = c * (a mod b)" |
|
13183 | 836 |
by (subst zmod_zmult2_eq, auto) |
837 |
||
15221 | 838 |
lemma zmod_zmult_zmult1_aux2: |
839 |
"[| b < (0::int); c \<noteq> 0 |] ==> (c*a) mod (c*b) = c * (a mod b)" |
|
13183 | 840 |
apply (subgoal_tac " (c * (-a)) mod (c * (-b)) = c * ((-a) mod (-b))") |
13524 | 841 |
apply (rule_tac [2] zmod_zmult_zmult1_aux1, auto) |
13183 | 842 |
done |
843 |
||
844 |
lemma zmod_zmult_zmult1: "(c*a) mod (c*b) = (c::int) * (a mod b)" |
|
15013 | 845 |
apply (case_tac "b = 0", simp) |
846 |
apply (case_tac "c = 0", simp) |
|
13524 | 847 |
apply (auto simp add: linorder_neq_iff zmod_zmult_zmult1_aux1 zmod_zmult_zmult1_aux2) |
13183 | 848 |
done |
849 |
||
850 |
lemma zmod_zmult_zmult2: "(a*c) mod (b*c) = (a mod b) * (c::int)" |
|
851 |
apply (cut_tac c = c in zmod_zmult_zmult1) |
|
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15221
diff
changeset
|
852 |
apply (auto simp add: mult_commute) |
13183 | 853 |
done |
854 |
||
855 |
||
14271 | 856 |
subsection {*Splitting Rules for div and mod*} |
13260 | 857 |
|
858 |
text{*The proofs of the two lemmas below are essentially identical*} |
|
859 |
||
860 |
lemma split_pos_lemma: |
|
861 |
"0<k ==> |
|
14288 | 862 |
P(n div k :: int)(n mod k) = (\<forall>i j. 0\<le>j & j<k & n = k*i + j --> P i j)" |
15221 | 863 |
apply (rule iffI, clarify) |
13260 | 864 |
apply (erule_tac P="P ?x ?y" in rev_mp) |
865 |
apply (subst zmod_zadd1_eq) |
|
866 |
apply (subst zdiv_zadd1_eq) |
|
867 |
apply (simp add: div_pos_pos_trivial mod_pos_pos_trivial) |
|
868 |
txt{*converse direction*} |
|
869 |
apply (drule_tac x = "n div k" in spec) |
|
15221 | 870 |
apply (drule_tac x = "n mod k" in spec, simp) |
13260 | 871 |
done |
872 |
||
873 |
lemma split_neg_lemma: |
|
874 |
"k<0 ==> |
|
14288 | 875 |
P(n div k :: int)(n mod k) = (\<forall>i j. k<j & j\<le>0 & n = k*i + j --> P i j)" |
15221 | 876 |
apply (rule iffI, clarify) |
13260 | 877 |
apply (erule_tac P="P ?x ?y" in rev_mp) |
878 |
apply (subst zmod_zadd1_eq) |
|
879 |
apply (subst zdiv_zadd1_eq) |
|
880 |
apply (simp add: div_neg_neg_trivial mod_neg_neg_trivial) |
|
881 |
txt{*converse direction*} |
|
882 |
apply (drule_tac x = "n div k" in spec) |
|
15221 | 883 |
apply (drule_tac x = "n mod k" in spec, simp) |
13260 | 884 |
done |
885 |
||
886 |
lemma split_zdiv: |
|
887 |
"P(n div k :: int) = |
|
888 |
((k = 0 --> P 0) & |
|
14288 | 889 |
(0<k --> (\<forall>i j. 0\<le>j & j<k & n = k*i + j --> P i)) & |
890 |
(k<0 --> (\<forall>i j. k<j & j\<le>0 & n = k*i + j --> P i)))" |
|
15221 | 891 |
apply (case_tac "k=0", simp) |
13260 | 892 |
apply (simp only: linorder_neq_iff) |
893 |
apply (erule disjE) |
|
894 |
apply (simp_all add: split_pos_lemma [of concl: "%x y. P x"] |
|
895 |
split_neg_lemma [of concl: "%x y. P x"]) |
|
896 |
done |
|
897 |
||
898 |
lemma split_zmod: |
|
899 |
"P(n mod k :: int) = |
|
900 |
((k = 0 --> P n) & |
|
14288 | 901 |
(0<k --> (\<forall>i j. 0\<le>j & j<k & n = k*i + j --> P j)) & |
902 |
(k<0 --> (\<forall>i j. k<j & j\<le>0 & n = k*i + j --> P j)))" |
|
15221 | 903 |
apply (case_tac "k=0", simp) |
13260 | 904 |
apply (simp only: linorder_neq_iff) |
905 |
apply (erule disjE) |
|
906 |
apply (simp_all add: split_pos_lemma [of concl: "%x y. P y"] |
|
907 |
split_neg_lemma [of concl: "%x y. P y"]) |
|
908 |
done |
|
909 |
||
910 |
(* Enable arith to deal with div 2 and mod 2: *) |
|
13266
2a6ad4357d72
modified Larry's changes to make div/mod a numeral work in arith.
nipkow
parents:
13260
diff
changeset
|
911 |
declare split_zdiv [of _ _ "number_of k", simplified, standard, arith_split] |
2a6ad4357d72
modified Larry's changes to make div/mod a numeral work in arith.
nipkow
parents:
13260
diff
changeset
|
912 |
declare split_zmod [of _ _ "number_of k", simplified, standard, arith_split] |
13260 | 913 |
|
914 |
||
14271 | 915 |
subsection{*Speeding up the Division Algorithm with Shifting*} |
13183 | 916 |
|
15221 | 917 |
text{*computing div by shifting *} |
13183 | 918 |
|
14288 | 919 |
lemma pos_zdiv_mult_2: "(0::int) \<le> a ==> (1 + 2*b) div (2*a) = b div a" |
920 |
proof cases |
|
921 |
assume "a=0" |
|
922 |
thus ?thesis by simp |
|
923 |
next |
|
924 |
assume "a\<noteq>0" and le_a: "0\<le>a" |
|
925 |
hence a_pos: "1 \<le> a" by arith |
|
926 |
hence one_less_a2: "1 < 2*a" by arith |
|
927 |
hence le_2a: "2 * (1 + b mod a) \<le> 2 * a" |
|
15221 | 928 |
by (simp add: mult_le_cancel_left add_commute [of 1] add1_zle_eq) |
14288 | 929 |
with a_pos have "0 \<le> b mod a" by simp |
930 |
hence le_addm: "0 \<le> 1 mod (2*a) + 2*(b mod a)" |
|
931 |
by (simp add: mod_pos_pos_trivial one_less_a2) |
|
932 |
with le_2a |
|
933 |
have "(1 mod (2*a) + 2*(b mod a)) div (2*a) = 0" |
|
934 |
by (simp add: div_pos_pos_trivial le_addm mod_pos_pos_trivial one_less_a2 |
|
935 |
right_distrib) |
|
936 |
thus ?thesis |
|
937 |
by (subst zdiv_zadd1_eq, |
|
938 |
simp add: zdiv_zmult_zmult1 zmod_zmult_zmult1 one_less_a2 |
|
939 |
div_pos_pos_trivial) |
|
940 |
qed |
|
13183 | 941 |
|
14288 | 942 |
lemma neg_zdiv_mult_2: "a \<le> (0::int) ==> (1 + 2*b) div (2*a) = (b+1) div a" |
13183 | 943 |
apply (subgoal_tac " (1 + 2* (-b - 1)) div (2 * (-a)) = (-b - 1) div (-a) ") |
944 |
apply (rule_tac [2] pos_zdiv_mult_2) |
|
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
945 |
apply (auto simp add: minus_mult_right [symmetric] right_diff_distrib) |
13183 | 946 |
apply (subgoal_tac " (-1 - (2 * b)) = - (1 + (2 * b))") |
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
947 |
apply (simp only: zdiv_zminus_zminus diff_minus minus_add_distrib [symmetric], |
13183 | 948 |
simp) |
949 |
done |
|
950 |
||
951 |
||
952 |
(*Not clear why this must be proved separately; probably number_of causes |
|
953 |
simplification problems*) |
|
14288 | 954 |
lemma not_0_le_lemma: "~ 0 \<le> x ==> x \<le> (0::int)" |
13183 | 955 |
by auto |
956 |
||
957 |
lemma zdiv_number_of_BIT[simp]: |
|
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15320
diff
changeset
|
958 |
"number_of (v BIT b) div number_of (w BIT bit.B0) = |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15320
diff
changeset
|
959 |
(if b=bit.B0 | (0::int) \<le> number_of w |
13183 | 960 |
then number_of v div (number_of w) |
961 |
else (number_of v + (1::int)) div (number_of w))" |
|
15013 | 962 |
apply (simp only: number_of_eq Bin_simps UNIV_I split: split_if) |
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15320
diff
changeset
|
963 |
apply (simp add: zdiv_zmult_zmult1 pos_zdiv_mult_2 neg_zdiv_mult_2 add_ac |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15320
diff
changeset
|
964 |
split: bit.split) |
13183 | 965 |
done |
966 |
||
967 |
||
15013 | 968 |
subsection{*Computing mod by Shifting (proofs resemble those for div)*} |
13183 | 969 |
|
970 |
lemma pos_zmod_mult_2: |
|
14288 | 971 |
"(0::int) \<le> a ==> (1 + 2*b) mod (2*a) = 1 + 2 * (b mod a)" |
15013 | 972 |
apply (case_tac "a = 0", simp) |
13183 | 973 |
apply (subgoal_tac "1 < a * 2") |
974 |
prefer 2 apply arith |
|
14288 | 975 |
apply (subgoal_tac "2* (1 + b mod a) \<le> 2*a") |
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14378
diff
changeset
|
976 |
apply (rule_tac [2] mult_left_mono) |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15221
diff
changeset
|
977 |
apply (auto simp add: add_commute [of 1] mult_commute add1_zle_eq |
13183 | 978 |
pos_mod_bound) |
979 |
apply (subst zmod_zadd1_eq) |
|
980 |
apply (simp add: zmod_zmult_zmult2 mod_pos_pos_trivial) |
|
981 |
apply (rule mod_pos_pos_trivial) |
|
14288 | 982 |
apply (auto simp add: mod_pos_pos_trivial left_distrib) |
15221 | 983 |
apply (subgoal_tac "0 \<le> b mod a", arith, simp) |
13183 | 984 |
done |
985 |
||
986 |
lemma neg_zmod_mult_2: |
|
14288 | 987 |
"a \<le> (0::int) ==> (1 + 2*b) mod (2*a) = 2 * ((b+1) mod a) - 1" |
13183 | 988 |
apply (subgoal_tac "(1 + 2* (-b - 1)) mod (2* (-a)) = |
989 |
1 + 2* ((-b - 1) mod (-a))") |
|
990 |
apply (rule_tac [2] pos_zmod_mult_2) |
|
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
991 |
apply (auto simp add: minus_mult_right [symmetric] right_diff_distrib) |
13183 | 992 |
apply (subgoal_tac " (-1 - (2 * b)) = - (1 + (2 * b))") |
993 |
prefer 2 apply simp |
|
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
994 |
apply (simp only: zmod_zminus_zminus diff_minus minus_add_distrib [symmetric]) |
13183 | 995 |
done |
996 |
||
997 |
lemma zmod_number_of_BIT [simp]: |
|
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15320
diff
changeset
|
998 |
"number_of (v BIT b) mod number_of (w BIT bit.B0) = |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15320
diff
changeset
|
999 |
(case b of |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15320
diff
changeset
|
1000 |
bit.B0 => 2 * (number_of v mod number_of w) |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15320
diff
changeset
|
1001 |
| bit.B1 => if (0::int) \<le> number_of w |
13183 | 1002 |
then 2 * (number_of v mod number_of w) + 1 |
15620
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15320
diff
changeset
|
1003 |
else 2 * ((number_of v + (1::int)) mod number_of w) - 1)" |
8ccdc8bc66a2
replaced bool by a new datatype "bit" for binary numerals
paulson
parents:
15320
diff
changeset
|
1004 |
apply (simp only: number_of_eq Bin_simps UNIV_I split: bit.split) |
15013 | 1005 |
apply (simp add: zmod_zmult_zmult1 pos_zmod_mult_2 |
1006 |
not_0_le_lemma neg_zmod_mult_2 add_ac) |
|
13183 | 1007 |
done |
1008 |
||
1009 |
||
15013 | 1010 |
subsection{*Quotients of Signs*} |
13183 | 1011 |
|
1012 |
lemma div_neg_pos_less0: "[| a < (0::int); 0 < b |] ==> a div b < 0" |
|
14288 | 1013 |
apply (subgoal_tac "a div b \<le> -1", force) |
13183 | 1014 |
apply (rule order_trans) |
1015 |
apply (rule_tac a' = "-1" in zdiv_mono1) |
|
1016 |
apply (auto simp add: zdiv_minus1) |
|
1017 |
done |
|
1018 |
||
14288 | 1019 |
lemma div_nonneg_neg_le0: "[| (0::int) \<le> a; b < 0 |] ==> a div b \<le> 0" |
13183 | 1020 |
by (drule zdiv_mono1_neg, auto) |
1021 |
||
14288 | 1022 |
lemma pos_imp_zdiv_nonneg_iff: "(0::int) < b ==> (0 \<le> a div b) = (0 \<le> a)" |
13183 | 1023 |
apply auto |
1024 |
apply (drule_tac [2] zdiv_mono1) |
|
1025 |
apply (auto simp add: linorder_neq_iff) |
|
1026 |
apply (simp (no_asm_use) add: linorder_not_less [symmetric]) |
|
1027 |
apply (blast intro: div_neg_pos_less0) |
|
1028 |
done |
|
1029 |
||
1030 |
lemma neg_imp_zdiv_nonneg_iff: |
|
14288 | 1031 |
"b < (0::int) ==> (0 \<le> a div b) = (a \<le> (0::int))" |
13183 | 1032 |
apply (subst zdiv_zminus_zminus [symmetric]) |
1033 |
apply (subst pos_imp_zdiv_nonneg_iff, auto) |
|
1034 |
done |
|
1035 |
||
14288 | 1036 |
(*But not (a div b \<le> 0 iff a\<le>0); consider a=1, b=2 when a div b = 0.*) |
13183 | 1037 |
lemma pos_imp_zdiv_neg_iff: "(0::int) < b ==> (a div b < 0) = (a < 0)" |
1038 |
by (simp add: linorder_not_le [symmetric] pos_imp_zdiv_nonneg_iff) |
|
1039 |
||
14288 | 1040 |
(*Again the law fails for \<le>: consider a = -1, b = -2 when a div b = 0*) |
13183 | 1041 |
lemma neg_imp_zdiv_neg_iff: "b < (0::int) ==> (a div b < 0) = (0 < a)" |
1042 |
by (simp add: linorder_not_le [symmetric] neg_imp_zdiv_nonneg_iff) |
|
1043 |
||
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1044 |
|
14271 | 1045 |
subsection {* The Divides Relation *} |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1046 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1047 |
lemma zdvd_iff_zmod_eq_0: "(m dvd n) = (n mod m = (0::int))" |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1048 |
by(simp add:dvd_def zmod_eq_0_iff) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1049 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1050 |
lemma zdvd_0_right [iff]: "(m::int) dvd 0" |
15221 | 1051 |
by (simp add: dvd_def) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1052 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1053 |
lemma zdvd_0_left [iff]: "(0 dvd (m::int)) = (m = 0)" |
15221 | 1054 |
by (simp add: dvd_def) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1055 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1056 |
lemma zdvd_1_left [iff]: "1 dvd (m::int)" |
15221 | 1057 |
by (simp add: dvd_def) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1058 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1059 |
lemma zdvd_refl [simp]: "m dvd (m::int)" |
15221 | 1060 |
by (auto simp add: dvd_def intro: zmult_1_right [symmetric]) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1061 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1062 |
lemma zdvd_trans: "m dvd n ==> n dvd k ==> m dvd (k::int)" |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15221
diff
changeset
|
1063 |
by (auto simp add: dvd_def intro: mult_assoc) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1064 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1065 |
lemma zdvd_zminus_iff: "(m dvd -n) = (m dvd (n::int))" |
15221 | 1066 |
apply (simp add: dvd_def, auto) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1067 |
apply (rule_tac [!] x = "-k" in exI, auto) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1068 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1069 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1070 |
lemma zdvd_zminus2_iff: "(-m dvd n) = (m dvd (n::int))" |
15221 | 1071 |
apply (simp add: dvd_def, auto) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1072 |
apply (rule_tac [!] x = "-k" in exI, auto) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1073 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1074 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1075 |
lemma zdvd_anti_sym: |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1076 |
"0 < m ==> 0 < n ==> m dvd n ==> n dvd m ==> m = (n::int)" |
15221 | 1077 |
apply (simp add: dvd_def, auto) |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15221
diff
changeset
|
1078 |
apply (simp add: mult_assoc zero_less_mult_iff zmult_eq_1_iff) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1079 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1080 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1081 |
lemma zdvd_zadd: "k dvd m ==> k dvd n ==> k dvd (m + n :: int)" |
15221 | 1082 |
apply (simp add: dvd_def) |
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
1083 |
apply (blast intro: right_distrib [symmetric]) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1084 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1085 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1086 |
lemma zdvd_zdiff: "k dvd m ==> k dvd n ==> k dvd (m - n :: int)" |
15221 | 1087 |
apply (simp add: dvd_def) |
14479
0eca4aabf371
streamlined treatment of quotients for the integers
paulson
parents:
14473
diff
changeset
|
1088 |
apply (blast intro: right_diff_distrib [symmetric]) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1089 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1090 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1091 |
lemma zdvd_zdiffD: "k dvd m - n ==> k dvd n ==> k dvd (m::int)" |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1092 |
apply (subgoal_tac "m = n + (m - n)") |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1093 |
apply (erule ssubst) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1094 |
apply (blast intro: zdvd_zadd, simp) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1095 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1096 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1097 |
lemma zdvd_zmult: "k dvd (n::int) ==> k dvd m * n" |
15221 | 1098 |
apply (simp add: dvd_def) |
14271 | 1099 |
apply (blast intro: mult_left_commute) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1100 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1101 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1102 |
lemma zdvd_zmult2: "k dvd (m::int) ==> k dvd m * n" |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15221
diff
changeset
|
1103 |
apply (subst mult_commute) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1104 |
apply (erule zdvd_zmult) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1105 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1106 |
|
17084
fb0a80aef0be
classical rules must have names for ATP integration
paulson
parents:
16733
diff
changeset
|
1107 |
lemma zdvd_triv_right [iff]: "(k::int) dvd m * k" |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1108 |
apply (rule zdvd_zmult) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1109 |
apply (rule zdvd_refl) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1110 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1111 |
|
17084
fb0a80aef0be
classical rules must have names for ATP integration
paulson
parents:
16733
diff
changeset
|
1112 |
lemma zdvd_triv_left [iff]: "(k::int) dvd k * m" |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1113 |
apply (rule zdvd_zmult2) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1114 |
apply (rule zdvd_refl) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1115 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1116 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1117 |
lemma zdvd_zmultD2: "j * k dvd n ==> j dvd (n::int)" |
15221 | 1118 |
apply (simp add: dvd_def) |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15221
diff
changeset
|
1119 |
apply (simp add: mult_assoc, blast) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1120 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1121 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1122 |
lemma zdvd_zmultD: "j * k dvd n ==> k dvd (n::int)" |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1123 |
apply (rule zdvd_zmultD2) |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15221
diff
changeset
|
1124 |
apply (subst mult_commute, assumption) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1125 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1126 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1127 |
lemma zdvd_zmult_mono: "i dvd m ==> j dvd (n::int) ==> i * j dvd m * n" |
15221 | 1128 |
apply (simp add: dvd_def, clarify) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1129 |
apply (rule_tac x = "k * ka" in exI) |
14271 | 1130 |
apply (simp add: mult_ac) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1131 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1132 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1133 |
lemma zdvd_reduce: "(k dvd n + k * m) = (k dvd (n::int))" |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1134 |
apply (rule iffI) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1135 |
apply (erule_tac [2] zdvd_zadd) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1136 |
apply (subgoal_tac "n = (n + k * m) - k * m") |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1137 |
apply (erule ssubst) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1138 |
apply (erule zdvd_zdiff, simp_all) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1139 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1140 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1141 |
lemma zdvd_zmod: "f dvd m ==> f dvd (n::int) ==> f dvd m mod n" |
15221 | 1142 |
apply (simp add: dvd_def) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1143 |
apply (auto simp add: zmod_zmult_zmult1) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1144 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1145 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1146 |
lemma zdvd_zmod_imp_zdvd: "k dvd m mod n ==> k dvd n ==> k dvd (m::int)" |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1147 |
apply (subgoal_tac "k dvd n * (m div n) + m mod n") |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1148 |
apply (simp add: zmod_zdiv_equality [symmetric]) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1149 |
apply (simp only: zdvd_zadd zdvd_zmult2) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1150 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1151 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1152 |
lemma zdvd_not_zless: "0 < m ==> m < n ==> \<not> n dvd (m::int)" |
15221 | 1153 |
apply (simp add: dvd_def, auto) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1154 |
apply (subgoal_tac "0 < n") |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1155 |
prefer 2 |
14378
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14353
diff
changeset
|
1156 |
apply (blast intro: order_less_trans) |
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1157 |
apply (simp add: zero_less_mult_iff) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1158 |
apply (subgoal_tac "n * k < n * 1") |
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14378
diff
changeset
|
1159 |
apply (drule mult_less_cancel_left [THEN iffD1], auto) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1160 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1161 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1162 |
lemma int_dvd_iff: "(int m dvd z) = (m dvd nat (abs z))" |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1163 |
apply (auto simp add: dvd_def nat_abs_mult_distrib) |
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1164 |
apply (auto simp add: nat_eq_iff abs_if split add: split_if_asm) |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1165 |
apply (rule_tac x = "-(int k)" in exI) |
16413 | 1166 |
apply (auto simp add: int_mult) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1167 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1168 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1169 |
lemma dvd_int_iff: "(z dvd int m) = (nat (abs z) dvd m)" |
16413 | 1170 |
apply (auto simp add: dvd_def abs_if int_mult) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1171 |
apply (rule_tac [3] x = "nat k" in exI) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1172 |
apply (rule_tac [2] x = "-(int k)" in exI) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1173 |
apply (rule_tac x = "nat (-k)" in exI) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1174 |
apply (cut_tac [3] k = m in int_less_0_conv) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1175 |
apply (cut_tac k = m in int_less_0_conv) |
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1176 |
apply (auto simp add: zero_le_mult_iff mult_less_0_iff |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1177 |
nat_mult_distrib [symmetric] nat_eq_iff2) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1178 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1179 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1180 |
lemma nat_dvd_iff: "(nat z dvd m) = (if 0 \<le> z then (z dvd int m) else m = 0)" |
16413 | 1181 |
apply (auto simp add: dvd_def int_mult) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1182 |
apply (rule_tac x = "nat k" in exI) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1183 |
apply (cut_tac k = m in int_less_0_conv) |
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1184 |
apply (auto simp add: zero_le_mult_iff mult_less_0_iff |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1185 |
nat_mult_distrib [symmetric] nat_eq_iff2) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1186 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1187 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1188 |
lemma zminus_dvd_iff [iff]: "(-z dvd w) = (z dvd (w::int))" |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1189 |
apply (auto simp add: dvd_def) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1190 |
apply (rule_tac [!] x = "-k" in exI, auto) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1191 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1192 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1193 |
lemma dvd_zminus_iff [iff]: "(z dvd -w) = (z dvd (w::int))" |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1194 |
apply (auto simp add: dvd_def) |
14378
69c4d5997669
generic of_nat and of_int functions, and generalization of iszero
paulson
parents:
14353
diff
changeset
|
1195 |
apply (drule minus_equation_iff [THEN iffD1]) |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1196 |
apply (rule_tac [!] x = "-k" in exI, auto) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1197 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1198 |
|
14288 | 1199 |
lemma zdvd_imp_le: "[| z dvd n; 0 < n |] ==> z \<le> (n::int)" |
13837
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1200 |
apply (rule_tac z=n in int_cases) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1201 |
apply (auto simp add: dvd_int_iff) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1202 |
apply (rule_tac z=z in int_cases) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1203 |
apply (auto simp add: dvd_imp_le) |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1204 |
done |
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1205 |
|
8dd150d36c65
Reorganized, moving many results about the integer dvd relation from IntPrimes
paulson
parents:
13788
diff
changeset
|
1206 |
|
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1207 |
subsection{*Integer Powers*} |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1208 |
|
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1209 |
instance int :: power .. |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1210 |
|
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1211 |
primrec |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1212 |
"p ^ 0 = 1" |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1213 |
"p ^ (Suc n) = (p::int) * (p ^ n)" |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1214 |
|
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1215 |
|
15003 | 1216 |
instance int :: recpower |
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1217 |
proof |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1218 |
fix z :: int |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1219 |
fix n :: nat |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1220 |
show "z^0 = 1" by simp |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1221 |
show "z^(Suc n) = z * (z^n)" by simp |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1222 |
qed |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1223 |
|
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1224 |
|
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1225 |
lemma zpower_zmod: "((x::int) mod m)^y mod m = x^y mod m" |
15251 | 1226 |
apply (induct "y", auto) |
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1227 |
apply (rule zmod_zmult1_eq [THEN trans]) |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1228 |
apply (simp (no_asm_simp)) |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1229 |
apply (rule zmod_zmult_distrib [symmetric]) |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1230 |
done |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1231 |
|
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1232 |
lemma zpower_zadd_distrib: "x^(y+z) = ((x^y)*(x^z)::int)" |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1233 |
by (rule Power.power_add) |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1234 |
|
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1235 |
lemma zpower_zpower: "(x^y)^z = (x^(y*z)::int)" |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1236 |
by (rule Power.power_mult [symmetric]) |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1237 |
|
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1238 |
lemma zero_less_zpower_abs_iff [simp]: |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1239 |
"(0 < (abs x)^n) = (x \<noteq> (0::int) | n=0)" |
15251 | 1240 |
apply (induct "n") |
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1241 |
apply (auto simp add: zero_less_mult_iff) |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1242 |
done |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1243 |
|
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1244 |
lemma zero_le_zpower_abs [simp]: "(0::int) <= (abs x)^n" |
15251 | 1245 |
apply (induct "n") |
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1246 |
apply (auto simp add: zero_le_mult_iff) |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1247 |
done |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1248 |
|
16413 | 1249 |
lemma int_power: "int (m^n) = (int m) ^ n" |
1250 |
by (induct n, simp_all add: int_mult) |
|
1251 |
||
1252 |
text{*Compatibility binding*} |
|
1253 |
lemmas zpower_int = int_power [symmetric] |
|
15320 | 1254 |
|
15101 | 1255 |
lemma zdiv_int: "int (a div b) = (int a) div (int b)" |
1256 |
apply (subst split_div, auto) |
|
1257 |
apply (subst split_zdiv, auto) |
|
1258 |
apply (rule_tac a="int (b * i) + int j" and b="int b" and r="int j" and r'=ja in IntDiv.unique_quotient) |
|
1259 |
apply (auto simp add: IntDiv.quorem_def int_eq_of_nat) |
|
1260 |
done |
|
1261 |
||
1262 |
lemma zmod_int: "int (a mod b) = (int a) mod (int b)" |
|
1263 |
apply (subst split_mod, auto) |
|
1264 |
apply (subst split_zmod, auto) |
|
16413 | 1265 |
apply (rule_tac a="int (b * i) + int j" and b="int b" and q="int i" and q'=ia |
1266 |
in unique_remainder) |
|
15101 | 1267 |
apply (auto simp add: IntDiv.quorem_def int_eq_of_nat) |
1268 |
done |
|
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1269 |
|
16413 | 1270 |
text{*Suggested by Matthias Daum*} |
1271 |
lemma int_power_div_base: |
|
1272 |
"\<lbrakk>0 < m; 0 < k\<rbrakk> \<Longrightarrow> k ^ m div k = (k::int) ^ (m - Suc 0)" |
|
1273 |
apply (subgoal_tac "k ^ m = k ^ ((m - 1) + 1)") |
|
1274 |
apply (erule ssubst) |
|
1275 |
apply (simp only: power_add) |
|
1276 |
apply simp_all |
|
1277 |
done |
|
1278 |
||
13183 | 1279 |
ML |
1280 |
{* |
|
1281 |
val quorem_def = thm "quorem_def"; |
|
1282 |
||
1283 |
val unique_quotient = thm "unique_quotient"; |
|
1284 |
val unique_remainder = thm "unique_remainder"; |
|
1285 |
val adjust_eq = thm "adjust_eq"; |
|
1286 |
val posDivAlg_eqn = thm "posDivAlg_eqn"; |
|
1287 |
val posDivAlg_correct = thm "posDivAlg_correct"; |
|
1288 |
val negDivAlg_eqn = thm "negDivAlg_eqn"; |
|
1289 |
val negDivAlg_correct = thm "negDivAlg_correct"; |
|
1290 |
val quorem_0 = thm "quorem_0"; |
|
1291 |
val posDivAlg_0 = thm "posDivAlg_0"; |
|
1292 |
val negDivAlg_minus1 = thm "negDivAlg_minus1"; |
|
1293 |
val negateSnd_eq = thm "negateSnd_eq"; |
|
1294 |
val quorem_neg = thm "quorem_neg"; |
|
1295 |
val divAlg_correct = thm "divAlg_correct"; |
|
1296 |
val DIVISION_BY_ZERO = thm "DIVISION_BY_ZERO"; |
|
1297 |
val zmod_zdiv_equality = thm "zmod_zdiv_equality"; |
|
1298 |
val pos_mod_conj = thm "pos_mod_conj"; |
|
1299 |
val pos_mod_sign = thm "pos_mod_sign"; |
|
1300 |
val neg_mod_conj = thm "neg_mod_conj"; |
|
1301 |
val neg_mod_sign = thm "neg_mod_sign"; |
|
1302 |
val quorem_div_mod = thm "quorem_div_mod"; |
|
1303 |
val quorem_div = thm "quorem_div"; |
|
1304 |
val quorem_mod = thm "quorem_mod"; |
|
1305 |
val div_pos_pos_trivial = thm "div_pos_pos_trivial"; |
|
1306 |
val div_neg_neg_trivial = thm "div_neg_neg_trivial"; |
|
1307 |
val div_pos_neg_trivial = thm "div_pos_neg_trivial"; |
|
1308 |
val mod_pos_pos_trivial = thm "mod_pos_pos_trivial"; |
|
1309 |
val mod_neg_neg_trivial = thm "mod_neg_neg_trivial"; |
|
1310 |
val mod_pos_neg_trivial = thm "mod_pos_neg_trivial"; |
|
1311 |
val zdiv_zminus_zminus = thm "zdiv_zminus_zminus"; |
|
1312 |
val zmod_zminus_zminus = thm "zmod_zminus_zminus"; |
|
1313 |
val zdiv_zminus1_eq_if = thm "zdiv_zminus1_eq_if"; |
|
1314 |
val zmod_zminus1_eq_if = thm "zmod_zminus1_eq_if"; |
|
1315 |
val zdiv_zminus2 = thm "zdiv_zminus2"; |
|
1316 |
val zmod_zminus2 = thm "zmod_zminus2"; |
|
1317 |
val zdiv_zminus2_eq_if = thm "zdiv_zminus2_eq_if"; |
|
1318 |
val zmod_zminus2_eq_if = thm "zmod_zminus2_eq_if"; |
|
1319 |
val self_quotient = thm "self_quotient"; |
|
1320 |
val self_remainder = thm "self_remainder"; |
|
1321 |
val zdiv_self = thm "zdiv_self"; |
|
1322 |
val zmod_self = thm "zmod_self"; |
|
1323 |
val zdiv_zero = thm "zdiv_zero"; |
|
1324 |
val div_eq_minus1 = thm "div_eq_minus1"; |
|
1325 |
val zmod_zero = thm "zmod_zero"; |
|
1326 |
val zdiv_minus1 = thm "zdiv_minus1"; |
|
1327 |
val zmod_minus1 = thm "zmod_minus1"; |
|
1328 |
val div_pos_pos = thm "div_pos_pos"; |
|
1329 |
val mod_pos_pos = thm "mod_pos_pos"; |
|
1330 |
val div_neg_pos = thm "div_neg_pos"; |
|
1331 |
val mod_neg_pos = thm "mod_neg_pos"; |
|
1332 |
val div_pos_neg = thm "div_pos_neg"; |
|
1333 |
val mod_pos_neg = thm "mod_pos_neg"; |
|
1334 |
val div_neg_neg = thm "div_neg_neg"; |
|
1335 |
val mod_neg_neg = thm "mod_neg_neg"; |
|
1336 |
val zmod_1 = thm "zmod_1"; |
|
1337 |
val zdiv_1 = thm "zdiv_1"; |
|
1338 |
val zmod_minus1_right = thm "zmod_minus1_right"; |
|
1339 |
val zdiv_minus1_right = thm "zdiv_minus1_right"; |
|
1340 |
val zdiv_mono1 = thm "zdiv_mono1"; |
|
1341 |
val zdiv_mono1_neg = thm "zdiv_mono1_neg"; |
|
1342 |
val zdiv_mono2 = thm "zdiv_mono2"; |
|
1343 |
val zdiv_mono2_neg = thm "zdiv_mono2_neg"; |
|
1344 |
val zdiv_zmult1_eq = thm "zdiv_zmult1_eq"; |
|
1345 |
val zmod_zmult1_eq = thm "zmod_zmult1_eq"; |
|
1346 |
val zmod_zmult1_eq' = thm "zmod_zmult1_eq'"; |
|
1347 |
val zmod_zmult_distrib = thm "zmod_zmult_distrib"; |
|
1348 |
val zdiv_zmult_self1 = thm "zdiv_zmult_self1"; |
|
1349 |
val zdiv_zmult_self2 = thm "zdiv_zmult_self2"; |
|
1350 |
val zmod_zmult_self1 = thm "zmod_zmult_self1"; |
|
1351 |
val zmod_zmult_self2 = thm "zmod_zmult_self2"; |
|
1352 |
val zmod_eq_0_iff = thm "zmod_eq_0_iff"; |
|
1353 |
val zdiv_zadd1_eq = thm "zdiv_zadd1_eq"; |
|
1354 |
val zmod_zadd1_eq = thm "zmod_zadd1_eq"; |
|
1355 |
val mod_div_trivial = thm "mod_div_trivial"; |
|
1356 |
val mod_mod_trivial = thm "mod_mod_trivial"; |
|
1357 |
val zmod_zadd_left_eq = thm "zmod_zadd_left_eq"; |
|
1358 |
val zmod_zadd_right_eq = thm "zmod_zadd_right_eq"; |
|
1359 |
val zdiv_zadd_self1 = thm "zdiv_zadd_self1"; |
|
1360 |
val zdiv_zadd_self2 = thm "zdiv_zadd_self2"; |
|
1361 |
val zmod_zadd_self1 = thm "zmod_zadd_self1"; |
|
1362 |
val zmod_zadd_self2 = thm "zmod_zadd_self2"; |
|
1363 |
val zdiv_zmult2_eq = thm "zdiv_zmult2_eq"; |
|
1364 |
val zmod_zmult2_eq = thm "zmod_zmult2_eq"; |
|
1365 |
val zdiv_zmult_zmult1 = thm "zdiv_zmult_zmult1"; |
|
1366 |
val zdiv_zmult_zmult2 = thm "zdiv_zmult_zmult2"; |
|
1367 |
val zmod_zmult_zmult1 = thm "zmod_zmult_zmult1"; |
|
1368 |
val zmod_zmult_zmult2 = thm "zmod_zmult_zmult2"; |
|
1369 |
val pos_zdiv_mult_2 = thm "pos_zdiv_mult_2"; |
|
1370 |
val neg_zdiv_mult_2 = thm "neg_zdiv_mult_2"; |
|
1371 |
val zdiv_number_of_BIT = thm "zdiv_number_of_BIT"; |
|
1372 |
val pos_zmod_mult_2 = thm "pos_zmod_mult_2"; |
|
1373 |
val neg_zmod_mult_2 = thm "neg_zmod_mult_2"; |
|
1374 |
val zmod_number_of_BIT = thm "zmod_number_of_BIT"; |
|
1375 |
val div_neg_pos_less0 = thm "div_neg_pos_less0"; |
|
1376 |
val div_nonneg_neg_le0 = thm "div_nonneg_neg_le0"; |
|
1377 |
val pos_imp_zdiv_nonneg_iff = thm "pos_imp_zdiv_nonneg_iff"; |
|
1378 |
val neg_imp_zdiv_nonneg_iff = thm "neg_imp_zdiv_nonneg_iff"; |
|
1379 |
val pos_imp_zdiv_neg_iff = thm "pos_imp_zdiv_neg_iff"; |
|
1380 |
val neg_imp_zdiv_neg_iff = thm "neg_imp_zdiv_neg_iff"; |
|
14353
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1381 |
|
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1382 |
val zpower_zmod = thm "zpower_zmod"; |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1383 |
val zpower_zadd_distrib = thm "zpower_zadd_distrib"; |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1384 |
val zpower_zpower = thm "zpower_zpower"; |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1385 |
val zero_less_zpower_abs_iff = thm "zero_less_zpower_abs_iff"; |
79f9fbef9106
Added lemmas to Ring_and_Field with slightly modified simplification rules
paulson
parents:
14288
diff
changeset
|
1386 |
val zero_le_zpower_abs = thm "zero_le_zpower_abs"; |
15320 | 1387 |
val zpower_int = thm "zpower_int"; |
13183 | 1388 |
*} |
1389 |
||
6917 | 1390 |
end |