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