| author | wenzelm |
| Thu, 08 Nov 2007 14:51:28 +0100 | |
| changeset 25343 | 31c55418de5a |
| parent 25162 | ad4d5365d9d8 |
| child 25571 | c9e39eafc7a0 |
| permissions | -rw-r--r-- |
| 3366 | 1 |
(* Title: HOL/Divides.thy |
2 |
ID: $Id$ |
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
|
6865
5577ffe4c2f1
now div and mod are overloaded; dvd is polymorphic
paulson
parents:
3366
diff
changeset
|
4 |
Copyright 1999 University of Cambridge |
| 18154 | 5 |
*) |
| 3366 | 6 |
|
| 18154 | 7 |
header {* The division operators div, mod and the divides relation "dvd" *}
|
| 3366 | 8 |
|
| 15131 | 9 |
theory Divides |
| 24268 | 10 |
imports Power |
| 22993 | 11 |
uses "~~/src/Provers/Arith/cancel_div_mod.ML" |
| 15131 | 12 |
begin |
| 3366 | 13 |
|
| 24993 | 14 |
class div = times + |
| 25062 | 15 |
fixes div :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "div" 70) |
16 |
fixes mod :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "mod" 70) |
|
| 21408 | 17 |
|
| 22993 | 18 |
instance nat :: Divides.div |
19 |
div_def: "m div n == wfrec (pred_nat^+) |
|
20 |
(%f j. if j<n | n=0 then 0 else Suc (f (j-n))) m" |
|
|
22261
9e185f78e7d4
Adapted to changes in Transitive_Closure theory.
berghofe
parents:
21911
diff
changeset
|
21 |
mod_def: "m mod n == wfrec (pred_nat^+) |
| 22993 | 22 |
(%f j. if j<n | n=0 then j else f (j-n)) m" .. |
| 21408 | 23 |
|
| 24993 | 24 |
definition (in div) |
| 25062 | 25 |
dvd :: "'a \<Rightarrow> 'a \<Rightarrow> bool" (infixl "dvd" 50) |
|
23684
8c508c4dc53b
introduced (auxiliary) class dvd_mod for more convenient code generation
haftmann
parents:
23162
diff
changeset
|
26 |
where |
| 25062 | 27 |
[code func del]: "m dvd n \<longleftrightarrow> (\<exists>k. n = m * k)" |
|
23684
8c508c4dc53b
introduced (auxiliary) class dvd_mod for more convenient code generation
haftmann
parents:
23162
diff
changeset
|
28 |
|
| 24993 | 29 |
class dvd_mod = div + zero + -- {* for code generation *}
|
| 25062 | 30 |
assumes dvd_def_mod [code func]: "x dvd y \<longleftrightarrow> y mod x = 0" |
|
6865
5577ffe4c2f1
now div and mod are overloaded; dvd is polymorphic
paulson
parents:
3366
diff
changeset
|
31 |
|
| 22718 | 32 |
definition |
33 |
quorem :: "(nat*nat) * (nat*nat) => bool" where |
|
| 21408 | 34 |
(*This definition helps prove the harder properties of div and mod. |
35 |
It is copied from IntDiv.thy; should it be overloaded?*) |
|
| 22718 | 36 |
"quorem = (%((a,b), (q,r)). |
| 21408 | 37 |
a = b*q + r & |
38 |
(if 0<b then 0\<le>r & r<b else b<r & r \<le>0))" |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
39 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
40 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
41 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
42 |
subsection{*Initial Lemmas*}
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
43 |
|
| 22718 | 44 |
lemmas wf_less_trans = |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
45 |
def_wfrec [THEN trans, OF eq_reflection wf_pred_nat [THEN wf_trancl], |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
46 |
standard] |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
47 |
|
| 22718 | 48 |
lemma mod_eq: "(%m. m mod n) = |
|
22261
9e185f78e7d4
Adapted to changes in Transitive_Closure theory.
berghofe
parents:
21911
diff
changeset
|
49 |
wfrec (pred_nat^+) (%f j. if j<n | n=0 then j else f (j-n))" |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
50 |
by (simp add: mod_def) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
51 |
|
| 22718 | 52 |
lemma div_eq: "(%m. m div n) = wfrec (pred_nat^+) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
53 |
(%f j. if j<n | n=0 then 0 else Suc (f (j-n)))" |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
54 |
by (simp add: div_def) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
55 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
56 |
|
| 22718 | 57 |
(** Aribtrary definitions for division by zero. Useful to simplify |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
58 |
certain equations **) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
59 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
60 |
lemma DIVISION_BY_ZERO_DIV [simp]: "a div 0 = (0::nat)" |
| 22718 | 61 |
by (rule div_eq [THEN wf_less_trans], simp) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
62 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
63 |
lemma DIVISION_BY_ZERO_MOD [simp]: "a mod 0 = (a::nat)" |
| 22718 | 64 |
by (rule mod_eq [THEN wf_less_trans], simp) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
65 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
66 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
67 |
subsection{*Remainder*}
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
68 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
69 |
lemma mod_less [simp]: "m<n ==> m mod n = (m::nat)" |
| 22718 | 70 |
by (rule mod_eq [THEN wf_less_trans]) simp |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
71 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
72 |
lemma mod_geq: "~ m < (n::nat) ==> m mod n = (m-n) mod n" |
| 22718 | 73 |
apply (cases "n=0") |
74 |
apply simp |
|
75 |
apply (rule mod_eq [THEN wf_less_trans]) |
|
76 |
apply (simp add: cut_apply less_eq) |
|
77 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
78 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
79 |
(*Avoids the ugly ~m<n above*) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
80 |
lemma le_mod_geq: "(n::nat) \<le> m ==> m mod n = (m-n) mod n" |
| 22718 | 81 |
by (simp add: mod_geq linorder_not_less) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
82 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
83 |
lemma mod_if: "m mod (n::nat) = (if m<n then m else (m-n) mod n)" |
| 22718 | 84 |
by (simp add: mod_geq) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
85 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
86 |
lemma mod_1 [simp]: "m mod Suc 0 = 0" |
| 22718 | 87 |
by (induct m) (simp_all add: mod_geq) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
88 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
89 |
lemma mod_self [simp]: "n mod n = (0::nat)" |
| 22718 | 90 |
by (cases "n = 0") (simp_all add: mod_geq) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
91 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
92 |
lemma mod_add_self2 [simp]: "(m+n) mod n = m mod (n::nat)" |
| 22718 | 93 |
apply (subgoal_tac "(n + m) mod n = (n+m-n) mod n") |
94 |
apply (simp add: add_commute) |
|
95 |
apply (subst mod_geq [symmetric], simp_all) |
|
96 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
97 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
98 |
lemma mod_add_self1 [simp]: "(n+m) mod n = m mod (n::nat)" |
| 22718 | 99 |
by (simp add: add_commute mod_add_self2) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
100 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
101 |
lemma mod_mult_self1 [simp]: "(m + k*n) mod n = m mod (n::nat)" |
| 22718 | 102 |
by (induct k) (simp_all add: add_left_commute [of _ n]) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
103 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
104 |
lemma mod_mult_self2 [simp]: "(m + n*k) mod n = m mod (n::nat)" |
| 22718 | 105 |
by (simp add: mult_commute mod_mult_self1) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
106 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
107 |
lemma mod_mult_distrib: "(m mod n) * (k::nat) = (m*k) mod (n*k)" |
| 22718 | 108 |
apply (cases "n = 0", simp) |
109 |
apply (cases "k = 0", simp) |
|
110 |
apply (induct m rule: nat_less_induct) |
|
111 |
apply (subst mod_if, simp) |
|
112 |
apply (simp add: mod_geq diff_mult_distrib) |
|
113 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
114 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
115 |
lemma mod_mult_distrib2: "(k::nat) * (m mod n) = (k*m) mod (k*n)" |
| 22718 | 116 |
by (simp add: mult_commute [of k] mod_mult_distrib) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
117 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
118 |
lemma mod_mult_self_is_0 [simp]: "(m*n) mod n = (0::nat)" |
| 22718 | 119 |
apply (cases "n = 0", simp) |
120 |
apply (induct m, simp) |
|
121 |
apply (rename_tac k) |
|
122 |
apply (cut_tac m = "k * n" and n = n in mod_add_self2) |
|
123 |
apply (simp add: add_commute) |
|
124 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
125 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
126 |
lemma mod_mult_self1_is_0 [simp]: "(n*m) mod n = (0::nat)" |
| 22718 | 127 |
by (simp add: mult_commute mod_mult_self_is_0) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
128 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
129 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
130 |
subsection{*Quotient*}
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
131 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
132 |
lemma div_less [simp]: "m<n ==> m div n = (0::nat)" |
| 22718 | 133 |
by (rule div_eq [THEN wf_less_trans], simp) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
134 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
135 |
lemma div_geq: "[| 0<n; ~m<n |] ==> m div n = Suc((m-n) div n)" |
| 22718 | 136 |
apply (rule div_eq [THEN wf_less_trans]) |
137 |
apply (simp add: cut_apply less_eq) |
|
138 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
139 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
140 |
(*Avoids the ugly ~m<n above*) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
141 |
lemma le_div_geq: "[| 0<n; n\<le>m |] ==> m div n = Suc((m-n) div n)" |
| 22718 | 142 |
by (simp add: div_geq linorder_not_less) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
143 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
144 |
lemma div_if: "0<n ==> m div n = (if m<n then 0 else Suc((m-n) div n))" |
| 22718 | 145 |
by (simp add: div_geq) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
146 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
147 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
148 |
(*Main Result about quotient and remainder.*) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
149 |
lemma mod_div_equality: "(m div n)*n + m mod n = (m::nat)" |
| 22718 | 150 |
apply (cases "n = 0", simp) |
151 |
apply (induct m rule: nat_less_induct) |
|
152 |
apply (subst mod_if) |
|
153 |
apply (simp_all add: add_assoc div_geq add_diff_inverse) |
|
154 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
155 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
156 |
lemma mod_div_equality2: "n * (m div n) + m mod n = (m::nat)" |
| 22718 | 157 |
apply (cut_tac m = m and n = n in mod_div_equality) |
158 |
apply (simp add: mult_commute) |
|
159 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
160 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
161 |
subsection{*Simproc for Cancelling Div and Mod*}
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
162 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
163 |
lemma div_mod_equality: "((m div n)*n + m mod n) + k = (m::nat) + k" |
| 22718 | 164 |
by (simp add: mod_div_equality) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
165 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
166 |
lemma div_mod_equality2: "(n*(m div n) + m mod n) + k = (m::nat) + k" |
| 22718 | 167 |
by (simp add: mod_div_equality2) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
168 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
169 |
ML |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
170 |
{*
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
171 |
structure CancelDivModData = |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
172 |
struct |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
173 |
|
| 22718 | 174 |
val div_name = @{const_name Divides.div};
|
175 |
val mod_name = @{const_name Divides.mod};
|
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
176 |
val mk_binop = HOLogic.mk_binop; |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
177 |
val mk_sum = NatArithUtils.mk_sum; |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
178 |
val dest_sum = NatArithUtils.dest_sum; |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
179 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
180 |
(*logic*) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
181 |
|
| 22718 | 182 |
val div_mod_eqs = map mk_meta_eq [@{thm div_mod_equality}, @{thm div_mod_equality2}]
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
183 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
184 |
val trans = trans |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
185 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
186 |
val prove_eq_sums = |
| 22718 | 187 |
let val simps = @{thm add_0} :: @{thm add_0_right} :: @{thms add_ac}
|
|
17609
5156b731ebc8
Provers/cancel_sums.ML: Simplifier.inherit_bounds;
wenzelm
parents:
17508
diff
changeset
|
188 |
in NatArithUtils.prove_conv all_tac (NatArithUtils.simp_all_tac simps) end; |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
189 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
190 |
end; |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
191 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
192 |
structure CancelDivMod = CancelDivModFun(CancelDivModData); |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
193 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
194 |
val cancel_div_mod_proc = NatArithUtils.prep_simproc |
|
20044
92cc2f4c7335
simprocs: no theory argument -- use simpset context instead;
wenzelm
parents:
18702
diff
changeset
|
195 |
("cancel_div_mod", ["(m::nat) + n"], K CancelDivMod.proc);
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
196 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
197 |
Addsimprocs[cancel_div_mod_proc]; |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
198 |
*} |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
199 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
200 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
201 |
(* a simple rearrangement of mod_div_equality: *) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
202 |
lemma mult_div_cancel: "(n::nat) * (m div n) = m - (m mod n)" |
| 22718 | 203 |
by (cut_tac m = m and n = n in mod_div_equality2, arith) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
204 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
205 |
lemma mod_less_divisor [simp]: "0<n ==> m mod n < (n::nat)" |
| 22718 | 206 |
apply (induct m rule: nat_less_induct) |
207 |
apply (rename_tac m) |
|
208 |
apply (case_tac "m<n", simp) |
|
209 |
txt{*case @{term "n \<le> m"}*}
|
|
210 |
apply (simp add: mod_geq) |
|
211 |
done |
|
| 15439 | 212 |
|
213 |
lemma mod_le_divisor[simp]: "0 < n \<Longrightarrow> m mod n \<le> (n::nat)" |
|
| 22718 | 214 |
apply (drule mod_less_divisor [where m = m]) |
215 |
apply simp |
|
216 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
217 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
218 |
lemma div_mult_self_is_m [simp]: "0<n ==> (m*n) div n = (m::nat)" |
| 22718 | 219 |
by (cut_tac m = "m*n" and n = n in mod_div_equality, auto) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
220 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
221 |
lemma div_mult_self1_is_m [simp]: "0<n ==> (n*m) div n = (m::nat)" |
| 22718 | 222 |
by (simp add: mult_commute div_mult_self_is_m) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
223 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
224 |
(*mod_mult_distrib2 above is the counterpart for remainder*) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
225 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
226 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
227 |
subsection{*Proving facts about Quotient and Remainder*}
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
228 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
229 |
lemma unique_quotient_lemma: |
| 22718 | 230 |
"[| b*q' + r' \<le> b*q + r; x < b; r < b |] |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
231 |
==> q' \<le> (q::nat)" |
| 22718 | 232 |
apply (rule leI) |
233 |
apply (subst less_iff_Suc_add) |
|
234 |
apply (auto simp add: add_mult_distrib2) |
|
235 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
236 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
237 |
lemma unique_quotient: |
| 22718 | 238 |
"[| quorem ((a,b), (q,r)); quorem ((a,b), (q',r')); 0 < b |] |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
239 |
==> q = q'" |
| 22718 | 240 |
apply (simp add: split_ifs quorem_def) |
241 |
apply (blast intro: order_antisym |
|
242 |
dest: order_eq_refl [THEN unique_quotient_lemma] sym) |
|
243 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
244 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
245 |
lemma unique_remainder: |
| 22718 | 246 |
"[| quorem ((a,b), (q,r)); quorem ((a,b), (q',r')); 0 < b |] |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
247 |
==> r = r'" |
| 22718 | 248 |
apply (subgoal_tac "q = q'") |
249 |
prefer 2 apply (blast intro: unique_quotient) |
|
250 |
apply (simp add: quorem_def) |
|
251 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
252 |
|
| 25162 | 253 |
lemma quorem_div_mod: "b > 0 ==> quorem ((a, b), (a div b, a mod b))" |
254 |
unfolding quorem_def by simp |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
255 |
|
| 25162 | 256 |
lemma quorem_div: "[| quorem((a,b),(q,r)); b > 0 |] ==> a div b = q" |
257 |
by (simp add: quorem_div_mod [THEN unique_quotient]) |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
258 |
|
| 25162 | 259 |
lemma quorem_mod: "[| quorem((a,b),(q,r)); b > 0 |] ==> a mod b = r" |
260 |
by (simp add: quorem_div_mod [THEN unique_remainder]) |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
261 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
262 |
(** A dividend of zero **) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
263 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
264 |
lemma div_0 [simp]: "0 div m = (0::nat)" |
| 22718 | 265 |
by (cases "m = 0") simp_all |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
266 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
267 |
lemma mod_0 [simp]: "0 mod m = (0::nat)" |
| 22718 | 268 |
by (cases "m = 0") simp_all |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
269 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
270 |
(** proving (a*b) div c = a * (b div c) + a * (b mod c) **) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
271 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
272 |
lemma quorem_mult1_eq: |
| 25162 | 273 |
"[| quorem((b,c),(q,r)); c > 0 |] |
274 |
==> quorem ((a*b, c), (a*q + a*r div c, a*r mod c))" |
|
275 |
by (auto simp add: split_ifs mult_ac quorem_def add_mult_distrib2) |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
276 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
277 |
lemma div_mult1_eq: "(a*b) div c = a*(b div c) + a*(b mod c) div (c::nat)" |
|
25134
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
278 |
apply (cases "c = 0", simp) |
|
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
279 |
apply (blast intro: quorem_div_mod [THEN quorem_mult1_eq, THEN quorem_div]) |
|
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
280 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
281 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
282 |
lemma mod_mult1_eq: "(a*b) mod c = a*(b mod c) mod (c::nat)" |
|
25134
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
283 |
apply (cases "c = 0", simp) |
|
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
284 |
apply (blast intro: quorem_div_mod [THEN quorem_mult1_eq, THEN quorem_mod]) |
|
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
285 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
286 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
287 |
lemma mod_mult1_eq': "(a*b) mod (c::nat) = ((a mod c) * b) mod c" |
| 22718 | 288 |
apply (rule trans) |
289 |
apply (rule_tac s = "b*a mod c" in trans) |
|
290 |
apply (rule_tac [2] mod_mult1_eq) |
|
291 |
apply (simp_all add: mult_commute) |
|
292 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
293 |
|
| 25162 | 294 |
lemma mod_mult_distrib_mod: |
295 |
"(a*b) mod (c::nat) = ((a mod c) * (b mod c)) mod c" |
|
296 |
apply (rule mod_mult1_eq' [THEN trans]) |
|
297 |
apply (rule mod_mult1_eq) |
|
298 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
299 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
300 |
(** proving (a+b) div c = a div c + b div c + ((a mod c + b mod c) div c) **) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
301 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
302 |
lemma quorem_add1_eq: |
| 25162 | 303 |
"[| quorem((a,c),(aq,ar)); quorem((b,c),(bq,br)); c > 0 |] |
304 |
==> quorem ((a+b, c), (aq + bq + (ar+br) div c, (ar+br) mod c))" |
|
305 |
by (auto simp add: split_ifs mult_ac quorem_def add_mult_distrib2) |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
306 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
307 |
(*NOT suitable for rewriting: the RHS has an instance of the LHS*) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
308 |
lemma div_add1_eq: |
|
25134
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
309 |
"(a+b) div (c::nat) = a div c + b div c + ((a mod c + b mod c) div c)" |
|
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
310 |
apply (cases "c = 0", simp) |
|
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
311 |
apply (blast intro: quorem_add1_eq [THEN quorem_div] quorem_div_mod) |
|
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
312 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
313 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
314 |
lemma mod_add1_eq: "(a+b) mod (c::nat) = (a mod c + b mod c) mod c" |
|
25134
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
315 |
apply (cases "c = 0", simp) |
|
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
316 |
apply (blast intro: quorem_div_mod quorem_add1_eq [THEN quorem_mod]) |
|
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
317 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
318 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
319 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
320 |
subsection{*Proving @{term "a div (b*c) = (a div b) div c"}*}
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
321 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
322 |
(** first, a lemma to bound the remainder **) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
323 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
324 |
lemma mod_lemma: "[| (0::nat) < c; r < b |] ==> b * (q mod c) + r < b * c" |
| 22718 | 325 |
apply (cut_tac m = q and n = c in mod_less_divisor) |
326 |
apply (drule_tac [2] m = "q mod c" in less_imp_Suc_add, auto) |
|
327 |
apply (erule_tac P = "%x. ?lhs < ?rhs x" in ssubst) |
|
328 |
apply (simp add: add_mult_distrib2) |
|
329 |
done |
|
|
10559
d3fd54fc659b
many new div and mod properties (borrowed from Integ/IntDiv)
paulson
parents:
10214
diff
changeset
|
330 |
|
| 22718 | 331 |
lemma quorem_mult2_eq: "[| quorem ((a,b), (q,r)); 0 < b; 0 < c |] |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
332 |
==> quorem ((a, b*c), (q div c, b*(q mod c) + r))" |
| 22718 | 333 |
by (auto simp add: mult_ac quorem_def add_mult_distrib2 [symmetric] mod_lemma) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
334 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
335 |
lemma div_mult2_eq: "a div (b*c) = (a div b) div (c::nat)" |
| 22718 | 336 |
apply (cases "b = 0", simp) |
337 |
apply (cases "c = 0", simp) |
|
338 |
apply (force simp add: quorem_div_mod [THEN quorem_mult2_eq, THEN quorem_div]) |
|
339 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
340 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
341 |
lemma mod_mult2_eq: "a mod (b*c) = b*(a div b mod c) + a mod (b::nat)" |
| 22718 | 342 |
apply (cases "b = 0", simp) |
343 |
apply (cases "c = 0", simp) |
|
344 |
apply (auto simp add: mult_commute quorem_div_mod [THEN quorem_mult2_eq, THEN quorem_mod]) |
|
345 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
346 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
347 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
348 |
subsection{*Cancellation of Common Factors in Division*}
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
349 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
350 |
lemma div_mult_mult_lemma: |
| 22718 | 351 |
"[| (0::nat) < b; 0 < c |] ==> (c*a) div (c*b) = a div b" |
352 |
by (auto simp add: div_mult2_eq) |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
353 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
354 |
lemma div_mult_mult1 [simp]: "(0::nat) < c ==> (c*a) div (c*b) = a div b" |
| 22718 | 355 |
apply (cases "b = 0") |
356 |
apply (auto simp add: linorder_neq_iff [of b] div_mult_mult_lemma) |
|
357 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
358 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
359 |
lemma div_mult_mult2 [simp]: "(0::nat) < c ==> (a*c) div (b*c) = a div b" |
| 22718 | 360 |
apply (drule div_mult_mult1) |
361 |
apply (auto simp add: mult_commute) |
|
362 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
363 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
364 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
365 |
subsection{*Further Facts about Quotient and Remainder*}
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
366 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
367 |
lemma div_1 [simp]: "m div Suc 0 = m" |
| 22718 | 368 |
by (induct m) (simp_all add: div_geq) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
369 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
370 |
lemma div_self [simp]: "0<n ==> n div n = (1::nat)" |
| 22718 | 371 |
by (simp add: div_geq) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
372 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
373 |
lemma div_add_self2: "0<n ==> (m+n) div n = Suc (m div n)" |
| 22718 | 374 |
apply (subgoal_tac "(n + m) div n = Suc ((n+m-n) div n) ") |
375 |
apply (simp add: add_commute) |
|
376 |
apply (subst div_geq [symmetric], simp_all) |
|
377 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
378 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
379 |
lemma div_add_self1: "0<n ==> (n+m) div n = Suc (m div n)" |
| 22718 | 380 |
by (simp add: add_commute div_add_self2) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
381 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
382 |
lemma div_mult_self1 [simp]: "!!n::nat. 0<n ==> (m + k*n) div n = k + m div n" |
| 22718 | 383 |
apply (subst div_add1_eq) |
384 |
apply (subst div_mult1_eq, simp) |
|
385 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
386 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
387 |
lemma div_mult_self2 [simp]: "0<n ==> (m + n*k) div n = k + m div (n::nat)" |
| 22718 | 388 |
by (simp add: mult_commute div_mult_self1) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
389 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
390 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
391 |
(* Monotonicity of div in first argument *) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
392 |
lemma div_le_mono [rule_format (no_asm)]: |
| 22718 | 393 |
"\<forall>m::nat. m \<le> n --> (m div k) \<le> (n div k)" |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
394 |
apply (case_tac "k=0", simp) |
| 15251 | 395 |
apply (induct "n" rule: nat_less_induct, clarify) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
396 |
apply (case_tac "n<k") |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
397 |
(* 1 case n<k *) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
398 |
apply simp |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
399 |
(* 2 case n >= k *) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
400 |
apply (case_tac "m<k") |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
401 |
(* 2.1 case m<k *) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
402 |
apply simp |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
403 |
(* 2.2 case m>=k *) |
| 15439 | 404 |
apply (simp add: div_geq diff_le_mono) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
405 |
done |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
406 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
407 |
(* Antimonotonicity of div in second argument *) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
408 |
lemma div_le_mono2: "!!m::nat. [| 0<m; m\<le>n |] ==> (k div n) \<le> (k div m)" |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
409 |
apply (subgoal_tac "0<n") |
| 22718 | 410 |
prefer 2 apply simp |
| 15251 | 411 |
apply (induct_tac k rule: nat_less_induct) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
412 |
apply (rename_tac "k") |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
413 |
apply (case_tac "k<n", simp) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
414 |
apply (subgoal_tac "~ (k<m) ") |
| 22718 | 415 |
prefer 2 apply simp |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
416 |
apply (simp add: div_geq) |
| 15251 | 417 |
apply (subgoal_tac "(k-n) div n \<le> (k-m) div n") |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
418 |
prefer 2 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
419 |
apply (blast intro: div_le_mono diff_le_mono2) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
420 |
apply (rule le_trans, simp) |
| 15439 | 421 |
apply (simp) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
422 |
done |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
423 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
424 |
lemma div_le_dividend [simp]: "m div n \<le> (m::nat)" |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
425 |
apply (case_tac "n=0", simp) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
426 |
apply (subgoal_tac "m div n \<le> m div 1", simp) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
427 |
apply (rule div_le_mono2) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
428 |
apply (simp_all (no_asm_simp)) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
429 |
done |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
430 |
|
| 22718 | 431 |
(* Similar for "less than" *) |
| 17085 | 432 |
lemma div_less_dividend [rule_format]: |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
433 |
"!!n::nat. 1<n ==> 0 < m --> m div n < m" |
| 15251 | 434 |
apply (induct_tac m rule: nat_less_induct) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
435 |
apply (rename_tac "m") |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
436 |
apply (case_tac "m<n", simp) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
437 |
apply (subgoal_tac "0<n") |
| 22718 | 438 |
prefer 2 apply simp |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
439 |
apply (simp add: div_geq) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
440 |
apply (case_tac "n<m") |
| 15251 | 441 |
apply (subgoal_tac "(m-n) div n < (m-n) ") |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
442 |
apply (rule impI less_trans_Suc)+ |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
443 |
apply assumption |
| 15439 | 444 |
apply (simp_all) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
445 |
done |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
446 |
|
| 17085 | 447 |
declare div_less_dividend [simp] |
448 |
||
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
449 |
text{*A fact for the mutilated chess board*}
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
450 |
lemma mod_Suc: "Suc(m) mod n = (if Suc(m mod n) = n then 0 else Suc(m mod n))" |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
451 |
apply (case_tac "n=0", simp) |
| 15251 | 452 |
apply (induct "m" rule: nat_less_induct) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
453 |
apply (case_tac "Suc (na) <n") |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
454 |
(* case Suc(na) < n *) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
455 |
apply (frule lessI [THEN less_trans], simp add: less_not_refl3) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
456 |
(* case n \<le> Suc(na) *) |
| 16796 | 457 |
apply (simp add: linorder_not_less le_Suc_eq mod_geq) |
| 15439 | 458 |
apply (auto simp add: Suc_diff_le le_mod_geq) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
459 |
done |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
460 |
|
| 14437 | 461 |
lemma nat_mod_div_trivial [simp]: "m mod n div n = (0 :: nat)" |
| 22718 | 462 |
by (cases "n = 0") auto |
| 14437 | 463 |
|
464 |
lemma nat_mod_mod_trivial [simp]: "m mod n mod n = (m mod n :: nat)" |
|
| 22718 | 465 |
by (cases "n = 0") auto |
| 14437 | 466 |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
467 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
468 |
subsection{*The Divides Relation*}
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
469 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
470 |
lemma dvdI [intro?]: "n = m * k ==> m dvd n" |
| 22718 | 471 |
unfolding dvd_def by blast |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
472 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
473 |
lemma dvdE [elim?]: "!!P. [|m dvd n; !!k. n = m*k ==> P|] ==> P" |
| 22718 | 474 |
unfolding dvd_def by blast |
| 13152 | 475 |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
476 |
lemma dvd_0_right [iff]: "m dvd (0::nat)" |
| 22718 | 477 |
unfolding dvd_def by (blast intro: mult_0_right [symmetric]) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
478 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
479 |
lemma dvd_0_left: "0 dvd m ==> m = (0::nat)" |
| 22718 | 480 |
by (force simp add: dvd_def) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
481 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
482 |
lemma dvd_0_left_iff [iff]: "(0 dvd (m::nat)) = (m = 0)" |
| 22718 | 483 |
by (blast intro: dvd_0_left) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
484 |
|
|
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24268
diff
changeset
|
485 |
declare dvd_0_left_iff [noatp] |
|
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24268
diff
changeset
|
486 |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
487 |
lemma dvd_1_left [iff]: "Suc 0 dvd k" |
| 22718 | 488 |
unfolding dvd_def by simp |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
489 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
490 |
lemma dvd_1_iff_1 [simp]: "(m dvd Suc 0) = (m = Suc 0)" |
| 22718 | 491 |
by (simp add: dvd_def) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
492 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
493 |
lemma dvd_refl [simp]: "m dvd (m::nat)" |
| 22718 | 494 |
unfolding dvd_def by (blast intro: mult_1_right [symmetric]) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
495 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
496 |
lemma dvd_trans [trans]: "[| m dvd n; n dvd p |] ==> m dvd (p::nat)" |
| 22718 | 497 |
unfolding dvd_def by (blast intro: mult_assoc) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
498 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
499 |
lemma dvd_anti_sym: "[| m dvd n; n dvd m |] ==> m = (n::nat)" |
| 22718 | 500 |
unfolding dvd_def |
501 |
by (force dest: mult_eq_self_implies_10 simp add: mult_assoc mult_eq_1_iff) |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
502 |
|
|
23684
8c508c4dc53b
introduced (auxiliary) class dvd_mod for more convenient code generation
haftmann
parents:
23162
diff
changeset
|
503 |
text {* @{term "op dvd"} is a partial order *}
|
|
8c508c4dc53b
introduced (auxiliary) class dvd_mod for more convenient code generation
haftmann
parents:
23162
diff
changeset
|
504 |
|
|
8c508c4dc53b
introduced (auxiliary) class dvd_mod for more convenient code generation
haftmann
parents:
23162
diff
changeset
|
505 |
interpretation dvd: order ["op dvd" "\<lambda>n m \<Colon> nat. n dvd m \<and> m \<noteq> n"] |
|
8c508c4dc53b
introduced (auxiliary) class dvd_mod for more convenient code generation
haftmann
parents:
23162
diff
changeset
|
506 |
by unfold_locales (auto intro: dvd_trans dvd_anti_sym) |
|
8c508c4dc53b
introduced (auxiliary) class dvd_mod for more convenient code generation
haftmann
parents:
23162
diff
changeset
|
507 |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
508 |
lemma dvd_add: "[| k dvd m; k dvd n |] ==> k dvd (m+n :: nat)" |
| 22718 | 509 |
unfolding dvd_def |
510 |
by (blast intro: add_mult_distrib2 [symmetric]) |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
511 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
512 |
lemma dvd_diff: "[| k dvd m; k dvd n |] ==> k dvd (m-n :: nat)" |
| 22718 | 513 |
unfolding dvd_def |
514 |
by (blast intro: diff_mult_distrib2 [symmetric]) |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
515 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
516 |
lemma dvd_diffD: "[| k dvd m-n; k dvd n; n\<le>m |] ==> k dvd (m::nat)" |
| 22718 | 517 |
apply (erule linorder_not_less [THEN iffD2, THEN add_diff_inverse, THEN subst]) |
518 |
apply (blast intro: dvd_add) |
|
519 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
520 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
521 |
lemma dvd_diffD1: "[| k dvd m-n; k dvd m; n\<le>m |] ==> k dvd (n::nat)" |
| 22718 | 522 |
by (drule_tac m = m in dvd_diff, auto) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
523 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
524 |
lemma dvd_mult: "k dvd n ==> k dvd (m*n :: nat)" |
| 22718 | 525 |
unfolding dvd_def by (blast intro: mult_left_commute) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
526 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
527 |
lemma dvd_mult2: "k dvd m ==> k dvd (m*n :: nat)" |
| 22718 | 528 |
apply (subst mult_commute) |
529 |
apply (erule dvd_mult) |
|
530 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
531 |
|
|
17084
fb0a80aef0be
classical rules must have names for ATP integration
paulson
parents:
16796
diff
changeset
|
532 |
lemma dvd_triv_right [iff]: "k dvd (m*k :: nat)" |
| 22718 | 533 |
by (rule dvd_refl [THEN dvd_mult]) |
|
17084
fb0a80aef0be
classical rules must have names for ATP integration
paulson
parents:
16796
diff
changeset
|
534 |
|
|
fb0a80aef0be
classical rules must have names for ATP integration
paulson
parents:
16796
diff
changeset
|
535 |
lemma dvd_triv_left [iff]: "k dvd (k*m :: nat)" |
| 22718 | 536 |
by (rule dvd_refl [THEN dvd_mult2]) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
537 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
538 |
lemma dvd_reduce: "(k dvd n + k) = (k dvd (n::nat))" |
| 22718 | 539 |
apply (rule iffI) |
540 |
apply (erule_tac [2] dvd_add) |
|
541 |
apply (rule_tac [2] dvd_refl) |
|
542 |
apply (subgoal_tac "n = (n+k) -k") |
|
543 |
prefer 2 apply simp |
|
544 |
apply (erule ssubst) |
|
545 |
apply (erule dvd_diff) |
|
546 |
apply (rule dvd_refl) |
|
547 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
548 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
549 |
lemma dvd_mod: "!!n::nat. [| f dvd m; f dvd n |] ==> f dvd m mod n" |
| 22718 | 550 |
unfolding dvd_def |
551 |
apply (case_tac "n = 0", auto) |
|
552 |
apply (blast intro: mod_mult_distrib2 [symmetric]) |
|
553 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
554 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
555 |
lemma dvd_mod_imp_dvd: "[| (k::nat) dvd m mod n; k dvd n |] ==> k dvd m" |
| 22718 | 556 |
apply (subgoal_tac "k dvd (m div n) *n + m mod n") |
557 |
apply (simp add: mod_div_equality) |
|
558 |
apply (simp only: dvd_add dvd_mult) |
|
559 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
560 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
561 |
lemma dvd_mod_iff: "k dvd n ==> ((k::nat) dvd m mod n) = (k dvd m)" |
| 22718 | 562 |
by (blast intro: dvd_mod_imp_dvd dvd_mod) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
563 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
564 |
lemma dvd_mult_cancel: "!!k::nat. [| k*m dvd k*n; 0<k |] ==> m dvd n" |
| 22718 | 565 |
unfolding dvd_def |
566 |
apply (erule exE) |
|
567 |
apply (simp add: mult_ac) |
|
568 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
569 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
570 |
lemma dvd_mult_cancel1: "0<m ==> (m*n dvd m) = (n = (1::nat))" |
| 22718 | 571 |
apply auto |
572 |
apply (subgoal_tac "m*n dvd m*1") |
|
573 |
apply (drule dvd_mult_cancel, auto) |
|
574 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
575 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
576 |
lemma dvd_mult_cancel2: "0<m ==> (n*m dvd m) = (n = (1::nat))" |
| 22718 | 577 |
apply (subst mult_commute) |
578 |
apply (erule dvd_mult_cancel1) |
|
579 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
580 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
581 |
lemma mult_dvd_mono: "[| i dvd m; j dvd n|] ==> i*j dvd (m*n :: nat)" |
| 22718 | 582 |
apply (unfold dvd_def, clarify) |
583 |
apply (rule_tac x = "k*ka" in exI) |
|
584 |
apply (simp add: mult_ac) |
|
585 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
586 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
587 |
lemma dvd_mult_left: "(i*j :: nat) dvd k ==> i dvd k" |
| 22718 | 588 |
by (simp add: dvd_def mult_assoc, blast) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
589 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
590 |
lemma dvd_mult_right: "(i*j :: nat) dvd k ==> j dvd k" |
| 22718 | 591 |
apply (unfold dvd_def, clarify) |
592 |
apply (rule_tac x = "i*k" in exI) |
|
593 |
apply (simp add: mult_ac) |
|
594 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
595 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
596 |
lemma dvd_imp_le: "[| k dvd n; 0 < n |] ==> k \<le> (n::nat)" |
| 22718 | 597 |
apply (unfold dvd_def, clarify) |
598 |
apply (simp_all (no_asm_use) add: zero_less_mult_iff) |
|
599 |
apply (erule conjE) |
|
600 |
apply (rule le_trans) |
|
601 |
apply (rule_tac [2] le_refl [THEN mult_le_mono]) |
|
602 |
apply (erule_tac [2] Suc_leI, simp) |
|
603 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
604 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
605 |
lemma dvd_eq_mod_eq_0: "!!k::nat. (k dvd n) = (n mod k = 0)" |
| 22718 | 606 |
apply (unfold dvd_def) |
607 |
apply (case_tac "k=0", simp, safe) |
|
608 |
apply (simp add: mult_commute) |
|
609 |
apply (rule_tac t = n and n1 = k in mod_div_equality [THEN subst]) |
|
610 |
apply (subst mult_commute, simp) |
|
611 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
612 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
613 |
lemma dvd_mult_div_cancel: "n dvd m ==> n * (m div n) = (m::nat)" |
| 22718 | 614 |
apply (subgoal_tac "m mod n = 0") |
615 |
apply (simp add: mult_div_cancel) |
|
616 |
apply (simp only: dvd_eq_mod_eq_0) |
|
617 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
618 |
|
| 21408 | 619 |
lemma le_imp_power_dvd: "!!i::nat. m \<le> n ==> i^m dvd i^n" |
| 22718 | 620 |
apply (unfold dvd_def) |
621 |
apply (erule linorder_not_less [THEN iffD2, THEN add_diff_inverse, THEN subst]) |
|
622 |
apply (simp add: power_add) |
|
623 |
done |
|
| 21408 | 624 |
|
| 25162 | 625 |
lemma nat_zero_less_power_iff [simp]: "(x^n > 0) = (x > (0::nat) | n=0)" |
| 22718 | 626 |
by (induct n) auto |
| 21408 | 627 |
|
628 |
lemma power_le_dvd [rule_format]: "k^j dvd n --> i\<le>j --> k^i dvd (n::nat)" |
|
| 22718 | 629 |
apply (induct j) |
630 |
apply (simp_all add: le_Suc_eq) |
|
631 |
apply (blast dest!: dvd_mult_right) |
|
632 |
done |
|
| 21408 | 633 |
|
634 |
lemma power_dvd_imp_le: "[|i^m dvd i^n; (1::nat) < i|] ==> m \<le> n" |
|
| 22718 | 635 |
apply (rule power_le_imp_le_exp, assumption) |
636 |
apply (erule dvd_imp_le, simp) |
|
637 |
done |
|
| 21408 | 638 |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
639 |
lemma mod_eq_0_iff: "(m mod d = 0) = (\<exists>q::nat. m = d*q)" |
| 22718 | 640 |
by (auto simp add: dvd_eq_mod_eq_0 [symmetric] dvd_def) |
|
17084
fb0a80aef0be
classical rules must have names for ATP integration
paulson
parents:
16796
diff
changeset
|
641 |
|
| 22718 | 642 |
lemmas mod_eq_0D [dest!] = mod_eq_0_iff [THEN iffD1] |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
643 |
|
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
644 |
(*Loses information, namely we also have r<d provided d is nonzero*) |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
645 |
lemma mod_eqD: "(m mod d = r) ==> \<exists>q::nat. m = r + q*d" |
| 22718 | 646 |
apply (cut_tac m = m in mod_div_equality) |
647 |
apply (simp only: add_ac) |
|
648 |
apply (blast intro: sym) |
|
649 |
done |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
650 |
|
| 14131 | 651 |
|
| 13152 | 652 |
lemma split_div: |
|
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
653 |
"P(n div k :: nat) = |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
654 |
((k = 0 \<longrightarrow> P 0) \<and> (k \<noteq> 0 \<longrightarrow> (!i. !j<k. n = k*i + j \<longrightarrow> P i)))" |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
655 |
(is "?P = ?Q" is "_ = (_ \<and> (_ \<longrightarrow> ?R))") |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
656 |
proof |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
657 |
assume P: ?P |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
658 |
show ?Q |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
659 |
proof (cases) |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
660 |
assume "k = 0" |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
661 |
with P show ?Q by(simp add:DIVISION_BY_ZERO_DIV) |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
662 |
next |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
663 |
assume not0: "k \<noteq> 0" |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
664 |
thus ?Q |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
665 |
proof (simp, intro allI impI) |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
666 |
fix i j |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
667 |
assume n: "n = k*i + j" and j: "j < k" |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
668 |
show "P i" |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
669 |
proof (cases) |
| 22718 | 670 |
assume "i = 0" |
671 |
with n j P show "P i" by simp |
|
|
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
672 |
next |
| 22718 | 673 |
assume "i \<noteq> 0" |
674 |
with not0 n j P show "P i" by(simp add:add_ac) |
|
|
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
675 |
qed |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
676 |
qed |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
677 |
qed |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
678 |
next |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
679 |
assume Q: ?Q |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
680 |
show ?P |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
681 |
proof (cases) |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
682 |
assume "k = 0" |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
683 |
with Q show ?P by(simp add:DIVISION_BY_ZERO_DIV) |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
684 |
next |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
685 |
assume not0: "k \<noteq> 0" |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
686 |
with Q have R: ?R by simp |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
687 |
from not0 R[THEN spec,of "n div k",THEN spec, of "n mod k"] |
| 13517 | 688 |
show ?P by simp |
|
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
689 |
qed |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
690 |
qed |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
691 |
|
| 13882 | 692 |
lemma split_div_lemma: |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
693 |
"0 < n \<Longrightarrow> (n * q \<le> m \<and> m < n * (Suc q)) = (q = ((m::nat) div n))" |
| 25162 | 694 |
apply (rule iffI) |
695 |
apply (rule_tac a=m and r = "m - n * q" and r' = "m mod n" in unique_quotient) |
|
696 |
prefer 3; apply assumption |
|
697 |
apply (simp_all add: quorem_def) |
|
698 |
apply arith |
|
699 |
apply (rule conjI) |
|
700 |
apply (rule_tac P="%x. n * (m div n) \<le> x" in |
|
| 13882 | 701 |
subst [OF mod_div_equality [of _ n]]) |
| 25162 | 702 |
apply (simp only: add: mult_ac) |
703 |
apply (rule_tac P="%x. x < n + n * (m div n)" in |
|
| 13882 | 704 |
subst [OF mod_div_equality [of _ n]]) |
| 25162 | 705 |
apply (simp only: add: mult_ac add_ac) |
706 |
apply (rule add_less_mono1, simp) |
|
707 |
done |
|
| 13882 | 708 |
|
709 |
theorem split_div': |
|
710 |
"P ((m::nat) div n) = ((n = 0 \<and> P 0) \<or> |
|
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
711 |
(\<exists>q. (n * q \<le> m \<and> m < n * (Suc q)) \<and> P q))" |
| 13882 | 712 |
apply (case_tac "0 < n") |
713 |
apply (simp only: add: split_div_lemma) |
|
714 |
apply (simp_all add: DIVISION_BY_ZERO_DIV) |
|
715 |
done |
|
716 |
||
|
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
717 |
lemma split_mod: |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
718 |
"P(n mod k :: nat) = |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
719 |
((k = 0 \<longrightarrow> P n) \<and> (k \<noteq> 0 \<longrightarrow> (!i. !j<k. n = k*i + j \<longrightarrow> P j)))" |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
720 |
(is "?P = ?Q" is "_ = (_ \<and> (_ \<longrightarrow> ?R))") |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
721 |
proof |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
722 |
assume P: ?P |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
723 |
show ?Q |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
724 |
proof (cases) |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
725 |
assume "k = 0" |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
726 |
with P show ?Q by(simp add:DIVISION_BY_ZERO_MOD) |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
727 |
next |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
728 |
assume not0: "k \<noteq> 0" |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
729 |
thus ?Q |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
730 |
proof (simp, intro allI impI) |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
731 |
fix i j |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
732 |
assume "n = k*i + j" "j < k" |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
733 |
thus "P j" using not0 P by(simp add:add_ac mult_ac) |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
734 |
qed |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
735 |
qed |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
736 |
next |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
737 |
assume Q: ?Q |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
738 |
show ?P |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
739 |
proof (cases) |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
740 |
assume "k = 0" |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
741 |
with Q show ?P by(simp add:DIVISION_BY_ZERO_MOD) |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
742 |
next |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
743 |
assume not0: "k \<noteq> 0" |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
744 |
with Q have R: ?R by simp |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
745 |
from not0 R[THEN spec,of "n div k",THEN spec, of "n mod k"] |
| 13517 | 746 |
show ?P by simp |
|
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
747 |
qed |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
748 |
qed |
|
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
749 |
|
| 13882 | 750 |
theorem mod_div_equality': "(m::nat) mod n = m - (m div n) * n" |
751 |
apply (rule_tac P="%x. m mod n = x - (m div n) * n" in |
|
752 |
subst [OF mod_div_equality [of _ n]]) |
|
753 |
apply arith |
|
754 |
done |
|
755 |
||
| 22800 | 756 |
lemma div_mod_equality': |
757 |
fixes m n :: nat |
|
758 |
shows "m div n * n = m - m mod n" |
|
759 |
proof - |
|
760 |
have "m mod n \<le> m mod n" .. |
|
761 |
from div_mod_equality have |
|
762 |
"m div n * n + m mod n - m mod n = m - m mod n" by simp |
|
763 |
with diff_add_assoc [OF `m mod n \<le> m mod n`, of "m div n * n"] have |
|
764 |
"m div n * n + (m mod n - m mod n) = m - m mod n" |
|
765 |
by simp |
|
766 |
then show ?thesis by simp |
|
767 |
qed |
|
768 |
||
769 |
||
| 14640 | 770 |
subsection {*An ``induction'' law for modulus arithmetic.*}
|
771 |
||
772 |
lemma mod_induct_0: |
|
773 |
assumes step: "\<forall>i<p. P i \<longrightarrow> P ((Suc i) mod p)" |
|
774 |
and base: "P i" and i: "i<p" |
|
775 |
shows "P 0" |
|
776 |
proof (rule ccontr) |
|
777 |
assume contra: "\<not>(P 0)" |
|
778 |
from i have p: "0<p" by simp |
|
779 |
have "\<forall>k. 0<k \<longrightarrow> \<not> P (p-k)" (is "\<forall>k. ?A k") |
|
780 |
proof |
|
781 |
fix k |
|
782 |
show "?A k" |
|
783 |
proof (induct k) |
|
784 |
show "?A 0" by simp -- "by contradiction" |
|
785 |
next |
|
786 |
fix n |
|
787 |
assume ih: "?A n" |
|
788 |
show "?A (Suc n)" |
|
789 |
proof (clarsimp) |
|
| 22718 | 790 |
assume y: "P (p - Suc n)" |
791 |
have n: "Suc n < p" |
|
792 |
proof (rule ccontr) |
|
793 |
assume "\<not>(Suc n < p)" |
|
794 |
hence "p - Suc n = 0" |
|
795 |
by simp |
|
796 |
with y contra show "False" |
|
797 |
by simp |
|
798 |
qed |
|
799 |
hence n2: "Suc (p - Suc n) = p-n" by arith |
|
800 |
from p have "p - Suc n < p" by arith |
|
801 |
with y step have z: "P ((Suc (p - Suc n)) mod p)" |
|
802 |
by blast |
|
803 |
show "False" |
|
804 |
proof (cases "n=0") |
|
805 |
case True |
|
806 |
with z n2 contra show ?thesis by simp |
|
807 |
next |
|
808 |
case False |
|
809 |
with p have "p-n < p" by arith |
|
810 |
with z n2 False ih show ?thesis by simp |
|
811 |
qed |
|
| 14640 | 812 |
qed |
813 |
qed |
|
814 |
qed |
|
815 |
moreover |
|
816 |
from i obtain k where "0<k \<and> i+k=p" |
|
817 |
by (blast dest: less_imp_add_positive) |
|
818 |
hence "0<k \<and> i=p-k" by auto |
|
819 |
moreover |
|
820 |
note base |
|
821 |
ultimately |
|
822 |
show "False" by blast |
|
823 |
qed |
|
824 |
||
825 |
lemma mod_induct: |
|
826 |
assumes step: "\<forall>i<p. P i \<longrightarrow> P ((Suc i) mod p)" |
|
827 |
and base: "P i" and i: "i<p" and j: "j<p" |
|
828 |
shows "P j" |
|
829 |
proof - |
|
830 |
have "\<forall>j<p. P j" |
|
831 |
proof |
|
832 |
fix j |
|
833 |
show "j<p \<longrightarrow> P j" (is "?A j") |
|
834 |
proof (induct j) |
|
835 |
from step base i show "?A 0" |
|
| 22718 | 836 |
by (auto elim: mod_induct_0) |
| 14640 | 837 |
next |
838 |
fix k |
|
839 |
assume ih: "?A k" |
|
840 |
show "?A (Suc k)" |
|
841 |
proof |
|
| 22718 | 842 |
assume suc: "Suc k < p" |
843 |
hence k: "k<p" by simp |
|
844 |
with ih have "P k" .. |
|
845 |
with step k have "P (Suc k mod p)" |
|
846 |
by blast |
|
847 |
moreover |
|
848 |
from suc have "Suc k mod p = Suc k" |
|
849 |
by simp |
|
850 |
ultimately |
|
851 |
show "P (Suc k)" by simp |
|
| 14640 | 852 |
qed |
853 |
qed |
|
854 |
qed |
|
855 |
with j show ?thesis by blast |
|
856 |
qed |
|
857 |
||
858 |
||
|
18202
46af82efd311
presburger method updated to deal better with mod and div, tweo lemmas added to Divides.thy
chaieb
parents:
18154
diff
changeset
|
859 |
lemma mod_add_left_eq: "((a::nat) + b) mod c = (a mod c + b) mod c" |
|
46af82efd311
presburger method updated to deal better with mod and div, tweo lemmas added to Divides.thy
chaieb
parents:
18154
diff
changeset
|
860 |
apply (rule trans [symmetric]) |
| 22718 | 861 |
apply (rule mod_add1_eq, simp) |
|
18202
46af82efd311
presburger method updated to deal better with mod and div, tweo lemmas added to Divides.thy
chaieb
parents:
18154
diff
changeset
|
862 |
apply (rule mod_add1_eq [symmetric]) |
|
46af82efd311
presburger method updated to deal better with mod and div, tweo lemmas added to Divides.thy
chaieb
parents:
18154
diff
changeset
|
863 |
done |
|
46af82efd311
presburger method updated to deal better with mod and div, tweo lemmas added to Divides.thy
chaieb
parents:
18154
diff
changeset
|
864 |
|
|
46af82efd311
presburger method updated to deal better with mod and div, tweo lemmas added to Divides.thy
chaieb
parents:
18154
diff
changeset
|
865 |
lemma mod_add_right_eq: "(a+b) mod (c::nat) = (a + (b mod c)) mod c" |
| 22718 | 866 |
apply (rule trans [symmetric]) |
867 |
apply (rule mod_add1_eq, simp) |
|
868 |
apply (rule mod_add1_eq [symmetric]) |
|
869 |
done |
|
|
18202
46af82efd311
presburger method updated to deal better with mod and div, tweo lemmas added to Divides.thy
chaieb
parents:
18154
diff
changeset
|
870 |
|
| 22800 | 871 |
lemma mod_div_decomp: |
872 |
fixes n k :: nat |
|
873 |
obtains m q where "m = n div k" and "q = n mod k" |
|
874 |
and "n = m * k + q" |
|
875 |
proof - |
|
876 |
from mod_div_equality have "n = n div k * k + n mod k" by auto |
|
877 |
moreover have "n div k = n div k" .. |
|
878 |
moreover have "n mod k = n mod k" .. |
|
879 |
note that ultimately show thesis by blast |
|
880 |
qed |
|
881 |
||
| 20589 | 882 |
|
|
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22718
diff
changeset
|
883 |
subsection {* Code generation for div, mod and dvd on nat *}
|
| 20589 | 884 |
|
| 22845 | 885 |
definition [code func del]: |
| 20589 | 886 |
"divmod (m\<Colon>nat) n = (m div n, m mod n)" |
887 |
||
| 22718 | 888 |
lemma divmod_zero [code]: "divmod m 0 = (0, m)" |
| 20589 | 889 |
unfolding divmod_def by simp |
890 |
||
891 |
lemma divmod_succ [code]: |
|
892 |
"divmod m (Suc k) = (if m < Suc k then (0, m) else |
|
893 |
let |
|
894 |
(p, q) = divmod (m - Suc k) (Suc k) |
|
| 22718 | 895 |
in (Suc p, q))" |
| 20589 | 896 |
unfolding divmod_def Let_def split_def |
897 |
by (auto intro: div_geq mod_geq) |
|
898 |
||
| 22718 | 899 |
lemma div_divmod [code]: "m div n = fst (divmod m n)" |
| 20589 | 900 |
unfolding divmod_def by simp |
901 |
||
| 22718 | 902 |
lemma mod_divmod [code]: "m mod n = snd (divmod m n)" |
| 20589 | 903 |
unfolding divmod_def by simp |
904 |
||
|
23684
8c508c4dc53b
introduced (auxiliary) class dvd_mod for more convenient code generation
haftmann
parents:
23162
diff
changeset
|
905 |
instance nat :: dvd_mod |
| 24993 | 906 |
by default (simp add: dvd_eq_mod_eq_0) |
|
22744
5cbe966d67a2
Isar definitions are now added explicitly to code theorem table
haftmann
parents:
22718
diff
changeset
|
907 |
|
| 21191 | 908 |
code_modulename SML |
| 23017 | 909 |
Divides Nat |
| 20640 | 910 |
|
|
21911
e29bcab0c81c
added OCaml code generation (without dictionaries)
haftmann
parents:
21408
diff
changeset
|
911 |
code_modulename OCaml |
| 23017 | 912 |
Divides Nat |
913 |
||
914 |
code_modulename Haskell |
|
915 |
Divides Nat |
|
|
21911
e29bcab0c81c
added OCaml code generation (without dictionaries)
haftmann
parents:
21408
diff
changeset
|
916 |
|
|
23684
8c508c4dc53b
introduced (auxiliary) class dvd_mod for more convenient code generation
haftmann
parents:
23162
diff
changeset
|
917 |
hide (open) const divmod |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
918 |
|
| 3366 | 919 |
end |