author | haftmann |
Tue, 21 Jul 2009 14:38:07 +0200 | |
changeset 32120 | 53a21a5e6889 |
parent 32010 | cb1a1c94b4cd |
child 33274 | b6ff7db522b5 |
permissions | -rw-r--r-- |
3366 | 1 |
(* Title: HOL/Divides.thy |
2 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
6865
5577ffe4c2f1
now div and mod are overloaded; dvd is polymorphic
paulson
parents:
3366
diff
changeset
|
3 |
Copyright 1999 University of Cambridge |
18154 | 4 |
*) |
3366 | 5 |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
6 |
header {* The division operators div and mod *} |
3366 | 7 |
|
15131 | 8 |
theory Divides |
26748
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
krauss
parents:
26300
diff
changeset
|
9 |
imports Nat Power Product_Type |
22993 | 10 |
uses "~~/src/Provers/Arith/cancel_div_mod.ML" |
15131 | 11 |
begin |
3366 | 12 |
|
25942 | 13 |
subsection {* Syntactic division operations *} |
14 |
||
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
15 |
class div = dvd + |
27540 | 16 |
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
|
17 |
and mod :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "mod" 70) |
27540 | 18 |
|
19 |
||
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
20 |
subsection {* Abstract division in commutative semirings. *} |
25942 | 21 |
|
30930 | 22 |
class semiring_div = comm_semiring_1_cancel + no_zero_divisors + div + |
25942 | 23 |
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
|
24 |
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
|
25 |
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
|
26 |
and div_mult_self1 [simp]: "b \<noteq> 0 \<Longrightarrow> (a + c * b) div b = c + a div b" |
30930 | 27 |
and div_mult_mult1 [simp]: "c \<noteq> 0 \<Longrightarrow> (c * a) div (c * b) = 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" |
30934 | 41 |
by (simp add: mod_div_equality) |
26062 | 42 |
|
43 |
lemma div_mod_equality2: "(b * (a div b) + a mod b) + c = a + c" |
|
30934 | 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" |
30934 | 47 |
using mod_div_equality [of a zero] by simp |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
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" |
30934 | 50 |
using mod_div_equality [of zero a] div_0 by simp |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
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" |
30934 | 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 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31952
diff
changeset
|
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 |
||
30052 | 181 |
lemma dvd_div_mult: "a dvd b \<Longrightarrow> (b div a) * c = b * c div a" |
182 |
apply (cases "a = 0") |
|
183 |
apply simp |
|
184 |
apply (auto simp: dvd_def mult_assoc) |
|
185 |
done |
|
186 |
||
29925 | 187 |
lemma div_dvd_div[simp]: |
188 |
"a dvd b \<Longrightarrow> a dvd c \<Longrightarrow> (b div a dvd c div a) = (b dvd c)" |
|
189 |
apply (cases "a = 0") |
|
190 |
apply simp |
|
191 |
apply (unfold dvd_def) |
|
192 |
apply auto |
|
193 |
apply(blast intro:mult_assoc[symmetric]) |
|
194 |
apply(fastsimp simp add: mult_assoc) |
|
195 |
done |
|
196 |
||
30078
beee83623cc9
move lemma dvd_mod_imp_dvd into class semiring_div
huffman
parents:
30052
diff
changeset
|
197 |
lemma dvd_mod_imp_dvd: "[| k dvd m mod n; k dvd n |] ==> k dvd m" |
beee83623cc9
move lemma dvd_mod_imp_dvd into class semiring_div
huffman
parents:
30052
diff
changeset
|
198 |
apply (subgoal_tac "k dvd (m div n) *n + m mod n") |
beee83623cc9
move lemma dvd_mod_imp_dvd into class semiring_div
huffman
parents:
30052
diff
changeset
|
199 |
apply (simp add: mod_div_equality) |
beee83623cc9
move lemma dvd_mod_imp_dvd into class semiring_div
huffman
parents:
30052
diff
changeset
|
200 |
apply (simp only: dvd_add dvd_mult) |
beee83623cc9
move lemma dvd_mod_imp_dvd into class semiring_div
huffman
parents:
30052
diff
changeset
|
201 |
done |
beee83623cc9
move lemma dvd_mod_imp_dvd into class semiring_div
huffman
parents:
30052
diff
changeset
|
202 |
|
29403
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
203 |
text {* Addition respects modular equivalence. *} |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
204 |
|
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
205 |
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
|
206 |
proof - |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
207 |
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
|
208 |
by (simp only: mod_div_equality) |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
209 |
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
|
210 |
by (simp only: add_ac) |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
211 |
also have "\<dots> = (a mod c + b) mod c" |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
212 |
by (rule mod_mult_self1) |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
213 |
finally show ?thesis . |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
214 |
qed |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
215 |
|
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
216 |
lemma mod_add_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
|
217 |
proof - |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
218 |
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
|
219 |
by (simp only: mod_div_equality) |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
220 |
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
|
221 |
by (simp only: add_ac) |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
222 |
also have "\<dots> = (a + b mod c) mod c" |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
223 |
by (rule mod_mult_self1) |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
224 |
finally show ?thesis . |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
225 |
qed |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
226 |
|
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
227 |
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
|
228 |
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
|
229 |
|
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
230 |
lemma mod_add_cong: |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
231 |
assumes "a mod c = a' mod c" |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
232 |
assumes "b mod c = b' mod c" |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
233 |
shows "(a + b) mod c = (a' + b') mod c" |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
234 |
proof - |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
235 |
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
|
236 |
unfolding assms .. |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
237 |
thus ?thesis |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
238 |
by (simp only: mod_add_eq [symmetric]) |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
239 |
qed |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
240 |
|
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
241 |
lemma div_add [simp]: "z dvd x \<Longrightarrow> z dvd y |
30837
3d4832d9f7e4
added strong_setprod_cong[cong] (in analogy with setsum)
nipkow
parents:
30729
diff
changeset
|
242 |
\<Longrightarrow> (x + y) div z = x div z + y div z" |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
243 |
by (cases "z = 0", simp, unfold dvd_def, auto simp add: algebra_simps) |
30837
3d4832d9f7e4
added strong_setprod_cong[cong] (in analogy with setsum)
nipkow
parents:
30729
diff
changeset
|
244 |
|
29403
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
245 |
text {* Multiplication respects modular equivalence. *} |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
246 |
|
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
247 |
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
|
248 |
proof - |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
249 |
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
|
250 |
by (simp only: mod_div_equality) |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
251 |
also have "\<dots> = (a mod c * b + a div c * b * c) mod c" |
29667 | 252 |
by (simp only: algebra_simps) |
29403
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
253 |
also have "\<dots> = (a mod c * b) mod c" |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
254 |
by (rule mod_mult_self1) |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
255 |
finally show ?thesis . |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
256 |
qed |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
257 |
|
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
258 |
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
|
259 |
proof - |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
260 |
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
|
261 |
by (simp only: mod_div_equality) |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
262 |
also have "\<dots> = (a * (b mod c) + a * (b div c) * c) mod c" |
29667 | 263 |
by (simp only: algebra_simps) |
29403
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
264 |
also have "\<dots> = (a * (b mod c)) mod c" |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
265 |
by (rule mod_mult_self1) |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
266 |
finally show ?thesis . |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
267 |
qed |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
268 |
|
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
269 |
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
|
270 |
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
|
271 |
|
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
272 |
lemma mod_mult_cong: |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
273 |
assumes "a mod c = a' mod c" |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
274 |
assumes "b mod c = b' mod c" |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
275 |
shows "(a * b) mod c = (a' * b') mod c" |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
276 |
proof - |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
277 |
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
|
278 |
unfolding assms .. |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
279 |
thus ?thesis |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
280 |
by (simp only: mod_mult_eq [symmetric]) |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
281 |
qed |
fe17df4e4ab3
generalize some div/mod lemmas; remove type-specific proofs
huffman
parents:
29252
diff
changeset
|
282 |
|
29404 | 283 |
lemma mod_mod_cancel: |
284 |
assumes "c dvd b" |
|
285 |
shows "a mod b mod c = a mod c" |
|
286 |
proof - |
|
287 |
from `c dvd b` obtain k where "b = c * k" |
|
288 |
by (rule dvdE) |
|
289 |
have "a mod b mod c = a mod (c * k) mod c" |
|
290 |
by (simp only: `b = c * k`) |
|
291 |
also have "\<dots> = (a mod (c * k) + a div (c * k) * k * c) mod c" |
|
292 |
by (simp only: mod_mult_self1) |
|
293 |
also have "\<dots> = (a div (c * k) * (c * k) + a mod (c * k)) mod c" |
|
294 |
by (simp only: add_ac mult_ac) |
|
295 |
also have "\<dots> = a mod c" |
|
296 |
by (simp only: mod_div_equality) |
|
297 |
finally show ?thesis . |
|
298 |
qed |
|
299 |
||
30930 | 300 |
lemma div_mult_div_if_dvd: |
301 |
"y dvd x \<Longrightarrow> z dvd w \<Longrightarrow> (x div y) * (w div z) = (x * w) div (y * z)" |
|
302 |
apply (cases "y = 0", simp) |
|
303 |
apply (cases "z = 0", simp) |
|
304 |
apply (auto elim!: dvdE simp add: algebra_simps) |
|
30476 | 305 |
apply (subst mult_assoc [symmetric]) |
306 |
apply (simp add: no_zero_divisors) |
|
30930 | 307 |
done |
308 |
||
309 |
lemma div_mult_mult2 [simp]: |
|
310 |
"c \<noteq> 0 \<Longrightarrow> (a * c) div (b * c) = a div b" |
|
311 |
by (drule div_mult_mult1) (simp add: mult_commute) |
|
312 |
||
313 |
lemma div_mult_mult1_if [simp]: |
|
314 |
"(c * a) div (c * b) = (if c = 0 then 0 else a div b)" |
|
315 |
by simp_all |
|
30476 | 316 |
|
30930 | 317 |
lemma mod_mult_mult1: |
318 |
"(c * a) mod (c * b) = c * (a mod b)" |
|
319 |
proof (cases "c = 0") |
|
320 |
case True then show ?thesis by simp |
|
321 |
next |
|
322 |
case False |
|
323 |
from mod_div_equality |
|
324 |
have "((c * a) div (c * b)) * (c * b) + (c * a) mod (c * b) = c * a" . |
|
325 |
with False have "c * ((a div b) * b + a mod b) + (c * a) mod (c * b) |
|
326 |
= c * a + c * (a mod b)" by (simp add: algebra_simps) |
|
327 |
with mod_div_equality show ?thesis by simp |
|
328 |
qed |
|
329 |
||
330 |
lemma mod_mult_mult2: |
|
331 |
"(a * c) mod (b * c) = (a mod b) * c" |
|
332 |
using mod_mult_mult1 [of c a b] by (simp add: mult_commute) |
|
333 |
||
31662
57f7ef0dba8e
generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
huffman
parents:
31661
diff
changeset
|
334 |
lemma dvd_mod: "k dvd m \<Longrightarrow> k dvd n \<Longrightarrow> k dvd (m mod n)" |
57f7ef0dba8e
generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
huffman
parents:
31661
diff
changeset
|
335 |
unfolding dvd_def by (auto simp add: mod_mult_mult1) |
57f7ef0dba8e
generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
huffman
parents:
31661
diff
changeset
|
336 |
|
57f7ef0dba8e
generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
huffman
parents:
31661
diff
changeset
|
337 |
lemma dvd_mod_iff: "k dvd n \<Longrightarrow> k dvd (m mod n) \<longleftrightarrow> k dvd m" |
57f7ef0dba8e
generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
huffman
parents:
31661
diff
changeset
|
338 |
by (blast intro: dvd_mod_imp_dvd dvd_mod) |
57f7ef0dba8e
generalize lemmas dvd_mod and dvd_mod_iff to class semiring_div
huffman
parents:
31661
diff
changeset
|
339 |
|
31009
41fd307cab30
dropped reference to class recpower and lemma duplicate
haftmann
parents:
30934
diff
changeset
|
340 |
lemma div_power: |
31661
1e252b8b2334
move lemma div_power into semiring_div context; class ring_div inherits from idom
huffman
parents:
31009
diff
changeset
|
341 |
"y dvd x \<Longrightarrow> (x div y) ^ n = x ^ n div y ^ n" |
30476 | 342 |
apply (induct n) |
343 |
apply simp |
|
344 |
apply(simp add: div_mult_div_if_dvd dvd_power_same) |
|
345 |
done |
|
346 |
||
31661
1e252b8b2334
move lemma div_power into semiring_div context; class ring_div inherits from idom
huffman
parents:
31009
diff
changeset
|
347 |
end |
1e252b8b2334
move lemma div_power into semiring_div context; class ring_div inherits from idom
huffman
parents:
31009
diff
changeset
|
348 |
|
1e252b8b2334
move lemma div_power into semiring_div context; class ring_div inherits from idom
huffman
parents:
31009
diff
changeset
|
349 |
class ring_div = semiring_div + idom |
29405
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
350 |
begin |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
351 |
|
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
352 |
text {* Negation respects modular equivalence. *} |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
353 |
|
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
354 |
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
|
355 |
proof - |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
356 |
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
|
357 |
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
|
358 |
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
|
359 |
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
|
360 |
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
|
361 |
by (rule mod_mult_self1) |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
362 |
finally show ?thesis . |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
363 |
qed |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
364 |
|
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
365 |
lemma mod_minus_cong: |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
366 |
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
|
367 |
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
|
368 |
proof - |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
369 |
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
|
370 |
unfolding assms .. |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
371 |
thus ?thesis |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
372 |
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
|
373 |
qed |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
374 |
|
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
375 |
text {* Subtraction respects modular equivalence. *} |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
376 |
|
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
377 |
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
|
378 |
unfolding diff_minus |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
379 |
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
|
380 |
|
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
381 |
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
|
382 |
unfolding diff_minus |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
383 |
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
|
384 |
|
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
385 |
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
|
386 |
unfolding diff_minus |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
387 |
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
|
388 |
|
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
389 |
lemma mod_diff_cong: |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
390 |
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
|
391 |
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
|
392 |
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
|
393 |
unfolding diff_minus using assms |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
394 |
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
|
395 |
|
30180 | 396 |
lemma dvd_neg_div: "y dvd x \<Longrightarrow> -x div y = - (x div y)" |
397 |
apply (case_tac "y = 0") apply simp |
|
398 |
apply (auto simp add: dvd_def) |
|
399 |
apply (subgoal_tac "-(y * k) = y * - k") |
|
400 |
apply (erule ssubst) |
|
401 |
apply (erule div_mult_self1_is_id) |
|
402 |
apply simp |
|
403 |
done |
|
404 |
||
405 |
lemma dvd_div_neg: "y dvd x \<Longrightarrow> x div -y = - (x div y)" |
|
406 |
apply (case_tac "y = 0") apply simp |
|
407 |
apply (auto simp add: dvd_def) |
|
408 |
apply (subgoal_tac "y * k = -y * -k") |
|
409 |
apply (erule ssubst) |
|
410 |
apply (rule div_mult_self1_is_id) |
|
411 |
apply simp |
|
412 |
apply simp |
|
413 |
done |
|
414 |
||
29405
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
415 |
end |
98ab21b14f09
add class ring_div; generalize mod/diff/minus proofs for class ring_div
huffman
parents:
29404
diff
changeset
|
416 |
|
25942 | 417 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
418 |
subsection {* Division on @{typ nat} *} |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
419 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
420 |
text {* |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
421 |
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
|
422 |
of a characteristic relation with two input arguments |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
423 |
@{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
|
424 |
@{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
|
425 |
*} |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
426 |
|
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
427 |
definition divmod_rel :: "nat \<Rightarrow> nat \<Rightarrow> nat \<times> nat \<Rightarrow> bool" where |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
428 |
"divmod_rel m n qr \<longleftrightarrow> |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
429 |
m = fst qr * n + snd qr \<and> |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
430 |
(if n = 0 then fst qr = 0 else if n > 0 then 0 \<le> snd qr \<and> snd qr < n else n < snd qr \<and> snd qr \<le> 0)" |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
431 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
432 |
text {* @{const divmod_rel} is total: *} |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
433 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
434 |
lemma divmod_rel_ex: |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
435 |
obtains q r where "divmod_rel m n (q, r)" |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
436 |
proof (cases "n = 0") |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
437 |
case True with that show thesis |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
438 |
by (auto simp add: divmod_rel_def) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
439 |
next |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
440 |
case False |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
441 |
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
|
442 |
proof (induct m) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
443 |
case 0 with `n \<noteq> 0` |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
444 |
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
|
445 |
then show ?case by blast |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
446 |
next |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
447 |
case (Suc m) then obtain q' r' |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
448 |
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
|
449 |
then show ?case proof (cases "Suc r' < n") |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
450 |
case True |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
451 |
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
|
452 |
with True show ?thesis by blast |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
453 |
next |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
454 |
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
|
455 |
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
|
456 |
ultimately have "n = Suc r'" by auto |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
457 |
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
|
458 |
with `n \<noteq> 0` show ?thesis by blast |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
459 |
qed |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
460 |
qed |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
461 |
with that show thesis |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
462 |
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
|
463 |
qed |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
464 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
465 |
text {* @{const divmod_rel} is injective: *} |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
466 |
|
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
467 |
lemma divmod_rel_unique: |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
468 |
assumes "divmod_rel m n qr" |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
469 |
and "divmod_rel m n qr'" |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
470 |
shows "qr = qr'" |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
471 |
proof (cases "n = 0") |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
472 |
case True with assms show ?thesis |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
473 |
by (cases qr, cases qr') |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
474 |
(simp add: divmod_rel_def) |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
475 |
next |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
476 |
case False |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
477 |
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
|
478 |
apply (rule leI) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
479 |
apply (subst less_iff_Suc_add) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
480 |
apply (auto simp add: add_mult_distrib) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
481 |
done |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
482 |
from `n \<noteq> 0` assms have "fst qr = fst qr'" |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
483 |
by (auto simp add: divmod_rel_def intro: order_antisym dest: aux sym) |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
484 |
moreover from this assms have "snd qr = snd qr'" |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
485 |
by (simp add: divmod_rel_def) |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
486 |
ultimately show ?thesis by (cases qr, cases qr') simp |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
487 |
qed |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
488 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
489 |
text {* |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
490 |
We instantiate divisibility on the natural numbers by |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
491 |
means of @{const divmod_rel}: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
492 |
*} |
25942 | 493 |
|
494 |
instantiation nat :: semiring_div |
|
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25162
diff
changeset
|
495 |
begin |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25162
diff
changeset
|
496 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
497 |
definition divmod :: "nat \<Rightarrow> nat \<Rightarrow> nat \<times> nat" where |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
498 |
[code del]: "divmod m n = (THE qr. divmod_rel m n qr)" |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
499 |
|
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
500 |
lemma divmod_rel_divmod: |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
501 |
"divmod_rel m n (divmod m n)" |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
502 |
proof - |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
503 |
from divmod_rel_ex |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
504 |
obtain qr where rel: "divmod_rel m n qr" . |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
505 |
then show ?thesis |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
506 |
by (auto simp add: divmod_def intro: theI elim: divmod_rel_unique) |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
507 |
qed |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
508 |
|
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
509 |
lemma divmod_eq: |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
510 |
assumes "divmod_rel m n qr" |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
511 |
shows "divmod m n = qr" |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
512 |
using assms by (auto intro: divmod_rel_unique divmod_rel_divmod) |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
513 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
514 |
definition div_nat where |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
515 |
"m div n = fst (divmod m n)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
516 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
517 |
definition mod_nat where |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
518 |
"m mod n = snd (divmod m n)" |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25162
diff
changeset
|
519 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
520 |
lemma divmod_div_mod: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
521 |
"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
|
522 |
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
|
523 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
524 |
lemma div_eq: |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
525 |
assumes "divmod_rel m n (q, r)" |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
526 |
shows "m div n = q" |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
527 |
using assms by (auto dest: divmod_eq simp add: divmod_div_mod) |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
528 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
529 |
lemma mod_eq: |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
530 |
assumes "divmod_rel m n (q, r)" |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
531 |
shows "m mod n = r" |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
532 |
using assms by (auto dest: divmod_eq simp add: divmod_div_mod) |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25162
diff
changeset
|
533 |
|
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
534 |
lemma divmod_rel: "divmod_rel m n (m div n, m mod n)" |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
535 |
by (simp add: div_nat_def mod_nat_def divmod_rel_divmod) |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
536 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
537 |
lemma divmod_zero: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
538 |
"divmod m 0 = (0, m)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
539 |
proof - |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
540 |
from divmod_rel [of m 0] show ?thesis |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
541 |
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
|
542 |
qed |
25942 | 543 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
544 |
lemma divmod_base: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
545 |
assumes "m < n" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
546 |
shows "divmod m n = (0, m)" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
547 |
proof - |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
548 |
from divmod_rel [of m n] show ?thesis |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
549 |
unfolding divmod_div_mod divmod_rel_def |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
550 |
using assms by (cases "m div n = 0") |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
551 |
(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
|
552 |
qed |
25942 | 553 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
554 |
lemma divmod_step: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
555 |
assumes "0 < n" and "n \<le> m" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
556 |
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
|
557 |
proof - |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
558 |
from divmod_rel have divmod_m_n: "divmod_rel m n (m div n, m mod n)" . |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
559 |
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
|
560 |
by (cases "m div n") (auto simp add: divmod_rel_def) |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
561 |
from assms divmod_m_n have "divmod_rel (m - n) n (m div n - Suc 0, m mod n)" |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
562 |
by (cases "m div n") (auto simp add: divmod_rel_def) |
30079
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents:
30078
diff
changeset
|
563 |
with divmod_eq have "divmod (m - n) n = (m div n - Suc 0, m mod n)" by simp |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
564 |
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
|
565 |
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
|
566 |
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
|
567 |
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
|
568 |
qed |
25942 | 569 |
|
26300 | 570 |
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
|
571 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
572 |
lemma div_less [simp]: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
573 |
fixes m n :: nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
574 |
assumes "m < n" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
575 |
shows "m div n = 0" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
576 |
using assms divmod_base divmod_div_mod by simp |
25942 | 577 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
578 |
lemma le_div_geq: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
579 |
fixes m n :: nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
580 |
assumes "0 < n" and "n \<le> m" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
581 |
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
|
582 |
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
|
583 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
584 |
lemma mod_less [simp]: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
585 |
fixes m n :: nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
586 |
assumes "m < n" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
587 |
shows "m mod n = m" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
588 |
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
|
589 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
590 |
lemma le_mod_geq: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
591 |
fixes m n :: nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
592 |
assumes "n \<le> m" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
593 |
shows "m mod n = (m - n) mod n" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
594 |
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
|
595 |
|
30930 | 596 |
instance proof - |
597 |
have [simp]: "\<And>n::nat. n div 0 = 0" |
|
598 |
by (simp add: div_nat_def divmod_zero) |
|
599 |
have [simp]: "\<And>n::nat. 0 div n = 0" |
|
600 |
proof - |
|
601 |
fix n :: nat |
|
602 |
show "0 div n = 0" |
|
603 |
by (cases "n = 0") simp_all |
|
604 |
qed |
|
605 |
show "OFCLASS(nat, semiring_div_class)" proof |
|
606 |
fix m n :: nat |
|
607 |
show "m div n * n + m mod n = m" |
|
608 |
using divmod_rel [of m n] by (simp add: divmod_rel_def) |
|
609 |
next |
|
610 |
fix m n q :: nat |
|
611 |
assume "n \<noteq> 0" |
|
612 |
then show "(q + m * n) div n = m + q div n" |
|
613 |
by (induct m) (simp_all add: le_div_geq) |
|
614 |
next |
|
615 |
fix m n q :: nat |
|
616 |
assume "m \<noteq> 0" |
|
617 |
then show "(m * n) div (m * q) = n div q" |
|
618 |
proof (cases "n \<noteq> 0 \<and> q \<noteq> 0") |
|
619 |
case False then show ?thesis by auto |
|
620 |
next |
|
621 |
case True with `m \<noteq> 0` |
|
622 |
have "m > 0" and "n > 0" and "q > 0" by auto |
|
623 |
then have "\<And>a b. divmod_rel n q (a, b) \<Longrightarrow> divmod_rel (m * n) (m * q) (a, m * b)" |
|
624 |
by (auto simp add: divmod_rel_def) (simp_all add: algebra_simps) |
|
625 |
moreover from divmod_rel have "divmod_rel n q (n div q, n mod q)" . |
|
626 |
ultimately have "divmod_rel (m * n) (m * q) (n div q, m * (n mod q))" . |
|
627 |
then show ?thesis by (simp add: div_eq) |
|
628 |
qed |
|
629 |
qed simp_all |
|
25942 | 630 |
qed |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
631 |
|
25942 | 632 |
end |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
633 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
634 |
text {* Simproc for cancelling @{const div} and @{const mod} *} |
25942 | 635 |
|
30934 | 636 |
ML {* |
637 |
local |
|
638 |
||
639 |
structure CancelDivMod = CancelDivModFun(struct |
|
25942 | 640 |
|
30934 | 641 |
val div_name = @{const_name div}; |
642 |
val mod_name = @{const_name mod}; |
|
643 |
val mk_binop = HOLogic.mk_binop; |
|
644 |
val mk_sum = Nat_Arith.mk_sum; |
|
645 |
val dest_sum = Nat_Arith.dest_sum; |
|
25942 | 646 |
|
30934 | 647 |
val div_mod_eqs = map mk_meta_eq [@{thm div_mod_equality}, @{thm div_mod_equality2}]; |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
648 |
|
30934 | 649 |
val trans = trans; |
25942 | 650 |
|
30934 | 651 |
val prove_eq_sums = Arith_Data.prove_conv2 all_tac (Arith_Data.simp_all_tac |
652 |
(@{thm monoid_add_class.add_0_left} :: @{thm monoid_add_class.add_0_right} :: @{thms add_ac})) |
|
25942 | 653 |
|
30934 | 654 |
end) |
25942 | 655 |
|
30934 | 656 |
in |
25942 | 657 |
|
32010 | 658 |
val cancel_div_mod_nat_proc = Simplifier.simproc @{theory} |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
659 |
"cancel_div_mod" ["(m::nat) + n"] (K CancelDivMod.proc); |
25942 | 660 |
|
30934 | 661 |
val _ = Addsimprocs [cancel_div_mod_nat_proc]; |
662 |
||
663 |
end |
|
25942 | 664 |
*} |
665 |
||
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
666 |
text {* code generator setup *} |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
667 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
668 |
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
|
669 |
let (q, r) = divmod (m - n) n in (Suc q, r))" |
29667 | 670 |
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
|
671 |
(simp add: divmod_div_mod) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
672 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
673 |
code_modulename SML |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
674 |
Divides Nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
675 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
676 |
code_modulename OCaml |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
677 |
Divides Nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
678 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
679 |
code_modulename Haskell |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
680 |
Divides Nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
681 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
682 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
683 |
subsubsection {* Quotient *} |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
684 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
685 |
lemma div_geq: "0 < n \<Longrightarrow> \<not> m < n \<Longrightarrow> m div n = Suc ((m - n) div n)" |
29667 | 686 |
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
|
687 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
688 |
lemma div_if: "0 < n \<Longrightarrow> m div n = (if m < n then 0 else Suc ((m - n) div n))" |
29667 | 689 |
by (simp add: div_geq) |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
690 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
691 |
lemma div_mult_self_is_m [simp]: "0<n ==> (m*n) div n = (m::nat)" |
29667 | 692 |
by simp |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
693 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
694 |
lemma div_mult_self1_is_m [simp]: "0<n ==> (n*m) div n = (m::nat)" |
29667 | 695 |
by simp |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
696 |
|
25942 | 697 |
|
698 |
subsubsection {* Remainder *} |
|
699 |
||
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
700 |
lemma mod_less_divisor [simp]: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
701 |
fixes m n :: nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
702 |
assumes "n > 0" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
703 |
shows "m mod n < (n::nat)" |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
704 |
using assms divmod_rel [of m n] 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
|
705 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
706 |
lemma mod_less_eq_dividend [simp]: |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
707 |
fixes m n :: nat |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
708 |
shows "m mod n \<le> m" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
709 |
proof (rule add_leD2) |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
710 |
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
|
711 |
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
|
712 |
qed |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
713 |
|
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
714 |
lemma mod_geq: "\<not> m < (n\<Colon>nat) \<Longrightarrow> m mod n = (m - n) mod n" |
29667 | 715 |
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
|
716 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
717 |
lemma mod_if: "m mod (n\<Colon>nat) = (if m < n then m else (m - n) mod n)" |
29667 | 718 |
by (simp add: le_mod_geq) |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
719 |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
720 |
lemma mod_1 [simp]: "m mod Suc 0 = 0" |
29667 | 721 |
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
|
722 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
723 |
lemma mod_mult_distrib: "(m mod n) * (k\<Colon>nat) = (m * k) mod (n * k)" |
22718 | 724 |
apply (cases "n = 0", simp) |
725 |
apply (cases "k = 0", simp) |
|
726 |
apply (induct m rule: nat_less_induct) |
|
727 |
apply (subst mod_if, simp) |
|
728 |
apply (simp add: mod_geq diff_mult_distrib) |
|
729 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
730 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
731 |
lemma mod_mult_distrib2: "(k::nat) * (m mod n) = (k*m) mod (k*n)" |
29667 | 732 |
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
|
733 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
734 |
(* 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
|
735 |
lemma mult_div_cancel: "(n::nat) * (m div n) = m - (m mod n)" |
29667 | 736 |
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
|
737 |
|
15439 | 738 |
lemma mod_le_divisor[simp]: "0 < n \<Longrightarrow> m mod n \<le> (n::nat)" |
22718 | 739 |
apply (drule mod_less_divisor [where m = m]) |
740 |
apply simp |
|
741 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
742 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
743 |
subsubsection {* Quotient and Remainder *} |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
744 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
745 |
lemma divmod_rel_mult1_eq: |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
746 |
"divmod_rel b c (q, r) \<Longrightarrow> c > 0 |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
747 |
\<Longrightarrow> divmod_rel (a * b) c (a * q + a * r div c, a * r mod c)" |
29667 | 748 |
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
|
749 |
|
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
750 |
lemma div_mult1_eq: |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
751 |
"(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
|
752 |
apply (cases "c = 0", simp) |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
753 |
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
|
754 |
done |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
755 |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
756 |
lemma divmod_rel_add1_eq: |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
757 |
"divmod_rel a c (aq, ar) \<Longrightarrow> divmod_rel b c (bq, br) \<Longrightarrow> c > 0 |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
758 |
\<Longrightarrow> divmod_rel (a + b) c (aq + bq + (ar + br) div c, (ar + br) mod c)" |
29667 | 759 |
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
|
760 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
761 |
(*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
|
762 |
lemma div_add1_eq: |
25134
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents:
25112
diff
changeset
|
763 |
"(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
|
764 |
apply (cases "c = 0", simp) |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
765 |
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
|
766 |
done |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
767 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
768 |
lemma mod_lemma: "[| (0::nat) < c; r < b |] ==> b * (q mod c) + r < b * c" |
22718 | 769 |
apply (cut_tac m = q and n = c in mod_less_divisor) |
770 |
apply (drule_tac [2] m = "q mod c" in less_imp_Suc_add, auto) |
|
771 |
apply (erule_tac P = "%x. ?lhs < ?rhs x" in ssubst) |
|
772 |
apply (simp add: add_mult_distrib2) |
|
773 |
done |
|
10559
d3fd54fc659b
many new div and mod properties (borrowed from Integ/IntDiv)
paulson
parents:
10214
diff
changeset
|
774 |
|
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
775 |
lemma divmod_rel_mult2_eq: |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
776 |
"divmod_rel a b (q, r) \<Longrightarrow> 0 < b \<Longrightarrow> 0 < c |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
777 |
\<Longrightarrow> divmod_rel a (b * c) (q div c, b *(q mod c) + r)" |
29667 | 778 |
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
|
779 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
780 |
lemma div_mult2_eq: "a div (b*c) = (a div b) div (c::nat)" |
22718 | 781 |
apply (cases "b = 0", simp) |
782 |
apply (cases "c = 0", simp) |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
783 |
apply (force simp add: divmod_rel [THEN divmod_rel_mult2_eq, THEN div_eq]) |
22718 | 784 |
done |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
785 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
786 |
lemma mod_mult2_eq: "a mod (b*c) = b*(a div b mod c) + a mod (b::nat)" |
22718 | 787 |
apply (cases "b = 0", simp) |
788 |
apply (cases "c = 0", simp) |
|
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
789 |
apply (auto simp add: mult_commute divmod_rel [THEN divmod_rel_mult2_eq, THEN mod_eq]) |
22718 | 790 |
done |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
791 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
792 |
|
25942 | 793 |
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
|
794 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
795 |
lemma div_1 [simp]: "m div Suc 0 = m" |
29667 | 796 |
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
|
797 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
798 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
799 |
(* Monotonicity of div in first argument *) |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
800 |
lemma div_le_mono [rule_format (no_asm)]: |
22718 | 801 |
"\<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
|
802 |
apply (case_tac "k=0", simp) |
15251 | 803 |
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
|
804 |
apply (case_tac "n<k") |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
805 |
(* 1 case n<k *) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
806 |
apply simp |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
807 |
(* 2 case n >= k *) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
808 |
apply (case_tac "m<k") |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
809 |
(* 2.1 case m<k *) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
810 |
apply simp |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
811 |
(* 2.2 case m>=k *) |
15439 | 812 |
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
|
813 |
done |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
814 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
815 |
(* Antimonotonicity of div in second argument *) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
816 |
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
|
817 |
apply (subgoal_tac "0<n") |
22718 | 818 |
prefer 2 apply simp |
15251 | 819 |
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
|
820 |
apply (rename_tac "k") |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
821 |
apply (case_tac "k<n", simp) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
822 |
apply (subgoal_tac "~ (k<m) ") |
22718 | 823 |
prefer 2 apply simp |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
824 |
apply (simp add: div_geq) |
15251 | 825 |
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
|
826 |
prefer 2 |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
827 |
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
|
828 |
apply (rule le_trans, simp) |
15439 | 829 |
apply (simp) |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
830 |
done |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
831 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
832 |
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
|
833 |
apply (case_tac "n=0", simp) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
834 |
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
|
835 |
apply (rule div_le_mono2) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
836 |
apply (simp_all (no_asm_simp)) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
837 |
done |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
838 |
|
22718 | 839 |
(* Similar for "less than" *) |
17085 | 840 |
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
|
841 |
"!!n::nat. 1<n ==> 0 < m --> m div n < m" |
15251 | 842 |
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
|
843 |
apply (rename_tac "m") |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
844 |
apply (case_tac "m<n", simp) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
845 |
apply (subgoal_tac "0<n") |
22718 | 846 |
prefer 2 apply simp |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
847 |
apply (simp add: div_geq) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
848 |
apply (case_tac "n<m") |
15251 | 849 |
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
|
850 |
apply (rule impI less_trans_Suc)+ |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
851 |
apply assumption |
15439 | 852 |
apply (simp_all) |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
853 |
done |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
854 |
|
17085 | 855 |
declare div_less_dividend [simp] |
856 |
||
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
857 |
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
|
858 |
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
|
859 |
apply (case_tac "n=0", simp) |
15251 | 860 |
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
|
861 |
apply (case_tac "Suc (na) <n") |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
862 |
(* case Suc(na) < n *) |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
863 |
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
|
864 |
(* case n \<le> Suc(na) *) |
16796 | 865 |
apply (simp add: linorder_not_less le_Suc_eq mod_geq) |
15439 | 866 |
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
|
867 |
done |
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
868 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
869 |
|
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
870 |
subsubsection {* The Divides Relation *} |
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24268
diff
changeset
|
871 |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
872 |
lemma dvd_1_left [iff]: "Suc 0 dvd k" |
22718 | 873 |
unfolding dvd_def by simp |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
874 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
875 |
lemma dvd_1_iff_1 [simp]: "(m dvd Suc 0) = (m = Suc 0)" |
29667 | 876 |
by (simp add: dvd_def) |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
877 |
|
30079
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents:
30078
diff
changeset
|
878 |
lemma nat_dvd_1_iff_1 [simp]: "m dvd (1::nat) \<longleftrightarrow> m = 1" |
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents:
30078
diff
changeset
|
879 |
by (simp add: dvd_def) |
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents:
30078
diff
changeset
|
880 |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
881 |
lemma dvd_anti_sym: "[| m dvd n; n dvd m |] ==> m = (n::nat)" |
22718 | 882 |
unfolding dvd_def |
883 |
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
|
884 |
|
23684
8c508c4dc53b
introduced (auxiliary) class dvd_mod for more convenient code generation
haftmann
parents:
23162
diff
changeset
|
885 |
text {* @{term "op dvd"} is a partial order *} |
8c508c4dc53b
introduced (auxiliary) class dvd_mod for more convenient code generation
haftmann
parents:
23162
diff
changeset
|
886 |
|
30729
461ee3e49ad3
interpretation/interpret: prefixes are mandatory by default;
wenzelm
parents:
30653
diff
changeset
|
887 |
interpretation dvd: order "op dvd" "\<lambda>n m \<Colon> nat. n dvd m \<and> \<not> m dvd n" |
28823 | 888 |
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
|
889 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31662
diff
changeset
|
890 |
lemma dvd_diff_nat[simp]: "[| k dvd m; k dvd n |] ==> k dvd (m-n :: nat)" |
30042 | 891 |
unfolding dvd_def |
892 |
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
|
893 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
894 |
lemma dvd_diffD: "[| k dvd m-n; k dvd n; n\<le>m |] ==> k dvd (m::nat)" |
22718 | 895 |
apply (erule linorder_not_less [THEN iffD2, THEN add_diff_inverse, THEN subst]) |
896 |
apply (blast intro: dvd_add) |
|
897 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
898 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
899 |
lemma dvd_diffD1: "[| k dvd m-n; k dvd m; n\<le>m |] ==> k dvd (n::nat)" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31662
diff
changeset
|
900 |
by (drule_tac m = m in dvd_diff_nat, auto) |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
901 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
902 |
lemma dvd_reduce: "(k dvd n + k) = (k dvd (n::nat))" |
22718 | 903 |
apply (rule iffI) |
904 |
apply (erule_tac [2] dvd_add) |
|
905 |
apply (rule_tac [2] dvd_refl) |
|
906 |
apply (subgoal_tac "n = (n+k) -k") |
|
907 |
prefer 2 apply simp |
|
908 |
apply (erule ssubst) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31662
diff
changeset
|
909 |
apply (erule dvd_diff_nat) |
22718 | 910 |
apply (rule dvd_refl) |
911 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
912 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
913 |
lemma dvd_mult_cancel: "!!k::nat. [| k*m dvd k*n; 0<k |] ==> m dvd n" |
22718 | 914 |
unfolding dvd_def |
915 |
apply (erule exE) |
|
916 |
apply (simp add: mult_ac) |
|
917 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
918 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
919 |
lemma dvd_mult_cancel1: "0<m ==> (m*n dvd m) = (n = (1::nat))" |
22718 | 920 |
apply auto |
921 |
apply (subgoal_tac "m*n dvd m*1") |
|
922 |
apply (drule dvd_mult_cancel, auto) |
|
923 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
924 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
925 |
lemma dvd_mult_cancel2: "0<m ==> (n*m dvd m) = (n = (1::nat))" |
22718 | 926 |
apply (subst mult_commute) |
927 |
apply (erule dvd_mult_cancel1) |
|
928 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
929 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
930 |
lemma dvd_imp_le: "[| k dvd n; 0 < n |] ==> k \<le> (n::nat)" |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
931 |
by (auto elim!: dvdE) (auto simp add: gr0_conv_Suc) |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
932 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
933 |
lemma dvd_mult_div_cancel: "n dvd m ==> n * (m div n) = (m::nat)" |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
934 |
by (simp add: dvd_eq_mod_eq_0 mult_div_cancel) |
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
935 |
|
31009
41fd307cab30
dropped reference to class recpower and lemma duplicate
haftmann
parents:
30934
diff
changeset
|
936 |
lemma power_dvd_imp_le: |
41fd307cab30
dropped reference to class recpower and lemma duplicate
haftmann
parents:
30934
diff
changeset
|
937 |
"i ^ m dvd i ^ n \<Longrightarrow> (1::nat) < i \<Longrightarrow> m \<le> n" |
22718 | 938 |
apply (rule power_le_imp_le_exp, assumption) |
939 |
apply (erule dvd_imp_le, simp) |
|
940 |
done |
|
21408 | 941 |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
942 |
lemma mod_eq_0_iff: "(m mod d = 0) = (\<exists>q::nat. m = d*q)" |
29667 | 943 |
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
|
944 |
|
22718 | 945 |
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
|
946 |
|
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
947 |
(*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
|
948 |
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
|
949 |
apply (cut_tac a = m in mod_div_equality) |
22718 | 950 |
apply (simp only: add_ac) |
951 |
apply (blast intro: sym) |
|
952 |
done |
|
14267
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents:
14208
diff
changeset
|
953 |
|
13152 | 954 |
lemma split_div: |
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
955 |
"P(n div k :: nat) = |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
956 |
((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
|
957 |
(is "?P = ?Q" is "_ = (_ \<and> (_ \<longrightarrow> ?R))") |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
958 |
proof |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
959 |
assume P: ?P |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
960 |
show ?Q |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
961 |
proof (cases) |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
962 |
assume "k = 0" |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
963 |
with P show ?Q by simp |
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
964 |
next |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
965 |
assume not0: "k \<noteq> 0" |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
966 |
thus ?Q |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
967 |
proof (simp, intro allI impI) |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
968 |
fix i j |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
969 |
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
|
970 |
show "P i" |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
971 |
proof (cases) |
22718 | 972 |
assume "i = 0" |
973 |
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
|
974 |
next |
22718 | 975 |
assume "i \<noteq> 0" |
976 |
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
|
977 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
978 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
979 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
980 |
next |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
981 |
assume Q: ?Q |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
982 |
show ?P |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
983 |
proof (cases) |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
984 |
assume "k = 0" |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
985 |
with Q show ?P by simp |
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
986 |
next |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
987 |
assume not0: "k \<noteq> 0" |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
988 |
with Q have R: ?R by simp |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
989 |
from not0 R[THEN spec,of "n div k",THEN spec, of "n mod k"] |
13517 | 990 |
show ?P by simp |
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
991 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
992 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
993 |
|
13882 | 994 |
lemma split_div_lemma: |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
995 |
assumes "0 < n" |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
996 |
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
|
997 |
proof |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
998 |
assume ?rhs |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
999 |
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
|
1000 |
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
|
1001 |
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
|
1002 |
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
|
1003 |
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
|
1004 |
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
|
1005 |
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
|
1006 |
from A B show ?lhs .. |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
1007 |
next |
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
1008 |
assume P: ?lhs |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
1009 |
then have "divmod_rel m n (q, m - n * q)" |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
1010 |
unfolding divmod_rel_def by (auto simp add: mult_ac) |
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
1011 |
with divmod_rel_unique divmod_rel [of m n] |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
1012 |
have "(q, m - n * q) = (m div n, m mod n)" by auto |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
1013 |
then show ?rhs by simp |
26100
fbc60cd02ae2
using only an relation predicate to construct div and mod
haftmann
parents:
26072
diff
changeset
|
1014 |
qed |
13882 | 1015 |
|
1016 |
theorem split_div': |
|
1017 |
"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
|
1018 |
(\<exists>q. (n * q \<le> m \<and> m < n * (Suc q)) \<and> P q))" |
13882 | 1019 |
apply (case_tac "0 < n") |
1020 |
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
|
1021 |
apply simp_all |
13882 | 1022 |
done |
1023 |
||
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1024 |
lemma split_mod: |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1025 |
"P(n mod k :: nat) = |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1026 |
((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
|
1027 |
(is "?P = ?Q" is "_ = (_ \<and> (_ \<longrightarrow> ?R))") |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1028 |
proof |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1029 |
assume P: ?P |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1030 |
show ?Q |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1031 |
proof (cases) |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1032 |
assume "k = 0" |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
1033 |
with P show ?Q by simp |
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1034 |
next |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1035 |
assume not0: "k \<noteq> 0" |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1036 |
thus ?Q |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1037 |
proof (simp, intro allI impI) |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1038 |
fix i j |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1039 |
assume "n = k*i + j" "j < k" |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1040 |
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
|
1041 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1042 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1043 |
next |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1044 |
assume Q: ?Q |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1045 |
show ?P |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1046 |
proof (cases) |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1047 |
assume "k = 0" |
27651
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents:
27540
diff
changeset
|
1048 |
with Q show ?P by simp |
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1049 |
next |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1050 |
assume not0: "k \<noteq> 0" |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1051 |
with Q have R: ?R by simp |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1052 |
from not0 R[THEN spec,of "n div k",THEN spec, of "n mod k"] |
13517 | 1053 |
show ?P by simp |
13189
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1054 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1055 |
qed |
81ed5c6de890
Now arith can deal with div/mod arbitrary nat numerals.
nipkow
parents:
13152
diff
changeset
|
1056 |
|
13882 | 1057 |
theorem mod_div_equality': "(m::nat) mod n = m - (m div n) * n" |
1058 |
apply (rule_tac P="%x. m mod n = x - (m div n) * n" in |
|
1059 |
subst [OF mod_div_equality [of _ n]]) |
|
1060 |
apply arith |
|
1061 |
done |
|
1062 |
||
22800 | 1063 |
lemma div_mod_equality': |
1064 |
fixes m n :: nat |
|
1065 |
shows "m div n * n = m - m mod n" |
|
1066 |
proof - |
|
1067 |
have "m mod n \<le> m mod n" .. |
|
1068 |
from div_mod_equality have |
|
1069 |
"m div n * n + m mod n - m mod n = m - m mod n" by simp |
|
1070 |
with diff_add_assoc [OF `m mod n \<le> m mod n`, of "m div n * n"] have |
|
1071 |
"m div n * n + (m mod n - m mod n) = m - m mod n" |
|
1072 |
by simp |
|
1073 |
then show ?thesis by simp |
|
1074 |
qed |
|
1075 |
||
1076 |
||
25942 | 1077 |
subsubsection {*An ``induction'' law for modulus arithmetic.*} |
14640 | 1078 |
|
1079 |
lemma mod_induct_0: |
|
1080 |
assumes step: "\<forall>i<p. P i \<longrightarrow> P ((Suc i) mod p)" |
|
1081 |
and base: "P i" and i: "i<p" |
|
1082 |
shows "P 0" |
|
1083 |
proof (rule ccontr) |
|
1084 |
assume contra: "\<not>(P 0)" |
|
1085 |
from i have p: "0<p" by simp |
|
1086 |
have "\<forall>k. 0<k \<longrightarrow> \<not> P (p-k)" (is "\<forall>k. ?A k") |
|
1087 |
proof |
|
1088 |
fix k |
|
1089 |
show "?A k" |
|
1090 |
proof (induct k) |
|
1091 |
show "?A 0" by simp -- "by contradiction" |
|
1092 |
next |
|
1093 |
fix n |
|
1094 |
assume ih: "?A n" |
|
1095 |
show "?A (Suc n)" |
|
1096 |
proof (clarsimp) |
|
22718 | 1097 |
assume y: "P (p - Suc n)" |
1098 |
have n: "Suc n < p" |
|
1099 |
proof (rule ccontr) |
|
1100 |
assume "\<not>(Suc n < p)" |
|
1101 |
hence "p - Suc n = 0" |
|
1102 |
by simp |
|
1103 |
with y contra show "False" |
|
1104 |
by simp |
|
1105 |
qed |
|
1106 |
hence n2: "Suc (p - Suc n) = p-n" by arith |
|
1107 |
from p have "p - Suc n < p" by arith |
|
1108 |
with y step have z: "P ((Suc (p - Suc n)) mod p)" |
|
1109 |
by blast |
|
1110 |
show "False" |
|
1111 |
proof (cases "n=0") |
|
1112 |
case True |
|
1113 |
with z n2 contra show ?thesis by simp |
|
1114 |
next |
|
1115 |
case False |
|
1116 |
with p have "p-n < p" by arith |
|
1117 |
with z n2 False ih show ?thesis by simp |
|
1118 |
qed |
|
14640 | 1119 |
qed |
1120 |
qed |
|
1121 |
qed |
|
1122 |
moreover |
|
1123 |
from i obtain k where "0<k \<and> i+k=p" |
|
1124 |
by (blast dest: less_imp_add_positive) |
|
1125 |
hence "0<k \<and> i=p-k" by auto |
|
1126 |
moreover |
|
1127 |
note base |
|
1128 |
ultimately |
|
1129 |
show "False" by blast |
|
1130 |
qed |
|
1131 |
||
1132 |
lemma mod_induct: |
|
1133 |
assumes step: "\<forall>i<p. P i \<longrightarrow> P ((Suc i) mod p)" |
|
1134 |
and base: "P i" and i: "i<p" and j: "j<p" |
|
1135 |
shows "P j" |
|
1136 |
proof - |
|
1137 |
have "\<forall>j<p. P j" |
|
1138 |
proof |
|
1139 |
fix j |
|
1140 |
show "j<p \<longrightarrow> P j" (is "?A j") |
|
1141 |
proof (induct j) |
|
1142 |
from step base i show "?A 0" |
|
22718 | 1143 |
by (auto elim: mod_induct_0) |
14640 | 1144 |
next |
1145 |
fix k |
|
1146 |
assume ih: "?A k" |
|
1147 |
show "?A (Suc k)" |
|
1148 |
proof |
|
22718 | 1149 |
assume suc: "Suc k < p" |
1150 |
hence k: "k<p" by simp |
|
1151 |
with ih have "P k" .. |
|
1152 |
with step k have "P (Suc k mod p)" |
|
1153 |
by blast |
|
1154 |
moreover |
|
1155 |
from suc have "Suc k mod p = Suc k" |
|
1156 |
by simp |
|
1157 |
ultimately |
|
1158 |
show "P (Suc k)" by simp |
|
14640 | 1159 |
qed |
1160 |
qed |
|
1161 |
qed |
|
1162 |
with j show ?thesis by blast |
|
1163 |
qed |
|
1164 |
||
30923
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
1165 |
lemma nat_dvd_not_less: |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
1166 |
fixes m n :: nat |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
1167 |
shows "0 < m \<Longrightarrow> m < n \<Longrightarrow> \<not> n dvd m" |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
1168 |
by (auto elim!: dvdE) (auto simp add: gr0_conv_Suc) |
2697a1d1d34a
more coherent developement in Divides.thy and IntDiv.thy
haftmann
parents:
30840
diff
changeset
|
1169 |
|
3366 | 1170 |
end |