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