author | nipkow |
Mon, 01 Sep 2008 22:10:42 +0200 | |
changeset 28072 | a45e8c872dc1 |
parent 27676 | 55676111ed69 |
child 28262 | aa7ca36d67fd |
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 |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
7 |
header {* The division operators div and mod *} |
3366 | 8 |
|
15131 | 9 |
theory Divides |
26748
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
krauss
parents:
26300
diff
changeset
|
10 |
imports Nat Power Product_Type |
22993 | 11 |
uses "~~/src/Provers/Arith/cancel_div_mod.ML" |
15131 | 12 |
begin |
3366 | 13 |
|
25942 | 14 |
subsection {* Syntactic division operations *} |
15 |
||
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
16 |
class div = dvd + |
27540 | 17 |
fixes div :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "div" 70) |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
18 |
and mod :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "mod" 70) |
27540 | 19 |
|
20 |
||
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
21 |
subsection {* Abstract division in commutative semirings. *} |
25942 | 22 |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
23 |
class semiring_div = comm_semiring_1_cancel + div + |
25942 | 24 |
assumes mod_div_equality: "a div b * b + a mod b = a" |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
25 |
and div_by_0 [simp]: "a div 0 = 0" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
26 |
and div_0 [simp]: "0 div a = 0" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
27 |
and div_mult_self1 [simp]: "b \<noteq> 0 \<Longrightarrow> (a + c * b) div b = c + a div b" |
25942 | 28 |
begin |
29 |
||
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
30 |
text {* @{const div} and @{const mod} *} |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
31 |
|
26062 | 32 |
lemma mod_div_equality2: "b * (a div b) + a mod b = a" |
33 |
unfolding mult_commute [of b] |
|
34 |
by (rule mod_div_equality) |
|
35 |
||
36 |
lemma div_mod_equality: "((a div b) * b + a mod b) + c = a + c" |
|
37 |
by (simp add: mod_div_equality) |
|
38 |
||
39 |
lemma div_mod_equality2: "(b * (a div b) + a mod b) + c = a + c" |
|
40 |
by (simp add: mod_div_equality2) |
|
41 |
||
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
42 |
lemma mod_by_0 [simp]: "a mod 0 = a" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
43 |
using mod_div_equality [of a zero] by simp |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
44 |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
45 |
lemma mod_0 [simp]: "0 mod a = 0" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
46 |
using mod_div_equality [of zero a] div_0 by simp |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
47 |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
48 |
lemma div_mult_self2 [simp]: |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
49 |
assumes "b \<noteq> 0" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
50 |
shows "(a + b * c) div b = c + a div b" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
51 |
using assms div_mult_self1 [of b a c] by (simp add: mult_commute) |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
52 |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
53 |
lemma mod_mult_self1 [simp]: "(a + c * b) mod b = a mod b" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
54 |
proof (cases "b = 0") |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
55 |
case True then show ?thesis by simp |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
56 |
next |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
57 |
case False |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
58 |
have "a + c * b = (a + c * b) div b * b + (a + c * b) mod b" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
59 |
by (simp add: mod_div_equality) |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
60 |
also from False div_mult_self1 [of b a c] have |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
61 |
"\<dots> = (c + a div b) * b + (a + c * b) mod b" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
62 |
by (simp add: left_distrib add_ac) |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
63 |
finally have "a = a div b * b + (a + c * b) mod b" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
64 |
by (simp add: add_commute [of a] add_assoc left_distrib) |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
65 |
then have "a div b * b + (a + c * b) mod b = a div b * b + a mod b" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
66 |
by (simp add: mod_div_equality) |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
67 |
then show ?thesis by simp |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
68 |
qed |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
69 |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
70 |
lemma mod_mult_self2 [simp]: "(a + b * c) mod b = a mod b" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
71 |
by (simp add: mult_commute [of b]) |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
72 |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
73 |
lemma div_mult_self1_is_id [simp]: "b \<noteq> 0 \<Longrightarrow> b * a div b = a" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
74 |
using div_mult_self2 [of b 0 a] by simp |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
75 |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
76 |
lemma div_mult_self2_is_id [simp]: "b \<noteq> 0 \<Longrightarrow> a * b div b = a" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
77 |
using div_mult_self1 [of b 0 a] by simp |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
78 |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
79 |
lemma mod_mult_self1_is_0 [simp]: "b * a mod b = 0" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
80 |
using mod_mult_self2 [of 0 b a] by simp |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
81 |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
82 |
lemma mod_mult_self2_is_0 [simp]: "a * b mod b = 0" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
83 |
using mod_mult_self1 [of 0 a b] by simp |
26062 | 84 |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
85 |
lemma div_by_1 [simp]: "a div 1 = a" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
86 |
using div_mult_self2_is_id [of 1 a] zero_neq_one by simp |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
87 |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
88 |
lemma mod_by_1 [simp]: "a mod 1 = 0" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
89 |
proof - |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
90 |
from mod_div_equality [of a one] div_by_1 have "a + a mod 1 = a" by simp |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
91 |
then have "a + a mod 1 = a + 0" by simp |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
92 |
then show ?thesis by (rule add_left_imp_eq) |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
93 |
qed |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
94 |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
95 |
lemma mod_self [simp]: "a mod a = 0" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
96 |
using mod_mult_self2_is_0 [of 1] by simp |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
97 |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
98 |
lemma div_self [simp]: "a \<noteq> 0 \<Longrightarrow> a div a = 1" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
99 |
using div_mult_self2_is_id [of _ 1] by simp |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
100 |
|
27676 | 101 |
lemma div_add_self1 [simp]: |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
102 |
assumes "b \<noteq> 0" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
103 |
shows "(b + a) div b = a div b + 1" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
104 |
using assms div_mult_self1 [of b a 1] by (simp add: add_commute) |
26062 | 105 |
|
27676 | 106 |
lemma div_add_self2 [simp]: |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
107 |
assumes "b \<noteq> 0" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
108 |
shows "(a + b) div b = a div b + 1" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
109 |
using assms div_add_self1 [of b a] by (simp add: add_commute) |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
110 |
|
27676 | 111 |
lemma mod_add_self1 [simp]: |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
112 |
"(b + a) mod b = a mod b" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
113 |
using mod_mult_self1 [of a 1 b] by (simp add: add_commute) |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
114 |
|
27676 | 115 |
lemma mod_add_self2 [simp]: |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
116 |
"(a + b) mod b = a mod b" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
117 |
using mod_mult_self1 [of a 1 b] by simp |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
118 |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
119 |
lemma mod_div_decomp: |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
120 |
fixes a b |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
121 |
obtains q r where "q = a div b" and "r = a mod b" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
122 |
and "a = q * b + r" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
123 |
proof - |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
124 |
from mod_div_equality have "a = a div b * b + a mod b" by simp |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
125 |
moreover have "a div b = a div b" .. |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
126 |
moreover have "a mod b = a mod b" .. |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
127 |
note that ultimately show thesis by blast |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
128 |
qed |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
129 |
|
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
130 |
lemma dvd_eq_mod_eq_0 [code func]: "a dvd b \<longleftrightarrow> b mod a = 0" |
25942 | 131 |
proof |
132 |
assume "b mod a = 0" |
|
133 |
with mod_div_equality [of b a] have "b div a * a = b" by simp |
|
134 |
then have "b = a * (b div a)" unfolding mult_commute .. |
|
135 |
then have "\<exists>c. b = a * c" .. |
|
136 |
then show "a dvd b" unfolding dvd_def . |
|
137 |
next |
|
138 |
assume "a dvd b" |
|
139 |
then have "\<exists>c. b = a * c" unfolding dvd_def . |
|
140 |
then obtain c where "b = a * c" .. |
|
141 |
then have "b mod a = a * c mod a" by simp |
|
142 |
then have "b mod a = c * a mod a" by (simp add: mult_commute) |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
143 |
then show "b mod a = 0" by simp |
25942 | 144 |
qed |
145 |
||
146 |
end |
|
147 |
||
148 |
||
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
149 |
subsection {* Division on @{typ nat} *} |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
150 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
151 |
text {* |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
152 |
We define @{const div} and @{const mod} on @{typ nat} by means |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
153 |
of a characteristic relation with two input arguments |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
154 |
@{term "m\<Colon>nat"}, @{term "n\<Colon>nat"} and two output arguments |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
155 |
@{term "q\<Colon>nat"}(uotient) and @{term "r\<Colon>nat"}(emainder). |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
156 |
*} |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
157 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
158 |
definition divmod_rel :: "nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> bool" where |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
159 |
"divmod_rel m n q r \<longleftrightarrow> m = q * n + r \<and> (if n > 0 then 0 \<le> r \<and> r < n else q = 0)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
160 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
161 |
text {* @{const divmod_rel} is total: *} |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
162 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
163 |
lemma divmod_rel_ex: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
164 |
obtains q r where "divmod_rel m n q r" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
165 |
proof (cases "n = 0") |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
166 |
case True with that show thesis |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
167 |
by (auto simp add: divmod_rel_def) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
168 |
next |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
169 |
case False |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
170 |
have "\<exists>q r. m = q * n + r \<and> r < n" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
171 |
proof (induct m) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
172 |
case 0 with `n \<noteq> 0` |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
173 |
have "(0\<Colon>nat) = 0 * n + 0 \<and> 0 < n" by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
174 |
then show ?case by blast |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
175 |
next |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
176 |
case (Suc m) then obtain q' r' |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
177 |
where m: "m = q' * n + r'" and n: "r' < n" by auto |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
178 |
then show ?case proof (cases "Suc r' < n") |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
179 |
case True |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
180 |
from m n have "Suc m = q' * n + Suc r'" by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
181 |
with True show ?thesis by blast |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
182 |
next |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
183 |
case False then have "n \<le> Suc r'" by auto |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
184 |
moreover from n have "Suc r' \<le> n" by auto |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
185 |
ultimately have "n = Suc r'" by auto |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
186 |
with m have "Suc m = Suc q' * n + 0" by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
187 |
with `n \<noteq> 0` show ?thesis by blast |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
188 |
qed |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
189 |
qed |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
190 |
with that show thesis |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
191 |
using `n \<noteq> 0` by (auto simp add: divmod_rel_def) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
192 |
qed |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
193 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
194 |
text {* @{const divmod_rel} is injective: *} |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
195 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
196 |
lemma divmod_rel_unique_div: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
197 |
assumes "divmod_rel m n q r" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
198 |
and "divmod_rel m n q' r'" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
199 |
shows "q = q'" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
200 |
proof (cases "n = 0") |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
201 |
case True with assms show ?thesis |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
202 |
by (simp add: divmod_rel_def) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
203 |
next |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
204 |
case False |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
205 |
have aux: "\<And>q r q' r'. q' * n + r' = q * n + r \<Longrightarrow> r < n \<Longrightarrow> q' \<le> (q\<Colon>nat)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
206 |
apply (rule leI) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
207 |
apply (subst less_iff_Suc_add) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
208 |
apply (auto simp add: add_mult_distrib) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
209 |
done |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
210 |
from `n \<noteq> 0` assms show ?thesis |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
211 |
by (auto simp add: divmod_rel_def |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
212 |
intro: order_antisym dest: aux sym) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
213 |
qed |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
214 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
215 |
lemma divmod_rel_unique_mod: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
216 |
assumes "divmod_rel m n q r" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
217 |
and "divmod_rel m n q' r'" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
218 |
shows "r = r'" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
219 |
proof - |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
220 |
from assms have "q = q'" by (rule divmod_rel_unique_div) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
221 |
with assms show ?thesis by (simp add: divmod_rel_def) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
222 |
qed |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
223 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
224 |
text {* |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
225 |
We instantiate divisibility on the natural numbers by |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
226 |
means of @{const divmod_rel}: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
227 |
*} |
25942 | 228 |
|
229 |
instantiation nat :: semiring_div |
|
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25162
diff
changeset
|
230 |
begin |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25162
diff
changeset
|
231 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
232 |
definition divmod :: "nat \<Rightarrow> nat \<Rightarrow> nat \<times> nat" where |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
233 |
[code func del]: "divmod m n = (THE (q, r). divmod_rel m n q r)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
234 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
235 |
definition div_nat where |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
236 |
"m div n = fst (divmod m n)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
237 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
238 |
definition mod_nat where |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
239 |
"m mod n = snd (divmod m n)" |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25162
diff
changeset
|
240 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
241 |
lemma divmod_div_mod: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
242 |
"divmod m n = (m div n, m mod n)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
243 |
unfolding div_nat_def mod_nat_def by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
244 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
245 |
lemma divmod_eq: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
246 |
assumes "divmod_rel m n q r" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
247 |
shows "divmod m n = (q, r)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
248 |
using assms by (auto simp add: divmod_def |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
249 |
dest: divmod_rel_unique_div divmod_rel_unique_mod) |
25942 | 250 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
251 |
lemma div_eq: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
252 |
assumes "divmod_rel m n q r" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
253 |
shows "m div n = q" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
254 |
using assms by (auto dest: divmod_eq simp add: div_nat_def) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
255 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
256 |
lemma mod_eq: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
257 |
assumes "divmod_rel m n q r" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
258 |
shows "m mod n = r" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
259 |
using assms by (auto dest: divmod_eq simp add: mod_nat_def) |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25162
diff
changeset
|
260 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
261 |
lemma divmod_rel: "divmod_rel m n (m div n) (m mod n)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
262 |
proof - |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
263 |
from divmod_rel_ex |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
264 |
obtain q r where rel: "divmod_rel m n q r" . |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
265 |
moreover with div_eq mod_eq have "m div n = q" and "m mod n = r" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
266 |
by simp_all |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
267 |
ultimately show ?thesis by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
268 |
qed |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
269 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
270 |
lemma divmod_zero: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
271 |
"divmod m 0 = (0, m)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
272 |
proof - |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
273 |
from divmod_rel [of m 0] show ?thesis |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
274 |
unfolding divmod_div_mod divmod_rel_def by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
275 |
qed |
25942 | 276 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
277 |
lemma divmod_base: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
278 |
assumes "m < n" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
279 |
shows "divmod m n = (0, m)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
280 |
proof - |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
281 |
from divmod_rel [of m n] show ?thesis |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
282 |
unfolding divmod_div_mod divmod_rel_def |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
283 |
using assms by (cases "m div n = 0") |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
284 |
(auto simp add: gr0_conv_Suc [of "m div n"]) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
285 |
qed |
25942 | 286 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
287 |
lemma divmod_step: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
288 |
assumes "0 < n" and "n \<le> m" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
289 |
shows "divmod m n = (Suc ((m - n) div n), (m - n) mod n)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
290 |
proof - |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
291 |
from divmod_rel have divmod_m_n: "divmod_rel m n (m div n) (m mod n)" . |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
292 |
with assms have m_div_n: "m div n \<ge> 1" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
293 |
by (cases "m div n") (auto simp add: divmod_rel_def) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
294 |
from assms divmod_m_n have "divmod_rel (m - n) n (m div n - 1) (m mod n)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
295 |
by (cases "m div n") (auto simp add: divmod_rel_def) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
296 |
with divmod_eq have "divmod (m - n) n = (m div n - 1, m mod n)" by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
297 |
moreover from divmod_div_mod have "divmod (m - n) n = ((m - n) div n, (m - n) mod n)" . |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
298 |
ultimately have "m div n = Suc ((m - n) div n)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
299 |
and "m mod n = (m - n) mod n" using m_div_n by simp_all |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
300 |
then show ?thesis using divmod_div_mod by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
301 |
qed |
25942 | 302 |
|
26300 | 303 |
text {* The ''recursion'' equations for @{const div} and @{const mod} *} |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
304 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
305 |
lemma div_less [simp]: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
306 |
fixes m n :: nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
307 |
assumes "m < n" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
308 |
shows "m div n = 0" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
309 |
using assms divmod_base divmod_div_mod by simp |
25942 | 310 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
311 |
lemma le_div_geq: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
312 |
fixes m n :: nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
313 |
assumes "0 < n" and "n \<le> m" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
314 |
shows "m div n = Suc ((m - n) div n)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
315 |
using assms divmod_step divmod_div_mod by simp |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
316 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
317 |
lemma mod_less [simp]: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
318 |
fixes m n :: nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
319 |
assumes "m < n" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
320 |
shows "m mod n = m" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
321 |
using assms divmod_base divmod_div_mod by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
322 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
323 |
lemma le_mod_geq: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
324 |
fixes m n :: nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
325 |
assumes "n \<le> m" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
326 |
shows "m mod n = (m - n) mod n" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
327 |
using assms divmod_step divmod_div_mod by (cases "n = 0") simp_all |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
328 |
|
25942 | 329 |
instance proof |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
330 |
fix m n :: nat show "m div n * n + m mod n = m" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
331 |
using divmod_rel [of m n] by (simp add: divmod_rel_def) |
25942 | 332 |
next |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
333 |
fix n :: nat show "n div 0 = 0" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
334 |
using divmod_zero divmod_div_mod [of n 0] by simp |
25942 | 335 |
next |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
336 |
fix n :: nat show "0 div n = 0" |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
337 |
using divmod_rel [of 0 n] by (cases n) (simp_all add: divmod_rel_def) |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
338 |
next |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
339 |
fix m n q :: nat assume "n \<noteq> 0" then show "(q + m * n) div n = m + q div n" |
25942 | 340 |
by (induct m) (simp_all add: le_div_geq) |
341 |
qed |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
342 |
|
25942 | 343 |
end |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
344 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
345 |
text {* Simproc for cancelling @{const div} and @{const mod} *} |
25942 | 346 |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
347 |
(*lemmas mod_div_equality_nat = semiring_div_class.times_div_mod_plus_zero_one.mod_div_equality [of "m\<Colon>nat" n, standard] |
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
348 |
lemmas mod_div_equality2_nat = mod_div_equality2 [of "n\<Colon>nat" m, standard*) |
25942 | 349 |
|
350 |
ML {* |
|
351 |
structure CancelDivModData = |
|
352 |
struct |
|
353 |
||
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
354 |
val div_name = @{const_name div}; |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
355 |
val mod_name = @{const_name mod}; |
25942 | 356 |
val mk_binop = HOLogic.mk_binop; |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
357 |
val mk_sum = ArithData.mk_sum; |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
358 |
val dest_sum = ArithData.dest_sum; |
25942 | 359 |
|
360 |
(*logic*) |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
361 |
|
25942 | 362 |
val div_mod_eqs = map mk_meta_eq [@{thm div_mod_equality}, @{thm div_mod_equality2}] |
363 |
||
364 |
val trans = trans |
|
365 |
||
366 |
val prove_eq_sums = |
|
367 |
let val simps = @{thm add_0} :: @{thm add_0_right} :: @{thms add_ac} |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
368 |
in ArithData.prove_conv all_tac (ArithData.simp_all_tac simps) end; |
25942 | 369 |
|
370 |
end; |
|
371 |
||
372 |
structure CancelDivMod = CancelDivModFun(CancelDivModData); |
|
373 |
||
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
374 |
val cancel_div_mod_proc = Simplifier.simproc @{theory} |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
375 |
"cancel_div_mod" ["(m::nat) + n"] (K CancelDivMod.proc); |
25942 | 376 |
|
377 |
Addsimprocs[cancel_div_mod_proc]; |
|
378 |
*} |
|
379 |
||
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
380 |
text {* code generator setup *} |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
381 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
382 |
lemma divmod_if [code]: "divmod m n = (if n = 0 \<or> m < n then (0, m) else |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
383 |
let (q, r) = divmod (m - n) n in (Suc q, r))" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
384 |
by (simp add: divmod_zero divmod_base divmod_step) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
385 |
(simp add: divmod_div_mod) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
386 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
387 |
code_modulename SML |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
388 |
Divides Nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
389 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
390 |
code_modulename OCaml |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
391 |
Divides Nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
392 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
393 |
code_modulename Haskell |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
394 |
Divides Nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
395 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
396 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
397 |
subsubsection {* Quotient *} |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
398 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
399 |
lemma div_geq: "0 < n \<Longrightarrow> \<not> m < n \<Longrightarrow> m div n = Suc ((m - n) div n)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
400 |
by (simp add: le_div_geq linorder_not_less) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
401 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
402 |
lemma div_if: "0 < n \<Longrightarrow> m div n = (if m < n then 0 else Suc ((m - n) div n))" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
403 |
by (simp add: div_geq) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
404 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
405 |
lemma div_mult_self_is_m [simp]: "0<n ==> (m*n) div n = (m::nat)" |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
406 |
by simp |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
407 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
408 |
lemma div_mult_self1_is_m [simp]: "0<n ==> (n*m) div n = (m::nat)" |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
409 |
by simp |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
410 |
|
25942 | 411 |
|
412 |
subsubsection {* Remainder *} |
|
413 |
||
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
414 |
lemma mod_less_divisor [simp]: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
415 |
fixes m n :: nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
416 |
assumes "n > 0" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
417 |
shows "m mod n < (n::nat)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
418 |
using assms divmod_rel unfolding divmod_rel_def by auto |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
419 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
420 |
lemma mod_less_eq_dividend [simp]: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
421 |
fixes m n :: nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
422 |
shows "m mod n \<le> m" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
423 |
proof (rule add_leD2) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
424 |
from mod_div_equality have "m div n * n + m mod n = m" . |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
425 |
then show "m div n * n + m mod n \<le> m" by auto |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
426 |
qed |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
427 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
428 |
lemma mod_geq: "\<not> m < (n\<Colon>nat) \<Longrightarrow> m mod n = (m - n) mod n" |
25942 | 429 |
by (simp add: le_mod_geq linorder_not_less) |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
430 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
431 |
lemma mod_if: "m mod (n\<Colon>nat) = (if m < n then m else (m - n) mod n)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
432 |
by (simp add: le_mod_geq) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
433 |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
434 |
lemma mod_1 [simp]: "m mod Suc 0 = 0" |
22718 | 435 |
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
|
436 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
437 |
lemma mod_mult_distrib: "(m mod n) * (k\<Colon>nat) = (m * k) mod (n * k)" |
22718 | 438 |
apply (cases "n = 0", simp) |
439 |
apply (cases "k = 0", simp) |
|
440 |
apply (induct m rule: nat_less_induct) |
|
441 |
apply (subst mod_if, simp) |
|
442 |
apply (simp add: mod_geq diff_mult_distrib) |
|
443 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
444 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
445 |
lemma mod_mult_distrib2: "(k::nat) * (m mod n) = (k*m) mod (k*n)" |
22718 | 446 |
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
|
447 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
448 |
(* 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
|
449 |
lemma mult_div_cancel: "(n::nat) * (m div n) = m - (m mod n)" |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
450 |
by (cut_tac a = m and b = 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
|
451 |
|
15439 | 452 |
lemma mod_le_divisor[simp]: "0 < n \<Longrightarrow> m mod n \<le> (n::nat)" |
22718 | 453 |
apply (drule mod_less_divisor [where m = m]) |
454 |
apply simp |
|
455 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
456 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
457 |
subsubsection {* Quotient and Remainder *} |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
458 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
459 |
lemma divmod_rel_mult1_eq: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
460 |
"[| divmod_rel b c q r; c > 0 |] |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
461 |
==> divmod_rel (a*b) c (a*q + a*r div c) (a*r mod c)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
462 |
by (auto simp add: split_ifs mult_ac divmod_rel_def add_mult_distrib2) |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
463 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
464 |
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
|
465 |
apply (cases "c = 0", simp) |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
466 |
apply (blast intro: divmod_rel [THEN divmod_rel_mult1_eq, THEN div_eq]) |
25134
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
467 |
done |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
468 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
469 |
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
|
470 |
apply (cases "c = 0", simp) |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
471 |
apply (blast intro: divmod_rel [THEN divmod_rel_mult1_eq, THEN mod_eq]) |
25134
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
472 |
done |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
473 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
474 |
lemma mod_mult1_eq': "(a*b) mod (c::nat) = ((a mod c) * b) mod c" |
22718 | 475 |
apply (rule trans) |
476 |
apply (rule_tac s = "b*a mod c" in trans) |
|
477 |
apply (rule_tac [2] mod_mult1_eq) |
|
478 |
apply (simp_all add: mult_commute) |
|
479 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
480 |
|
25162 | 481 |
lemma mod_mult_distrib_mod: |
482 |
"(a*b) mod (c::nat) = ((a mod c) * (b mod c)) mod c" |
|
483 |
apply (rule mod_mult1_eq' [THEN trans]) |
|
484 |
apply (rule mod_mult1_eq) |
|
485 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
486 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
487 |
lemma divmod_rel_add1_eq: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
488 |
"[| divmod_rel a c aq ar; divmod_rel b c bq br; c > 0 |] |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
489 |
==> divmod_rel (a + b) c (aq + bq + (ar+br) div c) ((ar + br) mod c)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
490 |
by (auto simp add: split_ifs mult_ac divmod_rel_def add_mult_distrib2) |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
491 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
492 |
(*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
|
493 |
lemma div_add1_eq: |
25134
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
494 |
"(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
|
495 |
apply (cases "c = 0", simp) |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
496 |
apply (blast intro: divmod_rel_add1_eq [THEN div_eq] divmod_rel) |
25134
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
497 |
done |
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 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
|
500 |
apply (cases "c = 0", simp) |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
501 |
apply (blast intro: divmod_rel_add1_eq [THEN mod_eq] divmod_rel) |
25134
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
502 |
done |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
503 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
504 |
lemma mod_lemma: "[| (0::nat) < c; r < b |] ==> b * (q mod c) + r < b * c" |
22718 | 505 |
apply (cut_tac m = q and n = c in mod_less_divisor) |
506 |
apply (drule_tac [2] m = "q mod c" in less_imp_Suc_add, auto) |
|
507 |
apply (erule_tac P = "%x. ?lhs < ?rhs x" in ssubst) |
|
508 |
apply (simp add: add_mult_distrib2) |
|
509 |
done |
|
10559
d3fd54fc659b
many new div and mod properties (borrowed from Integ/IntDiv)
paulson
parents:
10214
diff
changeset
|
510 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
511 |
lemma divmod_rel_mult2_eq: "[| divmod_rel a b q r; 0 < b; 0 < c |] |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
512 |
==> divmod_rel a (b*c) (q div c) (b*(q mod c) + r)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
513 |
by (auto simp add: mult_ac divmod_rel_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
|
514 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
515 |
lemma div_mult2_eq: "a div (b*c) = (a div b) div (c::nat)" |
22718 | 516 |
apply (cases "b = 0", simp) |
517 |
apply (cases "c = 0", simp) |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
518 |
apply (force simp add: divmod_rel [THEN divmod_rel_mult2_eq, THEN div_eq]) |
22718 | 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 mod_mult2_eq: "a mod (b*c) = b*(a div b mod c) + a mod (b::nat)" |
22718 | 522 |
apply (cases "b = 0", simp) |
523 |
apply (cases "c = 0", simp) |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
524 |
apply (auto simp add: mult_commute divmod_rel [THEN divmod_rel_mult2_eq, THEN mod_eq]) |
22718 | 525 |
done |
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 |
|
25942 | 528 |
subsubsection{*Cancellation of Common Factors in Division*} |
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 div_mult_mult_lemma: |
22718 | 531 |
"[| (0::nat) < b; 0 < c |] ==> (c*a) div (c*b) = a div b" |
532 |
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
|
533 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
534 |
lemma div_mult_mult1 [simp]: "(0::nat) < c ==> (c*a) div (c*b) = a div b" |
22718 | 535 |
apply (cases "b = 0") |
536 |
apply (auto simp add: linorder_neq_iff [of b] div_mult_mult_lemma) |
|
537 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
538 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
539 |
lemma div_mult_mult2 [simp]: "(0::nat) < c ==> (a*c) div (b*c) = a div b" |
22718 | 540 |
apply (drule div_mult_mult1) |
541 |
apply (auto simp add: mult_commute) |
|
542 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
543 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
544 |
|
25942 | 545 |
subsubsection{*Further Facts about Quotient and Remainder*} |
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 div_1 [simp]: "m div Suc 0 = m" |
22718 | 548 |
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
|
549 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
550 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
551 |
(* Monotonicity of div in first argument *) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
552 |
lemma div_le_mono [rule_format (no_asm)]: |
22718 | 553 |
"\<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
|
554 |
apply (case_tac "k=0", simp) |
15251 | 555 |
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
|
556 |
apply (case_tac "n<k") |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
557 |
(* 1 case n<k *) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
558 |
apply simp |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
559 |
(* 2 case n >= k *) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
560 |
apply (case_tac "m<k") |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
561 |
(* 2.1 case m<k *) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
562 |
apply simp |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
563 |
(* 2.2 case m>=k *) |
15439 | 564 |
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
|
565 |
done |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
566 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
567 |
(* Antimonotonicity of div in second argument *) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
568 |
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
|
569 |
apply (subgoal_tac "0<n") |
22718 | 570 |
prefer 2 apply simp |
15251 | 571 |
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
|
572 |
apply (rename_tac "k") |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
573 |
apply (case_tac "k<n", simp) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
574 |
apply (subgoal_tac "~ (k<m) ") |
22718 | 575 |
prefer 2 apply simp |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
576 |
apply (simp add: div_geq) |
15251 | 577 |
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
|
578 |
prefer 2 |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
579 |
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
|
580 |
apply (rule le_trans, simp) |
15439 | 581 |
apply (simp) |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
582 |
done |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
583 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
584 |
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
|
585 |
apply (case_tac "n=0", simp) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
586 |
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
|
587 |
apply (rule div_le_mono2) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
588 |
apply (simp_all (no_asm_simp)) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
589 |
done |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
590 |
|
22718 | 591 |
(* Similar for "less than" *) |
17085 | 592 |
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
|
593 |
"!!n::nat. 1<n ==> 0 < m --> m div n < m" |
15251 | 594 |
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
|
595 |
apply (rename_tac "m") |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
596 |
apply (case_tac "m<n", simp) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
597 |
apply (subgoal_tac "0<n") |
22718 | 598 |
prefer 2 apply simp |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
599 |
apply (simp add: div_geq) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
600 |
apply (case_tac "n<m") |
15251 | 601 |
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
|
602 |
apply (rule impI less_trans_Suc)+ |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
603 |
apply assumption |
15439 | 604 |
apply (simp_all) |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
605 |
done |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
606 |
|
17085 | 607 |
declare div_less_dividend [simp] |
608 |
||
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
609 |
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
|
610 |
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
|
611 |
apply (case_tac "n=0", simp) |
15251 | 612 |
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
|
613 |
apply (case_tac "Suc (na) <n") |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
614 |
(* case Suc(na) < n *) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
615 |
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
|
616 |
(* case n \<le> Suc(na) *) |
16796 | 617 |
apply (simp add: linorder_not_less le_Suc_eq mod_geq) |
15439 | 618 |
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
|
619 |
done |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
620 |
|
14437 | 621 |
lemma nat_mod_div_trivial [simp]: "m mod n div n = (0 :: nat)" |
22718 | 622 |
by (cases "n = 0") auto |
14437 | 623 |
|
624 |
lemma nat_mod_mod_trivial [simp]: "m mod n mod n = (m mod n :: nat)" |
|
22718 | 625 |
by (cases "n = 0") auto |
14437 | 626 |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
627 |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
628 |
subsubsection {* The Divides Relation *} |
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24268
diff
changeset
|
629 |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
630 |
lemma dvd_1_left [iff]: "Suc 0 dvd k" |
22718 | 631 |
unfolding dvd_def by simp |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
632 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
633 |
lemma dvd_1_iff_1 [simp]: "(m dvd Suc 0) = (m = Suc 0)" |
22718 | 634 |
by (simp add: dvd_def) |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
635 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
636 |
lemma dvd_anti_sym: "[| m dvd n; n dvd m |] ==> m = (n::nat)" |
22718 | 637 |
unfolding dvd_def |
638 |
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
|
639 |
|
23684
8c508c4dc53b
introduced (auxiliary) class dvd_mod for more convenient code generation
haftmann
parents:
23162
diff
changeset
|
640 |
text {* @{term "op dvd"} is a partial order *} |
8c508c4dc53b
introduced (auxiliary) class dvd_mod for more convenient code generation
haftmann
parents:
23162
diff
changeset
|
641 |
|
25942 | 642 |
interpretation dvd: order ["op dvd" "\<lambda>n m \<Colon> nat. n dvd m \<and> n \<noteq> m"] |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
643 |
by unfold_locales (auto intro: dvd_refl dvd_trans dvd_anti_sym) |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
644 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
645 |
lemma dvd_diff: "[| k dvd m; k dvd n |] ==> k dvd (m-n :: nat)" |
22718 | 646 |
unfolding dvd_def |
647 |
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
|
648 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
649 |
lemma dvd_diffD: "[| k dvd m-n; k dvd n; n\<le>m |] ==> k dvd (m::nat)" |
22718 | 650 |
apply (erule linorder_not_less [THEN iffD2, THEN add_diff_inverse, THEN subst]) |
651 |
apply (blast intro: dvd_add) |
|
652 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
653 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
654 |
lemma dvd_diffD1: "[| k dvd m-n; k dvd m; n\<le>m |] ==> k dvd (n::nat)" |
22718 | 655 |
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
|
656 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
657 |
lemma dvd_reduce: "(k dvd n + k) = (k dvd (n::nat))" |
22718 | 658 |
apply (rule iffI) |
659 |
apply (erule_tac [2] dvd_add) |
|
660 |
apply (rule_tac [2] dvd_refl) |
|
661 |
apply (subgoal_tac "n = (n+k) -k") |
|
662 |
prefer 2 apply simp |
|
663 |
apply (erule ssubst) |
|
664 |
apply (erule dvd_diff) |
|
665 |
apply (rule dvd_refl) |
|
666 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
667 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
668 |
lemma dvd_mod: "!!n::nat. [| f dvd m; f dvd n |] ==> f dvd m mod n" |
22718 | 669 |
unfolding dvd_def |
670 |
apply (case_tac "n = 0", auto) |
|
671 |
apply (blast intro: mod_mult_distrib2 [symmetric]) |
|
672 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
673 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
674 |
lemma dvd_mod_imp_dvd: "[| (k::nat) dvd m mod n; k dvd n |] ==> k dvd m" |
22718 | 675 |
apply (subgoal_tac "k dvd (m div n) *n + m mod n") |
676 |
apply (simp add: mod_div_equality) |
|
677 |
apply (simp only: dvd_add dvd_mult) |
|
678 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
679 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
680 |
lemma dvd_mod_iff: "k dvd n ==> ((k::nat) dvd m mod n) = (k dvd m)" |
22718 | 681 |
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
|
682 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
683 |
lemma dvd_mult_cancel: "!!k::nat. [| k*m dvd k*n; 0<k |] ==> m dvd n" |
22718 | 684 |
unfolding dvd_def |
685 |
apply (erule exE) |
|
686 |
apply (simp add: mult_ac) |
|
687 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
688 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
689 |
lemma dvd_mult_cancel1: "0<m ==> (m*n dvd m) = (n = (1::nat))" |
22718 | 690 |
apply auto |
691 |
apply (subgoal_tac "m*n dvd m*1") |
|
692 |
apply (drule dvd_mult_cancel, auto) |
|
693 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
694 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
695 |
lemma dvd_mult_cancel2: "0<m ==> (n*m dvd m) = (n = (1::nat))" |
22718 | 696 |
apply (subst mult_commute) |
697 |
apply (erule dvd_mult_cancel1) |
|
698 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
699 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
700 |
lemma dvd_imp_le: "[| k dvd n; 0 < n |] ==> k \<le> (n::nat)" |
22718 | 701 |
apply (unfold dvd_def, clarify) |
702 |
apply (simp_all (no_asm_use) add: zero_less_mult_iff) |
|
703 |
apply (erule conjE) |
|
704 |
apply (rule le_trans) |
|
705 |
apply (rule_tac [2] le_refl [THEN mult_le_mono]) |
|
706 |
apply (erule_tac [2] Suc_leI, simp) |
|
707 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
708 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
709 |
lemma dvd_mult_div_cancel: "n dvd m ==> n * (m div n) = (m::nat)" |
22718 | 710 |
apply (subgoal_tac "m mod n = 0") |
711 |
apply (simp add: mult_div_cancel) |
|
712 |
apply (simp only: dvd_eq_mod_eq_0) |
|
713 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
714 |
|
21408 | 715 |
lemma le_imp_power_dvd: "!!i::nat. m \<le> n ==> i^m dvd i^n" |
22718 | 716 |
apply (unfold dvd_def) |
717 |
apply (erule linorder_not_less [THEN iffD2, THEN add_diff_inverse, THEN subst]) |
|
718 |
apply (simp add: power_add) |
|
719 |
done |
|
21408 | 720 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
721 |
lemma mod_add_left_eq: "((a::nat) + b) mod c = (a mod c + b) mod c" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
722 |
apply (rule trans [symmetric]) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
723 |
apply (rule mod_add1_eq, simp) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
724 |
apply (rule mod_add1_eq [symmetric]) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
725 |
done |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
726 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
727 |
lemma mod_add_right_eq: "(a+b) mod (c::nat) = (a + (b mod c)) mod c" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
728 |
apply (rule trans [symmetric]) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
729 |
apply (rule mod_add1_eq, simp) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
730 |
apply (rule mod_add1_eq [symmetric]) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
731 |
done |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
732 |
|
25162 | 733 |
lemma nat_zero_less_power_iff [simp]: "(x^n > 0) = (x > (0::nat) | n=0)" |
22718 | 734 |
by (induct n) auto |
21408 | 735 |
|
736 |
lemma power_le_dvd [rule_format]: "k^j dvd n --> i\<le>j --> k^i dvd (n::nat)" |
|
22718 | 737 |
apply (induct j) |
738 |
apply (simp_all add: le_Suc_eq) |
|
739 |
apply (blast dest!: dvd_mult_right) |
|
740 |
done |
|
21408 | 741 |
|
742 |
lemma power_dvd_imp_le: "[|i^m dvd i^n; (1::nat) < i|] ==> m \<le> n" |
|
22718 | 743 |
apply (rule power_le_imp_le_exp, assumption) |
744 |
apply (erule dvd_imp_le, simp) |
|
745 |
done |
|
21408 | 746 |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
747 |
lemma mod_eq_0_iff: "(m mod d = 0) = (\<exists>q::nat. m = d*q)" |
22718 | 748 |
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
|
749 |
|
22718 | 750 |
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
|
751 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
752 |
(*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
|
753 |
lemma mod_eqD: "(m mod d = r) ==> \<exists>q::nat. m = r + q*d" |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
754 |
apply (cut_tac a = m in mod_div_equality) |
22718 | 755 |
apply (simp only: add_ac) |
756 |
apply (blast intro: sym) |
|
757 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
758 |
|
13152 | 759 |
lemma split_div: |
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
760 |
"P(n div k :: nat) = |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
761 |
((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
|
762 |
(is "?P = ?Q" is "_ = (_ \<and> (_ \<longrightarrow> ?R))") |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
763 |
proof |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
764 |
assume P: ?P |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
765 |
show ?Q |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
766 |
proof (cases) |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
767 |
assume "k = 0" |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
768 |
with P show ?Q by simp |
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
769 |
next |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
770 |
assume not0: "k \<noteq> 0" |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
771 |
thus ?Q |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
772 |
proof (simp, intro allI impI) |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
773 |
fix i j |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
774 |
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
|
775 |
show "P i" |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
776 |
proof (cases) |
22718 | 777 |
assume "i = 0" |
778 |
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
|
779 |
next |
22718 | 780 |
assume "i \<noteq> 0" |
781 |
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
|
782 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
783 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
784 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
785 |
next |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
786 |
assume Q: ?Q |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
787 |
show ?P |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
788 |
proof (cases) |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
789 |
assume "k = 0" |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
790 |
with Q show ?P by simp |
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
791 |
next |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
792 |
assume not0: "k \<noteq> 0" |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
793 |
with Q have R: ?R by simp |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
794 |
from not0 R[THEN spec,of "n div k",THEN spec, of "n mod k"] |
13517 | 795 |
show ?P by simp |
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
796 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
797 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
798 |
|
13882 | 799 |
lemma split_div_lemma: |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
800 |
assumes "0 < n" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
801 |
shows "n * q \<le> m \<and> m < n * Suc q \<longleftrightarrow> q = ((m\<Colon>nat) div n)" (is "?lhs \<longleftrightarrow> ?rhs") |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
802 |
proof |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
803 |
assume ?rhs |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
804 |
with mult_div_cancel have nq: "n * q = m - (m mod n)" by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
805 |
then have A: "n * q \<le> m" by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
806 |
have "n - (m mod n) > 0" using mod_less_divisor assms by auto |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
807 |
then have "m < m + (n - (m mod n))" by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
808 |
then have "m < n + (m - (m mod n))" by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
809 |
with nq have "m < n + n * q" by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
810 |
then have B: "m < n * Suc q" by simp |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
811 |
from A B show ?lhs .. |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
812 |
next |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
813 |
assume P: ?lhs |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
814 |
then have "divmod_rel m n q (m - n * q)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
815 |
unfolding divmod_rel_def by (auto simp add: mult_ac) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
816 |
then show ?rhs using divmod_rel by (rule divmod_rel_unique_div) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
817 |
qed |
13882 | 818 |
|
819 |
theorem split_div': |
|
820 |
"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
|
821 |
(\<exists>q. (n * q \<le> m \<and> m < n * (Suc q)) \<and> P q))" |
13882 | 822 |
apply (case_tac "0 < n") |
823 |
apply (simp only: add: split_div_lemma) |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
824 |
apply simp_all |
13882 | 825 |
done |
826 |
||
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
827 |
lemma split_mod: |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
828 |
"P(n mod k :: nat) = |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
829 |
((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
|
830 |
(is "?P = ?Q" is "_ = (_ \<and> (_ \<longrightarrow> ?R))") |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
831 |
proof |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
832 |
assume P: ?P |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
833 |
show ?Q |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
834 |
proof (cases) |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
835 |
assume "k = 0" |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
836 |
with P show ?Q by simp |
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
837 |
next |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
838 |
assume not0: "k \<noteq> 0" |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
839 |
thus ?Q |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
840 |
proof (simp, intro allI impI) |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
841 |
fix i j |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
842 |
assume "n = k*i + j" "j < k" |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
843 |
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
|
844 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
845 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
846 |
next |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
847 |
assume Q: ?Q |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
848 |
show ?P |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
849 |
proof (cases) |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
850 |
assume "k = 0" |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
851 |
with Q show ?P by simp |
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
852 |
next |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
853 |
assume not0: "k \<noteq> 0" |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
854 |
with Q have R: ?R by simp |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
855 |
from not0 R[THEN spec,of "n div k",THEN spec, of "n mod k"] |
13517 | 856 |
show ?P by simp |
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
857 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
858 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
859 |
|
13882 | 860 |
theorem mod_div_equality': "(m::nat) mod n = m - (m div n) * n" |
861 |
apply (rule_tac P="%x. m mod n = x - (m div n) * n" in |
|
862 |
subst [OF mod_div_equality [of _ n]]) |
|
863 |
apply arith |
|
864 |
done |
|
865 |
||
22800 | 866 |
lemma div_mod_equality': |
867 |
fixes m n :: nat |
|
868 |
shows "m div n * n = m - m mod n" |
|
869 |
proof - |
|
870 |
have "m mod n \<le> m mod n" .. |
|
871 |
from div_mod_equality have |
|
872 |
"m div n * n + m mod n - m mod n = m - m mod n" by simp |
|
873 |
with diff_add_assoc [OF `m mod n \<le> m mod n`, of "m div n * n"] have |
|
874 |
"m div n * n + (m mod n - m mod n) = m - m mod n" |
|
875 |
by simp |
|
876 |
then show ?thesis by simp |
|
877 |
qed |
|
878 |
||
879 |
||
25942 | 880 |
subsubsection {*An ``induction'' law for modulus arithmetic.*} |
14640 | 881 |
|
882 |
lemma mod_induct_0: |
|
883 |
assumes step: "\<forall>i<p. P i \<longrightarrow> P ((Suc i) mod p)" |
|
884 |
and base: "P i" and i: "i<p" |
|
885 |
shows "P 0" |
|
886 |
proof (rule ccontr) |
|
887 |
assume contra: "\<not>(P 0)" |
|
888 |
from i have p: "0<p" by simp |
|
889 |
have "\<forall>k. 0<k \<longrightarrow> \<not> P (p-k)" (is "\<forall>k. ?A k") |
|
890 |
proof |
|
891 |
fix k |
|
892 |
show "?A k" |
|
893 |
proof (induct k) |
|
894 |
show "?A 0" by simp -- "by contradiction" |
|
895 |
next |
|
896 |
fix n |
|
897 |
assume ih: "?A n" |
|
898 |
show "?A (Suc n)" |
|
899 |
proof (clarsimp) |
|
22718 | 900 |
assume y: "P (p - Suc n)" |
901 |
have n: "Suc n < p" |
|
902 |
proof (rule ccontr) |
|
903 |
assume "\<not>(Suc n < p)" |
|
904 |
hence "p - Suc n = 0" |
|
905 |
by simp |
|
906 |
with y contra show "False" |
|
907 |
by simp |
|
908 |
qed |
|
909 |
hence n2: "Suc (p - Suc n) = p-n" by arith |
|
910 |
from p have "p - Suc n < p" by arith |
|
911 |
with y step have z: "P ((Suc (p - Suc n)) mod p)" |
|
912 |
by blast |
|
913 |
show "False" |
|
914 |
proof (cases "n=0") |
|
915 |
case True |
|
916 |
with z n2 contra show ?thesis by simp |
|
917 |
next |
|
918 |
case False |
|
919 |
with p have "p-n < p" by arith |
|
920 |
with z n2 False ih show ?thesis by simp |
|
921 |
qed |
|
14640 | 922 |
qed |
923 |
qed |
|
924 |
qed |
|
925 |
moreover |
|
926 |
from i obtain k where "0<k \<and> i+k=p" |
|
927 |
by (blast dest: less_imp_add_positive) |
|
928 |
hence "0<k \<and> i=p-k" by auto |
|
929 |
moreover |
|
930 |
note base |
|
931 |
ultimately |
|
932 |
show "False" by blast |
|
933 |
qed |
|
934 |
||
935 |
lemma mod_induct: |
|
936 |
assumes step: "\<forall>i<p. P i \<longrightarrow> P ((Suc i) mod p)" |
|
937 |
and base: "P i" and i: "i<p" and j: "j<p" |
|
938 |
shows "P j" |
|
939 |
proof - |
|
940 |
have "\<forall>j<p. P j" |
|
941 |
proof |
|
942 |
fix j |
|
943 |
show "j<p \<longrightarrow> P j" (is "?A j") |
|
944 |
proof (induct j) |
|
945 |
from step base i show "?A 0" |
|
22718 | 946 |
by (auto elim: mod_induct_0) |
14640 | 947 |
next |
948 |
fix k |
|
949 |
assume ih: "?A k" |
|
950 |
show "?A (Suc k)" |
|
951 |
proof |
|
22718 | 952 |
assume suc: "Suc k < p" |
953 |
hence k: "k<p" by simp |
|
954 |
with ih have "P k" .. |
|
955 |
with step k have "P (Suc k mod p)" |
|
956 |
by blast |
|
957 |
moreover |
|
958 |
from suc have "Suc k mod p = Suc k" |
|
959 |
by simp |
|
960 |
ultimately |
|
961 |
show "P (Suc k)" by simp |
|
14640 | 962 |
qed |
963 |
qed |
|
964 |
qed |
|
965 |
with j show ?thesis by blast |
|
966 |
qed |
|
967 |
||
3366 | 968 |
end |