| author | haftmann | 
| Sun, 16 Oct 2016 09:31:06 +0200 | |
| changeset 64246 | 15d1ee6e847b | 
| parent 64244 | e7102c40783c | 
| child 64250 | 0cde0b4d4cb5 | 
| permissions | -rw-r--r-- | 
| 3366 | 1  | 
(* Title: HOL/Divides.thy  | 
2  | 
Author: Lawrence C Paulson, Cambridge University Computer Laboratory  | 
|
| 
6865
 
5577ffe4c2f1
now div and mod are overloaded; dvd is polymorphic
 
paulson 
parents: 
3366 
diff
changeset
 | 
3  | 
Copyright 1999 University of Cambridge  | 
| 18154 | 4  | 
*)  | 
| 3366 | 5  | 
|
| 60758 | 6  | 
section \<open>The division operators div and mod\<close>  | 
| 3366 | 7  | 
|
| 15131 | 8  | 
theory Divides  | 
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
9  | 
imports Parity  | 
| 15131 | 10  | 
begin  | 
| 3366 | 11  | 
|
| 60758 | 12  | 
subsection \<open>Abstract division in commutative semirings.\<close>  | 
| 25942 | 13  | 
|
| 
64164
 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 
haftmann 
parents: 
64014 
diff
changeset
 | 
14  | 
class semiring_div = semidom + semiring_modulo +  | 
| 
 
38c407446400
separate type class for arbitrary quotient and remainder partitions
 
haftmann 
parents: 
64014 
diff
changeset
 | 
15  | 
assumes div_by_0: "a div 0 = 0"  | 
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
16  | 
and div_0: "0 div a = 0"  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
17  | 
and div_mult_self1 [simp]: "b \<noteq> 0 \<Longrightarrow> (a + c * b) div b = c + a div b"  | 
| 30930 | 18  | 
and div_mult_mult1 [simp]: "c \<noteq> 0 \<Longrightarrow> (c * a) div (c * b) = a div b"  | 
| 25942 | 19  | 
begin  | 
20  | 
||
| 
60517
 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 
haftmann 
parents: 
60516 
diff
changeset
 | 
21  | 
subclass algebraic_semidom  | 
| 
60353
 
838025c6e278
implicit partial divison operation in integral domains
 
haftmann 
parents: 
60352 
diff
changeset
 | 
22  | 
proof  | 
| 
 
838025c6e278
implicit partial divison operation in integral domains
 
haftmann 
parents: 
60352 
diff
changeset
 | 
23  | 
fix b a  | 
| 
 
838025c6e278
implicit partial divison operation in integral domains
 
haftmann 
parents: 
60352 
diff
changeset
 | 
24  | 
assume "b \<noteq> 0"  | 
| 
 
838025c6e278
implicit partial divison operation in integral domains
 
haftmann 
parents: 
60352 
diff
changeset
 | 
25  | 
then show "a * b div b = a"  | 
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
26  | 
using div_mult_self1 [of b 0 a] by (simp add: ac_simps div_0)  | 
| 
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
27  | 
qed (simp add: div_by_0)  | 
| 58953 | 28  | 
|
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
29  | 
text \<open>@{const divide} and @{const modulo}\<close>
 | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
30  | 
|
| 26062 | 31  | 
lemma div_mod_equality: "((a div b) * b + a mod b) + c = a + c"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
32  | 
by (simp add: div_mult_mod_eq)  | 
| 26062 | 33  | 
|
34  | 
lemma div_mod_equality2: "(b * (a div b) + a mod b) + c = a + c"  | 
|
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
35  | 
by (simp add: mult_div_mod_eq)  | 
| 26062 | 36  | 
|
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
37  | 
lemma mod_by_0 [simp]: "a mod 0 = a"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
38  | 
using div_mult_mod_eq [of a zero] by simp  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
39  | 
|
| 
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
40  | 
lemma mod_0 [simp]: "0 mod a = 0"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
41  | 
using div_mult_mod_eq [of zero a] div_0 by simp  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
42  | 
|
| 
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
43  | 
lemma div_mult_self2 [simp]:  | 
| 
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
44  | 
assumes "b \<noteq> 0"  | 
| 
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
45  | 
shows "(a + b * c) div b = c + a div b"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
46  | 
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
 | 
47  | 
|
| 54221 | 48  | 
lemma div_mult_self3 [simp]:  | 
49  | 
assumes "b \<noteq> 0"  | 
|
50  | 
shows "(c * b + a) div b = c + a div b"  | 
|
51  | 
using assms by (simp add: add.commute)  | 
|
52  | 
||
53  | 
lemma div_mult_self4 [simp]:  | 
|
54  | 
assumes "b \<noteq> 0"  | 
|
55  | 
shows "(b * c + a) div b = c + a div b"  | 
|
56  | 
using assms by (simp add: add.commute)  | 
|
57  | 
||
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
58  | 
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
 | 
59  | 
proof (cases "b = 0")  | 
| 
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
60  | 
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
 | 
61  | 
next  | 
| 
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
62  | 
case False  | 
| 
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
63  | 
have "a + c * b = (a + c * b) div b * b + (a + c * b) mod b"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
64  | 
by (simp add: div_mult_mod_eq)  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
65  | 
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
 | 
66  | 
"\<dots> = (c + a div b) * b + (a + c * b) mod b"  | 
| 29667 | 67  | 
by (simp add: algebra_simps)  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
68  | 
finally have "a = a div b * b + (a + c * b) mod b"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
69  | 
by (simp add: add.commute [of a] add.assoc distrib_right)  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
70  | 
then have "a div b * b + (a + c * b) mod b = a div b * b + a mod b"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
71  | 
by (simp add: div_mult_mod_eq)  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
72  | 
then show ?thesis by simp  | 
| 
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
73  | 
qed  | 
| 
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
74  | 
|
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
75  | 
lemma mod_mult_self2 [simp]:  | 
| 54221 | 76  | 
"(a + b * c) mod b = a mod b"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
77  | 
by (simp add: mult.commute [of b])  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
78  | 
|
| 54221 | 79  | 
lemma mod_mult_self3 [simp]:  | 
80  | 
"(c * b + a) mod b = a mod b"  | 
|
81  | 
by (simp add: add.commute)  | 
|
82  | 
||
83  | 
lemma mod_mult_self4 [simp]:  | 
|
84  | 
"(b * c + a) mod b = a mod b"  | 
|
85  | 
by (simp add: add.commute)  | 
|
86  | 
||
| 60867 | 87  | 
lemma mod_mult_self1_is_0 [simp]:  | 
88  | 
"b * a mod b = 0"  | 
|
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
89  | 
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
 | 
90  | 
|
| 60867 | 91  | 
lemma mod_mult_self2_is_0 [simp]:  | 
92  | 
"a * b mod b = 0"  | 
|
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
93  | 
using mod_mult_self1 [of 0 a b] by simp  | 
| 26062 | 94  | 
|
| 60867 | 95  | 
lemma mod_by_1 [simp]:  | 
96  | 
"a mod 1 = 0"  | 
|
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
97  | 
proof -  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
98  | 
from div_mult_mod_eq [of a one] div_by_1 have "a + a mod 1 = a" by simp  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
99  | 
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
 | 
100  | 
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
 | 
101  | 
qed  | 
| 
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
102  | 
|
| 60867 | 103  | 
lemma mod_self [simp]:  | 
104  | 
"a mod a = 0"  | 
|
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
105  | 
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
 | 
106  | 
|
| 
63499
 
9c9a59949887
Tuned looping simp rules in semiring_div
 
eberlm <eberlm@in.tum.de> 
parents: 
63417 
diff
changeset
 | 
107  | 
lemma div_add_self1:  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
108  | 
assumes "b \<noteq> 0"  | 
| 
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
109  | 
shows "(b + a) div b = a div b + 1"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
110  | 
using assms div_mult_self1 [of b a 1] by (simp add: add.commute)  | 
| 26062 | 111  | 
|
| 
63499
 
9c9a59949887
Tuned looping simp rules in semiring_div
 
eberlm <eberlm@in.tum.de> 
parents: 
63417 
diff
changeset
 | 
112  | 
lemma div_add_self2:  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
113  | 
assumes "b \<noteq> 0"  | 
| 
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
114  | 
shows "(a + b) div b = a div b + 1"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
115  | 
using assms div_add_self1 [of b a] by (simp add: add.commute)  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
116  | 
|
| 27676 | 117  | 
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
 | 
118  | 
"(b + a) mod b = a mod b"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
119  | 
using mod_mult_self1 [of a 1 b] by (simp add: add.commute)  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
120  | 
|
| 27676 | 121  | 
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
 | 
122  | 
"(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
 | 
123  | 
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
 | 
124  | 
|
| 58834 | 125  | 
lemma dvd_imp_mod_0 [simp]:  | 
126  | 
assumes "a dvd b"  | 
|
127  | 
shows "b mod a = 0"  | 
|
128  | 
proof -  | 
|
129  | 
from assms obtain c where "b = a * c" ..  | 
|
130  | 
then have "b mod a = a * c mod a" by simp  | 
|
131  | 
then show "b mod a = 0" by simp  | 
|
132  | 
qed  | 
|
| 
58911
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
133  | 
|
| 
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
134  | 
lemma mod_eq_0_iff_dvd:  | 
| 
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
135  | 
"a mod b = 0 \<longleftrightarrow> b dvd a"  | 
| 
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
136  | 
proof  | 
| 
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
137  | 
assume "b dvd a"  | 
| 
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
138  | 
then show "a mod b = 0" by simp  | 
| 
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
139  | 
next  | 
| 
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
140  | 
assume "a mod b = 0"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
141  | 
with div_mult_mod_eq [of a b] have "a div b * b = a" by simp  | 
| 
58911
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
142  | 
then have "a = b * (a div b)" by (simp add: ac_simps)  | 
| 
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
143  | 
then show "b dvd a" ..  | 
| 
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
144  | 
qed  | 
| 
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
145  | 
|
| 60867 | 146  | 
lemma dvd_eq_mod_eq_0 [nitpick_unfold, code]:  | 
| 58834 | 147  | 
"a dvd b \<longleftrightarrow> b mod a = 0"  | 
| 
58911
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
148  | 
by (simp add: mod_eq_0_iff_dvd)  | 
| 
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
149  | 
|
| 
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
150  | 
lemma mod_div_trivial [simp]:  | 
| 
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
151  | 
"a mod b div b = 0"  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
152  | 
proof (cases "b = 0")  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
153  | 
assume "b = 0"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
154  | 
thus ?thesis by simp  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
155  | 
next  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
156  | 
assume "b \<noteq> 0"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
157  | 
hence "a div b + a mod b div b = (a mod b + a div b * b) div b"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
158  | 
by (rule div_mult_self1 [symmetric])  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
159  | 
also have "\<dots> = a div b"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
160  | 
by (simp only: mod_div_mult_eq)  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
161  | 
also have "\<dots> = a div b + 0"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
162  | 
by simp  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
163  | 
finally show ?thesis  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
164  | 
by (rule add_left_imp_eq)  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
165  | 
qed  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
166  | 
|
| 
58911
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
167  | 
lemma mod_mod_trivial [simp]:  | 
| 
 
2cf595ee508b
proper oriented equivalence of dvd predicate and mod
 
haftmann 
parents: 
58889 
diff
changeset
 | 
168  | 
"a mod b mod b = a mod b"  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
169  | 
proof -  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
170  | 
have "a mod b mod b = (a mod b + a div b * b) mod b"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
171  | 
by (simp only: mod_mult_self1)  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
172  | 
also have "\<dots> = a mod b"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
173  | 
by (simp only: mod_div_mult_eq)  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
174  | 
finally show ?thesis .  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
175  | 
qed  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
176  | 
|
| 58834 | 177  | 
lemma dvd_mod_imp_dvd:  | 
178  | 
assumes "k dvd m mod n" and "k dvd n"  | 
|
179  | 
shows "k dvd m"  | 
|
180  | 
proof -  | 
|
181  | 
from assms have "k dvd (m div n) * n + m mod n"  | 
|
182  | 
by (simp only: dvd_add dvd_mult)  | 
|
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
183  | 
then show ?thesis by (simp add: div_mult_mod_eq)  | 
| 58834 | 184  | 
qed  | 
| 
30078
 
beee83623cc9
move lemma dvd_mod_imp_dvd into class semiring_div
 
huffman 
parents: 
30052 
diff
changeset
 | 
185  | 
|
| 60758 | 186  | 
text \<open>Addition respects modular equivalence.\<close>  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
187  | 
|
| 61799 | 188  | 
lemma mod_add_left_eq: \<comment> \<open>FIXME reorient\<close>  | 
| 60867 | 189  | 
"(a + b) mod c = (a mod c + b) mod c"  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
190  | 
proof -  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
191  | 
have "(a + b) mod c = (a div c * c + a mod c + b) mod c"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
192  | 
by (simp only: div_mult_mod_eq)  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
193  | 
also have "\<dots> = (a mod c + b + a div c * c) mod c"  | 
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
194  | 
by (simp only: ac_simps)  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
195  | 
also have "\<dots> = (a mod c + b) mod c"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
196  | 
by (rule mod_mult_self1)  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
197  | 
finally show ?thesis .  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
198  | 
qed  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
199  | 
|
| 61799 | 200  | 
lemma mod_add_right_eq: \<comment> \<open>FIXME reorient\<close>  | 
| 60867 | 201  | 
"(a + b) mod c = (a + b mod c) mod c"  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
202  | 
proof -  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
203  | 
have "(a + b) mod c = (a + (b div c * c + b mod c)) mod c"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
204  | 
by (simp only: div_mult_mod_eq)  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
205  | 
also have "\<dots> = (a + b mod c + b div c * c) mod c"  | 
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
206  | 
by (simp only: ac_simps)  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
207  | 
also have "\<dots> = (a + b mod c) mod c"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
208  | 
by (rule mod_mult_self1)  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
209  | 
finally show ?thesis .  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
210  | 
qed  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
211  | 
|
| 61799 | 212  | 
lemma mod_add_eq: \<comment> \<open>FIXME reorient\<close>  | 
| 60867 | 213  | 
"(a + b) mod c = (a mod c + b mod c) mod c"  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
214  | 
by (rule trans [OF mod_add_left_eq mod_add_right_eq])  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
215  | 
|
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
216  | 
lemma mod_add_cong:  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
217  | 
assumes "a mod c = a' mod c"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
218  | 
assumes "b mod c = b' mod c"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
219  | 
shows "(a + b) mod c = (a' + b') mod c"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
220  | 
proof -  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
221  | 
have "(a mod c + b mod c) mod c = (a' mod c + b' mod c) mod c"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
222  | 
unfolding assms ..  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
223  | 
thus ?thesis  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
224  | 
by (simp only: mod_add_eq [symmetric])  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
225  | 
qed  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
226  | 
|
| 60758 | 227  | 
text \<open>Multiplication respects modular equivalence.\<close>  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
228  | 
|
| 61799 | 229  | 
lemma mod_mult_left_eq: \<comment> \<open>FIXME reorient\<close>  | 
| 60867 | 230  | 
"(a * b) mod c = ((a mod c) * b) mod c"  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
231  | 
proof -  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
232  | 
have "(a * b) mod c = ((a div c * c + a mod c) * b) mod c"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
233  | 
by (simp only: div_mult_mod_eq)  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
234  | 
also have "\<dots> = (a mod c * b + a div c * b * c) mod c"  | 
| 29667 | 235  | 
by (simp only: algebra_simps)  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
236  | 
also have "\<dots> = (a mod c * b) mod c"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
237  | 
by (rule mod_mult_self1)  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
238  | 
finally show ?thesis .  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
239  | 
qed  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
240  | 
|
| 61799 | 241  | 
lemma mod_mult_right_eq: \<comment> \<open>FIXME reorient\<close>  | 
| 60867 | 242  | 
"(a * b) mod c = (a * (b mod c)) mod c"  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
243  | 
proof -  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
244  | 
have "(a * b) mod c = (a * (b div c * c + b mod c)) mod c"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
245  | 
by (simp only: div_mult_mod_eq)  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
246  | 
also have "\<dots> = (a * (b mod c) + a * (b div c) * c) mod c"  | 
| 29667 | 247  | 
by (simp only: algebra_simps)  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
248  | 
also have "\<dots> = (a * (b mod c)) mod c"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
249  | 
by (rule mod_mult_self1)  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
250  | 
finally show ?thesis .  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
251  | 
qed  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
252  | 
|
| 61799 | 253  | 
lemma mod_mult_eq: \<comment> \<open>FIXME reorient\<close>  | 
| 60867 | 254  | 
"(a * b) mod c = ((a mod c) * (b mod c)) mod c"  | 
| 
29403
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
255  | 
by (rule trans [OF mod_mult_left_eq mod_mult_right_eq])  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
256  | 
|
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
257  | 
lemma mod_mult_cong:  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
258  | 
assumes "a mod c = a' mod c"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
259  | 
assumes "b mod c = b' mod c"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
260  | 
shows "(a * b) mod c = (a' * b') mod c"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
261  | 
proof -  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
262  | 
have "(a mod c * (b mod c)) mod c = (a' mod c * (b' mod c)) mod c"  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
263  | 
unfolding assms ..  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
264  | 
thus ?thesis  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
265  | 
by (simp only: mod_mult_eq [symmetric])  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
266  | 
qed  | 
| 
 
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
 
huffman 
parents: 
29252 
diff
changeset
 | 
267  | 
|
| 60758 | 268  | 
text \<open>Exponentiation respects modular equivalence.\<close>  | 
| 47164 | 269  | 
|
| 60867 | 270  | 
lemma power_mod: "(a mod b) ^ n mod b = a ^ n mod b"  | 
| 47164 | 271  | 
apply (induct n, simp_all)  | 
272  | 
apply (rule mod_mult_right_eq [THEN trans])  | 
|
273  | 
apply (simp (no_asm_simp))  | 
|
274  | 
apply (rule mod_mult_eq [symmetric])  | 
|
275  | 
done  | 
|
276  | 
||
| 29404 | 277  | 
lemma mod_mod_cancel:  | 
278  | 
assumes "c dvd b"  | 
|
279  | 
shows "a mod b mod c = a mod c"  | 
|
280  | 
proof -  | 
|
| 60758 | 281  | 
from \<open>c dvd b\<close> obtain k where "b = c * k"  | 
| 29404 | 282  | 
by (rule dvdE)  | 
283  | 
have "a mod b mod c = a mod (c * k) mod c"  | 
|
| 60758 | 284  | 
by (simp only: \<open>b = c * k\<close>)  | 
| 29404 | 285  | 
also have "\<dots> = (a mod (c * k) + a div (c * k) * k * c) mod c"  | 
286  | 
by (simp only: mod_mult_self1)  | 
|
287  | 
also have "\<dots> = (a div (c * k) * (c * k) + a mod (c * k)) mod c"  | 
|
| 58786 | 288  | 
by (simp only: ac_simps)  | 
| 29404 | 289  | 
also have "\<dots> = a mod c"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
290  | 
by (simp only: div_mult_mod_eq)  | 
| 29404 | 291  | 
finally show ?thesis .  | 
292  | 
qed  | 
|
293  | 
||
| 30930 | 294  | 
lemma div_mult_mult2 [simp]:  | 
295  | 
"c \<noteq> 0 \<Longrightarrow> (a * c) div (b * c) = a div b"  | 
|
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
296  | 
by (drule div_mult_mult1) (simp add: mult.commute)  | 
| 30930 | 297  | 
|
298  | 
lemma div_mult_mult1_if [simp]:  | 
|
299  | 
"(c * a) div (c * b) = (if c = 0 then 0 else a div b)"  | 
|
300  | 
by simp_all  | 
|
| 30476 | 301  | 
|
| 30930 | 302  | 
lemma mod_mult_mult1:  | 
303  | 
"(c * a) mod (c * b) = c * (a mod b)"  | 
|
304  | 
proof (cases "c = 0")  | 
|
305  | 
case True then show ?thesis by simp  | 
|
306  | 
next  | 
|
307  | 
case False  | 
|
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
308  | 
from div_mult_mod_eq  | 
| 30930 | 309  | 
have "((c * a) div (c * b)) * (c * b) + (c * a) mod (c * b) = c * a" .  | 
310  | 
with False have "c * ((a div b) * b + a mod b) + (c * a) mod (c * b)  | 
|
311  | 
= c * a + c * (a mod b)" by (simp add: algebra_simps)  | 
|
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
312  | 
with div_mult_mod_eq show ?thesis by simp  | 
| 30930 | 313  | 
qed  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
314  | 
|
| 30930 | 315  | 
lemma mod_mult_mult2:  | 
316  | 
"(a * c) mod (b * c) = (a mod b) * c"  | 
|
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
317  | 
using mod_mult_mult1 [of c a b] by (simp add: mult.commute)  | 
| 30930 | 318  | 
|
| 47159 | 319  | 
lemma mult_mod_left: "(a mod b) * c = (a * c) mod (b * c)"  | 
320  | 
by (fact mod_mult_mult2 [symmetric])  | 
|
321  | 
||
322  | 
lemma mult_mod_right: "c * (a mod b) = (c * a) mod (c * b)"  | 
|
323  | 
by (fact mod_mult_mult1 [symmetric])  | 
|
324  | 
||
| 
31662
 
57f7ef0dba8e
generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
 
huffman 
parents: 
31661 
diff
changeset
 | 
325  | 
lemma dvd_mod: "k dvd m \<Longrightarrow> k dvd n \<Longrightarrow> k dvd (m mod n)"  | 
| 
 
57f7ef0dba8e
generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
 
huffman 
parents: 
31661 
diff
changeset
 | 
326  | 
unfolding dvd_def by (auto simp add: mod_mult_mult1)  | 
| 
 
57f7ef0dba8e
generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
 
huffman 
parents: 
31661 
diff
changeset
 | 
327  | 
|
| 
 
57f7ef0dba8e
generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
 
huffman 
parents: 
31661 
diff
changeset
 | 
328  | 
lemma dvd_mod_iff: "k dvd n \<Longrightarrow> k dvd (m mod n) \<longleftrightarrow> k dvd m"  | 
| 
 
57f7ef0dba8e
generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
 
huffman 
parents: 
31661 
diff
changeset
 | 
329  | 
by (blast intro: dvd_mod_imp_dvd dvd_mod)  | 
| 
 
57f7ef0dba8e
generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
 
huffman 
parents: 
31661 
diff
changeset
 | 
330  | 
|
| 
63317
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
331  | 
lemma div_div_eq_right:  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
332  | 
assumes "c dvd b" "b dvd a"  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
333  | 
shows "a div (b div c) = a div b * c"  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
334  | 
proof -  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
335  | 
from assms have "a div b * c = (a * c) div b"  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
336  | 
by (subst dvd_div_mult) simp_all  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
337  | 
also from assms have "\<dots> = (a * c) div ((b div c) * c)" by simp  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
338  | 
also have "a * c div (b div c * c) = a div (b div c)"  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
339  | 
by (cases "c = 0") simp_all  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
340  | 
finally show ?thesis ..  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
341  | 
qed  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
342  | 
|
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
343  | 
lemma div_div_div_same:  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
344  | 
assumes "d dvd a" "d dvd b" "b dvd a"  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
345  | 
shows "(a div d) div (b div d) = a div b"  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
346  | 
using assms by (subst dvd_div_mult2_eq [symmetric]) simp_all  | 
| 
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63145 
diff
changeset
 | 
347  | 
|
| 
31661
 
1e252b8b2334
move lemma div_power into semiring_div context; class ring_div inherits from idom
 
huffman 
parents: 
31009 
diff
changeset
 | 
348  | 
end  | 
| 
 
1e252b8b2334
move lemma div_power into semiring_div context; class ring_div inherits from idom
 
huffman 
parents: 
31009 
diff
changeset
 | 
349  | 
|
| 
59833
 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 
haftmann 
parents: 
59816 
diff
changeset
 | 
350  | 
class ring_div = comm_ring_1 + semiring_div  | 
| 
29405
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
351  | 
begin  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
352  | 
|
| 
60353
 
838025c6e278
implicit partial divison operation in integral domains
 
haftmann 
parents: 
60352 
diff
changeset
 | 
353  | 
subclass idom_divide ..  | 
| 36634 | 354  | 
|
| 60758 | 355  | 
text \<open>Negation respects modular equivalence.\<close>  | 
| 
29405
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
356  | 
|
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
357  | 
lemma mod_minus_eq: "(- a) mod b = (- (a mod b)) mod b"  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
358  | 
proof -  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
359  | 
have "(- a) mod b = (- (a div b * b + a mod b)) mod b"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
360  | 
by (simp only: div_mult_mod_eq)  | 
| 
29405
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
361  | 
also have "\<dots> = (- (a mod b) + - (a div b) * b) mod b"  | 
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
362  | 
by (simp add: ac_simps)  | 
| 
29405
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
363  | 
also have "\<dots> = (- (a mod b)) mod b"  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
364  | 
by (rule mod_mult_self1)  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
365  | 
finally show ?thesis .  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
366  | 
qed  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
367  | 
|
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
368  | 
lemma mod_minus_cong:  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
369  | 
assumes "a mod b = a' mod b"  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
370  | 
shows "(- a) mod b = (- a') mod b"  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
371  | 
proof -  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
372  | 
have "(- (a mod b)) mod b = (- (a' mod b)) mod b"  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
373  | 
unfolding assms ..  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
374  | 
thus ?thesis  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
375  | 
by (simp only: mod_minus_eq [symmetric])  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
376  | 
qed  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
377  | 
|
| 60758 | 378  | 
text \<open>Subtraction respects modular equivalence.\<close>  | 
| 
29405
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
379  | 
|
| 
54230
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
54227 
diff
changeset
 | 
380  | 
lemma mod_diff_left_eq:  | 
| 
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
54227 
diff
changeset
 | 
381  | 
"(a - b) mod c = (a mod c - b) mod c"  | 
| 
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
54227 
diff
changeset
 | 
382  | 
using mod_add_cong [of a c "a mod c" "- b" "- b"] by simp  | 
| 
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
54227 
diff
changeset
 | 
383  | 
|
| 
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
54227 
diff
changeset
 | 
384  | 
lemma mod_diff_right_eq:  | 
| 
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
54227 
diff
changeset
 | 
385  | 
"(a - b) mod c = (a - b mod c) mod c"  | 
| 
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
54227 
diff
changeset
 | 
386  | 
using mod_add_cong [of a c a "- b" "- (b mod c)"] mod_minus_cong [of "b mod c" c b] by simp  | 
| 
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
54227 
diff
changeset
 | 
387  | 
|
| 
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
54227 
diff
changeset
 | 
388  | 
lemma mod_diff_eq:  | 
| 
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
54227 
diff
changeset
 | 
389  | 
"(a - b) mod c = (a mod c - b mod c) mod c"  | 
| 
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
54227 
diff
changeset
 | 
390  | 
using mod_add_cong [of a c "a mod c" "- b" "- (b mod c)"] mod_minus_cong [of "b mod c" c b] by simp  | 
| 
29405
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
391  | 
|
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
392  | 
lemma mod_diff_cong:  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
393  | 
assumes "a mod c = a' mod c"  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
394  | 
assumes "b mod c = b' mod c"  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
395  | 
shows "(a - b) mod c = (a' - b') mod c"  | 
| 
54230
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
54227 
diff
changeset
 | 
396  | 
using assms mod_add_cong [of a c a' "- b" "- b'"] mod_minus_cong [of b c "b'"] by simp  | 
| 
29405
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
397  | 
|
| 30180 | 398  | 
lemma dvd_neg_div: "y dvd x \<Longrightarrow> -x div y = - (x div y)"  | 
399  | 
apply (case_tac "y = 0") apply simp  | 
|
400  | 
apply (auto simp add: dvd_def)  | 
|
401  | 
apply (subgoal_tac "-(y * k) = y * - k")  | 
|
| 
57492
 
74bf65a1910a
Hypsubst preserves equality hypotheses
 
Thomas Sewell <thomas.sewell@nicta.com.au> 
parents: 
55440 
diff
changeset
 | 
402  | 
apply (simp only:)  | 
| 64240 | 403  | 
apply (erule nonzero_mult_div_cancel_left)  | 
| 30180 | 404  | 
apply simp  | 
405  | 
done  | 
|
406  | 
||
407  | 
lemma dvd_div_neg: "y dvd x \<Longrightarrow> x div -y = - (x div y)"  | 
|
408  | 
apply (case_tac "y = 0") apply simp  | 
|
409  | 
apply (auto simp add: dvd_def)  | 
|
410  | 
apply (subgoal_tac "y * k = -y * -k")  | 
|
| 64240 | 411  | 
apply (erule ssubst, rule nonzero_mult_div_cancel_left)  | 
| 30180 | 412  | 
apply simp  | 
413  | 
apply simp  | 
|
414  | 
done  | 
|
415  | 
||
| 60867 | 416  | 
lemma div_diff [simp]:  | 
417  | 
"z dvd x \<Longrightarrow> z dvd y \<Longrightarrow> (x - y) div z = x div z - y div z"  | 
|
418  | 
using div_add [of _ _ "- y"] by (simp add: dvd_neg_div)  | 
|
| 59380 | 419  | 
|
| 47159 | 420  | 
lemma div_minus_minus [simp]: "(-a) div (-b) = a div b"  | 
421  | 
using div_mult_mult1 [of "- 1" a b]  | 
|
422  | 
unfolding neg_equal_0_iff_equal by simp  | 
|
423  | 
||
424  | 
lemma mod_minus_minus [simp]: "(-a) mod (-b) = - (a mod b)"  | 
|
425  | 
using mod_mult_mult1 [of "- 1" a b] by simp  | 
|
426  | 
||
427  | 
lemma div_minus_right: "a div (-b) = (-a) div b"  | 
|
428  | 
using div_minus_minus [of "-a" b] by simp  | 
|
429  | 
||
430  | 
lemma mod_minus_right: "a mod (-b) = - ((-a) mod b)"  | 
|
431  | 
using mod_minus_minus [of "-a" b] by simp  | 
|
432  | 
||
| 47160 | 433  | 
lemma div_minus1_right [simp]: "a div (-1) = -a"  | 
434  | 
using div_minus_right [of a 1] by simp  | 
|
435  | 
||
436  | 
lemma mod_minus1_right [simp]: "a mod (-1) = 0"  | 
|
437  | 
using mod_minus_right [of a 1] by simp  | 
|
438  | 
||
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
439  | 
lemma minus_mod_self2 [simp]:  | 
| 54221 | 440  | 
"(a - b) mod b = a mod b"  | 
441  | 
by (simp add: mod_diff_right_eq)  | 
|
442  | 
||
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
443  | 
lemma minus_mod_self1 [simp]:  | 
| 54221 | 444  | 
"(b - a) mod b = - a mod b"  | 
| 
54230
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
54227 
diff
changeset
 | 
445  | 
using mod_add_self2 [of "- a" b] by simp  | 
| 54221 | 446  | 
|
| 
29405
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
447  | 
end  | 
| 
 
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
 
huffman 
parents: 
29404 
diff
changeset
 | 
448  | 
|
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
449  | 
|
| 60758 | 450  | 
subsubsection \<open>Parity and division\<close>  | 
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
451  | 
|
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
452  | 
class semiring_div_parity = semiring_div + comm_semiring_1_cancel + numeral +  | 
| 
54226
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
453  | 
assumes parity: "a mod 2 = 0 \<or> a mod 2 = 1"  | 
| 58786 | 454  | 
assumes one_mod_two_eq_one [simp]: "1 mod 2 = 1"  | 
| 
58710
 
7216a10d69ba
augmented and tuned facts on even/odd and division
 
haftmann 
parents: 
58646 
diff
changeset
 | 
455  | 
assumes zero_not_eq_two: "0 \<noteq> 2"  | 
| 
54226
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
456  | 
begin  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
457  | 
|
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
458  | 
lemma parity_cases [case_names even odd]:  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
459  | 
assumes "a mod 2 = 0 \<Longrightarrow> P"  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
460  | 
assumes "a mod 2 = 1 \<Longrightarrow> P"  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
461  | 
shows P  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
462  | 
using assms parity by blast  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
463  | 
|
| 58786 | 464  | 
lemma one_div_two_eq_zero [simp]:  | 
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
465  | 
"1 div 2 = 0"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
466  | 
proof (cases "2 = 0")  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
467  | 
case True then show ?thesis by simp  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
468  | 
next  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
469  | 
case False  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
470  | 
from div_mult_mod_eq have "1 div 2 * 2 + 1 mod 2 = 1" .  | 
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
471  | 
with one_mod_two_eq_one have "1 div 2 * 2 + 1 = 1" by simp  | 
| 58953 | 472  | 
then have "1 div 2 * 2 = 0" by (simp add: ac_simps add_left_imp_eq del: mult_eq_0_iff)  | 
473  | 
then have "1 div 2 = 0 \<or> 2 = 0" by simp  | 
|
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
474  | 
with False show ?thesis by auto  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
475  | 
qed  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
476  | 
|
| 58786 | 477  | 
lemma not_mod_2_eq_0_eq_1 [simp]:  | 
478  | 
"a mod 2 \<noteq> 0 \<longleftrightarrow> a mod 2 = 1"  | 
|
479  | 
by (cases a rule: parity_cases) simp_all  | 
|
480  | 
||
481  | 
lemma not_mod_2_eq_1_eq_0 [simp]:  | 
|
482  | 
"a mod 2 \<noteq> 1 \<longleftrightarrow> a mod 2 = 0"  | 
|
483  | 
by (cases a rule: parity_cases) simp_all  | 
|
484  | 
||
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
485  | 
subclass semiring_parity  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
486  | 
proof (unfold_locales, unfold dvd_eq_mod_eq_0 not_mod_2_eq_0_eq_1)  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
487  | 
show "1 mod 2 = 1"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
488  | 
by (fact one_mod_two_eq_one)  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
489  | 
next  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
490  | 
fix a b  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
491  | 
assume "a mod 2 = 1"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
492  | 
moreover assume "b mod 2 = 1"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
493  | 
ultimately show "(a + b) mod 2 = 0"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
494  | 
using mod_add_eq [of a b 2] by simp  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
495  | 
next  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
496  | 
fix a b  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
497  | 
assume "(a * b) mod 2 = 0"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
498  | 
then have "(a mod 2) * (b mod 2) = 0"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
499  | 
by (cases "a mod 2 = 0") (simp_all add: mod_mult_eq [of a b 2])  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
500  | 
then show "a mod 2 = 0 \<or> b mod 2 = 0"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
501  | 
by (rule divisors_zero)  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
502  | 
next  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
503  | 
fix a  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
504  | 
assume "a mod 2 = 1"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
505  | 
then have "a = a div 2 * 2 + 1" using div_mult_mod_eq [of a 2] by simp  | 
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
506  | 
then show "\<exists>b. a = b + 1" ..  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
507  | 
qed  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
508  | 
|
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
509  | 
lemma even_iff_mod_2_eq_zero:  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
510  | 
"even a \<longleftrightarrow> a mod 2 = 0"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
511  | 
by (fact dvd_eq_mod_eq_0)  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
512  | 
|
| 64014 | 513  | 
lemma odd_iff_mod_2_eq_one:  | 
514  | 
"odd a \<longleftrightarrow> a mod 2 = 1"  | 
|
515  | 
by (auto simp add: even_iff_mod_2_eq_zero)  | 
|
516  | 
||
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
517  | 
lemma even_succ_div_two [simp]:  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
518  | 
"even a \<Longrightarrow> (a + 1) div 2 = a div 2"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
519  | 
by (cases "a = 0") (auto elim!: evenE dest: mult_not_zero)  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
520  | 
|
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
521  | 
lemma odd_succ_div_two [simp]:  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
522  | 
"odd a \<Longrightarrow> (a + 1) div 2 = a div 2 + 1"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
523  | 
by (auto elim!: oddE simp add: zero_not_eq_two [symmetric] add.assoc)  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
524  | 
|
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
525  | 
lemma even_two_times_div_two:  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
526  | 
"even a \<Longrightarrow> 2 * (a div 2) = a"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
527  | 
by (fact dvd_mult_div_cancel)  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
528  | 
|
| 58834 | 529  | 
lemma odd_two_times_div_two_succ [simp]:  | 
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
530  | 
"odd a \<Longrightarrow> 2 * (a div 2) + 1 = a"  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
531  | 
using mult_div_mod_eq [of 2 a] by (simp add: even_iff_mod_2_eq_zero)  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
532  | 
|
| 
54226
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
533  | 
end  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
534  | 
|
| 25942 | 535  | 
|
| 60758 | 536  | 
subsection \<open>Generic numeral division with a pragmatic type class\<close>  | 
537  | 
||
538  | 
text \<open>  | 
|
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
539  | 
The following type class contains everything necessary to formulate  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
540  | 
a division algorithm in ring structures with numerals, restricted  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
541  | 
to its positive segments. This is its primary motiviation, and it  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
542  | 
could surely be formulated using a more fine-grained, more algebraic  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
543  | 
and less technical class hierarchy.  | 
| 60758 | 544  | 
\<close>  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
545  | 
|
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
546  | 
class semiring_numeral_div = semiring_div + comm_semiring_1_cancel + linordered_semidom +  | 
| 
59816
 
034b13f4efae
distributivity of partial minus establishes desired properties of dvd in semirings
 
haftmann 
parents: 
59807 
diff
changeset
 | 
547  | 
assumes div_less: "0 \<le> a \<Longrightarrow> a < b \<Longrightarrow> a div b = 0"  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
548  | 
and mod_less: " 0 \<le> a \<Longrightarrow> a < b \<Longrightarrow> a mod b = a"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
549  | 
and div_positive: "0 < b \<Longrightarrow> b \<le> a \<Longrightarrow> a div b > 0"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
550  | 
and mod_less_eq_dividend: "0 \<le> a \<Longrightarrow> a mod b \<le> a"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
551  | 
and pos_mod_bound: "0 < b \<Longrightarrow> a mod b < b"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
552  | 
and pos_mod_sign: "0 < b \<Longrightarrow> 0 \<le> a mod b"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
553  | 
and mod_mult2_eq: "0 \<le> c \<Longrightarrow> a mod (b * c) = b * (a div b mod c) + a mod b"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
554  | 
and div_mult2_eq: "0 \<le> c \<Longrightarrow> a div (b * c) = a div b div c"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
555  | 
assumes discrete: "a < b \<longleftrightarrow> a + 1 \<le> b"  | 
| 
61275
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
556  | 
fixes divmod :: "num \<Rightarrow> num \<Rightarrow> 'a \<times> 'a"  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
557  | 
and divmod_step :: "num \<Rightarrow> 'a \<times> 'a \<Rightarrow> 'a \<times> 'a"  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
558  | 
assumes divmod_def: "divmod m n = (numeral m div numeral n, numeral m mod numeral n)"  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
559  | 
and divmod_step_def: "divmod_step l qr = (let (q, r) = qr  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
560  | 
in if r \<ge> numeral l then (2 * q + 1, r - numeral l)  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
561  | 
else (2 * q, r))"  | 
| 61799 | 562  | 
\<comment> \<open>These are conceptually definitions but force generated code  | 
| 
61275
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
563  | 
to be monomorphic wrt. particular instances of this class which  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
564  | 
yields a significant speedup.\<close>  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
565  | 
|
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
566  | 
begin  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
567  | 
|
| 
54226
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
568  | 
subclass semiring_div_parity  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
569  | 
proof  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
570  | 
fix a  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
571  | 
show "a mod 2 = 0 \<or> a mod 2 = 1"  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
572  | 
proof (rule ccontr)  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
573  | 
assume "\<not> (a mod 2 = 0 \<or> a mod 2 = 1)"  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
574  | 
then have "a mod 2 \<noteq> 0" and "a mod 2 \<noteq> 1" by simp_all  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
575  | 
have "0 < 2" by simp  | 
| 
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
576  | 
with pos_mod_bound pos_mod_sign have "0 \<le> a mod 2" "a mod 2 < 2" by simp_all  | 
| 60758 | 577  | 
with \<open>a mod 2 \<noteq> 0\<close> have "0 < a mod 2" by simp  | 
| 
54226
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
578  | 
with discrete have "1 \<le> a mod 2" by simp  | 
| 60758 | 579  | 
with \<open>a mod 2 \<noteq> 1\<close> have "1 < a mod 2" by simp  | 
| 
54226
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
580  | 
with discrete have "2 \<le> a mod 2" by simp  | 
| 60758 | 581  | 
with \<open>a mod 2 < 2\<close> show False by simp  | 
| 
54226
 
e3df2a4e02fc
explicit type class for modelling even/odd parity
 
haftmann 
parents: 
54221 
diff
changeset
 | 
582  | 
qed  | 
| 
58646
 
cd63a4b12a33
specialized specification: avoid trivial instances
 
haftmann 
parents: 
58511 
diff
changeset
 | 
583  | 
next  | 
| 
 
cd63a4b12a33
specialized specification: avoid trivial instances
 
haftmann 
parents: 
58511 
diff
changeset
 | 
584  | 
show "1 mod 2 = 1"  | 
| 
 
cd63a4b12a33
specialized specification: avoid trivial instances
 
haftmann 
parents: 
58511 
diff
changeset
 | 
585  | 
by (rule mod_less) simp_all  | 
| 
58710
 
7216a10d69ba
augmented and tuned facts on even/odd and division
 
haftmann 
parents: 
58646 
diff
changeset
 | 
586  | 
next  | 
| 
 
7216a10d69ba
augmented and tuned facts on even/odd and division
 
haftmann 
parents: 
58646 
diff
changeset
 | 
587  | 
show "0 \<noteq> 2"  | 
| 
 
7216a10d69ba
augmented and tuned facts on even/odd and division
 
haftmann 
parents: 
58646 
diff
changeset
 | 
588  | 
by simp  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
589  | 
qed  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
590  | 
|
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
591  | 
lemma divmod_digit_1:  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
592  | 
assumes "0 \<le> a" "0 < b" and "b \<le> a mod (2 * b)"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
593  | 
shows "2 * (a div (2 * b)) + 1 = a div b" (is "?P")  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
594  | 
and "a mod (2 * b) - b = a mod b" (is "?Q")  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
595  | 
proof -  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
596  | 
from assms mod_less_eq_dividend [of a "2 * b"] have "b \<le> a"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
597  | 
by (auto intro: trans)  | 
| 60758 | 598  | 
with \<open>0 < b\<close> have "0 < a div b" by (auto intro: div_positive)  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
599  | 
then have [simp]: "1 \<le> a div b" by (simp add: discrete)  | 
| 60758 | 600  | 
with \<open>0 < b\<close> have mod_less: "a mod b < b" by (simp add: pos_mod_bound)  | 
| 63040 | 601  | 
define w where "w = a div b mod 2"  | 
602  | 
with parity have w_exhaust: "w = 0 \<or> w = 1" by auto  | 
|
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
603  | 
have mod_w: "a mod (2 * b) = a mod b + b * w"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
604  | 
by (simp add: w_def mod_mult2_eq ac_simps)  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
605  | 
from assms w_exhaust have "w = 1"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
606  | 
by (auto simp add: mod_w) (insert mod_less, auto)  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
607  | 
with mod_w have mod: "a mod (2 * b) = a mod b + b" by simp  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
608  | 
have "2 * (a div (2 * b)) = a div b - w"  | 
| 64246 | 609  | 
by (simp add: w_def div_mult2_eq minus_mod_eq_mult_div ac_simps)  | 
| 60758 | 610  | 
with \<open>w = 1\<close> have div: "2 * (a div (2 * b)) = a div b - 1" by simp  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
611  | 
then show ?P and ?Q  | 
| 60867 | 612  | 
by (simp_all add: div mod add_implies_diff [symmetric])  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
613  | 
qed  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
614  | 
|
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
615  | 
lemma divmod_digit_0:  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
616  | 
assumes "0 < b" and "a mod (2 * b) < b"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
617  | 
shows "2 * (a div (2 * b)) = a div b" (is "?P")  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
618  | 
and "a mod (2 * b) = a mod b" (is "?Q")  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
619  | 
proof -  | 
| 63040 | 620  | 
define w where "w = a div b mod 2"  | 
621  | 
with parity have w_exhaust: "w = 0 \<or> w = 1" by auto  | 
|
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
622  | 
have mod_w: "a mod (2 * b) = a mod b + b * w"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
623  | 
by (simp add: w_def mod_mult2_eq ac_simps)  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
624  | 
moreover have "b \<le> a mod b + b"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
625  | 
proof -  | 
| 60758 | 626  | 
from \<open>0 < b\<close> pos_mod_sign have "0 \<le> a mod b" by blast  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
627  | 
then have "0 + b \<le> a mod b + b" by (rule add_right_mono)  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
628  | 
then show ?thesis by simp  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
629  | 
qed  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
630  | 
moreover note assms w_exhaust  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
631  | 
ultimately have "w = 0" by auto  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
632  | 
with mod_w have mod: "a mod (2 * b) = a mod b" by simp  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
633  | 
have "2 * (a div (2 * b)) = a div b - w"  | 
| 64246 | 634  | 
by (simp add: w_def div_mult2_eq minus_mod_eq_mult_div ac_simps)  | 
| 60758 | 635  | 
with \<open>w = 0\<close> have div: "2 * (a div (2 * b)) = a div b" by simp  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
636  | 
then show ?P and ?Q  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
637  | 
by (simp_all add: div mod)  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
638  | 
qed  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
639  | 
|
| 60867 | 640  | 
lemma fst_divmod:  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
641  | 
"fst (divmod m n) = numeral m div numeral n"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
642  | 
by (simp add: divmod_def)  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
643  | 
|
| 60867 | 644  | 
lemma snd_divmod:  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
645  | 
"snd (divmod m n) = numeral m mod numeral n"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
646  | 
by (simp add: divmod_def)  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
647  | 
|
| 60758 | 648  | 
text \<open>  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
649  | 
This is a formulation of one step (referring to one digit position)  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
650  | 
in school-method division: compare the dividend at the current  | 
| 53070 | 651  | 
digit position with the remainder from previous division steps  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
652  | 
and evaluate accordingly.  | 
| 60758 | 653  | 
\<close>  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
654  | 
|
| 
61275
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
655  | 
lemma divmod_step_eq [simp]:  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
656  | 
"divmod_step l (q, r) = (if numeral l \<le> r  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
657  | 
then (2 * q + 1, r - numeral l) else (2 * q, r))"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
658  | 
by (simp add: divmod_step_def)  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
659  | 
|
| 60758 | 660  | 
text \<open>  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
661  | 
This is a formulation of school-method division.  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
662  | 
If the divisor is smaller than the dividend, terminate.  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
663  | 
If not, shift the dividend to the right until termination  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
664  | 
occurs and then reiterate single division steps in the  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
665  | 
opposite direction.  | 
| 60758 | 666  | 
\<close>  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
667  | 
|
| 60867 | 668  | 
lemma divmod_divmod_step:  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
669  | 
"divmod m n = (if m < n then (0, numeral m)  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
670  | 
else divmod_step n (divmod m (Num.Bit0 n)))"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
671  | 
proof (cases "m < n")  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
672  | 
case True then have "numeral m < numeral n" by simp  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
673  | 
then show ?thesis  | 
| 60867 | 674  | 
by (simp add: prod_eq_iff div_less mod_less fst_divmod snd_divmod)  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
675  | 
next  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
676  | 
case False  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
677  | 
have "divmod m n =  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
678  | 
divmod_step n (numeral m div (2 * numeral n),  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
679  | 
numeral m mod (2 * numeral n))"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
680  | 
proof (cases "numeral n \<le> numeral m mod (2 * numeral n)")  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
681  | 
case True  | 
| 60867 | 682  | 
with divmod_step_eq  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
683  | 
have "divmod_step n (numeral m div (2 * numeral n), numeral m mod (2 * numeral n)) =  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
684  | 
(2 * (numeral m div (2 * numeral n)) + 1, numeral m mod (2 * numeral n) - numeral n)"  | 
| 60867 | 685  | 
by simp  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
686  | 
moreover from True divmod_digit_1 [of "numeral m" "numeral n"]  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
687  | 
have "2 * (numeral m div (2 * numeral n)) + 1 = numeral m div numeral n"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
688  | 
and "numeral m mod (2 * numeral n) - numeral n = numeral m mod numeral n"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
689  | 
by simp_all  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
690  | 
ultimately show ?thesis by (simp only: divmod_def)  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
691  | 
next  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
692  | 
case False then have *: "numeral m mod (2 * numeral n) < numeral n"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
693  | 
by (simp add: not_le)  | 
| 60867 | 694  | 
with divmod_step_eq  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
695  | 
have "divmod_step n (numeral m div (2 * numeral n), numeral m mod (2 * numeral n)) =  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
696  | 
(2 * (numeral m div (2 * numeral n)), numeral m mod (2 * numeral n))"  | 
| 60867 | 697  | 
by auto  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
698  | 
moreover from * divmod_digit_0 [of "numeral n" "numeral m"]  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
699  | 
have "2 * (numeral m div (2 * numeral n)) = numeral m div numeral n"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
700  | 
and "numeral m mod (2 * numeral n) = numeral m mod numeral n"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
701  | 
by (simp_all only: zero_less_numeral)  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
702  | 
ultimately show ?thesis by (simp only: divmod_def)  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
703  | 
qed  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
704  | 
then have "divmod m n =  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
705  | 
divmod_step n (numeral m div numeral (Num.Bit0 n),  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
706  | 
numeral m mod numeral (Num.Bit0 n))"  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
707  | 
by (simp only: numeral.simps distrib mult_1)  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
708  | 
then have "divmod m n = divmod_step n (divmod m (Num.Bit0 n))"  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
709  | 
by (simp add: divmod_def)  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
710  | 
with False show ?thesis by simp  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
711  | 
qed  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
712  | 
|
| 61799 | 713  | 
text \<open>The division rewrite proper -- first, trivial results involving \<open>1\<close>\<close>  | 
| 60867 | 714  | 
|
| 
61275
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
715  | 
lemma divmod_trivial [simp]:  | 
| 60867 | 716  | 
"divmod Num.One Num.One = (numeral Num.One, 0)"  | 
717  | 
"divmod (Num.Bit0 m) Num.One = (numeral (Num.Bit0 m), 0)"  | 
|
718  | 
"divmod (Num.Bit1 m) Num.One = (numeral (Num.Bit1 m), 0)"  | 
|
719  | 
"divmod num.One (num.Bit0 n) = (0, Numeral1)"  | 
|
720  | 
"divmod num.One (num.Bit1 n) = (0, Numeral1)"  | 
|
721  | 
using divmod_divmod_step [of "Num.One"] by (simp_all add: divmod_def)  | 
|
722  | 
||
723  | 
text \<open>Division by an even number is a right-shift\<close>  | 
|
| 58953 | 724  | 
|
| 
61275
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
725  | 
lemma divmod_cancel [simp]:  | 
| 
53069
 
d165213e3924
execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
 
haftmann 
parents: 
53068 
diff
changeset
 | 
726  | 
"divmod (Num.Bit0 m) (Num.Bit0 n) = (case divmod m n of (q, r) \<Rightarrow> (q, 2 * r))" (is ?P)  | 
| 
 
d165213e3924
execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
 
haftmann 
parents: 
53068 
diff
changeset
 | 
727  | 
"divmod (Num.Bit1 m) (Num.Bit0 n) = (case divmod m n of (q, r) \<Rightarrow> (q, 2 * r + 1))" (is ?Q)  | 
| 
 
d165213e3924
execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
 
haftmann 
parents: 
53068 
diff
changeset
 | 
728  | 
proof -  | 
| 
 
d165213e3924
execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
 
haftmann 
parents: 
53068 
diff
changeset
 | 
729  | 
have *: "\<And>q. numeral (Num.Bit0 q) = 2 * numeral q"  | 
| 
 
d165213e3924
execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
 
haftmann 
parents: 
53068 
diff
changeset
 | 
730  | 
"\<And>q. numeral (Num.Bit1 q) = 2 * numeral q + 1"  | 
| 
 
d165213e3924
execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
 
haftmann 
parents: 
53068 
diff
changeset
 | 
731  | 
by (simp_all only: numeral_mult numeral.simps distrib) simp_all  | 
| 
 
d165213e3924
execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
 
haftmann 
parents: 
53068 
diff
changeset
 | 
732  | 
have "1 div 2 = 0" "1 mod 2 = 1" by (auto intro: div_less mod_less)  | 
| 
 
d165213e3924
execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
 
haftmann 
parents: 
53068 
diff
changeset
 | 
733  | 
then show ?P and ?Q  | 
| 60867 | 734  | 
by (simp_all add: fst_divmod snd_divmod prod_eq_iff split_def * [of m] * [of n] mod_mult_mult1  | 
735  | 
div_mult2_eq [of _ _ 2] mod_mult2_eq [of _ _ 2]  | 
|
736  | 
add.commute del: numeral_times_numeral)  | 
|
| 58953 | 737  | 
qed  | 
738  | 
||
| 60867 | 739  | 
text \<open>The really hard work\<close>  | 
740  | 
||
| 
61275
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
741  | 
lemma divmod_steps [simp]:  | 
| 60867 | 742  | 
"divmod (num.Bit0 m) (num.Bit1 n) =  | 
743  | 
(if m \<le> n then (0, numeral (num.Bit0 m))  | 
|
744  | 
else divmod_step (num.Bit1 n)  | 
|
745  | 
(divmod (num.Bit0 m)  | 
|
746  | 
(num.Bit0 (num.Bit1 n))))"  | 
|
747  | 
"divmod (num.Bit1 m) (num.Bit1 n) =  | 
|
748  | 
(if m < n then (0, numeral (num.Bit1 m))  | 
|
749  | 
else divmod_step (num.Bit1 n)  | 
|
750  | 
(divmod (num.Bit1 m)  | 
|
751  | 
(num.Bit0 (num.Bit1 n))))"  | 
|
752  | 
by (simp_all add: divmod_divmod_step)  | 
|
753  | 
||
| 
61275
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
754  | 
lemmas divmod_algorithm_code = divmod_step_eq divmod_trivial divmod_cancel divmod_steps  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
755  | 
|
| 60758 | 756  | 
text \<open>Special case: divisibility\<close>  | 
| 58953 | 757  | 
|
758  | 
definition divides_aux :: "'a \<times> 'a \<Rightarrow> bool"  | 
|
759  | 
where  | 
|
760  | 
"divides_aux qr \<longleftrightarrow> snd qr = 0"  | 
|
761  | 
||
762  | 
lemma divides_aux_eq [simp]:  | 
|
763  | 
"divides_aux (q, r) \<longleftrightarrow> r = 0"  | 
|
764  | 
by (simp add: divides_aux_def)  | 
|
765  | 
||
766  | 
lemma dvd_numeral_simp [simp]:  | 
|
767  | 
"numeral m dvd numeral n \<longleftrightarrow> divides_aux (divmod n m)"  | 
|
768  | 
by (simp add: divmod_def mod_eq_0_iff_dvd)  | 
|
| 
53069
 
d165213e3924
execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
 
haftmann 
parents: 
53068 
diff
changeset
 | 
769  | 
|
| 60867 | 770  | 
text \<open>Generic computation of quotient and remainder\<close>  | 
771  | 
||
772  | 
lemma numeral_div_numeral [simp]:  | 
|
773  | 
"numeral k div numeral l = fst (divmod k l)"  | 
|
774  | 
by (simp add: fst_divmod)  | 
|
775  | 
||
776  | 
lemma numeral_mod_numeral [simp]:  | 
|
777  | 
"numeral k mod numeral l = snd (divmod k l)"  | 
|
778  | 
by (simp add: snd_divmod)  | 
|
779  | 
||
780  | 
lemma one_div_numeral [simp]:  | 
|
781  | 
"1 div numeral n = fst (divmod num.One n)"  | 
|
782  | 
by (simp add: fst_divmod)  | 
|
783  | 
||
784  | 
lemma one_mod_numeral [simp]:  | 
|
785  | 
"1 mod numeral n = snd (divmod num.One n)"  | 
|
786  | 
by (simp add: snd_divmod)  | 
|
787  | 
||
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
788  | 
end  | 
| 
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
789  | 
|
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
790  | 
|
| 60758 | 791  | 
subsection \<open>Division on @{typ nat}\<close>
 | 
792  | 
||
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
793  | 
context  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
794  | 
begin  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
795  | 
|
| 60758 | 796  | 
text \<open>  | 
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
797  | 
  We define @{const divide} and @{const modulo} on @{typ nat} by means
 | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
798  | 
of a characteristic relation with two input arguments  | 
| 61076 | 799  | 
  @{term "m::nat"}, @{term "n::nat"} and two output arguments
 | 
800  | 
  @{term "q::nat"}(uotient) and @{term "r::nat"}(emainder).
 | 
|
| 60758 | 801  | 
\<close>  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
802  | 
|
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
803  | 
definition divmod_nat_rel :: "nat \<Rightarrow> nat \<Rightarrow> nat \<times> nat \<Rightarrow> bool" where  | 
| 
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
804  | 
"divmod_nat_rel m n qr \<longleftrightarrow>  | 
| 
30923
 
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
 
haftmann 
parents: 
30840 
diff
changeset
 | 
805  | 
m = fst qr * n + snd qr \<and>  | 
| 
 
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
 
haftmann 
parents: 
30840 
diff
changeset
 | 
806  | 
(if n = 0 then fst qr = 0 else if n > 0 then 0 \<le> snd qr \<and> snd qr < n else n < snd qr \<and> snd qr \<le> 0)"  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
807  | 
|
| 60758 | 808  | 
text \<open>@{const divmod_nat_rel} is total:\<close>
 | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
809  | 
|
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
810  | 
qualified lemma divmod_nat_rel_ex:  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
811  | 
obtains q r where "divmod_nat_rel m n (q, r)"  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
812  | 
proof (cases "n = 0")  | 
| 
30923
 
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
 
haftmann 
parents: 
30840 
diff
changeset
 | 
813  | 
case True with that show thesis  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
814  | 
by (auto simp add: divmod_nat_rel_def)  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
815  | 
next  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
816  | 
case False  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
817  | 
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
 | 
818  | 
proof (induct m)  | 
| 60758 | 819  | 
case 0 with \<open>n \<noteq> 0\<close>  | 
| 61076 | 820  | 
have "(0::nat) = 0 * n + 0 \<and> 0 < n" by simp  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
821  | 
then show ?case by blast  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
822  | 
next  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
823  | 
case (Suc m) then obtain q' r'  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
824  | 
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
 | 
825  | 
then show ?case proof (cases "Suc r' < n")  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
826  | 
case True  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
827  | 
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
 | 
828  | 
with True show ?thesis by blast  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
829  | 
next  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
830  | 
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
 | 
831  | 
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
 | 
832  | 
ultimately have "n = Suc r'" by auto  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
833  | 
with m have "Suc m = Suc q' * n + 0" by simp  | 
| 60758 | 834  | 
with \<open>n \<noteq> 0\<close> show ?thesis by blast  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
835  | 
qed  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
836  | 
qed  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
837  | 
with that show thesis  | 
| 60758 | 838  | 
using \<open>n \<noteq> 0\<close> by (auto simp add: divmod_nat_rel_def)  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
839  | 
qed  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
840  | 
|
| 60758 | 841  | 
text \<open>@{const divmod_nat_rel} is injective:\<close>
 | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
842  | 
|
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
843  | 
qualified lemma divmod_nat_rel_unique:  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
844  | 
assumes "divmod_nat_rel m n qr"  | 
| 
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
845  | 
and "divmod_nat_rel m n qr'"  | 
| 
30923
 
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
 
haftmann 
parents: 
30840 
diff
changeset
 | 
846  | 
shows "qr = qr'"  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
847  | 
proof (cases "n = 0")  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
848  | 
case True with assms show ?thesis  | 
| 
30923
 
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
 
haftmann 
parents: 
30840 
diff
changeset
 | 
849  | 
by (cases qr, cases qr')  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
850  | 
(simp add: divmod_nat_rel_def)  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
851  | 
next  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
852  | 
case False  | 
| 61076 | 853  | 
have aux: "\<And>q r q' r'. q' * n + r' = q * n + r \<Longrightarrow> r < n \<Longrightarrow> q' \<le> (q::nat)"  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
854  | 
apply (rule leI)  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
855  | 
apply (subst less_iff_Suc_add)  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
856  | 
apply (auto simp add: add_mult_distrib)  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
857  | 
done  | 
| 60758 | 858  | 
from \<open>n \<noteq> 0\<close> assms have *: "fst qr = fst qr'"  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
859  | 
by (auto simp add: divmod_nat_rel_def intro: order_antisym dest: aux sym)  | 
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53199 
diff
changeset
 | 
860  | 
with assms have "snd qr = snd qr'"  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
861  | 
by (simp add: divmod_nat_rel_def)  | 
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53199 
diff
changeset
 | 
862  | 
with * show ?thesis by (cases qr, cases qr') simp  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
863  | 
qed  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
864  | 
|
| 60758 | 865  | 
text \<open>  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
866  | 
We instantiate divisibility on the natural numbers by  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
867  | 
  means of @{const divmod_nat_rel}:
 | 
| 60758 | 868  | 
\<close>  | 
| 25942 | 869  | 
|
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
870  | 
qualified definition divmod_nat :: "nat \<Rightarrow> nat \<Rightarrow> nat \<times> nat" where  | 
| 37767 | 871  | 
"divmod_nat m n = (THE qr. divmod_nat_rel m n qr)"  | 
| 
30923
 
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
 
haftmann 
parents: 
30840 
diff
changeset
 | 
872  | 
|
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
873  | 
qualified lemma divmod_nat_rel_divmod_nat:  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
874  | 
"divmod_nat_rel m n (divmod_nat m n)"  | 
| 
30923
 
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
 
haftmann 
parents: 
30840 
diff
changeset
 | 
875  | 
proof -  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
876  | 
from divmod_nat_rel_ex  | 
| 
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
877  | 
obtain qr where rel: "divmod_nat_rel m n qr" .  | 
| 
30923
 
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
 
haftmann 
parents: 
30840 
diff
changeset
 | 
878  | 
then show ?thesis  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
879  | 
by (auto simp add: divmod_nat_def intro: theI elim: divmod_nat_rel_unique)  | 
| 
30923
 
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
 
haftmann 
parents: 
30840 
diff
changeset
 | 
880  | 
qed  | 
| 
 
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
 
haftmann 
parents: 
30840 
diff
changeset
 | 
881  | 
|
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
882  | 
qualified lemma divmod_nat_unique:  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
883  | 
assumes "divmod_nat_rel m n qr"  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
884  | 
shows "divmod_nat m n = qr"  | 
| 
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
885  | 
using assms by (auto intro: divmod_nat_rel_unique divmod_nat_rel_divmod_nat)  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
886  | 
|
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
887  | 
qualified lemma divmod_nat_zero: "divmod_nat m 0 = (0, m)"  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
888  | 
by (simp add: Divides.divmod_nat_unique divmod_nat_rel_def)  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
889  | 
|
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
890  | 
qualified lemma divmod_nat_zero_left: "divmod_nat 0 n = (0, 0)"  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
891  | 
by (simp add: Divides.divmod_nat_unique divmod_nat_rel_def)  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
892  | 
|
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
893  | 
qualified lemma divmod_nat_base: "m < n \<Longrightarrow> divmod_nat m n = (0, m)"  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
894  | 
by (simp add: divmod_nat_unique divmod_nat_rel_def)  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
895  | 
|
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
896  | 
qualified lemma divmod_nat_step:  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
897  | 
assumes "0 < n" and "n \<le> m"  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
898  | 
shows "divmod_nat m n = apfst Suc (divmod_nat (m - n) n)"  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
899  | 
proof (rule divmod_nat_unique)  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
900  | 
have "divmod_nat_rel (m - n) n (divmod_nat (m - n) n)"  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
901  | 
by (fact divmod_nat_rel_divmod_nat)  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
902  | 
then show "divmod_nat_rel m n (apfst Suc (divmod_nat (m - n) n))"  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
903  | 
unfolding divmod_nat_rel_def using assms by auto  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
904  | 
qed  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
905  | 
|
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
906  | 
end  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
907  | 
|
| 
60429
 
d3d1e185cd63
uniform _ div _ as infix syntax for ring division
 
haftmann 
parents: 
60353 
diff
changeset
 | 
908  | 
instantiation nat :: semiring_div  | 
| 
60352
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
909  | 
begin  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
910  | 
|
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
911  | 
definition divide_nat where  | 
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
912  | 
div_nat_def: "m div n = fst (Divides.divmod_nat m n)"  | 
| 
60352
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
913  | 
|
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
914  | 
definition modulo_nat where  | 
| 
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
915  | 
mod_nat_def: "m mod n = snd (Divides.divmod_nat m n)"  | 
| 
46551
 
866bce5442a3
simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
 
huffman 
parents: 
46026 
diff
changeset
 | 
916  | 
|
| 
 
866bce5442a3
simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
 
huffman 
parents: 
46026 
diff
changeset
 | 
917  | 
lemma fst_divmod_nat [simp]:  | 
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
918  | 
"fst (Divides.divmod_nat m n) = m div n"  | 
| 
46551
 
866bce5442a3
simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
 
huffman 
parents: 
46026 
diff
changeset
 | 
919  | 
by (simp add: div_nat_def)  | 
| 
 
866bce5442a3
simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
 
huffman 
parents: 
46026 
diff
changeset
 | 
920  | 
|
| 
 
866bce5442a3
simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
 
huffman 
parents: 
46026 
diff
changeset
 | 
921  | 
lemma snd_divmod_nat [simp]:  | 
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
922  | 
"snd (Divides.divmod_nat m n) = m mod n"  | 
| 
46551
 
866bce5442a3
simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
 
huffman 
parents: 
46026 
diff
changeset
 | 
923  | 
by (simp add: mod_nat_def)  | 
| 
 
866bce5442a3
simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
 
huffman 
parents: 
46026 
diff
changeset
 | 
924  | 
|
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
925  | 
lemma divmod_nat_div_mod:  | 
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
926  | 
"Divides.divmod_nat m n = (m div n, m mod n)"  | 
| 
46551
 
866bce5442a3
simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
 
huffman 
parents: 
46026 
diff
changeset
 | 
927  | 
by (simp add: prod_eq_iff)  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
928  | 
|
| 
47135
 
fb67b596067f
rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
 
huffman 
parents: 
47134 
diff
changeset
 | 
929  | 
lemma div_nat_unique:  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
930  | 
assumes "divmod_nat_rel m n (q, r)"  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
931  | 
shows "m div n = q"  | 
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
932  | 
using assms by (auto dest!: Divides.divmod_nat_unique simp add: prod_eq_iff)  | 
| 
47135
 
fb67b596067f
rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
 
huffman 
parents: 
47134 
diff
changeset
 | 
933  | 
|
| 
 
fb67b596067f
rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
 
huffman 
parents: 
47134 
diff
changeset
 | 
934  | 
lemma mod_nat_unique:  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
935  | 
assumes "divmod_nat_rel m n (q, r)"  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
936  | 
shows "m mod n = r"  | 
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
937  | 
using assms by (auto dest!: Divides.divmod_nat_unique simp add: prod_eq_iff)  | 
| 
25571
 
c9e39eafc7a0
instantiation target rather than legacy instance
 
haftmann 
parents: 
25162 
diff
changeset
 | 
938  | 
|
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
939  | 
lemma divmod_nat_rel: "divmod_nat_rel m n (m div n, m mod n)"  | 
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
940  | 
using Divides.divmod_nat_rel_divmod_nat by (simp add: divmod_nat_div_mod)  | 
| 25942 | 941  | 
|
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
942  | 
text \<open>The ''recursion'' equations for @{const divide} and @{const modulo}\<close>
 | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
943  | 
|
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
944  | 
lemma div_less [simp]:  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
945  | 
fixes m n :: nat  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
946  | 
assumes "m < n"  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
947  | 
shows "m div n = 0"  | 
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
948  | 
using assms Divides.divmod_nat_base by (simp add: prod_eq_iff)  | 
| 25942 | 949  | 
|
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
950  | 
lemma le_div_geq:  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
951  | 
fixes m n :: nat  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
952  | 
assumes "0 < n" and "n \<le> m"  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
953  | 
shows "m div n = Suc ((m - n) div n)"  | 
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
954  | 
using assms Divides.divmod_nat_step by (simp add: prod_eq_iff)  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
955  | 
|
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
956  | 
lemma mod_less [simp]:  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
957  | 
fixes m n :: nat  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
958  | 
assumes "m < n"  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
959  | 
shows "m mod n = m"  | 
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
960  | 
using assms Divides.divmod_nat_base by (simp add: prod_eq_iff)  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
961  | 
|
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
962  | 
lemma le_mod_geq:  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
963  | 
fixes m n :: nat  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
964  | 
assumes "n \<le> m"  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
965  | 
shows "m mod n = (m - n) mod n"  | 
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
966  | 
using assms Divides.divmod_nat_step by (cases "n = 0") (simp_all add: prod_eq_iff)  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
967  | 
|
| 47136 | 968  | 
instance proof  | 
969  | 
fix m n :: nat  | 
|
970  | 
show "m div n * n + m mod n = m"  | 
|
971  | 
using divmod_nat_rel [of m n] by (simp add: divmod_nat_rel_def)  | 
|
972  | 
next  | 
|
973  | 
fix m n q :: nat  | 
|
974  | 
assume "n \<noteq> 0"  | 
|
975  | 
then show "(q + m * n) div n = m + q div n"  | 
|
976  | 
by (induct m) (simp_all add: le_div_geq)  | 
|
977  | 
next  | 
|
978  | 
fix m n q :: nat  | 
|
979  | 
assume "m \<noteq> 0"  | 
|
980  | 
hence "\<And>a b. divmod_nat_rel n q (a, b) \<Longrightarrow> divmod_nat_rel (m * n) (m * q) (a, m * b)"  | 
|
981  | 
unfolding divmod_nat_rel_def  | 
|
| 62390 | 982  | 
by (auto split: if_split_asm, simp_all add: algebra_simps)  | 
| 47136 | 983  | 
moreover from divmod_nat_rel have "divmod_nat_rel n q (n div q, n mod q)" .  | 
984  | 
ultimately have "divmod_nat_rel (m * n) (m * q) (n div q, m * (n mod q))" .  | 
|
985  | 
thus "(m * n) div (m * q) = n div q" by (rule div_nat_unique)  | 
|
986  | 
next  | 
|
987  | 
fix n :: nat show "n div 0 = 0"  | 
|
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
988  | 
by (simp add: div_nat_def Divides.divmod_nat_zero)  | 
| 47136 | 989  | 
next  | 
990  | 
fix n :: nat show "0 div n = 0"  | 
|
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
991  | 
by (simp add: div_nat_def Divides.divmod_nat_zero_left)  | 
| 25942 | 992  | 
qed  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
993  | 
|
| 25942 | 994  | 
end  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
995  | 
|
| 
60685
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
996  | 
instantiation nat :: normalization_semidom  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
997  | 
begin  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
998  | 
|
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
999  | 
definition normalize_nat  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1000  | 
where [simp]: "normalize = (id :: nat \<Rightarrow> nat)"  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1001  | 
|
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1002  | 
definition unit_factor_nat  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1003  | 
where "unit_factor n = (if n = 0 then 0 else 1 :: nat)"  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1004  | 
|
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1005  | 
lemma unit_factor_simps [simp]:  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1006  | 
"unit_factor 0 = (0::nat)"  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1007  | 
"unit_factor (Suc n) = 1"  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1008  | 
by (simp_all add: unit_factor_nat_def)  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1009  | 
|
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1010  | 
instance  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1011  | 
by standard (simp_all add: unit_factor_nat_def)  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1012  | 
|
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1013  | 
end  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1014  | 
|
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
1015  | 
lemma divmod_nat_if [code]:  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
1016  | 
"Divides.divmod_nat m n = (if n = 0 \<or> m < n then (0, m) else  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
1017  | 
let (q, r) = Divides.divmod_nat (m - n) n in (Suc q, r))"  | 
| 
55414
 
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
 
blanchet 
parents: 
55172 
diff
changeset
 | 
1018  | 
by (simp add: prod_eq_iff case_prod_beta not_less le_div_geq le_mod_geq)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1019  | 
|
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
1020  | 
text \<open>Simproc for cancelling @{const divide} and @{const modulo}\<close>
 | 
| 25942 | 1021  | 
|
| 
51299
 
30b014246e21
proper place for cancel_div_mod.ML (see also ee729dbd1b7f and ec7f10155389);
 
wenzelm 
parents: 
51173 
diff
changeset
 | 
1022  | 
ML_file "~~/src/Provers/Arith/cancel_div_mod.ML"  | 
| 
 
30b014246e21
proper place for cancel_div_mod.ML (see also ee729dbd1b7f and ec7f10155389);
 
wenzelm 
parents: 
51173 
diff
changeset
 | 
1023  | 
|
| 60758 | 1024  | 
ML \<open>  | 
| 43594 | 1025  | 
structure Cancel_Div_Mod_Nat = Cancel_Div_Mod  | 
| 41550 | 1026  | 
(  | 
| 
60352
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1027  | 
  val div_name = @{const_name divide};
 | 
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
1028  | 
  val mod_name = @{const_name modulo};
 | 
| 30934 | 1029  | 
val mk_binop = HOLogic.mk_binop;  | 
| 
48561
 
12aa0cb2b447
move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
 
huffman 
parents: 
47268 
diff
changeset
 | 
1030  | 
  val mk_plus = HOLogic.mk_binop @{const_name Groups.plus};
 | 
| 
 
12aa0cb2b447
move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
 
huffman 
parents: 
47268 
diff
changeset
 | 
1031  | 
  val dest_plus = HOLogic.dest_bin @{const_name Groups.plus} HOLogic.natT;
 | 
| 
 
12aa0cb2b447
move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
 
huffman 
parents: 
47268 
diff
changeset
 | 
1032  | 
fun mk_sum [] = HOLogic.zero  | 
| 
 
12aa0cb2b447
move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
 
huffman 
parents: 
47268 
diff
changeset
 | 
1033  | 
| mk_sum [t] = t  | 
| 
 
12aa0cb2b447
move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
 
huffman 
parents: 
47268 
diff
changeset
 | 
1034  | 
| mk_sum (t :: ts) = mk_plus (t, mk_sum ts);  | 
| 
 
12aa0cb2b447
move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
 
huffman 
parents: 
47268 
diff
changeset
 | 
1035  | 
fun dest_sum tm =  | 
| 
 
12aa0cb2b447
move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
 
huffman 
parents: 
47268 
diff
changeset
 | 
1036  | 
if HOLogic.is_zero tm then []  | 
| 
 
12aa0cb2b447
move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
 
huffman 
parents: 
47268 
diff
changeset
 | 
1037  | 
else  | 
| 
 
12aa0cb2b447
move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
 
huffman 
parents: 
47268 
diff
changeset
 | 
1038  | 
(case try HOLogic.dest_Suc tm of  | 
| 
 
12aa0cb2b447
move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
 
huffman 
parents: 
47268 
diff
changeset
 | 
1039  | 
SOME t => HOLogic.Suc_zero :: dest_sum t  | 
| 
 
12aa0cb2b447
move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
 
huffman 
parents: 
47268 
diff
changeset
 | 
1040  | 
| NONE =>  | 
| 
 
12aa0cb2b447
move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
 
huffman 
parents: 
47268 
diff
changeset
 | 
1041  | 
(case try dest_plus tm of  | 
| 
 
12aa0cb2b447
move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
 
huffman 
parents: 
47268 
diff
changeset
 | 
1042  | 
SOME (t, u) => dest_sum t @ dest_sum u  | 
| 
 
12aa0cb2b447
move ML functions from nat_arith.ML to Divides.thy, which is the only place they are used
 
huffman 
parents: 
47268 
diff
changeset
 | 
1043  | 
| NONE => [tm]));  | 
| 25942 | 1044  | 
|
| 30934 | 1045  | 
  val div_mod_eqs = map mk_meta_eq [@{thm div_mod_equality}, @{thm div_mod_equality2}];
 | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1046  | 
|
| 30934 | 1047  | 
val prove_eq_sums = Arith_Data.prove_conv2 all_tac (Arith_Data.simp_all_tac  | 
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
1048  | 
    (@{thm add_0_left} :: @{thm add_0_right} :: @{thms ac_simps}))
 | 
| 41550 | 1049  | 
)  | 
| 60758 | 1050  | 
\<close>  | 
1051  | 
||
1052  | 
simproc_setup cancel_div_mod_nat ("(m::nat) + n") = \<open>K Cancel_Div_Mod_Nat.proc\<close>
 | 
|
1053  | 
||
1054  | 
||
1055  | 
subsubsection \<open>Quotient\<close>  | 
|
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1056  | 
|
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1057  | 
lemma div_geq: "0 < n \<Longrightarrow> \<not> m < n \<Longrightarrow> m div n = Suc ((m - n) div n)"  | 
| 29667 | 1058  | 
by (simp add: le_div_geq linorder_not_less)  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1059  | 
|
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1060  | 
lemma div_if: "0 < n \<Longrightarrow> m div n = (if m < n then 0 else Suc ((m - n) div n))"  | 
| 29667 | 1061  | 
by (simp add: div_geq)  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1062  | 
|
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1063  | 
lemma div_mult_self_is_m [simp]: "0<n ==> (m*n) div n = (m::nat)"  | 
| 29667 | 1064  | 
by simp  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1065  | 
|
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1066  | 
lemma div_mult_self1_is_m [simp]: "0<n ==> (n*m) div n = (m::nat)"  | 
| 29667 | 1067  | 
by simp  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1068  | 
|
| 53066 | 1069  | 
lemma div_positive:  | 
1070  | 
fixes m n :: nat  | 
|
1071  | 
assumes "n > 0"  | 
|
1072  | 
assumes "m \<ge> n"  | 
|
1073  | 
shows "m div n > 0"  | 
|
1074  | 
proof -  | 
|
| 60758 | 1075  | 
from \<open>m \<ge> n\<close> obtain q where "m = n + q"  | 
| 53066 | 1076  | 
by (auto simp add: le_iff_add)  | 
| 
63499
 
9c9a59949887
Tuned looping simp rules in semiring_div
 
eberlm <eberlm@in.tum.de> 
parents: 
63417 
diff
changeset
 | 
1077  | 
with \<open>n > 0\<close> show ?thesis by (simp add: div_add_self1)  | 
| 53066 | 1078  | 
qed  | 
1079  | 
||
| 59000 | 1080  | 
lemma div_eq_0_iff: "(a div b::nat) = 0 \<longleftrightarrow> a < b \<or> b = 0"  | 
1081  | 
by (metis div_less div_positive div_by_0 gr0I less_numeral_extra(3) not_less)  | 
|
| 25942 | 1082  | 
|
| 60758 | 1083  | 
subsubsection \<open>Remainder\<close>  | 
| 25942 | 1084  | 
|
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1085  | 
lemma mod_less_divisor [simp]:  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1086  | 
fixes m n :: nat  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1087  | 
assumes "n > 0"  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1088  | 
shows "m mod n < (n::nat)"  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
1089  | 
using assms divmod_nat_rel [of m n] unfolding divmod_nat_rel_def by auto  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1090  | 
|
| 51173 | 1091  | 
lemma mod_Suc_le_divisor [simp]:  | 
1092  | 
"m mod Suc n \<le> n"  | 
|
1093  | 
using mod_less_divisor [of "Suc n" m] by arith  | 
|
1094  | 
||
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1095  | 
lemma mod_less_eq_dividend [simp]:  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1096  | 
fixes m n :: nat  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1097  | 
shows "m mod n \<le> m"  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1098  | 
proof (rule add_leD2)  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
1099  | 
from div_mult_mod_eq have "m div n * n + m mod n = m" .  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1100  | 
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
 | 
1101  | 
qed  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1102  | 
|
| 61076 | 1103  | 
lemma mod_geq: "\<not> m < (n::nat) \<Longrightarrow> m mod n = (m - n) mod n"  | 
| 29667 | 1104  | 
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
 | 
1105  | 
|
| 61076 | 1106  | 
lemma mod_if: "m mod (n::nat) = (if m < n then m else (m - n) mod n)"  | 
| 29667 | 1107  | 
by (simp add: le_mod_geq)  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1108  | 
|
| 64244 | 1109  | 
lemma mod_by_Suc_0 [simp]: "m mod Suc 0 = 0"  | 
| 29667 | 1110  | 
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
 | 
1111  | 
|
| 15439 | 1112  | 
lemma mod_le_divisor[simp]: "0 < n \<Longrightarrow> m mod n \<le> (n::nat)"  | 
| 22718 | 1113  | 
apply (drule mod_less_divisor [where m = m])  | 
1114  | 
apply simp  | 
|
1115  | 
done  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1116  | 
|
| 60758 | 1117  | 
subsubsection \<open>Quotient and Remainder\<close>  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1118  | 
|
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
1119  | 
lemma divmod_nat_rel_mult1_eq:  | 
| 46552 | 1120  | 
"divmod_nat_rel b c (q, r)  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
1121  | 
\<Longrightarrow> divmod_nat_rel (a * b) c (a * q + a * r div c, a * r mod c)"  | 
| 
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
1122  | 
by (auto simp add: split_ifs divmod_nat_rel_def algebra_simps)  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1123  | 
|
| 
30923
 
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
 
haftmann 
parents: 
30840 
diff
changeset
 | 
1124  | 
lemma div_mult1_eq:  | 
| 
 
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
 
haftmann 
parents: 
30840 
diff
changeset
 | 
1125  | 
"(a * b) div c = a * (b div c) + a * (b mod c) div (c::nat)"  | 
| 
47135
 
fb67b596067f
rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
 
huffman 
parents: 
47134 
diff
changeset
 | 
1126  | 
by (blast intro: divmod_nat_rel_mult1_eq [THEN div_nat_unique] divmod_nat_rel)  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1127  | 
|
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
1128  | 
lemma divmod_nat_rel_add1_eq:  | 
| 46552 | 1129  | 
"divmod_nat_rel a c (aq, ar) \<Longrightarrow> divmod_nat_rel b c (bq, br)  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
1130  | 
\<Longrightarrow> divmod_nat_rel (a + b) c (aq + bq + (ar + br) div c, (ar + br) mod c)"  | 
| 
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
1131  | 
by (auto simp add: split_ifs divmod_nat_rel_def algebra_simps)  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1132  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1133  | 
(*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
 | 
1134  | 
lemma div_add1_eq:  | 
| 
25134
 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 
nipkow 
parents: 
25112 
diff
changeset
 | 
1135  | 
"(a+b) div (c::nat) = a div c + b div c + ((a mod c + b mod c) div c)"  | 
| 
47135
 
fb67b596067f
rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
 
huffman 
parents: 
47134 
diff
changeset
 | 
1136  | 
by (blast intro: divmod_nat_rel_add1_eq [THEN div_nat_unique] divmod_nat_rel)  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1137  | 
|
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
1138  | 
lemma divmod_nat_rel_mult2_eq:  | 
| 
60352
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1139  | 
assumes "divmod_nat_rel a b (q, r)"  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1140  | 
shows "divmod_nat_rel a (b * c) (q div c, b *(q mod c) + r)"  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1141  | 
proof -  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1142  | 
  { assume "r < b" and "0 < c"
 | 
| 
60352
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1143  | 
then have "b * (q mod c) + r < b * c"  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1144  | 
apply (cut_tac m = q and n = c in mod_less_divisor)  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1145  | 
apply (drule_tac [2] m = "q mod c" in less_imp_Suc_add, auto)  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1146  | 
apply (erule_tac P = "%x. lhs < rhs x" for lhs rhs in ssubst)  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1147  | 
apply (simp add: add_mult_distrib2)  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1148  | 
done  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1149  | 
then have "r + b * (q mod c) < b * c"  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1150  | 
by (simp add: ac_simps)  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1151  | 
} with assms show ?thesis  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1152  | 
by (auto simp add: divmod_nat_rel_def algebra_simps add_mult_distrib2 [symmetric])  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1153  | 
qed  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1154  | 
|
| 
55085
 
0e8e4dc55866
moved 'fundef_cong' attribute (and other basic 'fun' stuff) up the dependency chain
 
blanchet 
parents: 
54489 
diff
changeset
 | 
1155  | 
lemma div_mult2_eq: "a div (b * c) = (a div b) div (c::nat)"  | 
| 
47135
 
fb67b596067f
rename lemmas {div,mod}_eq -> {div,mod}_nat_unique, for consistency with minus_unique, inverse_unique, etc.
 
huffman 
parents: 
47134 
diff
changeset
 | 
1156  | 
by (force simp add: divmod_nat_rel [THEN divmod_nat_rel_mult2_eq, THEN div_nat_unique])  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1157  | 
|
| 
55085
 
0e8e4dc55866
moved 'fundef_cong' attribute (and other basic 'fun' stuff) up the dependency chain
 
blanchet 
parents: 
54489 
diff
changeset
 | 
1158  | 
lemma mod_mult2_eq: "a mod (b * c) = b * (a div b mod c) + a mod (b::nat)"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
1159  | 
by (auto simp add: mult.commute divmod_nat_rel [THEN divmod_nat_rel_mult2_eq, THEN mod_nat_unique])  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1160  | 
|
| 
61275
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1161  | 
instantiation nat :: semiring_numeral_div  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1162  | 
begin  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1163  | 
|
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1164  | 
definition divmod_nat :: "num \<Rightarrow> num \<Rightarrow> nat \<times> nat"  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1165  | 
where  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1166  | 
divmod'_nat_def: "divmod_nat m n = (numeral m div numeral n, numeral m mod numeral n)"  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1167  | 
|
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1168  | 
definition divmod_step_nat :: "num \<Rightarrow> nat \<times> nat \<Rightarrow> nat \<times> nat"  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1169  | 
where  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1170  | 
"divmod_step_nat l qr = (let (q, r) = qr  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1171  | 
in if r \<ge> numeral l then (2 * q + 1, r - numeral l)  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1172  | 
else (2 * q, r))"  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1173  | 
|
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1174  | 
instance  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1175  | 
by standard (auto intro: div_positive simp add: divmod'_nat_def divmod_step_nat_def mod_mult2_eq div_mult2_eq)  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1176  | 
|
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1177  | 
end  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1178  | 
|
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1179  | 
declare divmod_algorithm_code [where ?'a = nat, code]  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
1180  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1181  | 
|
| 60758 | 1182  | 
subsubsection \<open>Further Facts about Quotient and Remainder\<close>  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1183  | 
|
| 64244 | 1184  | 
lemma div_by_Suc_0 [simp]:  | 
| 58786 | 1185  | 
"m div Suc 0 = m"  | 
1186  | 
using div_by_1 [of m] by simp  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1187  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1188  | 
(* Monotonicity of div in first argument *)  | 
| 
30923
 
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
 
haftmann 
parents: 
30840 
diff
changeset
 | 
1189  | 
lemma div_le_mono [rule_format (no_asm)]:  | 
| 22718 | 1190  | 
"\<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
 | 
1191  | 
apply (case_tac "k=0", simp)  | 
| 15251 | 1192  | 
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
 | 
1193  | 
apply (case_tac "n<k")  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1194  | 
(* 1 case n<k *)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1195  | 
apply simp  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1196  | 
(* 2 case n >= k *)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1197  | 
apply (case_tac "m<k")  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1198  | 
(* 2.1 case m<k *)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1199  | 
apply simp  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1200  | 
(* 2.2 case m>=k *)  | 
| 15439 | 1201  | 
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
 | 
1202  | 
done  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1203  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1204  | 
(* Antimonotonicity of div in second argument *)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1205  | 
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
 | 
1206  | 
apply (subgoal_tac "0<n")  | 
| 22718 | 1207  | 
prefer 2 apply simp  | 
| 15251 | 1208  | 
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
 | 
1209  | 
apply (rename_tac "k")  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1210  | 
apply (case_tac "k<n", simp)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1211  | 
apply (subgoal_tac "~ (k<m) ")  | 
| 22718 | 1212  | 
prefer 2 apply simp  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1213  | 
apply (simp add: div_geq)  | 
| 15251 | 1214  | 
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
 | 
1215  | 
prefer 2  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1216  | 
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
 | 
1217  | 
apply (rule le_trans, simp)  | 
| 15439 | 1218  | 
apply (simp)  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1219  | 
done  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1220  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1221  | 
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
 | 
1222  | 
apply (case_tac "n=0", simp)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1223  | 
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
 | 
1224  | 
apply (rule div_le_mono2)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1225  | 
apply (simp_all (no_asm_simp))  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1226  | 
done  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1227  | 
|
| 22718 | 1228  | 
(* Similar for "less than" *)  | 
| 47138 | 1229  | 
lemma div_less_dividend [simp]:  | 
1230  | 
"\<lbrakk>(1::nat) < n; 0 < m\<rbrakk> \<Longrightarrow> m div n < m"  | 
|
1231  | 
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
 | 
1232  | 
apply (rename_tac "m")  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1233  | 
apply (case_tac "m<n", simp)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1234  | 
apply (subgoal_tac "0<n")  | 
| 22718 | 1235  | 
prefer 2 apply simp  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1236  | 
apply (simp add: div_geq)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1237  | 
apply (case_tac "n<m")  | 
| 15251 | 1238  | 
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
 | 
1239  | 
apply (rule impI less_trans_Suc)+  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1240  | 
apply assumption  | 
| 15439 | 1241  | 
apply (simp_all)  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1242  | 
done  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1243  | 
|
| 60758 | 1244  | 
text\<open>A fact for the mutilated chess board\<close>  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1245  | 
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
 | 
1246  | 
apply (case_tac "n=0", simp)  | 
| 15251 | 1247  | 
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
 | 
1248  | 
apply (case_tac "Suc (na) <n")  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1249  | 
(* case Suc(na) < n *)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1250  | 
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
 | 
1251  | 
(* case n \<le> Suc(na) *)  | 
| 16796 | 1252  | 
apply (simp add: linorder_not_less le_Suc_eq mod_geq)  | 
| 15439 | 1253  | 
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
 | 
1254  | 
done  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1255  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1256  | 
lemma mod_eq_0_iff: "(m mod d = 0) = (\<exists>q::nat. m = d*q)"  | 
| 29667 | 1257  | 
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
 | 
1258  | 
|
| 22718 | 1259  | 
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
 | 
1260  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1261  | 
(*Loses information, namely we also have r<d provided d is nonzero*)  | 
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
1262  | 
lemma mod_eqD:  | 
| 
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
1263  | 
fixes m d r q :: nat  | 
| 
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
1264  | 
assumes "m mod d = r"  | 
| 
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
1265  | 
shows "\<exists>q. m = r + q * d"  | 
| 
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
1266  | 
proof -  | 
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
1267  | 
from div_mult_mod_eq obtain q where "q * d + m mod d = m" by blast  | 
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
1268  | 
with assms have "m = r + q * d" by simp  | 
| 
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
1269  | 
then show ?thesis ..  | 
| 
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
1270  | 
qed  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14208 
diff
changeset
 | 
1271  | 
|
| 13152 | 1272  | 
lemma split_div:  | 
| 
13189
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1273  | 
"P(n div k :: nat) =  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1274  | 
((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
 | 
1275  | 
(is "?P = ?Q" is "_ = (_ \<and> (_ \<longrightarrow> ?R))")  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1276  | 
proof  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1277  | 
assume P: ?P  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1278  | 
show ?Q  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1279  | 
proof (cases)  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1280  | 
assume "k = 0"  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
1281  | 
with P show ?Q by simp  | 
| 
13189
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1282  | 
next  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1283  | 
assume not0: "k \<noteq> 0"  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1284  | 
thus ?Q  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1285  | 
proof (simp, intro allI impI)  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1286  | 
fix i j  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1287  | 
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
 | 
1288  | 
show "P i"  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1289  | 
proof (cases)  | 
| 22718 | 1290  | 
assume "i = 0"  | 
1291  | 
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
 | 
1292  | 
next  | 
| 22718 | 1293  | 
assume "i \<noteq> 0"  | 
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
1294  | 
with not0 n j P show "P i" by(simp add:ac_simps)  | 
| 
13189
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1295  | 
qed  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1296  | 
qed  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1297  | 
qed  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1298  | 
next  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1299  | 
assume Q: ?Q  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1300  | 
show ?P  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1301  | 
proof (cases)  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1302  | 
assume "k = 0"  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
1303  | 
with Q show ?P by simp  | 
| 
13189
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1304  | 
next  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1305  | 
assume not0: "k \<noteq> 0"  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1306  | 
with Q have R: ?R by simp  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1307  | 
from not0 R[THEN spec,of "n div k",THEN spec, of "n mod k"]  | 
| 13517 | 1308  | 
show ?P by simp  | 
| 
13189
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1309  | 
qed  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1310  | 
qed  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1311  | 
|
| 13882 | 1312  | 
lemma split_div_lemma:  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1313  | 
assumes "0 < n"  | 
| 61076 | 1314  | 
shows "n * q \<le> m \<and> m < n * Suc q \<longleftrightarrow> q = ((m::nat) div n)" (is "?lhs \<longleftrightarrow> ?rhs")  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1315  | 
proof  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1316  | 
assume ?rhs  | 
| 64246 | 1317  | 
with minus_mod_eq_mult_div [symmetric] have nq: "n * q = m - (m mod n)" by simp  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1318  | 
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
 | 
1319  | 
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
 | 
1320  | 
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
 | 
1321  | 
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
 | 
1322  | 
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
 | 
1323  | 
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
 | 
1324  | 
from A B show ?lhs ..  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1325  | 
next  | 
| 
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1326  | 
assume P: ?lhs  | 
| 
33340
 
a165b97f3658
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
33318 
diff
changeset
 | 
1327  | 
then have "divmod_nat_rel m n (q, m - n * q)"  | 
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
1328  | 
unfolding divmod_nat_rel_def by (auto simp add: ac_simps)  | 
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
1329  | 
then have "m div n = q"  | 
| 
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
1330  | 
by (rule div_nat_unique)  | 
| 
30923
 
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
 
haftmann 
parents: 
30840 
diff
changeset
 | 
1331  | 
then show ?rhs by simp  | 
| 
26100
 
fbc60cd02ae2
using only an relation predicate to construct div and mod
 
haftmann 
parents: 
26072 
diff
changeset
 | 
1332  | 
qed  | 
| 13882 | 1333  | 
|
1334  | 
theorem split_div':  | 
|
1335  | 
"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
 | 
1336  | 
(\<exists>q. (n * q \<le> m \<and> m < n * (Suc q)) \<and> P q))"  | 
| 
61433
 
a4c0de1df3d8
qualify some names stemming from internal bootstrap constructions
 
haftmann 
parents: 
61275 
diff
changeset
 | 
1337  | 
apply (cases "0 < n")  | 
| 13882 | 1338  | 
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
 | 
1339  | 
apply simp_all  | 
| 13882 | 1340  | 
done  | 
1341  | 
||
| 
13189
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1342  | 
lemma split_mod:  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1343  | 
"P(n mod k :: nat) =  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1344  | 
((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
 | 
1345  | 
(is "?P = ?Q" is "_ = (_ \<and> (_ \<longrightarrow> ?R))")  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1346  | 
proof  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1347  | 
assume P: ?P  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1348  | 
show ?Q  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1349  | 
proof (cases)  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1350  | 
assume "k = 0"  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
1351  | 
with P show ?Q by simp  | 
| 
13189
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1352  | 
next  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1353  | 
assume not0: "k \<noteq> 0"  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1354  | 
thus ?Q  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1355  | 
proof (simp, intro allI impI)  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1356  | 
fix i j  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1357  | 
assume "n = k*i + j" "j < k"  | 
| 58786 | 1358  | 
thus "P j" using not0 P by (simp add: ac_simps)  | 
| 
13189
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1359  | 
qed  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1360  | 
qed  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1361  | 
next  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1362  | 
assume Q: ?Q  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1363  | 
show ?P  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1364  | 
proof (cases)  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1365  | 
assume "k = 0"  | 
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
27540 
diff
changeset
 | 
1366  | 
with Q show ?P by simp  | 
| 
13189
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1367  | 
next  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1368  | 
assume not0: "k \<noteq> 0"  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1369  | 
with Q have R: ?R by simp  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1370  | 
from not0 R[THEN spec,of "n div k",THEN spec, of "n mod k"]  | 
| 13517 | 1371  | 
show ?P by simp  | 
| 
13189
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1372  | 
qed  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1373  | 
qed  | 
| 
 
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
 
nipkow 
parents: 
13152 
diff
changeset
 | 
1374  | 
|
| 52398 | 1375  | 
lemma div_eq_dividend_iff: "a \<noteq> 0 \<Longrightarrow> (a :: nat) div b = a \<longleftrightarrow> b = 1"  | 
1376  | 
apply rule  | 
|
1377  | 
apply (cases "b = 0")  | 
|
1378  | 
apply simp_all  | 
|
1379  | 
apply (metis (full_types) One_nat_def Suc_lessI div_less_dividend less_not_refl3)  | 
|
1380  | 
done  | 
|
1381  | 
||
| 
63417
 
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
 
haftmann 
parents: 
63317 
diff
changeset
 | 
1382  | 
lemma (in field_char_0) of_nat_div:  | 
| 
 
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
 
haftmann 
parents: 
63317 
diff
changeset
 | 
1383  | 
"of_nat (m div n) = ((of_nat m - of_nat (m mod n)) / of_nat n)"  | 
| 
 
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
 
haftmann 
parents: 
63317 
diff
changeset
 | 
1384  | 
proof -  | 
| 
 
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
 
haftmann 
parents: 
63317 
diff
changeset
 | 
1385  | 
have "of_nat (m div n) = ((of_nat (m div n * n + m mod n) - of_nat (m mod n)) / of_nat n :: 'a)"  | 
| 
 
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
 
haftmann 
parents: 
63317 
diff
changeset
 | 
1386  | 
unfolding of_nat_add by (cases "n = 0") simp_all  | 
| 
 
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
 
haftmann 
parents: 
63317 
diff
changeset
 | 
1387  | 
then show ?thesis  | 
| 
 
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
 
haftmann 
parents: 
63317 
diff
changeset
 | 
1388  | 
by simp  | 
| 
 
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
 
haftmann 
parents: 
63317 
diff
changeset
 | 
1389  | 
qed  | 
| 
 
c184ec919c70
more lemmas to emphasize {0::nat..(<)n} as canonical representation of intervals on nat
 
haftmann 
parents: 
63317 
diff
changeset
 | 
1390  | 
|
| 22800 | 1391  | 
|
| 60758 | 1392  | 
subsubsection \<open>An ``induction'' law for modulus arithmetic.\<close>  | 
| 14640 | 1393  | 
|
1394  | 
lemma mod_induct_0:  | 
|
1395  | 
assumes step: "\<forall>i<p. P i \<longrightarrow> P ((Suc i) mod p)"  | 
|
1396  | 
and base: "P i" and i: "i<p"  | 
|
1397  | 
shows "P 0"  | 
|
1398  | 
proof (rule ccontr)  | 
|
1399  | 
assume contra: "\<not>(P 0)"  | 
|
1400  | 
from i have p: "0<p" by simp  | 
|
1401  | 
have "\<forall>k. 0<k \<longrightarrow> \<not> P (p-k)" (is "\<forall>k. ?A k")  | 
|
1402  | 
proof  | 
|
1403  | 
fix k  | 
|
1404  | 
show "?A k"  | 
|
1405  | 
proof (induct k)  | 
|
| 61799 | 1406  | 
show "?A 0" by simp \<comment> "by contradiction"  | 
| 14640 | 1407  | 
next  | 
1408  | 
fix n  | 
|
1409  | 
assume ih: "?A n"  | 
|
1410  | 
show "?A (Suc n)"  | 
|
1411  | 
proof (clarsimp)  | 
|
| 22718 | 1412  | 
assume y: "P (p - Suc n)"  | 
1413  | 
have n: "Suc n < p"  | 
|
1414  | 
proof (rule ccontr)  | 
|
1415  | 
assume "\<not>(Suc n < p)"  | 
|
1416  | 
hence "p - Suc n = 0"  | 
|
1417  | 
by simp  | 
|
1418  | 
with y contra show "False"  | 
|
1419  | 
by simp  | 
|
1420  | 
qed  | 
|
1421  | 
hence n2: "Suc (p - Suc n) = p-n" by arith  | 
|
1422  | 
from p have "p - Suc n < p" by arith  | 
|
1423  | 
with y step have z: "P ((Suc (p - Suc n)) mod p)"  | 
|
1424  | 
by blast  | 
|
1425  | 
show "False"  | 
|
1426  | 
proof (cases "n=0")  | 
|
1427  | 
case True  | 
|
1428  | 
with z n2 contra show ?thesis by simp  | 
|
1429  | 
next  | 
|
1430  | 
case False  | 
|
1431  | 
with p have "p-n < p" by arith  | 
|
1432  | 
with z n2 False ih show ?thesis by simp  | 
|
1433  | 
qed  | 
|
| 14640 | 1434  | 
qed  | 
1435  | 
qed  | 
|
1436  | 
qed  | 
|
1437  | 
moreover  | 
|
1438  | 
from i obtain k where "0<k \<and> i+k=p"  | 
|
1439  | 
by (blast dest: less_imp_add_positive)  | 
|
1440  | 
hence "0<k \<and> i=p-k" by auto  | 
|
1441  | 
moreover  | 
|
1442  | 
note base  | 
|
1443  | 
ultimately  | 
|
1444  | 
show "False" by blast  | 
|
1445  | 
qed  | 
|
1446  | 
||
1447  | 
lemma mod_induct:  | 
|
1448  | 
assumes step: "\<forall>i<p. P i \<longrightarrow> P ((Suc i) mod p)"  | 
|
1449  | 
and base: "P i" and i: "i<p" and j: "j<p"  | 
|
1450  | 
shows "P j"  | 
|
1451  | 
proof -  | 
|
1452  | 
have "\<forall>j<p. P j"  | 
|
1453  | 
proof  | 
|
1454  | 
fix j  | 
|
1455  | 
show "j<p \<longrightarrow> P j" (is "?A j")  | 
|
1456  | 
proof (induct j)  | 
|
1457  | 
from step base i show "?A 0"  | 
|
| 22718 | 1458  | 
by (auto elim: mod_induct_0)  | 
| 14640 | 1459  | 
next  | 
1460  | 
fix k  | 
|
1461  | 
assume ih: "?A k"  | 
|
1462  | 
show "?A (Suc k)"  | 
|
1463  | 
proof  | 
|
| 22718 | 1464  | 
assume suc: "Suc k < p"  | 
1465  | 
hence k: "k<p" by simp  | 
|
1466  | 
with ih have "P k" ..  | 
|
1467  | 
with step k have "P (Suc k mod p)"  | 
|
1468  | 
by blast  | 
|
1469  | 
moreover  | 
|
1470  | 
from suc have "Suc k mod p = Suc k"  | 
|
1471  | 
by simp  | 
|
1472  | 
ultimately  | 
|
1473  | 
show "P (Suc k)" by simp  | 
|
| 14640 | 1474  | 
qed  | 
1475  | 
qed  | 
|
1476  | 
qed  | 
|
1477  | 
with j show ?thesis by blast  | 
|
1478  | 
qed  | 
|
1479  | 
||
| 
33296
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1480  | 
lemma div2_Suc_Suc [simp]: "Suc (Suc m) div 2 = Suc (m div 2)"  | 
| 47138 | 1481  | 
by (simp add: numeral_2_eq_2 le_div_geq)  | 
1482  | 
||
1483  | 
lemma mod2_Suc_Suc [simp]: "Suc (Suc m) mod 2 = m mod 2"  | 
|
1484  | 
by (simp add: numeral_2_eq_2 le_mod_geq)  | 
|
| 
33296
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1485  | 
|
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1486  | 
lemma add_self_div_2 [simp]: "(m + m) div 2 = (m::nat)"  | 
| 
47217
 
501b9bbd0d6e
removed redundant nat-specific copies of theorems
 
huffman 
parents: 
47167 
diff
changeset
 | 
1487  | 
by (simp add: mult_2 [symmetric])  | 
| 
33296
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1488  | 
|
| 61076 | 1489  | 
lemma mod2_gr_0 [simp]: "0 < (m::nat) mod 2 \<longleftrightarrow> m mod 2 = 1"  | 
| 
33296
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1490  | 
proof -  | 
| 
35815
 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 
boehmes 
parents: 
35673 
diff
changeset
 | 
1491  | 
  { fix n :: nat have  "(n::nat) < 2 \<Longrightarrow> n = 0 \<or> n = 1" by (cases n) simp_all }
 | 
| 
33296
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1492  | 
moreover have "m mod 2 < 2" by simp  | 
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1493  | 
ultimately have "m mod 2 = 0 \<or> m mod 2 = 1" .  | 
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1494  | 
then show ?thesis by auto  | 
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1495  | 
qed  | 
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1496  | 
|
| 60758 | 1497  | 
text\<open>These lemmas collapse some needless occurrences of Suc:  | 
| 
33296
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1498  | 
at least three Sucs, since two and fewer are rewritten back to Suc again!  | 
| 60758 | 1499  | 
We already have some rules to simplify operands smaller than 3.\<close>  | 
| 
33296
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1500  | 
|
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1501  | 
lemma div_Suc_eq_div_add3 [simp]: "m div (Suc (Suc (Suc n))) = m div (3+n)"  | 
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1502  | 
by (simp add: Suc3_eq_add_3)  | 
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1503  | 
|
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1504  | 
lemma mod_Suc_eq_mod_add3 [simp]: "m mod (Suc (Suc (Suc n))) = m mod (3+n)"  | 
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1505  | 
by (simp add: Suc3_eq_add_3)  | 
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1506  | 
|
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1507  | 
lemma Suc_div_eq_add3_div: "(Suc (Suc (Suc m))) div n = (3+m) div n"  | 
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1508  | 
by (simp add: Suc3_eq_add_3)  | 
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1509  | 
|
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1510  | 
lemma Suc_mod_eq_add3_mod: "(Suc (Suc (Suc m))) mod n = (3+m) mod n"  | 
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1511  | 
by (simp add: Suc3_eq_add_3)  | 
| 
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1512  | 
|
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
1513  | 
lemmas Suc_div_eq_add3_div_numeral [simp] = Suc_div_eq_add3_div [of _ "numeral v"] for v  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
1514  | 
lemmas Suc_mod_eq_add3_mod_numeral [simp] = Suc_mod_eq_add3_mod [of _ "numeral v"] for v  | 
| 
33296
 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 
haftmann 
parents: 
33274 
diff
changeset
 | 
1515  | 
|
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1516  | 
lemma Suc_times_mod_eq: "1<k ==> Suc (k * m) mod k = 1"  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1517  | 
apply (induct "m")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1518  | 
apply (simp_all add: mod_Suc)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1519  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1520  | 
|
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
1521  | 
declare Suc_times_mod_eq [of "numeral w", simp] for w  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1522  | 
|
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1523  | 
lemma mod_greater_zero_iff_not_dvd:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1524  | 
fixes m n :: nat  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1525  | 
shows "m mod n > 0 \<longleftrightarrow> \<not> n dvd m"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1526  | 
by (simp add: dvd_eq_mod_eq_0)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1527  | 
|
| 47138 | 1528  | 
lemma Suc_div_le_mono [simp]: "n div k \<le> (Suc n) div k"  | 
1529  | 
by (simp add: div_le_mono)  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1530  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1531  | 
lemma Suc_n_div_2_gt_zero [simp]: "(0::nat) < n ==> 0 < (n + 1) div 2"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1532  | 
by (cases n) simp_all  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1533  | 
|
| 
35815
 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 
boehmes 
parents: 
35673 
diff
changeset
 | 
1534  | 
lemma div_2_gt_zero [simp]: assumes A: "(1::nat) < n" shows "0 < n div 2"  | 
| 
 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 
boehmes 
parents: 
35673 
diff
changeset
 | 
1535  | 
proof -  | 
| 
 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 
boehmes 
parents: 
35673 
diff
changeset
 | 
1536  | 
from A have B: "0 < n - 1" and C: "n - 1 + 1 = n" by simp_all  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1537  | 
from Suc_n_div_2_gt_zero [OF B] C show ?thesis by simp  | 
| 
35815
 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 
boehmes 
parents: 
35673 
diff
changeset
 | 
1538  | 
qed  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1539  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1540  | 
lemma mod_mult_self4 [simp]: "Suc (k*n + m) mod n = Suc m mod n"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1541  | 
proof -  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1542  | 
have "Suc (k * n + m) mod n = (k * n + Suc m) mod n" by simp  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1543  | 
also have "... = Suc m mod n" by (rule mod_mult_self3)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1544  | 
finally show ?thesis .  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1545  | 
qed  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1546  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1547  | 
lemma mod_Suc_eq_Suc_mod: "Suc m mod n = Suc (m mod n) mod n"  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1548  | 
apply (subst mod_Suc [of m])  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1549  | 
apply (subst mod_Suc [of "m mod n"], simp)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1550  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1551  | 
|
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
1552  | 
lemma mod_2_not_eq_zero_eq_one_nat:  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
1553  | 
fixes n :: nat  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
1554  | 
shows "n mod 2 \<noteq> 0 \<longleftrightarrow> n mod 2 = 1"  | 
| 58786 | 1555  | 
by (fact not_mod_2_eq_0_eq_1)  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1556  | 
|
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1557  | 
lemma even_Suc_div_two [simp]:  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1558  | 
"even n \<Longrightarrow> Suc n div 2 = n div 2"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1559  | 
using even_succ_div_two [of n] by simp  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1560  | 
|
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1561  | 
lemma odd_Suc_div_two [simp]:  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1562  | 
"odd n \<Longrightarrow> Suc n div 2 = Suc (n div 2)"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1563  | 
using odd_succ_div_two [of n] by simp  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1564  | 
|
| 58834 | 1565  | 
lemma odd_two_times_div_two_nat [simp]:  | 
| 
60352
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1566  | 
assumes "odd n"  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1567  | 
shows "2 * (n div 2) = n - (1 :: nat)"  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1568  | 
proof -  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1569  | 
from assms have "2 * (n div 2) + 1 = n"  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1570  | 
by (rule odd_two_times_div_two_succ)  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1571  | 
then have "Suc (2 * (n div 2)) - 1 = n - 1"  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1572  | 
by simp  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1573  | 
then show ?thesis  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1574  | 
by simp  | 
| 
 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 
haftmann 
parents: 
59833 
diff
changeset
 | 
1575  | 
qed  | 
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1576  | 
|
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1577  | 
lemma parity_induct [case_names zero even odd]:  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1578  | 
assumes zero: "P 0"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1579  | 
assumes even: "\<And>n. P n \<Longrightarrow> P (2 * n)"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1580  | 
assumes odd: "\<And>n. P n \<Longrightarrow> P (Suc (2 * n))"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1581  | 
shows "P n"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1582  | 
proof (induct n rule: less_induct)  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1583  | 
case (less n)  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1584  | 
show "P n"  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1585  | 
proof (cases "n = 0")  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1586  | 
case True with zero show ?thesis by simp  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1587  | 
next  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1588  | 
case False  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1589  | 
with less have hyp: "P (n div 2)" by simp  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1590  | 
show ?thesis  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1591  | 
proof (cases "even n")  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1592  | 
case True  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1593  | 
with hyp even [of "n div 2"] show ?thesis  | 
| 58834 | 1594  | 
by simp  | 
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1595  | 
next  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1596  | 
case False  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1597  | 
with hyp odd [of "n div 2"] show ?thesis  | 
| 58834 | 1598  | 
by simp  | 
| 
58778
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1599  | 
qed  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1600  | 
qed  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1601  | 
qed  | 
| 
 
e29cae8eab1f
even further downshift of theory Parity in the hierarchy
 
haftmann 
parents: 
58710 
diff
changeset
 | 
1602  | 
|
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1603  | 
lemma Suc_0_div_numeral [simp]:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1604  | 
fixes k l :: num  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1605  | 
shows "Suc 0 div numeral k = fst (divmod Num.One k)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1606  | 
by (simp_all add: fst_divmod)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1607  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1608  | 
lemma Suc_0_mod_numeral [simp]:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1609  | 
fixes k l :: num  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1610  | 
shows "Suc 0 mod numeral k = snd (divmod Num.One k)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1611  | 
by (simp_all add: snd_divmod)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1612  | 
|
| 63145 | 1613  | 
lemma cut_eq_simps: \<comment> \<open>rewriting equivalence on \<open>n mod 2 ^ q\<close>\<close>  | 
| 62597 | 1614  | 
fixes m n q :: num  | 
1615  | 
shows  | 
|
1616  | 
"numeral n mod numeral Num.One = (0::nat)  | 
|
1617  | 
\<longleftrightarrow> True"  | 
|
1618  | 
"numeral (Num.Bit0 n) mod numeral (Num.Bit0 q) = (0::nat)  | 
|
1619  | 
\<longleftrightarrow> numeral n mod numeral q = (0::nat)"  | 
|
1620  | 
"numeral (Num.Bit1 n) mod numeral (Num.Bit0 q) = (0::nat)  | 
|
1621  | 
\<longleftrightarrow> False"  | 
|
1622  | 
"numeral m mod numeral Num.One = (numeral n mod numeral Num.One :: nat)  | 
|
1623  | 
\<longleftrightarrow> True"  | 
|
1624  | 
"numeral Num.One mod numeral (Num.Bit0 q) = (numeral Num.One mod numeral (Num.Bit0 q) :: nat)  | 
|
1625  | 
\<longleftrightarrow> True"  | 
|
1626  | 
"numeral Num.One mod numeral (Num.Bit0 q) = (numeral (Num.Bit0 n) mod numeral (Num.Bit0 q) :: nat)  | 
|
1627  | 
\<longleftrightarrow> False"  | 
|
1628  | 
"numeral Num.One mod numeral (Num.Bit0 q) = (numeral (Num.Bit1 n) mod numeral (Num.Bit0 q) :: nat)  | 
|
1629  | 
\<longleftrightarrow> (numeral n mod numeral q :: nat) = 0"  | 
|
1630  | 
"numeral (Num.Bit0 m) mod numeral (Num.Bit0 q) = (numeral Num.One mod numeral (Num.Bit0 q) :: nat)  | 
|
1631  | 
\<longleftrightarrow> False"  | 
|
1632  | 
"numeral (Num.Bit0 m) mod numeral (Num.Bit0 q) = (numeral (Num.Bit0 n) mod numeral (Num.Bit0 q) :: nat)  | 
|
1633  | 
\<longleftrightarrow> numeral m mod numeral q = (numeral n mod numeral q :: nat)"  | 
|
1634  | 
"numeral (Num.Bit0 m) mod numeral (Num.Bit0 q) = (numeral (Num.Bit1 n) mod numeral (Num.Bit0 q) :: nat)  | 
|
1635  | 
\<longleftrightarrow> False"  | 
|
1636  | 
"numeral (Num.Bit1 m) mod numeral (Num.Bit0 q) = (numeral Num.One mod numeral (Num.Bit0 q) :: nat)  | 
|
1637  | 
\<longleftrightarrow> (numeral m mod numeral q :: nat) = 0"  | 
|
1638  | 
"numeral (Num.Bit1 m) mod numeral (Num.Bit0 q) = (numeral (Num.Bit0 n) mod numeral (Num.Bit0 q) :: nat)  | 
|
1639  | 
\<longleftrightarrow> False"  | 
|
1640  | 
"numeral (Num.Bit1 m) mod numeral (Num.Bit0 q) = (numeral (Num.Bit1 n) mod numeral (Num.Bit0 q) :: nat)  | 
|
1641  | 
\<longleftrightarrow> numeral m mod numeral q = (numeral n mod numeral q :: nat)"  | 
|
1642  | 
by (auto simp add: case_prod_beta Suc_double_not_eq_double double_not_eq_Suc_double)  | 
|
1643  | 
||
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1644  | 
|
| 60758 | 1645  | 
subsection \<open>Division on @{typ int}\<close>
 | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1646  | 
|
| 61799 | 1647  | 
definition divmod_int_rel :: "int \<Rightarrow> int \<Rightarrow> int \<times> int \<Rightarrow> bool" \<comment> \<open>definition of quotient and remainder\<close>  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1648  | 
where "divmod_int_rel a b = (\<lambda>(q, r). a = b * q + r \<and>  | 
| 
47139
 
98bddfa0f717
extend definition of divmod_int_rel to handle denominator=0 case
 
huffman 
parents: 
47138 
diff
changeset
 | 
1649  | 
(if 0 < b then 0 \<le> r \<and> r < b else if b < 0 then b < r \<and> r \<le> 0 else q = 0))"  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1650  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1651  | 
lemma unique_quotient_lemma:  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1652  | 
"b * q' + r' \<le> b * q + r \<Longrightarrow> 0 \<le> r' \<Longrightarrow> r' < b \<Longrightarrow> r < b \<Longrightarrow> q' \<le> (q::int)"  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1653  | 
apply (subgoal_tac "r' + b * (q'-q) \<le> r")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1654  | 
prefer 2 apply (simp add: right_diff_distrib)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1655  | 
apply (subgoal_tac "0 < b * (1 + q - q') ")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1656  | 
apply (erule_tac [2] order_le_less_trans)  | 
| 
49962
 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 
webertj 
parents: 
48891 
diff
changeset
 | 
1657  | 
prefer 2 apply (simp add: right_diff_distrib distrib_left)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1658  | 
apply (subgoal_tac "b * q' < b * (1 + q) ")  | 
| 
49962
 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 
webertj 
parents: 
48891 
diff
changeset
 | 
1659  | 
prefer 2 apply (simp add: right_diff_distrib distrib_left)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1660  | 
apply (simp add: mult_less_cancel_left)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1661  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1662  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1663  | 
lemma unique_quotient_lemma_neg:  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1664  | 
"b * q' + r' \<le> b*q + r \<Longrightarrow> r \<le> 0 \<Longrightarrow> b < r \<Longrightarrow> b < r' \<Longrightarrow> q \<le> (q'::int)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1665  | 
by (rule_tac b = "-b" and r = "-r'" and r' = "-r" in unique_quotient_lemma) auto  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1666  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1667  | 
lemma unique_quotient:  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1668  | 
"divmod_int_rel a b (q, r) \<Longrightarrow> divmod_int_rel a b (q', r') \<Longrightarrow> q = q'"  | 
| 62390 | 1669  | 
apply (simp add: divmod_int_rel_def linorder_neq_iff split: if_split_asm)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1670  | 
apply (blast intro: order_antisym  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1671  | 
dest: order_eq_refl [THEN unique_quotient_lemma]  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1672  | 
order_eq_refl [THEN unique_quotient_lemma_neg] sym)+  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1673  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1674  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1675  | 
lemma unique_remainder:  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1676  | 
"divmod_int_rel a b (q, r) \<Longrightarrow> divmod_int_rel a b (q', r') \<Longrightarrow> r = r'"  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1677  | 
apply (subgoal_tac "q = q'")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1678  | 
apply (simp add: divmod_int_rel_def)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1679  | 
apply (blast intro: unique_quotient)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1680  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1681  | 
|
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
1682  | 
instantiation int :: modulo  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1683  | 
begin  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1684  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1685  | 
definition divide_int  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1686  | 
where "k div l = (if l = 0 \<or> k = 0 then 0  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1687  | 
else if k > 0 \<and> l > 0 \<or> k < 0 \<and> l < 0  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1688  | 
then int (nat \<bar>k\<bar> div nat \<bar>l\<bar>)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1689  | 
else  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1690  | 
if l dvd k then - int (nat \<bar>k\<bar> div nat \<bar>l\<bar>)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1691  | 
else - int (Suc (nat \<bar>k\<bar> div nat \<bar>l\<bar>)))"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1692  | 
|
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
1693  | 
definition modulo_int  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1694  | 
where "k mod l = (if l = 0 then k else if l dvd k then 0  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1695  | 
else if k > 0 \<and> l > 0 \<or> k < 0 \<and> l < 0  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1696  | 
then sgn l * int (nat \<bar>k\<bar> mod nat \<bar>l\<bar>)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1697  | 
else sgn l * (\<bar>l\<bar> - int (nat \<bar>k\<bar> mod nat \<bar>l\<bar>)))"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1698  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1699  | 
instance ..  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1700  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1701  | 
end  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1702  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1703  | 
lemma divmod_int_rel:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1704  | 
"divmod_int_rel k l (k div l, k mod l)"  | 
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
1705  | 
unfolding divmod_int_rel_def divide_int_def modulo_int_def  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1706  | 
apply (cases k rule: int_cases3)  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61433 
diff
changeset
 | 
1707  | 
apply (simp add: mod_greater_zero_iff_not_dvd not_le algebra_simps)  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1708  | 
apply (cases l rule: int_cases3)  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61433 
diff
changeset
 | 
1709  | 
apply (simp add: mod_greater_zero_iff_not_dvd not_le algebra_simps)  | 
| 
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61433 
diff
changeset
 | 
1710  | 
apply (simp_all del: of_nat_add of_nat_mult add: mod_greater_zero_iff_not_dvd not_le algebra_simps int_dvd_iff of_nat_add [symmetric] of_nat_mult [symmetric])  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1711  | 
apply (cases l rule: int_cases3)  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61433 
diff
changeset
 | 
1712  | 
apply (simp_all del: of_nat_add of_nat_mult add: not_le algebra_simps int_dvd_iff of_nat_add [symmetric] of_nat_mult [symmetric])  | 
| 41550 | 1713  | 
done  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1714  | 
|
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1715  | 
instantiation int :: ring_div  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1716  | 
begin  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1717  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1718  | 
subsubsection \<open>Uniqueness and Monotonicity of Quotients and Remainders\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1719  | 
|
| 
47141
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1720  | 
lemma divmod_int_unique:  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1721  | 
assumes "divmod_int_rel k l (q, r)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1722  | 
shows div_int_unique: "k div l = q" and mod_int_unique: "k mod l = r"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1723  | 
using assms divmod_int_rel [of k l]  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1724  | 
using unique_quotient [of k l] unique_remainder [of k l]  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1725  | 
by auto  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1726  | 
|
| 
60429
 
d3d1e185cd63
uniform _ div _ as infix syntax for ring division
 
haftmann 
parents: 
60353 
diff
changeset
 | 
1727  | 
instance  | 
| 
47141
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1728  | 
proof  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1729  | 
fix a b :: int  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1730  | 
show "a div b * b + a mod b = a"  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1731  | 
using divmod_int_rel [of a b]  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
1732  | 
unfolding divmod_int_rel_def by (simp add: mult.commute)  | 
| 
47141
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1733  | 
next  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1734  | 
fix a b c :: int  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1735  | 
assume "b \<noteq> 0"  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1736  | 
hence "divmod_int_rel (a + c * b) b (c + a div b, a mod b)"  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1737  | 
using divmod_int_rel [of a b]  | 
| 
47141
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1738  | 
unfolding divmod_int_rel_def by (auto simp: algebra_simps)  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1739  | 
thus "(a + c * b) div b = c + a div b"  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1740  | 
by (rule div_int_unique)  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1741  | 
next  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1742  | 
fix a b c :: int  | 
| 63834 | 1743  | 
assume c: "c \<noteq> 0"  | 
1744  | 
have "\<And>q r. divmod_int_rel a b (q, r)  | 
|
| 
47141
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1745  | 
\<Longrightarrow> divmod_int_rel (c * a) (c * b) (q, c * r)"  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1746  | 
unfolding divmod_int_rel_def  | 
| 63834 | 1747  | 
by (rule linorder_cases [of 0 b])  | 
1748  | 
(use c in \<open>auto simp: algebra_simps  | 
|
| 
47141
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1749  | 
mult_less_0_iff zero_less_mult_iff mult_strict_right_mono  | 
| 63834 | 1750  | 
mult_strict_right_mono_neg zero_le_mult_iff mult_le_0_iff\<close>)  | 
| 
47141
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1751  | 
hence "divmod_int_rel (c * a) (c * b) (a div b, c * (a mod b))"  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1752  | 
using divmod_int_rel [of a b] .  | 
| 
47141
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1753  | 
thus "(c * a) div (c * b) = a div b"  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1754  | 
by (rule div_int_unique)  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1755  | 
next  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1756  | 
fix a :: int show "a div 0 = 0"  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1757  | 
by (rule div_int_unique, simp add: divmod_int_rel_def)  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1758  | 
next  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1759  | 
fix a :: int show "0 div a = 0"  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1760  | 
by (rule div_int_unique, auto simp add: divmod_int_rel_def)  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1761  | 
qed  | 
| 
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1762  | 
|
| 
60429
 
d3d1e185cd63
uniform _ div _ as infix syntax for ring division
 
haftmann 
parents: 
60353 
diff
changeset
 | 
1763  | 
end  | 
| 
 
d3d1e185cd63
uniform _ div _ as infix syntax for ring division
 
haftmann 
parents: 
60353 
diff
changeset
 | 
1764  | 
|
| 
60517
 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 
haftmann 
parents: 
60516 
diff
changeset
 | 
1765  | 
lemma is_unit_int:  | 
| 
 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 
haftmann 
parents: 
60516 
diff
changeset
 | 
1766  | 
"is_unit (k::int) \<longleftrightarrow> k = 1 \<or> k = - 1"  | 
| 
 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 
haftmann 
parents: 
60516 
diff
changeset
 | 
1767  | 
by auto  | 
| 
 
f16e4fb20652
separate class for notions specific for integral (semi)domains, in contrast to fields where these are trivial
 
haftmann 
parents: 
60516 
diff
changeset
 | 
1768  | 
|
| 
60685
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1769  | 
instantiation int :: normalization_semidom  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1770  | 
begin  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1771  | 
|
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1772  | 
definition normalize_int  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1773  | 
where [simp]: "normalize = (abs :: int \<Rightarrow> int)"  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1774  | 
|
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1775  | 
definition unit_factor_int  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1776  | 
where [simp]: "unit_factor = (sgn :: int \<Rightarrow> int)"  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1777  | 
|
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1778  | 
instance  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1779  | 
proof  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1780  | 
fix k :: int  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1781  | 
assume "k \<noteq> 0"  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1782  | 
then have "\<bar>sgn k\<bar> = 1"  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1783  | 
by (cases "0::int" k rule: linorder_cases) simp_all  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1784  | 
then show "is_unit (unit_factor k)"  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1785  | 
by simp  | 
| 64240 | 1786  | 
qed (simp_all add: sgn_mult mult_sgn_abs)  | 
| 
60685
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1787  | 
|
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1788  | 
end  | 
| 
 
cb21b7022b00
moved normalization and unit_factor into Main HOL corpus
 
haftmann 
parents: 
60562 
diff
changeset
 | 
1789  | 
|
| 60758 | 1790  | 
text\<open>Basic laws about division and remainder\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1791  | 
|
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1792  | 
lemma zdiv_int: "int (a div b) = int a div int b"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1793  | 
by (simp add: divide_int_def)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1794  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1795  | 
lemma zmod_int: "int (a mod b) = int a mod int b"  | 
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
1796  | 
by (simp add: modulo_int_def int_dvd_iff)  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1797  | 
|
| 60758 | 1798  | 
text \<open>Tool setup\<close>  | 
1799  | 
||
1800  | 
ML \<open>  | 
|
| 43594 | 1801  | 
structure Cancel_Div_Mod_Int = Cancel_Div_Mod  | 
| 41550 | 1802  | 
(  | 
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
1803  | 
  val div_name = @{const_name divide};
 | 
| 
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
1804  | 
  val mod_name = @{const_name modulo};
 | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1805  | 
val mk_binop = HOLogic.mk_binop;  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1806  | 
val mk_sum = Arith_Data.mk_sum HOLogic.intT;  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1807  | 
val dest_sum = Arith_Data.dest_sum;  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1808  | 
|
| 47165 | 1809  | 
  val div_mod_eqs = map mk_meta_eq [@{thm div_mod_equality}, @{thm div_mod_equality2}];
 | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1810  | 
|
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1811  | 
val prove_eq_sums = Arith_Data.prove_conv2 all_tac (Arith_Data.simp_all_tac  | 
| 59556 | 1812  | 
    (@{thm diff_conv_add_uminus} :: @{thms add_0_left add_0_right} @ @{thms ac_simps}))
 | 
| 41550 | 1813  | 
)  | 
| 60758 | 1814  | 
\<close>  | 
1815  | 
||
1816  | 
simproc_setup cancel_div_mod_int ("(k::int) + l") = \<open>K Cancel_Div_Mod_Int.proc\<close>
 | 
|
| 43594 | 1817  | 
|
| 
47141
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1818  | 
lemma pos_mod_conj: "(0::int) < b \<Longrightarrow> 0 \<le> a mod b \<and> a mod b < b"  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1819  | 
using divmod_int_rel [of a b]  | 
| 
47141
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1820  | 
by (auto simp add: divmod_int_rel_def prod_eq_iff)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1821  | 
|
| 45607 | 1822  | 
lemmas pos_mod_sign [simp] = pos_mod_conj [THEN conjunct1]  | 
1823  | 
and pos_mod_bound [simp] = pos_mod_conj [THEN conjunct2]  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1824  | 
|
| 
47141
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1825  | 
lemma neg_mod_conj: "b < (0::int) \<Longrightarrow> a mod b \<le> 0 \<and> b < a mod b"  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1826  | 
using divmod_int_rel [of a b]  | 
| 
47141
 
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
 
huffman 
parents: 
47140 
diff
changeset
 | 
1827  | 
by (auto simp add: divmod_int_rel_def prod_eq_iff)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1828  | 
|
| 45607 | 1829  | 
lemmas neg_mod_sign [simp] = neg_mod_conj [THEN conjunct1]  | 
1830  | 
and neg_mod_bound [simp] = neg_mod_conj [THEN conjunct2]  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1831  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1832  | 
|
| 60758 | 1833  | 
subsubsection \<open>General Properties of div and mod\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1834  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1835  | 
lemma div_pos_pos_trivial: "[| (0::int) \<le> a; a < b |] ==> a div b = 0"  | 
| 
47140
 
97c3676c5c94
rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
 
huffman 
parents: 
47139 
diff
changeset
 | 
1836  | 
apply (rule div_int_unique)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1837  | 
apply (auto simp add: divmod_int_rel_def)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1838  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1839  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1840  | 
lemma div_neg_neg_trivial: "[| a \<le> (0::int); b < a |] ==> a div b = 0"  | 
| 
47140
 
97c3676c5c94
rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
 
huffman 
parents: 
47139 
diff
changeset
 | 
1841  | 
apply (rule div_int_unique)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1842  | 
apply (auto simp add: divmod_int_rel_def)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1843  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1844  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1845  | 
lemma div_pos_neg_trivial: "[| (0::int) < a; a+b \<le> 0 |] ==> a div b = -1"  | 
| 
47140
 
97c3676c5c94
rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
 
huffman 
parents: 
47139 
diff
changeset
 | 
1846  | 
apply (rule div_int_unique)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1847  | 
apply (auto simp add: divmod_int_rel_def)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1848  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1849  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1850  | 
(*There is no div_neg_pos_trivial because 0 div b = 0 would supersede it*)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1851  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1852  | 
lemma mod_pos_pos_trivial: "[| (0::int) \<le> a; a < b |] ==> a mod b = a"  | 
| 
47140
 
97c3676c5c94
rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
 
huffman 
parents: 
47139 
diff
changeset
 | 
1853  | 
apply (rule_tac q = 0 in mod_int_unique)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1854  | 
apply (auto simp add: divmod_int_rel_def)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1855  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1856  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1857  | 
lemma mod_neg_neg_trivial: "[| a \<le> (0::int); b < a |] ==> a mod b = a"  | 
| 
47140
 
97c3676c5c94
rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
 
huffman 
parents: 
47139 
diff
changeset
 | 
1858  | 
apply (rule_tac q = 0 in mod_int_unique)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1859  | 
apply (auto simp add: divmod_int_rel_def)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1860  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1861  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1862  | 
lemma mod_pos_neg_trivial: "[| (0::int) < a; a+b \<le> 0 |] ==> a mod b = a+b"  | 
| 
47140
 
97c3676c5c94
rename lemmas {divmod_int_rel_{div,mod} -> {div,mod}_int_unique, for consistency with nat lemma names
 
huffman 
parents: 
47139 
diff
changeset
 | 
1863  | 
apply (rule_tac q = "-1" in mod_int_unique)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1864  | 
apply (auto simp add: divmod_int_rel_def)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1865  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1866  | 
|
| 61799 | 1867  | 
text\<open>There is no \<open>mod_neg_pos_trivial\<close>.\<close>  | 
| 60758 | 1868  | 
|
1869  | 
||
1870  | 
subsubsection \<open>Laws for div and mod with Unary Minus\<close>  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1871  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1872  | 
lemma zminus1_lemma:  | 
| 
47139
 
98bddfa0f717
extend definition of divmod_int_rel to handle denominator=0 case
 
huffman 
parents: 
47138 
diff
changeset
 | 
1873  | 
"divmod_int_rel a b (q, r) ==> b \<noteq> 0  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1874  | 
==> divmod_int_rel (-a) b (if r=0 then -q else -q - 1,  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1875  | 
if r=0 then 0 else b-r)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1876  | 
by (force simp add: split_ifs divmod_int_rel_def linorder_neq_iff right_diff_distrib)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1877  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1878  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1879  | 
lemma zdiv_zminus1_eq_if:  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1880  | 
"b \<noteq> (0::int)  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1881  | 
==> (-a) div b =  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1882  | 
(if a mod b = 0 then - (a div b) else - (a div b) - 1)"  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1883  | 
by (blast intro: divmod_int_rel [THEN zminus1_lemma, THEN div_int_unique])  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1884  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1885  | 
lemma zmod_zminus1_eq_if:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1886  | 
"(-a::int) mod b = (if a mod b = 0 then 0 else b - (a mod b))"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1887  | 
apply (case_tac "b = 0", simp)  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
1888  | 
apply (blast intro: divmod_int_rel [THEN zminus1_lemma, THEN mod_int_unique])  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1889  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1890  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1891  | 
lemma zmod_zminus1_not_zero:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1892  | 
fixes k l :: int  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1893  | 
shows "- k mod l \<noteq> 0 \<Longrightarrow> k mod l \<noteq> 0"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1894  | 
unfolding zmod_zminus1_eq_if by auto  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1895  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1896  | 
lemma zdiv_zminus2_eq_if:  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1897  | 
"b \<noteq> (0::int)  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1898  | 
==> a div (-b) =  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1899  | 
(if a mod b = 0 then - (a div b) else - (a div b) - 1)"  | 
| 47159 | 1900  | 
by (simp add: zdiv_zminus1_eq_if div_minus_right)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1901  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1902  | 
lemma zmod_zminus2_eq_if:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1903  | 
"a mod (-b::int) = (if a mod b = 0 then 0 else (a mod b) - b)"  | 
| 47159 | 1904  | 
by (simp add: zmod_zminus1_eq_if mod_minus_right)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1905  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1906  | 
lemma zmod_zminus2_not_zero:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1907  | 
fixes k l :: int  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1908  | 
shows "k mod - l \<noteq> 0 \<Longrightarrow> k mod l \<noteq> 0"  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1909  | 
unfolding zmod_zminus2_eq_if by auto  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1910  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1911  | 
|
| 60758 | 1912  | 
subsubsection \<open>Monotonicity in the First Argument (Dividend)\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1913  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1914  | 
lemma zdiv_mono1: "[| a \<le> a'; 0 < (b::int) |] ==> a div b \<le> a' div b"  | 
| 64246 | 1915  | 
using mult_div_mod_eq [symmetric, of a b]  | 
1916  | 
using mult_div_mod_eq [symmetric, of a' b]  | 
|
1917  | 
apply -  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1918  | 
apply (rule unique_quotient_lemma)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1919  | 
apply (erule subst)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1920  | 
apply (erule subst, simp_all)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1921  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1922  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1923  | 
lemma zdiv_mono1_neg: "[| a \<le> a'; (b::int) < 0 |] ==> a' div b \<le> a div b"  | 
| 64246 | 1924  | 
using mult_div_mod_eq [symmetric, of a b]  | 
1925  | 
using mult_div_mod_eq [symmetric, of a' b]  | 
|
1926  | 
apply -  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1927  | 
apply (rule unique_quotient_lemma_neg)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1928  | 
apply (erule subst)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1929  | 
apply (erule subst, simp_all)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1930  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1931  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1932  | 
|
| 60758 | 1933  | 
subsubsection \<open>Monotonicity in the Second Argument (Divisor)\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1934  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1935  | 
lemma q_pos_lemma:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1936  | 
"[| 0 \<le> b'*q' + r'; r' < b'; 0 < b' |] ==> 0 \<le> (q'::int)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1937  | 
apply (subgoal_tac "0 < b'* (q' + 1) ")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1938  | 
apply (simp add: zero_less_mult_iff)  | 
| 
49962
 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 
webertj 
parents: 
48891 
diff
changeset
 | 
1939  | 
apply (simp add: distrib_left)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1940  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1941  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1942  | 
lemma zdiv_mono2_lemma:  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1943  | 
"[| b*q + r = b'*q' + r'; 0 \<le> b'*q' + r';  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1944  | 
r' < b'; 0 \<le> r; 0 < b'; b' \<le> b |]  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1945  | 
==> q \<le> (q'::int)"  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1946  | 
apply (frule q_pos_lemma, assumption+)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1947  | 
apply (subgoal_tac "b*q < b* (q' + 1) ")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1948  | 
apply (simp add: mult_less_cancel_left)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1949  | 
apply (subgoal_tac "b*q = r' - r + b'*q'")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1950  | 
prefer 2 apply simp  | 
| 
49962
 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 
webertj 
parents: 
48891 
diff
changeset
 | 
1951  | 
apply (simp (no_asm_simp) add: distrib_left)  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
1952  | 
apply (subst add.commute, rule add_less_le_mono, arith)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1953  | 
apply (rule mult_right_mono, auto)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1954  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1955  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1956  | 
lemma zdiv_mono2:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1957  | 
"[| (0::int) \<le> a; 0 < b'; b' \<le> b |] ==> a div b \<le> a div b'"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1958  | 
apply (subgoal_tac "b \<noteq> 0")  | 
| 64246 | 1959  | 
prefer 2 apply arith  | 
1960  | 
using mult_div_mod_eq [symmetric, of a b]  | 
|
1961  | 
using mult_div_mod_eq [symmetric, of a b']  | 
|
1962  | 
apply -  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1963  | 
apply (rule zdiv_mono2_lemma)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1964  | 
apply (erule subst)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1965  | 
apply (erule subst, simp_all)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1966  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1967  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1968  | 
lemma q_neg_lemma:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1969  | 
"[| b'*q' + r' < 0; 0 \<le> r'; 0 < b' |] ==> q' \<le> (0::int)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1970  | 
apply (subgoal_tac "b'*q' < 0")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1971  | 
apply (simp add: mult_less_0_iff, arith)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1972  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1973  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1974  | 
lemma zdiv_mono2_neg_lemma:  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1975  | 
"[| b*q + r = b'*q' + r'; b'*q' + r' < 0;  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1976  | 
r < b; 0 \<le> r'; 0 < b'; b' \<le> b |]  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1977  | 
==> q' \<le> (q::int)"  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
1978  | 
apply (frule q_neg_lemma, assumption+)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1979  | 
apply (subgoal_tac "b*q' < b* (q + 1) ")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1980  | 
apply (simp add: mult_less_cancel_left)  | 
| 
49962
 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 
webertj 
parents: 
48891 
diff
changeset
 | 
1981  | 
apply (simp add: distrib_left)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1982  | 
apply (subgoal_tac "b*q' \<le> b'*q'")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1983  | 
prefer 2 apply (simp add: mult_right_mono_neg, arith)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1984  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1985  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1986  | 
lemma zdiv_mono2_neg:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1987  | 
"[| a < (0::int); 0 < b'; b' \<le> b |] ==> a div b' \<le> a div b"  | 
| 64246 | 1988  | 
using mult_div_mod_eq [symmetric, of a b]  | 
1989  | 
using mult_div_mod_eq [symmetric, of a b']  | 
|
1990  | 
apply -  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1991  | 
apply (rule zdiv_mono2_neg_lemma)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1992  | 
apply (erule subst)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1993  | 
apply (erule subst, simp_all)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1994  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1995  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
1996  | 
|
| 60758 | 1997  | 
subsubsection \<open>More Algebraic Laws for div and mod\<close>  | 
1998  | 
||
1999  | 
text\<open>proving (a*b) div c = a * (b div c) + a * (b mod c)\<close>  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2000  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2001  | 
lemma zmult1_lemma:  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2002  | 
"[| divmod_int_rel b c (q, r) |]  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2003  | 
==> divmod_int_rel (a * b) c (a*q + a*r div c, a*r mod c)"  | 
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
2004  | 
by (auto simp add: split_ifs divmod_int_rel_def linorder_neq_iff distrib_left ac_simps)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2005  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2006  | 
lemma zdiv_zmult1_eq: "(a*b) div c = a*(b div c) + a*(b mod c) div (c::int)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2007  | 
apply (case_tac "c = 0", simp)  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2008  | 
apply (blast intro: divmod_int_rel [THEN zmult1_lemma, THEN div_int_unique])  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2009  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2010  | 
|
| 60758 | 2011  | 
text\<open>proving (a+b) div c = a div c + b div c + ((a mod c + b mod c) div c)\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2012  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2013  | 
lemma zadd1_lemma:  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2014  | 
"[| divmod_int_rel a c (aq, ar); divmod_int_rel b c (bq, br) |]  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2015  | 
==> divmod_int_rel (a+b) c (aq + bq + (ar+br) div c, (ar+br) mod c)"  | 
| 
49962
 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 
webertj 
parents: 
48891 
diff
changeset
 | 
2016  | 
by (force simp add: split_ifs divmod_int_rel_def linorder_neq_iff distrib_left)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2017  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2018  | 
(*NOT suitable for rewriting: the RHS has an instance of the LHS*)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2019  | 
lemma zdiv_zadd1_eq:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2020  | 
"(a+b) div (c::int) = a div c + b div c + ((a mod c + b mod c) div c)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2021  | 
apply (case_tac "c = 0", simp)  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2022  | 
apply (blast intro: zadd1_lemma [OF divmod_int_rel divmod_int_rel] div_int_unique)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2023  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2024  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2025  | 
lemma zmod_eq_0_iff: "(m mod d = 0) = (EX q::int. m = d*q)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2026  | 
by (simp add: dvd_eq_mod_eq_0 [symmetric] dvd_def)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2027  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2028  | 
(* REVISIT: should this be generalized to all semiring_div types? *)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2029  | 
lemmas zmod_eq_0D [dest!] = zmod_eq_0_iff [THEN iffD1]  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2030  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2031  | 
|
| 60758 | 2032  | 
subsubsection \<open>Proving  @{term "a div (b * c) = (a div b) div c"}\<close>
 | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2033  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2034  | 
(*The condition c>0 seems necessary. Consider that 7 div ~6 = ~2 but  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2035  | 
7 div 2 div ~3 = 3 div ~3 = ~1. The subcase (a div b) mod c = 0 seems  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2036  | 
to cause particular problems.*)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2037  | 
|
| 60758 | 2038  | 
text\<open>first, four lemmas to bound the remainder for the cases b<0 and b>0\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2039  | 
|
| 
55085
 
0e8e4dc55866
moved 'fundef_cong' attribute (and other basic 'fun' stuff) up the dependency chain
 
blanchet 
parents: 
54489 
diff
changeset
 | 
2040  | 
lemma zmult2_lemma_aux1: "[| (0::int) < c; b < r; r \<le> 0 |] ==> b * c < b * (q mod c) + r"  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2041  | 
apply (subgoal_tac "b * (c - q mod c) < r * 1")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2042  | 
apply (simp add: algebra_simps)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2043  | 
apply (rule order_le_less_trans)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2044  | 
apply (erule_tac [2] mult_strict_right_mono)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2045  | 
apply (rule mult_left_mono_neg)  | 
| 35216 | 2046  | 
using add1_zle_eq[of "q mod c"]apply(simp add: algebra_simps)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2047  | 
apply (simp)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2048  | 
apply (simp)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2049  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2050  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2051  | 
lemma zmult2_lemma_aux2:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2052  | 
"[| (0::int) < c; b < r; r \<le> 0 |] ==> b * (q mod c) + r \<le> 0"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2053  | 
apply (subgoal_tac "b * (q mod c) \<le> 0")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2054  | 
apply arith  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2055  | 
apply (simp add: mult_le_0_iff)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2056  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2057  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2058  | 
lemma zmult2_lemma_aux3: "[| (0::int) < c; 0 \<le> r; r < b |] ==> 0 \<le> b * (q mod c) + r"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2059  | 
apply (subgoal_tac "0 \<le> b * (q mod c) ")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2060  | 
apply arith  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2061  | 
apply (simp add: zero_le_mult_iff)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2062  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2063  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2064  | 
lemma zmult2_lemma_aux4: "[| (0::int) < c; 0 \<le> r; r < b |] ==> b * (q mod c) + r < b * c"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2065  | 
apply (subgoal_tac "r * 1 < b * (c - q mod c) ")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2066  | 
apply (simp add: right_diff_distrib)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2067  | 
apply (rule order_less_le_trans)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2068  | 
apply (erule mult_strict_right_mono)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2069  | 
apply (rule_tac [2] mult_left_mono)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2070  | 
apply simp  | 
| 35216 | 2071  | 
using add1_zle_eq[of "q mod c"] apply (simp add: algebra_simps)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2072  | 
apply simp  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2073  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2074  | 
|
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2075  | 
lemma zmult2_lemma: "[| divmod_int_rel a b (q, r); 0 < c |]  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2076  | 
==> divmod_int_rel a (b * c) (q div c, b*(q mod c) + r)"  | 
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
2077  | 
by (auto simp add: mult.assoc divmod_int_rel_def linorder_neq_iff  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2078  | 
zero_less_mult_iff distrib_left [symmetric]  | 
| 62390 | 2079  | 
zmult2_lemma_aux1 zmult2_lemma_aux2 zmult2_lemma_aux3 zmult2_lemma_aux4 mult_less_0_iff split: if_split_asm)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2080  | 
|
| 53068 | 2081  | 
lemma zdiv_zmult2_eq:  | 
2082  | 
fixes a b c :: int  | 
|
2083  | 
shows "0 \<le> c \<Longrightarrow> a div (b * c) = (a div b) div c"  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2084  | 
apply (case_tac "b = 0", simp)  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2085  | 
apply (force simp add: le_less divmod_int_rel [THEN zmult2_lemma, THEN div_int_unique])  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2086  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2087  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2088  | 
lemma zmod_zmult2_eq:  | 
| 53068 | 2089  | 
fixes a b c :: int  | 
2090  | 
shows "0 \<le> c \<Longrightarrow> a mod (b * c) = b * (a div b mod c) + a mod b"  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2091  | 
apply (case_tac "b = 0", simp)  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2092  | 
apply (force simp add: le_less divmod_int_rel [THEN zmult2_lemma, THEN mod_int_unique])  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2093  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2094  | 
|
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2095  | 
lemma div_pos_geq:  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2096  | 
fixes k l :: int  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2097  | 
assumes "0 < l" and "l \<le> k"  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2098  | 
shows "k div l = (k - l) div l + 1"  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2099  | 
proof -  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2100  | 
have "k = (k - l) + l" by simp  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2101  | 
then obtain j where k: "k = j + l" ..  | 
| 
63499
 
9c9a59949887
Tuned looping simp rules in semiring_div
 
eberlm <eberlm@in.tum.de> 
parents: 
63417 
diff
changeset
 | 
2102  | 
with assms show ?thesis by (simp add: div_add_self2)  | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2103  | 
qed  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2104  | 
|
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2105  | 
lemma mod_pos_geq:  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2106  | 
fixes k l :: int  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2107  | 
assumes "0 < l" and "l \<le> k"  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2108  | 
shows "k mod l = (k - l) mod l"  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2109  | 
proof -  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2110  | 
have "k = (k - l) + l" by simp  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2111  | 
then obtain j where k: "k = j + l" ..  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2112  | 
with assms show ?thesis by simp  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2113  | 
qed  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2114  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2115  | 
|
| 60758 | 2116  | 
subsubsection \<open>Splitting Rules for div and mod\<close>  | 
2117  | 
||
2118  | 
text\<open>The proofs of the two lemmas below are essentially identical\<close>  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2119  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2120  | 
lemma split_pos_lemma:  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2121  | 
"0<k ==>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2122  | 
P(n div k :: int)(n mod k) = (\<forall>i j. 0\<le>j & j<k & n = k*i + j --> P i j)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2123  | 
apply (rule iffI, clarify)  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2124  | 
apply (erule_tac P="P x y" for x y in rev_mp)  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2125  | 
apply (subst mod_add_eq)  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2126  | 
apply (subst zdiv_zadd1_eq)  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2127  | 
apply (simp add: div_pos_pos_trivial mod_pos_pos_trivial)  | 
| 60758 | 2128  | 
txt\<open>converse direction\<close>  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2129  | 
apply (drule_tac x = "n div k" in spec)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2130  | 
apply (drule_tac x = "n mod k" in spec, simp)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2131  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2132  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2133  | 
lemma split_neg_lemma:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2134  | 
"k<0 ==>  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2135  | 
P(n div k :: int)(n mod k) = (\<forall>i j. k<j & j\<le>0 & n = k*i + j --> P i j)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2136  | 
apply (rule iffI, clarify)  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2137  | 
apply (erule_tac P="P x y" for x y in rev_mp)  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2138  | 
apply (subst mod_add_eq)  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2139  | 
apply (subst zdiv_zadd1_eq)  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2140  | 
apply (simp add: div_neg_neg_trivial mod_neg_neg_trivial)  | 
| 60758 | 2141  | 
txt\<open>converse direction\<close>  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2142  | 
apply (drule_tac x = "n div k" in spec)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2143  | 
apply (drule_tac x = "n mod k" in spec, simp)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2144  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2145  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2146  | 
lemma split_zdiv:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2147  | 
"P(n div k :: int) =  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2148  | 
((k = 0 --> P 0) &  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2149  | 
(0<k --> (\<forall>i j. 0\<le>j & j<k & n = k*i + j --> P i)) &  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2150  | 
(k<0 --> (\<forall>i j. k<j & j\<le>0 & n = k*i + j --> P i)))"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2151  | 
apply (case_tac "k=0", simp)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2152  | 
apply (simp only: linorder_neq_iff)  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2153  | 
apply (erule disjE)  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2154  | 
apply (simp_all add: split_pos_lemma [of concl: "%x y. P x"]  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2155  | 
split_neg_lemma [of concl: "%x y. P x"])  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2156  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2157  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2158  | 
lemma split_zmod:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2159  | 
"P(n mod k :: int) =  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2160  | 
((k = 0 --> P n) &  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2161  | 
(0<k --> (\<forall>i j. 0\<le>j & j<k & n = k*i + j --> P j)) &  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2162  | 
(k<0 --> (\<forall>i j. k<j & j\<le>0 & n = k*i + j --> P j)))"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2163  | 
apply (case_tac "k=0", simp)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2164  | 
apply (simp only: linorder_neq_iff)  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2165  | 
apply (erule disjE)  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2166  | 
apply (simp_all add: split_pos_lemma [of concl: "%x y. P y"]  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2167  | 
split_neg_lemma [of concl: "%x y. P y"])  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2168  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2169  | 
|
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
2170  | 
text \<open>Enable (lin)arith to deal with @{const divide} and @{const modulo}
 | 
| 
33730
 
1755ca4ec022
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 
webertj 
parents: 
33728 
diff
changeset
 | 
2171  | 
when these are applied to some constant that is of the form  | 
| 60758 | 2172  | 
  @{term "numeral k"}:\<close>
 | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2173  | 
declare split_zdiv [of _ _ "numeral k", arith_split] for k  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2174  | 
declare split_zmod [of _ _ "numeral k", arith_split] for k  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2175  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2176  | 
|
| 61799 | 2177  | 
subsubsection \<open>Computing \<open>div\<close> and \<open>mod\<close> with shifting\<close>  | 
| 47166 | 2178  | 
|
2179  | 
lemma pos_divmod_int_rel_mult_2:  | 
|
2180  | 
assumes "0 \<le> b"  | 
|
2181  | 
assumes "divmod_int_rel a b (q, r)"  | 
|
2182  | 
shows "divmod_int_rel (1 + 2*a) (2*b) (q, 1 + 2*r)"  | 
|
2183  | 
using assms unfolding divmod_int_rel_def by auto  | 
|
2184  | 
||
2185  | 
lemma neg_divmod_int_rel_mult_2:  | 
|
2186  | 
assumes "b \<le> 0"  | 
|
2187  | 
assumes "divmod_int_rel (a + 1) b (q, r)"  | 
|
2188  | 
shows "divmod_int_rel (1 + 2*a) (2*b) (q, 2*r - 1)"  | 
|
2189  | 
using assms unfolding divmod_int_rel_def by auto  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2190  | 
|
| 60758 | 2191  | 
text\<open>computing div by shifting\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2192  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2193  | 
lemma pos_zdiv_mult_2: "(0::int) \<le> a ==> (1 + 2*b) div (2*a) = b div a"  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2194  | 
using pos_divmod_int_rel_mult_2 [OF _ divmod_int_rel]  | 
| 47166 | 2195  | 
by (rule div_int_unique)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2196  | 
|
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2197  | 
lemma neg_zdiv_mult_2:  | 
| 
35815
 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 
boehmes 
parents: 
35673 
diff
changeset
 | 
2198  | 
assumes A: "a \<le> (0::int)" shows "(1 + 2*b) div (2*a) = (b+1) div a"  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2199  | 
using neg_divmod_int_rel_mult_2 [OF A divmod_int_rel]  | 
| 47166 | 2200  | 
by (rule div_int_unique)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2201  | 
|
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2202  | 
(* FIXME: add rules for negative numerals *)  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2203  | 
lemma zdiv_numeral_Bit0 [simp]:  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2204  | 
"numeral (Num.Bit0 v) div numeral (Num.Bit0 w) =  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2205  | 
numeral v div (numeral w :: int)"  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2206  | 
unfolding numeral.simps unfolding mult_2 [symmetric]  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2207  | 
by (rule div_mult_mult1, simp)  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2208  | 
|
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2209  | 
lemma zdiv_numeral_Bit1 [simp]:  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2210  | 
"numeral (Num.Bit1 v) div numeral (Num.Bit0 w) =  | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2211  | 
(numeral v div (numeral w :: int))"  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2212  | 
unfolding numeral.simps  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
2213  | 
unfolding mult_2 [symmetric] add.commute [of _ 1]  | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2214  | 
by (rule pos_zdiv_mult_2, simp)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2215  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2216  | 
lemma pos_zmod_mult_2:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2217  | 
fixes a b :: int  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2218  | 
assumes "0 \<le> a"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2219  | 
shows "(1 + 2 * b) mod (2 * a) = 1 + 2 * (b mod a)"  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2220  | 
using pos_divmod_int_rel_mult_2 [OF assms divmod_int_rel]  | 
| 47166 | 2221  | 
by (rule mod_int_unique)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2222  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2223  | 
lemma neg_zmod_mult_2:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2224  | 
fixes a b :: int  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2225  | 
assumes "a \<le> 0"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2226  | 
shows "(1 + 2 * b) mod (2 * a) = 2 * ((b + 1) mod a) - 1"  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2227  | 
using neg_divmod_int_rel_mult_2 [OF assms divmod_int_rel]  | 
| 47166 | 2228  | 
by (rule mod_int_unique)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2229  | 
|
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2230  | 
(* FIXME: add rules for negative numerals *)  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2231  | 
lemma zmod_numeral_Bit0 [simp]:  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2232  | 
"numeral (Num.Bit0 v) mod numeral (Num.Bit0 w) =  | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2233  | 
(2::int) * (numeral v mod numeral w)"  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2234  | 
unfolding numeral_Bit0 [of v] numeral_Bit0 [of w]  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2235  | 
unfolding mult_2 [symmetric] by (rule mod_mult_mult1)  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2236  | 
|
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2237  | 
lemma zmod_numeral_Bit1 [simp]:  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2238  | 
"numeral (Num.Bit1 v) mod numeral (Num.Bit0 w) =  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2239  | 
2 * (numeral v mod numeral w) + (1::int)"  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2240  | 
unfolding numeral_Bit1 [of v] numeral_Bit0 [of w]  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
2241  | 
unfolding mult_2 [symmetric] add.commute [of _ 1]  | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46560 
diff
changeset
 | 
2242  | 
by (rule pos_zmod_mult_2, simp)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2243  | 
|
| 39489 | 2244  | 
lemma zdiv_eq_0_iff:  | 
2245  | 
"(i::int) div k = 0 \<longleftrightarrow> k=0 \<or> 0\<le>i \<and> i<k \<or> i\<le>0 \<and> k<i" (is "?L = ?R")  | 
|
2246  | 
proof  | 
|
2247  | 
assume ?L  | 
|
2248  | 
have "?L \<longrightarrow> ?R" by (rule split_zdiv[THEN iffD2]) simp  | 
|
| 60758 | 2249  | 
with \<open>?L\<close> show ?R by blast  | 
| 39489 | 2250  | 
next  | 
2251  | 
assume ?R thus ?L  | 
|
2252  | 
by(auto simp: div_pos_pos_trivial div_neg_neg_trivial)  | 
|
2253  | 
qed  | 
|
2254  | 
||
| 63947 | 2255  | 
lemma zmod_trival_iff:  | 
2256  | 
fixes i k :: int  | 
|
2257  | 
shows "i mod k = i \<longleftrightarrow> k = 0 \<or> 0 \<le> i \<and> i < k \<or> i \<le> 0 \<and> k < i"  | 
|
2258  | 
proof -  | 
|
2259  | 
have "i mod k = i \<longleftrightarrow> i div k = 0"  | 
|
| 
64242
 
93c6f0da5c70
more standardized theorem names for facts involving the div and mod identity
 
haftmann 
parents: 
64240 
diff
changeset
 | 
2260  | 
by safe (insert div_mult_mod_eq [of i k], auto)  | 
| 63947 | 2261  | 
with zdiv_eq_0_iff  | 
2262  | 
show ?thesis  | 
|
2263  | 
by simp  | 
|
2264  | 
qed  | 
|
| 39489 | 2265  | 
|
| 60758 | 2266  | 
subsubsection \<open>Quotients of Signs\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2267  | 
|
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2268  | 
lemma div_eq_minus1: "(0::int) < b ==> -1 div b = -1"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2269  | 
by (simp add: divide_int_def)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2270  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2271  | 
lemma zmod_minus1: "(0::int) < b ==> -1 mod b = b - 1"  | 
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
2272  | 
by (simp add: modulo_int_def)  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2273  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2274  | 
lemma div_neg_pos_less0: "[| a < (0::int); 0 < b |] ==> a div b < 0"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2275  | 
apply (subgoal_tac "a div b \<le> -1", force)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2276  | 
apply (rule order_trans)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2277  | 
apply (rule_tac a' = "-1" in zdiv_mono1)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2278  | 
apply (auto simp add: div_eq_minus1)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2279  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2280  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2281  | 
lemma div_nonneg_neg_le0: "[| (0::int) \<le> a; b < 0 |] ==> a div b \<le> 0"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2282  | 
by (drule zdiv_mono1_neg, auto)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2283  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2284  | 
lemma div_nonpos_pos_le0: "[| (a::int) \<le> 0; b > 0 |] ==> a div b \<le> 0"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2285  | 
by (drule zdiv_mono1, auto)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2286  | 
|
| 61799 | 2287  | 
text\<open>Now for some equivalences of the form \<open>a div b >=< 0 \<longleftrightarrow> \<dots>\<close>  | 
2288  | 
conditional upon the sign of \<open>a\<close> or \<open>b\<close>. There are many more.  | 
|
| 60758 | 2289  | 
They should all be simp rules unless that causes too much search.\<close>  | 
| 33804 | 2290  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2291  | 
lemma pos_imp_zdiv_nonneg_iff: "(0::int) < b ==> (0 \<le> a div b) = (0 \<le> a)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2292  | 
apply auto  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2293  | 
apply (drule_tac [2] zdiv_mono1)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2294  | 
apply (auto simp add: linorder_neq_iff)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2295  | 
apply (simp (no_asm_use) add: linorder_not_less [symmetric])  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2296  | 
apply (blast intro: div_neg_pos_less0)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2297  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2298  | 
|
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2299  | 
lemma pos_imp_zdiv_pos_iff:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2300  | 
"0<k \<Longrightarrow> 0 < (i::int) div k \<longleftrightarrow> k \<le> i"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2301  | 
using pos_imp_zdiv_nonneg_iff[of k i] zdiv_eq_0_iff[of i k]  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2302  | 
by arith  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2303  | 
|
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2304  | 
lemma neg_imp_zdiv_nonneg_iff:  | 
| 33804 | 2305  | 
"b < (0::int) ==> (0 \<le> a div b) = (a \<le> (0::int))"  | 
| 47159 | 2306  | 
apply (subst div_minus_minus [symmetric])  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2307  | 
apply (subst pos_imp_zdiv_nonneg_iff, auto)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2308  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2309  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2310  | 
(*But not (a div b \<le> 0 iff a\<le>0); consider a=1, b=2 when a div b = 0.*)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2311  | 
lemma pos_imp_zdiv_neg_iff: "(0::int) < b ==> (a div b < 0) = (a < 0)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2312  | 
by (simp add: linorder_not_le [symmetric] pos_imp_zdiv_nonneg_iff)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2313  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2314  | 
(*Again the law fails for \<le>: consider a = -1, b = -2 when a div b = 0*)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2315  | 
lemma neg_imp_zdiv_neg_iff: "b < (0::int) ==> (a div b < 0) = (0 < a)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2316  | 
by (simp add: linorder_not_le [symmetric] neg_imp_zdiv_nonneg_iff)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2317  | 
|
| 33804 | 2318  | 
lemma nonneg1_imp_zdiv_pos_iff:  | 
2319  | 
"(0::int) <= a \<Longrightarrow> (a div b > 0) = (a >= b & b>0)"  | 
|
2320  | 
apply rule  | 
|
2321  | 
apply rule  | 
|
2322  | 
using div_pos_pos_trivial[of a b]apply arith  | 
|
2323  | 
apply(cases "b=0")apply simp  | 
|
2324  | 
using div_nonneg_neg_le0[of a b]apply arith  | 
|
2325  | 
using int_one_le_iff_zero_less[of "a div b"] zdiv_mono1[of b a b]apply simp  | 
|
2326  | 
done  | 
|
2327  | 
||
| 39489 | 2328  | 
lemma zmod_le_nonneg_dividend: "(m::int) \<ge> 0 ==> m mod k \<le> m"  | 
2329  | 
apply (rule split_zmod[THEN iffD2])  | 
|
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44766 
diff
changeset
 | 
2330  | 
apply(fastforce dest: q_pos_lemma intro: split_mult_pos_le)  | 
| 39489 | 2331  | 
done  | 
2332  | 
||
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2333  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2334  | 
subsubsection \<open>Computation of Division and Remainder\<close>  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2335  | 
|
| 
61275
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2336  | 
instantiation int :: semiring_numeral_div  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2337  | 
begin  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2338  | 
|
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2339  | 
definition divmod_int :: "num \<Rightarrow> num \<Rightarrow> int \<times> int"  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2340  | 
where  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2341  | 
"divmod_int m n = (numeral m div numeral n, numeral m mod numeral n)"  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2342  | 
|
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2343  | 
definition divmod_step_int :: "num \<Rightarrow> int \<times> int \<Rightarrow> int \<times> int"  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2344  | 
where  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2345  | 
"divmod_step_int l qr = (let (q, r) = qr  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2346  | 
in if r \<ge> numeral l then (2 * q + 1, r - numeral l)  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2347  | 
else (2 * q, r))"  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2348  | 
|
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2349  | 
instance  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2350  | 
by standard (auto intro: zmod_le_nonneg_dividend simp add: divmod_int_def divmod_step_int_def  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2351  | 
pos_imp_zdiv_pos_iff div_pos_pos_trivial mod_pos_pos_trivial zmod_zmult2_eq zdiv_zmult2_eq)  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2352  | 
|
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2353  | 
end  | 
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2354  | 
|
| 
 
053ec04ea866
monomorphization of divmod wrt. code generation avoids costly dictionary unpacking at runtime
 
haftmann 
parents: 
61201 
diff
changeset
 | 
2355  | 
declare divmod_algorithm_code [where ?'a = int, code]  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2356  | 
|
| 60930 | 2357  | 
context  | 
2358  | 
begin  | 
|
2359  | 
||
2360  | 
qualified definition adjust_div :: "int \<times> int \<Rightarrow> int"  | 
|
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2361  | 
where  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2362  | 
"adjust_div qr = (let (q, r) = qr in q + of_bool (r \<noteq> 0))"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2363  | 
|
| 60930 | 2364  | 
qualified lemma adjust_div_eq [simp, code]:  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2365  | 
"adjust_div (q, r) = q + of_bool (r \<noteq> 0)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2366  | 
by (simp add: adjust_div_def)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2367  | 
|
| 60930 | 2368  | 
qualified definition adjust_mod :: "int \<Rightarrow> int \<Rightarrow> int"  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2369  | 
where  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2370  | 
[simp]: "adjust_mod l r = (if r = 0 then 0 else l - r)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2371  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2372  | 
lemma minus_numeral_div_numeral [simp]:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2373  | 
"- numeral m div numeral n = - (adjust_div (divmod m n) :: int)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2374  | 
proof -  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2375  | 
have "int (fst (divmod m n)) = fst (divmod m n)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2376  | 
by (simp only: fst_divmod divide_int_def) auto  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2377  | 
then show ?thesis  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2378  | 
by (auto simp add: split_def Let_def adjust_div_def divides_aux_def divide_int_def)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2379  | 
qed  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2380  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2381  | 
lemma minus_numeral_mod_numeral [simp]:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2382  | 
"- numeral m mod numeral n = adjust_mod (numeral n) (snd (divmod m n) :: int)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2383  | 
proof -  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2384  | 
have "int (snd (divmod m n)) = snd (divmod m n)" if "snd (divmod m n) \<noteq> (0::int)"  | 
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
2385  | 
using that by (simp only: snd_divmod modulo_int_def) auto  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2386  | 
then show ?thesis  | 
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
2387  | 
by (auto simp add: split_def Let_def adjust_div_def divides_aux_def modulo_int_def)  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2388  | 
qed  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2389  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2390  | 
lemma numeral_div_minus_numeral [simp]:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2391  | 
"numeral m div - numeral n = - (adjust_div (divmod m n) :: int)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2392  | 
proof -  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2393  | 
have "int (fst (divmod m n)) = fst (divmod m n)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2394  | 
by (simp only: fst_divmod divide_int_def) auto  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2395  | 
then show ?thesis  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2396  | 
by (auto simp add: split_def Let_def adjust_div_def divides_aux_def divide_int_def)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2397  | 
qed  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2398  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2399  | 
lemma numeral_mod_minus_numeral [simp]:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2400  | 
"numeral m mod - numeral n = - adjust_mod (numeral n) (snd (divmod m n) :: int)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2401  | 
proof -  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2402  | 
have "int (snd (divmod m n)) = snd (divmod m n)" if "snd (divmod m n) \<noteq> (0::int)"  | 
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
2403  | 
using that by (simp only: snd_divmod modulo_int_def) auto  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2404  | 
then show ?thesis  | 
| 
63950
 
cdc1e59aa513
syntactic type class for operation mod named after mod;
 
haftmann 
parents: 
63947 
diff
changeset
 | 
2405  | 
by (auto simp add: split_def Let_def adjust_div_def divides_aux_def modulo_int_def)  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2406  | 
qed  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2407  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2408  | 
lemma minus_one_div_numeral [simp]:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2409  | 
"- 1 div numeral n = - (adjust_div (divmod Num.One n) :: int)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2410  | 
using minus_numeral_div_numeral [of Num.One n] by simp  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2411  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2412  | 
lemma minus_one_mod_numeral [simp]:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2413  | 
"- 1 mod numeral n = adjust_mod (numeral n) (snd (divmod Num.One n) :: int)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2414  | 
using minus_numeral_mod_numeral [of Num.One n] by simp  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2415  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2416  | 
lemma one_div_minus_numeral [simp]:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2417  | 
"1 div - numeral n = - (adjust_div (divmod Num.One n) :: int)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2418  | 
using numeral_div_minus_numeral [of Num.One n] by simp  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2419  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2420  | 
lemma one_mod_minus_numeral [simp]:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2421  | 
"1 mod - numeral n = - adjust_mod (numeral n) (snd (divmod Num.One n) :: int)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2422  | 
using numeral_mod_minus_numeral [of Num.One n] by simp  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2423  | 
|
| 60930 | 2424  | 
end  | 
2425  | 
||
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2426  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2427  | 
subsubsection \<open>Further properties\<close>  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2428  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2429  | 
text \<open>Simplify expresions in which div and mod combine numerical constants\<close>  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2430  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2431  | 
lemma int_div_pos_eq: "\<lbrakk>(a::int) = b * q + r; 0 \<le> r; r < b\<rbrakk> \<Longrightarrow> a div b = q"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2432  | 
by (rule div_int_unique [of a b q r]) (simp add: divmod_int_rel_def)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2433  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2434  | 
lemma int_div_neg_eq: "\<lbrakk>(a::int) = b * q + r; r \<le> 0; b < r\<rbrakk> \<Longrightarrow> a div b = q"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2435  | 
by (rule div_int_unique [of a b q r],  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2436  | 
simp add: divmod_int_rel_def)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2437  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2438  | 
lemma int_mod_pos_eq: "\<lbrakk>(a::int) = b * q + r; 0 \<le> r; r < b\<rbrakk> \<Longrightarrow> a mod b = r"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2439  | 
by (rule mod_int_unique [of a b q r],  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2440  | 
simp add: divmod_int_rel_def)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2441  | 
|
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2442  | 
lemma int_mod_neg_eq: "\<lbrakk>(a::int) = b * q + r; r \<le> 0; b < r\<rbrakk> \<Longrightarrow> a mod b = r"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2443  | 
by (rule mod_int_unique [of a b q r],  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2444  | 
simp add: divmod_int_rel_def)  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2445  | 
|
| 61944 | 2446  | 
lemma abs_div: "(y::int) dvd x \<Longrightarrow> \<bar>x div y\<bar> = \<bar>x\<bar> div \<bar>y\<bar>"  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2447  | 
by (unfold dvd_def, cases "y=0", auto simp add: abs_mult)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2448  | 
|
| 60758 | 2449  | 
text\<open>Suggested by Matthias Daum\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2450  | 
lemma int_power_div_base:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2451  | 
"\<lbrakk>0 < m; 0 < k\<rbrakk> \<Longrightarrow> k ^ m div k = (k::int) ^ (m - Suc 0)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2452  | 
apply (subgoal_tac "k ^ m = k ^ ((m - Suc 0) + Suc 0)")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2453  | 
apply (erule ssubst)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2454  | 
apply (simp only: power_add)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2455  | 
apply simp_all  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2456  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2457  | 
|
| 60758 | 2458  | 
text \<open>by Brian Huffman\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2459  | 
lemma zminus_zmod: "- ((x::int) mod m) mod m = - x mod m"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2460  | 
by (rule mod_minus_eq [symmetric])  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2461  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2462  | 
lemma zdiff_zmod_left: "(x mod m - y) mod m = (x - y) mod (m::int)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2463  | 
by (rule mod_diff_left_eq [symmetric])  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2464  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2465  | 
lemma zdiff_zmod_right: "(x - y mod m) mod m = (x - y) mod (m::int)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2466  | 
by (rule mod_diff_right_eq [symmetric])  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2467  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2468  | 
lemmas zmod_simps =  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2469  | 
mod_add_left_eq [symmetric]  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2470  | 
mod_add_right_eq [symmetric]  | 
| 47142 | 2471  | 
mod_mult_right_eq[symmetric]  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2472  | 
mod_mult_left_eq [symmetric]  | 
| 47164 | 2473  | 
power_mod  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2474  | 
zminus_zmod zdiff_zmod_left zdiff_zmod_right  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2475  | 
|
| 61799 | 2476  | 
text \<open>Distributive laws for function \<open>nat\<close>.\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2477  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2478  | 
lemma nat_div_distrib: "0 \<le> x \<Longrightarrow> nat (x div y) = nat x div nat y"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2479  | 
apply (rule linorder_cases [of y 0])  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2480  | 
apply (simp add: div_nonneg_neg_le0)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2481  | 
apply simp  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2482  | 
apply (simp add: nat_eq_iff pos_imp_zdiv_nonneg_iff zdiv_int)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2483  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2484  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2485  | 
(*Fails if y<0: the LHS collapses to (nat z) but the RHS doesn't*)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2486  | 
lemma nat_mod_distrib:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2487  | 
"\<lbrakk>0 \<le> x; 0 \<le> y\<rbrakk> \<Longrightarrow> nat (x mod y) = nat x mod nat y"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2488  | 
apply (case_tac "y = 0", simp)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2489  | 
apply (simp add: nat_eq_iff zmod_int)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2490  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2491  | 
|
| 60758 | 2492  | 
text \<open>transfer setup\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2493  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2494  | 
lemma transfer_nat_int_functions:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2495  | 
"(x::int) >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> (nat x) div (nat y) = nat (x div y)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2496  | 
"(x::int) >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> (nat x) mod (nat y) = nat (x mod y)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2497  | 
by (auto simp add: nat_div_distrib nat_mod_distrib)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2498  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2499  | 
lemma transfer_nat_int_function_closures:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2500  | 
"(x::int) >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> x div y >= 0"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2501  | 
"(x::int) >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> x mod y >= 0"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2502  | 
apply (cases "y = 0")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2503  | 
apply (auto simp add: pos_imp_zdiv_nonneg_iff)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2504  | 
apply (cases "y = 0")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2505  | 
apply auto  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2506  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2507  | 
|
| 35644 | 2508  | 
declare transfer_morphism_nat_int [transfer add return:  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2509  | 
transfer_nat_int_functions  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2510  | 
transfer_nat_int_function_closures  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2511  | 
]  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2512  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2513  | 
lemma transfer_int_nat_functions:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2514  | 
"(int x) div (int y) = int (x div y)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2515  | 
"(int x) mod (int y) = int (x mod y)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2516  | 
by (auto simp add: zdiv_int zmod_int)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2517  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2518  | 
lemma transfer_int_nat_function_closures:  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2519  | 
"is_nat x \<Longrightarrow> is_nat y \<Longrightarrow> is_nat (x div y)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2520  | 
"is_nat x \<Longrightarrow> is_nat y \<Longrightarrow> is_nat (x mod y)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2521  | 
by (simp_all only: is_nat_def transfer_nat_int_function_closures)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2522  | 
|
| 35644 | 2523  | 
declare transfer_morphism_int_nat [transfer add return:  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2524  | 
transfer_int_nat_functions  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2525  | 
transfer_int_nat_function_closures  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2526  | 
]  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2527  | 
|
| 60758 | 2528  | 
text\<open>Suggested by Matthias Daum\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2529  | 
lemma int_div_less_self: "\<lbrakk>0 < x; 1 < k\<rbrakk> \<Longrightarrow> x div k < (x::int)"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2530  | 
apply (subgoal_tac "nat x div nat k < nat x")  | 
| 34225 | 2531  | 
apply (simp add: nat_div_distrib [symmetric])  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2532  | 
apply (rule Divides.div_less_dividend, simp_all)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2533  | 
done  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2534  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2535  | 
lemma zmod_eq_dvd_iff: "(x::int) mod n = y mod n \<longleftrightarrow> n dvd x - y"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2536  | 
proof  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2537  | 
assume H: "x mod n = y mod n"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2538  | 
hence "x mod n - y mod n = 0" by simp  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2539  | 
hence "(x mod n - y mod n) mod n = 0" by simp  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2540  | 
hence "(x - y) mod n = 0" by (simp add: mod_diff_eq[symmetric])  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2541  | 
thus "n dvd x - y" by (simp add: dvd_eq_mod_eq_0)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2542  | 
next  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2543  | 
assume H: "n dvd x - y"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2544  | 
then obtain k where k: "x-y = n*k" unfolding dvd_def by blast  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2545  | 
hence "x = n*k + y" by simp  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2546  | 
hence "x mod n = (n*k + y) mod n" by simp  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2547  | 
thus "x mod n = y mod n" by (simp add: mod_add_left_eq)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2548  | 
qed  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2549  | 
|
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2550  | 
lemma nat_mod_eq_lemma: assumes xyn: "(x::nat) mod n = y mod n" and xy:"y \<le> x"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2551  | 
shows "\<exists>q. x = y + n * q"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2552  | 
proof-  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2553  | 
from xy have th: "int x - int y = int (x - y)" by simp  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2554  | 
from xyn have "int x mod int n = int y mod int n"  | 
| 
46551
 
866bce5442a3
simplify projections on simultaneous computations of div and mod; tuned structure (from Florian Haftmann)
 
huffman 
parents: 
46026 
diff
changeset
 | 
2555  | 
by (simp add: zmod_int [symmetric])  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2556  | 
hence "int n dvd int x - int y" by (simp only: zmod_eq_dvd_iff[symmetric])  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2557  | 
hence "n dvd x - y" by (simp add: th zdvd_int)  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2558  | 
then show ?thesis using xy unfolding dvd_def apply clarsimp apply (rule_tac x="k" in exI) by arith  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2559  | 
qed  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2560  | 
|
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2561  | 
lemma nat_mod_eq_iff: "(x::nat) mod n = y mod n \<longleftrightarrow> (\<exists>q1 q2. x + n * q1 = y + n * q2)"  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2562  | 
(is "?lhs = ?rhs")  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2563  | 
proof  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2564  | 
assume H: "x mod n = y mod n"  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2565  | 
  {assume xy: "x \<le> y"
 | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2566  | 
from H have th: "y mod n = x mod n" by simp  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2567  | 
from nat_mod_eq_lemma[OF th xy] have ?rhs  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2568  | 
apply clarify apply (rule_tac x="q" in exI) by (rule exI[where x="0"], simp)}  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2569  | 
moreover  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2570  | 
  {assume xy: "y \<le> x"
 | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2571  | 
from nat_mod_eq_lemma[OF H xy] have ?rhs  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2572  | 
apply clarify apply (rule_tac x="0" in exI) by (rule_tac x="q" in exI, simp)}  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60517 
diff
changeset
 | 
2573  | 
ultimately show ?rhs using linear[of x y] by blast  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2574  | 
next  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2575  | 
assume ?rhs then obtain q1 q2 where q12: "x + n * q1 = y + n * q2" by blast  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2576  | 
hence "(x + n * q1) mod n = (y + n * q2) mod n" by simp  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2577  | 
thus ?lhs by simp  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2578  | 
qed  | 
| 
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2579  | 
|
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2580  | 
subsubsection \<open>Dedicated simproc for calculation\<close>  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2581  | 
|
| 60758 | 2582  | 
text \<open>  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2583  | 
There is space for improvement here: the calculation itself  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2584  | 
could be carried outside the logic, and a generic simproc  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2585  | 
(simplifier setup) for generic calculation would be helpful.  | 
| 60758 | 2586  | 
\<close>  | 
| 
53067
 
ee0b7c2315d2
type class for generic division algorithm on numerals
 
haftmann 
parents: 
53066 
diff
changeset
 | 
2587  | 
|
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2588  | 
simproc_setup numeral_divmod  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2589  | 
  ("0 div 0 :: 'a :: semiring_numeral_div" | "0 mod 0 :: 'a :: semiring_numeral_div" |
 | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2590  | 
"0 div 1 :: 'a :: semiring_numeral_div" | "0 mod 1 :: 'a :: semiring_numeral_div" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2591  | 
"0 div - 1 :: int" | "0 mod - 1 :: int" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2592  | 
"0 div numeral b :: 'a :: semiring_numeral_div" | "0 mod numeral b :: 'a :: semiring_numeral_div" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2593  | 
"0 div - numeral b :: int" | "0 mod - numeral b :: int" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2594  | 
"1 div 0 :: 'a :: semiring_numeral_div" | "1 mod 0 :: 'a :: semiring_numeral_div" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2595  | 
"1 div 1 :: 'a :: semiring_numeral_div" | "1 mod 1 :: 'a :: semiring_numeral_div" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2596  | 
"1 div - 1 :: int" | "1 mod - 1 :: int" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2597  | 
"1 div numeral b :: 'a :: semiring_numeral_div" | "1 mod numeral b :: 'a :: semiring_numeral_div" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2598  | 
"1 div - numeral b :: int" |"1 mod - numeral b :: int" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2599  | 
"- 1 div 0 :: int" | "- 1 mod 0 :: int" | "- 1 div 1 :: int" | "- 1 mod 1 :: int" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2600  | 
"- 1 div - 1 :: int" | "- 1 mod - 1 :: int" | "- 1 div numeral b :: int" | "- 1 mod numeral b :: int" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2601  | 
"- 1 div - numeral b :: int" | "- 1 mod - numeral b :: int" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2602  | 
"numeral a div 0 :: 'a :: semiring_numeral_div" | "numeral a mod 0 :: 'a :: semiring_numeral_div" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2603  | 
"numeral a div 1 :: 'a :: semiring_numeral_div" | "numeral a mod 1 :: 'a :: semiring_numeral_div" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2604  | 
"numeral a div - 1 :: int" | "numeral a mod - 1 :: int" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2605  | 
"numeral a div numeral b :: 'a :: semiring_numeral_div" | "numeral a mod numeral b :: 'a :: semiring_numeral_div" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2606  | 
"numeral a div - numeral b :: int" | "numeral a mod - numeral b :: int" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2607  | 
"- numeral a div 0 :: int" | "- numeral a mod 0 :: int" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2608  | 
"- numeral a div 1 :: int" | "- numeral a mod 1 :: int" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2609  | 
"- numeral a div - 1 :: int" | "- numeral a mod - 1 :: int" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2610  | 
"- numeral a div numeral b :: int" | "- numeral a mod numeral b :: int" |  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2611  | 
"- numeral a div - numeral b :: int" | "- numeral a mod - numeral b :: int") =  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2612  | 
\<open> let  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2613  | 
    val if_cong = the (Code.get_case_cong @{theory} @{const_name If});
 | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2614  | 
fun successful_rewrite ctxt ct =  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2615  | 
let  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2616  | 
val thm = Simplifier.rewrite ctxt ct  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2617  | 
in if Thm.is_reflexive thm then NONE else SOME thm end;  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2618  | 
in fn phi =>  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2619  | 
let  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2620  | 
      val simps = Morphism.fact phi (@{thms div_0 mod_0 div_by_0 mod_by_0 div_by_1 mod_by_1
 | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2621  | 
one_div_numeral one_mod_numeral minus_one_div_numeral minus_one_mod_numeral  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2622  | 
one_div_minus_numeral one_mod_minus_numeral  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2623  | 
numeral_div_numeral numeral_mod_numeral minus_numeral_div_numeral minus_numeral_mod_numeral  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2624  | 
numeral_div_minus_numeral numeral_mod_minus_numeral  | 
| 60930 | 2625  | 
div_minus_minus mod_minus_minus Divides.adjust_div_eq of_bool_eq one_neq_zero  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2626  | 
numeral_neq_zero neg_equal_0_iff_equal arith_simps arith_special divmod_trivial  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2627  | 
divmod_cancel divmod_steps divmod_step_eq fst_conv snd_conv numeral_One  | 
| 60930 | 2628  | 
case_prod_beta rel_simps Divides.adjust_mod_def div_minus1_right mod_minus1_right  | 
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2629  | 
minus_minus numeral_times_numeral mult_zero_right mult_1_right}  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2630  | 
        @ [@{lemma "0 = 0 \<longleftrightarrow> True" by simp}]);
 | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2631  | 
fun prepare_simpset ctxt = HOL_ss |> Simplifier.simpset_map ctxt  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2632  | 
(Simplifier.add_cong if_cong #> fold Simplifier.add_simp simps)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2633  | 
in fn ctxt => successful_rewrite (Simplifier.put_simpset (prepare_simpset ctxt) ctxt) end  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2634  | 
end;  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2635  | 
\<close>  | 
| 34126 | 2636  | 
|
| 35673 | 2637  | 
|
| 60758 | 2638  | 
subsubsection \<open>Code generation\<close>  | 
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2639  | 
|
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2640  | 
lemma [code]:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2641  | 
fixes k :: int  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2642  | 
shows  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2643  | 
"k div 0 = 0"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2644  | 
"k mod 0 = k"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2645  | 
"0 div k = 0"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2646  | 
"0 mod k = 0"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2647  | 
"k div Int.Pos Num.One = k"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2648  | 
"k mod Int.Pos Num.One = 0"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2649  | 
"k div Int.Neg Num.One = - k"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2650  | 
"k mod Int.Neg Num.One = 0"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2651  | 
"Int.Pos m div Int.Pos n = (fst (divmod m n) :: int)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2652  | 
"Int.Pos m mod Int.Pos n = (snd (divmod m n) :: int)"  | 
| 60930 | 2653  | 
"Int.Neg m div Int.Pos n = - (Divides.adjust_div (divmod m n) :: int)"  | 
2654  | 
"Int.Neg m mod Int.Pos n = Divides.adjust_mod (Int.Pos n) (snd (divmod m n) :: int)"  | 
|
2655  | 
"Int.Pos m div Int.Neg n = - (Divides.adjust_div (divmod m n) :: int)"  | 
|
2656  | 
"Int.Pos m mod Int.Neg n = - Divides.adjust_mod (Int.Pos n) (snd (divmod m n) :: int)"  | 
|
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2657  | 
"Int.Neg m div Int.Neg n = (fst (divmod m n) :: int)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2658  | 
"Int.Neg m mod Int.Neg n = - (snd (divmod m n) :: int)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2659  | 
by simp_all  | 
| 
53069
 
d165213e3924
execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
 
haftmann 
parents: 
53068 
diff
changeset
 | 
2660  | 
|
| 
52435
 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 
haftmann 
parents: 
52398 
diff
changeset
 | 
2661  | 
code_identifier  | 
| 
 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 
haftmann 
parents: 
52398 
diff
changeset
 | 
2662  | 
code_module Divides \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith  | 
| 33364 | 2663  | 
|
| 
60868
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2664  | 
lemma dvd_eq_mod_eq_0_numeral:  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2665  | 
"numeral x dvd (numeral y :: 'a) \<longleftrightarrow> numeral y mod numeral x = (0 :: 'a::semiring_div)"  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2666  | 
by (fact dvd_eq_mod_eq_0)  | 
| 
 
dd18c33c001e
direct bootstrap of integer division from natural division
 
haftmann 
parents: 
60867 
diff
changeset
 | 
2667  | 
|
| 64246 | 2668  | 
declare minus_div_mult_eq_mod [symmetric, nitpick_unfold]  | 
2669  | 
||
| 64240 | 2670  | 
hide_fact (open) div_0 div_by_0  | 
2671  | 
||
| 
33361
 
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
 
haftmann 
parents: 
33340 
diff
changeset
 | 
2672  | 
end  |