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