author | haftmann |
Fri, 19 Aug 2022 05:49:11 +0000 | |
changeset 75880 | 714fad33252e |
parent 75878 | fcd118d9242f |
child 75881 | 83e4b6a5e7de |
permissions | -rw-r--r-- |
3366 | 1 |
(* Title: HOL/Divides.thy |
2 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
6865
5577ffe4c2f1
now div and mod are overloaded; dvd is polymorphic
paulson
parents:
3366
diff
changeset
|
3 |
Copyright 1999 University of Cambridge |
18154 | 4 |
*) |
3366 | 5 |
|
64785 | 6 |
section \<open>More on quotient and remainder\<close> |
3366 | 7 |
|
15131 | 8 |
theory Divides |
66817 | 9 |
imports Parity |
15131 | 10 |
begin |
3366 | 11 |
|
66817 | 12 |
subsection \<open>More on division\<close> |
60758 | 13 |
|
75877 | 14 |
subsubsection \<open>Splitting Rules for div and mod\<close> |
15 |
||
16 |
text\<open>The proofs of the two lemmas below are essentially identical\<close> |
|
17 |
||
18 |
lemma split_pos_lemma: |
|
19 |
"0<k \<Longrightarrow> |
|
20 |
P(n div k :: int)(n mod k) = (\<forall>i j. 0\<le>j \<and> j<k \<and> n = k*i + j \<longrightarrow> P i j)" |
|
21 |
by auto |
|
22 |
||
23 |
lemma split_neg_lemma: |
|
24 |
"k<0 \<Longrightarrow> |
|
25 |
P(n div k :: int)(n mod k) = (\<forall>i j. k<j \<and> j\<le>0 \<and> n = k*i + j \<longrightarrow> P i j)" |
|
26 |
by auto |
|
75875
48d032035744
streamlined primitive definitions for integer division
haftmann
parents:
75669
diff
changeset
|
27 |
|
75877 | 28 |
lemma split_zdiv: |
29 |
\<open>P (n div k) \<longleftrightarrow> |
|
30 |
(k = 0 \<longrightarrow> P 0) \<and> |
|
31 |
(0 < k \<longrightarrow> (\<forall>i j. 0 \<le> j \<and> j < k \<and> n = k * i + j \<longrightarrow> P i)) \<and> |
|
32 |
(k < 0 \<longrightarrow> (\<forall>i j. k < j \<and> j \<le> 0 \<and> n = k * i + j \<longrightarrow> P i))\<close> for n k :: int |
|
33 |
proof (cases \<open>k = 0\<close>) |
|
34 |
case True |
|
35 |
then show ?thesis |
|
36 |
by simp |
|
37 |
next |
|
38 |
case False |
|
39 |
then have \<open>k < 0 \<or> 0 < k\<close> |
|
40 |
by auto |
|
41 |
then show ?thesis |
|
42 |
by (auto simp add: split_pos_lemma [of concl: "\<lambda>x y. P x"] split_neg_lemma [of concl: "\<lambda>x y. P x"]) |
|
43 |
qed |
|
75875
48d032035744
streamlined primitive definitions for integer division
haftmann
parents:
75669
diff
changeset
|
44 |
|
75877 | 45 |
lemma split_zmod: |
46 |
\<open>P (n mod k) \<longleftrightarrow> |
|
47 |
(k = 0 \<longrightarrow> P n) \<and> |
|
48 |
(0 < k \<longrightarrow> (\<forall>i j. 0 \<le> j \<and> j < k \<and> n = k * i + j \<longrightarrow> P j)) \<and> |
|
49 |
(k < 0 \<longrightarrow> (\<forall>i j. k < j \<and> j \<le> 0 \<and> n = k * i + j \<longrightarrow> P j))\<close> for n k :: int |
|
50 |
proof (cases \<open>k = 0\<close>) |
|
51 |
case True |
|
52 |
then show ?thesis |
|
53 |
by simp |
|
54 |
next |
|
55 |
case False |
|
56 |
then have \<open>k < 0 \<or> 0 < k\<close> |
|
57 |
by auto |
|
58 |
then show ?thesis |
|
59 |
by (auto simp add: split_pos_lemma [of concl: "\<lambda>x y. P y"] split_neg_lemma [of concl: "\<lambda>x y. P y"]) |
|
60 |
qed |
|
75875
48d032035744
streamlined primitive definitions for integer division
haftmann
parents:
75669
diff
changeset
|
61 |
|
75877 | 62 |
text \<open>Enable (lin)arith to deal with \<^const>\<open>divide\<close> and \<^const>\<open>modulo\<close> |
63 |
when these are applied to some constant that is of the form |
|
64 |
\<^term>\<open>numeral k\<close>:\<close> |
|
75880
714fad33252e
more thorough split rules for div and mod on numerals, tuned split rules setup
haftmann
parents:
75878
diff
changeset
|
65 |
declare split_zdiv [of _ _ \<open>numeral n\<close>, linarith_split] for n |
714fad33252e
more thorough split rules for div and mod on numerals, tuned split rules setup
haftmann
parents:
75878
diff
changeset
|
66 |
declare split_zdiv [of _ _ \<open>- numeral n\<close>, linarith_split] for n |
714fad33252e
more thorough split rules for div and mod on numerals, tuned split rules setup
haftmann
parents:
75878
diff
changeset
|
67 |
declare split_zmod [of _ _ \<open>numeral n\<close>, linarith_split] for n |
714fad33252e
more thorough split rules for div and mod on numerals, tuned split rules setup
haftmann
parents:
75878
diff
changeset
|
68 |
declare split_zmod [of _ _ \<open>- numeral n\<close>, linarith_split] for n |
75877 | 69 |
|
70 |
lemma half_nonnegative_int_iff [simp]: |
|
71 |
\<open>k div 2 \<ge> 0 \<longleftrightarrow> k \<ge> 0\<close> for k :: int |
|
72 |
by auto |
|
75875
48d032035744
streamlined primitive definitions for integer division
haftmann
parents:
75669
diff
changeset
|
73 |
|
75877 | 74 |
lemma half_negative_int_iff [simp]: |
75 |
\<open>k div 2 < 0 \<longleftrightarrow> k < 0\<close> for k :: int |
|
76 |
by auto |
|
75875
48d032035744
streamlined primitive definitions for integer division
haftmann
parents:
75669
diff
changeset
|
77 |
|
75877 | 78 |
lemma zdiv_eq_0_iff: |
79 |
"i div k = 0 \<longleftrightarrow> k = 0 \<or> 0 \<le> i \<and> i < k \<or> i \<le> 0 \<and> k < i" (is "?L = ?R") |
|
80 |
for i k :: int |
|
81 |
proof |
|
82 |
assume ?L |
|
83 |
moreover have "?L \<longrightarrow> ?R" |
|
84 |
by (rule split_zdiv [THEN iffD2]) simp |
|
85 |
ultimately show ?R |
|
86 |
by blast |
|
87 |
next |
|
88 |
assume ?R then show ?L |
|
89 |
by auto |
|
90 |
qed |
|
91 |
||
92 |
lemma zmod_trivial_iff: |
|
93 |
fixes i k :: int |
|
94 |
shows "i mod k = i \<longleftrightarrow> k = 0 \<or> 0 \<le> i \<and> i < k \<or> i \<le> 0 \<and> k < i" |
|
95 |
proof - |
|
96 |
have "i mod k = i \<longleftrightarrow> i div k = 0" |
|
97 |
using div_mult_mod_eq [of i k] by safe auto |
|
98 |
with zdiv_eq_0_iff |
|
99 |
show ?thesis |
|
100 |
by simp |
|
101 |
qed |
|
75875
48d032035744
streamlined primitive definitions for integer division
haftmann
parents:
75669
diff
changeset
|
102 |
|
48d032035744
streamlined primitive definitions for integer division
haftmann
parents:
75669
diff
changeset
|
103 |
|
48d032035744
streamlined primitive definitions for integer division
haftmann
parents:
75669
diff
changeset
|
104 |
subsubsection \<open>Monotonicity in the First Argument (Dividend)\<close> |
48d032035744
streamlined primitive definitions for integer division
haftmann
parents:
75669
diff
changeset
|
105 |
|
64635 | 106 |
inductive eucl_rel_int :: "int \<Rightarrow> int \<Rightarrow> int \<times> int \<Rightarrow> bool" |
107 |
where eucl_rel_int_by0: "eucl_rel_int k 0 (0, k)" |
|
108 |
| eucl_rel_int_dividesI: "l \<noteq> 0 \<Longrightarrow> k = q * l \<Longrightarrow> eucl_rel_int k l (q, 0)" |
|
109 |
| eucl_rel_int_remainderI: "sgn r = sgn l \<Longrightarrow> \<bar>r\<bar> < \<bar>l\<bar> |
|
110 |
\<Longrightarrow> k = q * l + r \<Longrightarrow> eucl_rel_int k l (q, r)" |
|
111 |
||
112 |
lemma eucl_rel_int_iff: |
|
113 |
"eucl_rel_int k l (q, r) \<longleftrightarrow> |
|
114 |
k = l * q + r \<and> |
|
115 |
(if 0 < l then 0 \<le> r \<and> r < l else if l < 0 then l < r \<and> r \<le> 0 else q = 0)" |
|
116 |
by (cases "r = 0") |
|
117 |
(auto elim!: eucl_rel_int.cases intro: eucl_rel_int_by0 eucl_rel_int_dividesI eucl_rel_int_remainderI |
|
118 |
simp add: ac_simps sgn_1_pos sgn_1_neg) |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
119 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
120 |
lemma unique_quotient_lemma: |
68626 | 121 |
assumes "b * q' + r' \<le> b * q + r" "0 \<le> r'" "r' < b" "r < b" shows "q' \<le> (q::int)" |
122 |
proof - |
|
123 |
have "r' + b * (q'-q) \<le> r" |
|
124 |
using assms by (simp add: right_diff_distrib) |
|
125 |
moreover have "0 < b * (1 + q - q') " |
|
126 |
using assms by (simp add: right_diff_distrib distrib_left) |
|
127 |
moreover have "b * q' < b * (1 + q)" |
|
128 |
using assms by (simp add: right_diff_distrib distrib_left) |
|
129 |
ultimately show ?thesis |
|
130 |
using assms by (simp add: mult_less_cancel_left) |
|
131 |
qed |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
132 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
133 |
lemma unique_quotient_lemma_neg: |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
134 |
"b * q' + r' \<le> b*q + r \<Longrightarrow> r \<le> 0 \<Longrightarrow> b < r \<Longrightarrow> b < r' \<Longrightarrow> q \<le> (q'::int)" |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
135 |
using unique_quotient_lemma[where b = "-b" and r = "-r'" and r'="-r"] by auto |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
136 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
137 |
lemma unique_quotient: |
64635 | 138 |
"eucl_rel_int a b (q, r) \<Longrightarrow> eucl_rel_int a b (q', r') \<Longrightarrow> q = q'" |
68626 | 139 |
apply (rule order_antisym) |
140 |
apply (simp_all add: eucl_rel_int_iff linorder_neq_iff split: if_split_asm) |
|
141 |
apply (blast intro: order_eq_refl [THEN unique_quotient_lemma] order_eq_refl [THEN unique_quotient_lemma_neg] sym)+ |
|
64635 | 142 |
done |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
143 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
144 |
lemma unique_remainder: |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
145 |
assumes "eucl_rel_int a b (q, r)" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
146 |
and "eucl_rel_int a b (q', r')" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
147 |
shows "r = r'" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
148 |
proof - |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
149 |
have "q = q'" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
150 |
using assms by (blast intro: unique_quotient) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
151 |
then show "r = r'" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
152 |
using assms by (simp add: eucl_rel_int_iff) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
153 |
qed |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
154 |
|
64635 | 155 |
lemma eucl_rel_int: |
156 |
"eucl_rel_int k l (k div l, k mod l)" |
|
64592
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
157 |
proof (cases k rule: int_cases3) |
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
158 |
case zero |
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
159 |
then show ?thesis |
64635 | 160 |
by (simp add: eucl_rel_int_iff divide_int_def modulo_int_def) |
64592
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
161 |
next |
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
162 |
case (pos n) |
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
163 |
then show ?thesis |
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
164 |
using div_mult_mod_eq [of n] |
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
165 |
by (cases l rule: int_cases3) |
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
166 |
(auto simp del: of_nat_mult of_nat_add |
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
167 |
simp add: mod_greater_zero_iff_not_dvd of_nat_mult [symmetric] of_nat_add [symmetric] algebra_simps |
67118 | 168 |
eucl_rel_int_iff divide_int_def modulo_int_def) |
64592
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
169 |
next |
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
170 |
case (neg n) |
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
171 |
then show ?thesis |
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
172 |
using div_mult_mod_eq [of n] |
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
173 |
by (cases l rule: int_cases3) |
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
174 |
(auto simp del: of_nat_mult of_nat_add |
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
175 |
simp add: mod_greater_zero_iff_not_dvd of_nat_mult [symmetric] of_nat_add [symmetric] algebra_simps |
67118 | 176 |
eucl_rel_int_iff divide_int_def modulo_int_def) |
64592
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
177 |
qed |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
178 |
|
47141
02d6b816e4b3
move int::ring_div instance upward, simplify several proofs
huffman
parents:
47140
diff
changeset
|
179 |
lemma divmod_int_unique: |
64635 | 180 |
assumes "eucl_rel_int k l (q, r)" |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
181 |
shows div_int_unique: "k div l = q" and mod_int_unique: "k mod l = r" |
64635 | 182 |
using assms eucl_rel_int [of k l] |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
183 |
using unique_quotient [of k l] unique_remainder [of k l] |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
184 |
by auto |
64592
7759f1766189
more fine-grained type class hierarchy for div and mod
haftmann
parents:
64250
diff
changeset
|
185 |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
186 |
lemma zminus1_lemma: |
64635 | 187 |
"eucl_rel_int a b (q, r) ==> b \<noteq> 0 |
188 |
==> eucl_rel_int (-a) b (if r=0 then -q else -q - 1, |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
189 |
if r=0 then 0 else b-r)" |
66630 | 190 |
by (force simp add: eucl_rel_int_iff right_diff_distrib) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
191 |
|
68631 | 192 |
lemma zdiv_mono1: |
75875
48d032035744
streamlined primitive definitions for integer division
haftmann
parents:
75669
diff
changeset
|
193 |
\<open>a div b \<le> a' div b\<close> |
48d032035744
streamlined primitive definitions for integer division
haftmann
parents:
75669
diff
changeset
|
194 |
if \<open>a \<le> a'\<close> \<open>0 < b\<close> |
48d032035744
streamlined primitive definitions for integer division
haftmann
parents:
75669
diff
changeset
|
195 |
for a b b' :: int |
68631 | 196 |
proof (rule unique_quotient_lemma) |
197 |
show "b * (a div b) + a mod b \<le> b * (a' div b) + a' mod b" |
|
75875
48d032035744
streamlined primitive definitions for integer division
haftmann
parents:
75669
diff
changeset
|
198 |
using \<open>a \<le> a'\<close> by auto |
48d032035744
streamlined primitive definitions for integer division
haftmann
parents:
75669
diff
changeset
|
199 |
qed (use that in auto) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
200 |
|
68631 | 201 |
lemma zdiv_mono1_neg: |
202 |
fixes b::int |
|
203 |
assumes "a \<le> a'" "b < 0" shows "a' div b \<le> a div b" |
|
204 |
proof (rule unique_quotient_lemma_neg) |
|
205 |
show "b * (a div b) + a mod b \<le> b * (a' div b) + a' mod b" |
|
206 |
using assms(1) by auto |
|
207 |
qed (use assms in auto) |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
208 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
209 |
|
60758 | 210 |
subsubsection \<open>Monotonicity in the Second Argument (Divisor)\<close> |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
211 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
212 |
lemma q_pos_lemma: |
68631 | 213 |
fixes q'::int |
214 |
assumes "0 \<le> b'*q' + r'" "r' < b'" "0 < b'" |
|
215 |
shows "0 \<le> q'" |
|
216 |
proof - |
|
217 |
have "0 < b'* (q' + 1)" |
|
218 |
using assms by (simp add: distrib_left) |
|
219 |
with assms show ?thesis |
|
220 |
by (simp add: zero_less_mult_iff) |
|
221 |
qed |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
222 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
223 |
lemma zdiv_mono2_lemma: |
68631 | 224 |
fixes q'::int |
225 |
assumes eq: "b*q + r = b'*q' + r'" and le: "0 \<le> b'*q' + r'" and "r' < b'" "0 \<le> r" "0 < b'" "b' \<le> b" |
|
226 |
shows "q \<le> q'" |
|
227 |
proof - |
|
228 |
have "0 \<le> q'" |
|
229 |
using q_pos_lemma le \<open>r' < b'\<close> \<open>0 < b'\<close> by blast |
|
230 |
moreover have "b*q = r' - r + b'*q'" |
|
231 |
using eq by linarith |
|
232 |
ultimately have "b*q < b* (q' + 1)" |
|
233 |
using mult_right_mono assms unfolding distrib_left by fastforce |
|
234 |
with assms show ?thesis |
|
235 |
by (simp add: mult_less_cancel_left_pos) |
|
236 |
qed |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
237 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
238 |
lemma zdiv_mono2: |
68631 | 239 |
fixes a::int |
240 |
assumes "0 \<le> a" "0 < b'" "b' \<le> b" shows "a div b \<le> a div b'" |
|
241 |
proof (rule zdiv_mono2_lemma) |
|
242 |
have "b \<noteq> 0" |
|
243 |
using assms by linarith |
|
244 |
show "b * (a div b) + a mod b = b' * (a div b') + a mod b'" |
|
245 |
by simp |
|
246 |
qed (use assms in auto) |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
247 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
248 |
lemma zdiv_mono2_neg_lemma: |
68631 | 249 |
fixes q'::int |
250 |
assumes "b*q + r = b'*q' + r'" "b'*q' + r' < 0" "r < b" "0 \<le> r'" "0 < b'" "b' \<le> b" |
|
251 |
shows "q' \<le> q" |
|
252 |
proof - |
|
253 |
have "b'*q' < 0" |
|
254 |
using assms by linarith |
|
255 |
with assms have "q' \<le> 0" |
|
256 |
by (simp add: mult_less_0_iff) |
|
257 |
have "b*q' \<le> b'*q'" |
|
258 |
by (simp add: \<open>q' \<le> 0\<close> assms(6) mult_right_mono_neg) |
|
259 |
then have "b*q' < b* (q + 1)" |
|
260 |
using assms by (simp add: distrib_left) |
|
261 |
then show ?thesis |
|
262 |
using assms by (simp add: mult_less_cancel_left) |
|
263 |
qed |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
264 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
265 |
lemma zdiv_mono2_neg: |
68631 | 266 |
fixes a::int |
267 |
assumes "a < 0" "0 < b'" "b' \<le> b" shows "a div b' \<le> a div b" |
|
268 |
proof (rule zdiv_mono2_neg_lemma) |
|
269 |
have "b \<noteq> 0" |
|
270 |
using assms by linarith |
|
271 |
show "b * (a div b) + a mod b = b' * (a div b') + a mod b'" |
|
272 |
by simp |
|
273 |
qed (use assms in auto) |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
274 |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
275 |
lemma div_pos_geq: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
276 |
fixes k l :: int |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
277 |
assumes "0 < l" and "l \<le> k" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
278 |
shows "k div l = (k - l) div l + 1" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
279 |
proof - |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
280 |
have "k = (k - l) + l" by simp |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
281 |
then obtain j where k: "k = j + l" .. |
63499
9c9a59949887
Tuned looping simp rules in semiring_div
eberlm <eberlm@in.tum.de>
parents:
63417
diff
changeset
|
282 |
with assms show ?thesis by (simp add: div_add_self2) |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
283 |
qed |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
284 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
285 |
lemma mod_pos_geq: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
286 |
fixes k l :: int |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
287 |
assumes "0 < l" and "l \<le> k" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
288 |
shows "k mod l = (k - l) mod l" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
289 |
proof - |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
290 |
have "k = (k - l) + l" by simp |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
291 |
then obtain j where k: "k = j + l" .. |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
292 |
with assms show ?thesis by simp |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
293 |
qed |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
294 |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
295 |
|
61799 | 296 |
subsubsection \<open>Computing \<open>div\<close> and \<open>mod\<close> with shifting\<close> |
47166 | 297 |
|
64635 | 298 |
lemma pos_eucl_rel_int_mult_2: |
47166 | 299 |
assumes "0 \<le> b" |
64635 | 300 |
assumes "eucl_rel_int a b (q, r)" |
301 |
shows "eucl_rel_int (1 + 2*a) (2*b) (q, 1 + 2*r)" |
|
302 |
using assms unfolding eucl_rel_int_iff by auto |
|
303 |
||
304 |
lemma neg_eucl_rel_int_mult_2: |
|
47166 | 305 |
assumes "b \<le> 0" |
64635 | 306 |
assumes "eucl_rel_int (a + 1) b (q, r)" |
307 |
shows "eucl_rel_int (1 + 2*a) (2*b) (q, 2*r - 1)" |
|
308 |
using assms unfolding eucl_rel_int_iff by auto |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
309 |
|
60758 | 310 |
text\<open>computing div by shifting\<close> |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
311 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
312 |
lemma pos_zdiv_mult_2: "(0::int) \<le> a ==> (1 + 2*b) div (2*a) = b div a" |
64635 | 313 |
using pos_eucl_rel_int_mult_2 [OF _ eucl_rel_int] |
47166 | 314 |
by (rule div_int_unique) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
315 |
|
60562
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
paulson <lp15@cam.ac.uk>
parents:
60517
diff
changeset
|
316 |
lemma neg_zdiv_mult_2: |
35815
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
boehmes
parents:
35673
diff
changeset
|
317 |
assumes A: "a \<le> (0::int)" shows "(1 + 2*b) div (2*a) = (b+1) div a" |
64635 | 318 |
using neg_eucl_rel_int_mult_2 [OF A eucl_rel_int] |
47166 | 319 |
by (rule div_int_unique) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
320 |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
321 |
lemma zdiv_numeral_Bit0 [simp]: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
322 |
"numeral (Num.Bit0 v) div numeral (Num.Bit0 w) = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
323 |
numeral v div (numeral w :: int)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
324 |
unfolding numeral.simps unfolding mult_2 [symmetric] |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
325 |
by (rule div_mult_mult1, simp) |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
326 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
327 |
lemma zdiv_numeral_Bit1 [simp]: |
60562
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
paulson <lp15@cam.ac.uk>
parents:
60517
diff
changeset
|
328 |
"numeral (Num.Bit1 v) div numeral (Num.Bit0 w) = |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
329 |
(numeral v div (numeral w :: int))" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
330 |
unfolding numeral.simps |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
57492
diff
changeset
|
331 |
unfolding mult_2 [symmetric] add.commute [of _ 1] |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
332 |
by (rule pos_zdiv_mult_2, simp) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
333 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
334 |
lemma pos_zmod_mult_2: |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
335 |
fixes a b :: int |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
336 |
assumes "0 \<le> a" |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
337 |
shows "(1 + 2 * b) mod (2 * a) = 1 + 2 * (b mod a)" |
64635 | 338 |
using pos_eucl_rel_int_mult_2 [OF assms eucl_rel_int] |
47166 | 339 |
by (rule mod_int_unique) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
340 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
341 |
lemma neg_zmod_mult_2: |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
342 |
fixes a b :: int |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
343 |
assumes "a \<le> 0" |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
344 |
shows "(1 + 2 * b) mod (2 * a) = 2 * ((b + 1) mod a) - 1" |
64635 | 345 |
using neg_eucl_rel_int_mult_2 [OF assms eucl_rel_int] |
47166 | 346 |
by (rule mod_int_unique) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
347 |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
348 |
lemma zmod_numeral_Bit0 [simp]: |
60562
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
paulson <lp15@cam.ac.uk>
parents:
60517
diff
changeset
|
349 |
"numeral (Num.Bit0 v) mod numeral (Num.Bit0 w) = |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
350 |
(2::int) * (numeral v mod numeral w)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
351 |
unfolding numeral_Bit0 [of v] numeral_Bit0 [of w] |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
352 |
unfolding mult_2 [symmetric] by (rule mod_mult_mult1) |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
353 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
354 |
lemma zmod_numeral_Bit1 [simp]: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
355 |
"numeral (Num.Bit1 v) mod numeral (Num.Bit0 w) = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
356 |
2 * (numeral v mod numeral w) + (1::int)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
357 |
unfolding numeral_Bit1 [of v] numeral_Bit0 [of w] |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
57492
diff
changeset
|
358 |
unfolding mult_2 [symmetric] add.commute [of _ 1] |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46560
diff
changeset
|
359 |
by (rule pos_zmod_mult_2, simp) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
360 |
|
64785 | 361 |
|
60758 | 362 |
subsubsection \<open>Quotients of Signs\<close> |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
363 |
|
67083 | 364 |
lemma div_eq_minus1: "0 < b \<Longrightarrow> - 1 div b = - 1" for b :: int |
365 |
by (simp add: divide_int_def) |
|
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
366 |
|
67083 | 367 |
lemma zmod_minus1: "0 < b \<Longrightarrow> - 1 mod b = b - 1" for b :: int |
368 |
by (auto simp add: modulo_int_def) |
|
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
369 |
|
71991 | 370 |
lemma minus_mod_int_eq: |
371 |
\<open>- k mod l = l - 1 - (k - 1) mod l\<close> if \<open>l \<ge> 0\<close> for k l :: int |
|
372 |
proof (cases \<open>l = 0\<close>) |
|
373 |
case True |
|
374 |
then show ?thesis |
|
375 |
by simp |
|
376 |
next |
|
377 |
case False |
|
378 |
with that have \<open>l > 0\<close> |
|
379 |
by simp |
|
380 |
then show ?thesis |
|
381 |
proof (cases \<open>l dvd k\<close>) |
|
382 |
case True |
|
383 |
then obtain j where \<open>k = l * j\<close> .. |
|
384 |
moreover have \<open>(l * j mod l - 1) mod l = l - 1\<close> |
|
385 |
using \<open>l > 0\<close> by (simp add: zmod_minus1) |
|
386 |
then have \<open>(l * j - 1) mod l = l - 1\<close> |
|
387 |
by (simp only: mod_simps) |
|
388 |
ultimately show ?thesis |
|
389 |
by simp |
|
390 |
next |
|
391 |
case False |
|
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
392 |
moreover have 1: \<open>0 < k mod l\<close> |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
393 |
using \<open>0 < l\<close> False le_less by fastforce |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
394 |
moreover have 2: \<open>k mod l < 1 + l\<close> |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
395 |
using \<open>0 < l\<close> pos_mod_bound[of l k] by linarith |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
396 |
from 1 2 \<open>l > 0\<close> have \<open>(k mod l - 1) mod l = k mod l - 1\<close> |
72610 | 397 |
by (simp add: zmod_trivial_iff) |
71991 | 398 |
ultimately show ?thesis |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
399 |
by (simp only: zmod_zminus1_eq_if) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
400 |
(simp add: mod_eq_0_iff_dvd algebra_simps mod_simps) |
71991 | 401 |
qed |
402 |
qed |
|
403 |
||
68631 | 404 |
lemma div_neg_pos_less0: |
405 |
fixes a::int |
|
406 |
assumes "a < 0" "0 < b" |
|
407 |
shows "a div b < 0" |
|
408 |
proof - |
|
409 |
have "a div b \<le> - 1 div b" |
|
68644
242d298526a3
de-applying and simplifying proofs
paulson <lp15@cam.ac.uk>
parents:
68631
diff
changeset
|
410 |
using zdiv_mono1 assms by auto |
68631 | 411 |
also have "... \<le> -1" |
412 |
by (simp add: assms(2) div_eq_minus1) |
|
413 |
finally show ?thesis |
|
414 |
by force |
|
415 |
qed |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
416 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
417 |
lemma div_nonneg_neg_le0: "[| (0::int) \<le> a; b < 0 |] ==> a div b \<le> 0" |
68631 | 418 |
by (drule zdiv_mono1_neg, auto) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
419 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
420 |
lemma div_nonpos_pos_le0: "[| (a::int) \<le> 0; b > 0 |] ==> a div b \<le> 0" |
68631 | 421 |
by (drule zdiv_mono1, auto) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
422 |
|
61799 | 423 |
text\<open>Now for some equivalences of the form \<open>a div b >=< 0 \<longleftrightarrow> \<dots>\<close> |
424 |
conditional upon the sign of \<open>a\<close> or \<open>b\<close>. There are many more. |
|
60758 | 425 |
They should all be simp rules unless that causes too much search.\<close> |
33804 | 426 |
|
68631 | 427 |
lemma pos_imp_zdiv_nonneg_iff: |
428 |
fixes a::int |
|
429 |
assumes "0 < b" |
|
430 |
shows "(0 \<le> a div b) = (0 \<le> a)" |
|
431 |
proof |
|
432 |
show "0 \<le> a div b \<Longrightarrow> 0 \<le> a" |
|
433 |
using assms |
|
434 |
by (simp add: linorder_not_less [symmetric]) (blast intro: div_neg_pos_less0) |
|
435 |
next |
|
436 |
assume "0 \<le> a" |
|
437 |
then have "0 div b \<le> a div b" |
|
438 |
using zdiv_mono1 assms by blast |
|
439 |
then show "0 \<le> a div b" |
|
440 |
by auto |
|
441 |
qed |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
442 |
|
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
443 |
lemma pos_imp_zdiv_pos_iff: |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
444 |
"0<k \<Longrightarrow> 0 < (i::int) div k \<longleftrightarrow> k \<le> i" |
68631 | 445 |
using pos_imp_zdiv_nonneg_iff[of k i] zdiv_eq_0_iff[of i k] by arith |
446 |
||
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
447 |
lemma neg_imp_zdiv_nonneg_iff: |
68631 | 448 |
fixes a::int |
449 |
assumes "b < 0" |
|
450 |
shows "(0 \<le> a div b) = (a \<le> 0)" |
|
451 |
using assms by (simp add: div_minus_minus [of a, symmetric] pos_imp_zdiv_nonneg_iff del: div_minus_minus) |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
452 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
453 |
(*But not (a div b \<le> 0 iff a\<le>0); consider a=1, b=2 when a div b = 0.*) |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
454 |
lemma pos_imp_zdiv_neg_iff: "(0::int) < b ==> (a div b < 0) = (a < 0)" |
68631 | 455 |
by (simp add: linorder_not_le [symmetric] pos_imp_zdiv_nonneg_iff) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
456 |
|
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
457 |
(*Again the law fails for \<le>: consider a = -1, b = -2 when a div b = 0*) |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
458 |
lemma neg_imp_zdiv_neg_iff: "b < (0::int) ==> (a div b < 0) = (0 < a)" |
68631 | 459 |
by (simp add: linorder_not_le [symmetric] neg_imp_zdiv_nonneg_iff) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
460 |
|
33804 | 461 |
lemma nonneg1_imp_zdiv_pos_iff: |
68631 | 462 |
fixes a::int |
463 |
assumes "0 \<le> a" |
|
464 |
shows "a div b > 0 \<longleftrightarrow> a \<ge> b \<and> b>0" |
|
465 |
proof - |
|
466 |
have "0 < a div b \<Longrightarrow> b \<le> a" |
|
467 |
using div_pos_pos_trivial[of a b] assms by arith |
|
468 |
moreover have "0 < a div b \<Longrightarrow> b > 0" |
|
469 |
using assms div_nonneg_neg_le0[of a b] by(cases "b=0"; force) |
|
470 |
moreover have "b \<le> a \<and> 0 < b \<Longrightarrow> 0 < a div b" |
|
471 |
using int_one_le_iff_zero_less[of "a div b"] zdiv_mono1[of b a b] by simp |
|
472 |
ultimately show ?thesis |
|
473 |
by blast |
|
474 |
qed |
|
33804 | 475 |
|
68631 | 476 |
lemma zmod_le_nonneg_dividend: "(m::int) \<ge> 0 \<Longrightarrow> m mod k \<le> m" |
477 |
by (rule split_zmod[THEN iffD2]) (fastforce dest: q_pos_lemma intro: split_mult_pos_le) |
|
60930 | 478 |
|
75876 | 479 |
lemma sgn_div_eq_sgn_mult: |
480 |
\<open>sgn (k div l) = of_bool (k div l \<noteq> 0) * sgn (k * l)\<close> |
|
481 |
for k l :: int |
|
482 |
proof (cases \<open>k div l = 0\<close>) |
|
483 |
case True |
|
484 |
then show ?thesis |
|
485 |
by simp |
|
486 |
next |
|
487 |
case False |
|
488 |
have \<open>0 \<le> \<bar>k\<bar> div \<bar>l\<bar>\<close> |
|
489 |
by (cases \<open>l = 0\<close>) (simp_all add: pos_imp_zdiv_nonneg_iff) |
|
490 |
then have \<open>\<bar>k\<bar> div \<bar>l\<bar> \<noteq> 0 \<longleftrightarrow> 0 < \<bar>k\<bar> div \<bar>l\<bar>\<close> |
|
491 |
by (simp add: less_le) |
|
492 |
also have \<open>\<dots> \<longleftrightarrow> \<bar>k\<bar> \<ge> \<bar>l\<bar>\<close> |
|
493 |
using False nonneg1_imp_zdiv_pos_iff by auto |
|
494 |
finally have *: \<open>\<bar>k\<bar> div \<bar>l\<bar> \<noteq> 0 \<longleftrightarrow> \<bar>l\<bar> \<le> \<bar>k\<bar>\<close> . |
|
495 |
show ?thesis |
|
496 |
using \<open>0 \<le> \<bar>k\<bar> div \<bar>l\<bar>\<close> False |
|
497 |
by (auto simp add: div_eq_div_abs [of k l] div_eq_sgn_abs [of k l] |
|
498 |
sgn_mult sgn_1_pos sgn_1_neg sgn_eq_0_iff nonneg1_imp_zdiv_pos_iff * dest: sgn_not_eq_imp) |
|
499 |
qed |
|
500 |
||
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
501 |
|
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
502 |
subsubsection \<open>Further properties\<close> |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
503 |
|
66817 | 504 |
lemma div_int_pos_iff: |
505 |
"k div l \<ge> 0 \<longleftrightarrow> k = 0 \<or> l = 0 \<or> k \<ge> 0 \<and> l \<ge> 0 |
|
506 |
\<or> k < 0 \<and> l < 0" |
|
507 |
for k l :: int |
|
68631 | 508 |
proof (cases "k = 0 \<or> l = 0") |
509 |
case False |
|
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
510 |
then have *: "k \<noteq> 0" "l \<noteq> 0" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
511 |
by auto |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
512 |
then have "0 \<le> k div l \<Longrightarrow> \<not> k < 0 \<Longrightarrow> 0 \<le> l" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
513 |
by (meson neg_imp_zdiv_neg_iff not_le not_less_iff_gr_or_eq) |
68631 | 514 |
then show ?thesis |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
515 |
using * by (auto simp add: pos_imp_zdiv_nonneg_iff neg_imp_zdiv_nonneg_iff) |
68631 | 516 |
qed auto |
66817 | 517 |
|
518 |
lemma mod_int_pos_iff: |
|
519 |
"k mod l \<ge> 0 \<longleftrightarrow> l dvd k \<or> l = 0 \<and> k \<ge> 0 \<or> l > 0" |
|
520 |
for k l :: int |
|
68631 | 521 |
proof (cases "l > 0") |
522 |
case False |
|
523 |
then show ?thesis |
|
69695 | 524 |
by (simp add: dvd_eq_mod_eq_0) (use neg_mod_sign [of l k] in \<open>auto simp add: le_less not_less\<close>) |
68631 | 525 |
qed auto |
66817 | 526 |
|
68631 | 527 |
text \<open>Simplify expressions in which div and mod combine numerical constants\<close> |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
528 |
|
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
529 |
lemma int_div_pos_eq: "\<lbrakk>(a::int) = b * q + r; 0 \<le> r; r < b\<rbrakk> \<Longrightarrow> a div b = q" |
64635 | 530 |
by (rule div_int_unique [of a b q r]) (simp add: eucl_rel_int_iff) |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
531 |
|
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
532 |
lemma int_div_neg_eq: "\<lbrakk>(a::int) = b * q + r; r \<le> 0; b < r\<rbrakk> \<Longrightarrow> a div b = q" |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
533 |
by (rule div_int_unique [of a b q r], |
64635 | 534 |
simp add: eucl_rel_int_iff) |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
535 |
|
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
536 |
lemma int_mod_pos_eq: "\<lbrakk>(a::int) = b * q + r; 0 \<le> r; r < b\<rbrakk> \<Longrightarrow> a mod b = r" |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
537 |
by (rule mod_int_unique [of a b q r], |
64635 | 538 |
simp add: eucl_rel_int_iff) |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
539 |
|
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
540 |
lemma int_mod_neg_eq: "\<lbrakk>(a::int) = b * q + r; r \<le> 0; b < r\<rbrakk> \<Longrightarrow> a mod b = r" |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
541 |
by (rule mod_int_unique [of a b q r], |
64635 | 542 |
simp add: eucl_rel_int_iff) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
543 |
|
61944 | 544 |
lemma abs_div: "(y::int) dvd x \<Longrightarrow> \<bar>x div y\<bar> = \<bar>x\<bar> div \<bar>y\<bar>" |
68631 | 545 |
unfolding dvd_def by (cases "y=0") (auto simp add: abs_mult) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
546 |
|
60758 | 547 |
text\<open>Suggested by Matthias Daum\<close> |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
548 |
lemma int_power_div_base: |
68631 | 549 |
fixes k :: int |
550 |
assumes "0 < m" "0 < k" |
|
551 |
shows "k ^ m div k = (k::int) ^ (m - Suc 0)" |
|
552 |
proof - |
|
553 |
have eq: "k ^ m = k ^ ((m - Suc 0) + Suc 0)" |
|
554 |
by (simp add: assms) |
|
555 |
show ?thesis |
|
556 |
using assms by (simp only: power_add eq) auto |
|
557 |
qed |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
558 |
|
60758 | 559 |
text\<open>Suggested by Matthias Daum\<close> |
68631 | 560 |
lemma int_div_less_self: |
561 |
fixes x::int |
|
562 |
assumes "0 < x" "1 < k" |
|
563 |
shows "x div k < x" |
|
564 |
proof - |
|
565 |
have "nat x div nat k < nat x" |
|
566 |
by (simp add: assms) |
|
567 |
with assms show ?thesis |
|
568 |
by (simp add: nat_div_distrib [symmetric]) |
|
569 |
qed |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
570 |
|
66837 | 571 |
lemma mod_eq_dvd_iff_nat: |
572 |
"m mod q = n mod q \<longleftrightarrow> q dvd m - n" if "m \<ge> n" for m n q :: nat |
|
573 |
proof - |
|
574 |
have "int m mod int q = int n mod int q \<longleftrightarrow> int q dvd int m - int n" |
|
575 |
by (simp add: mod_eq_dvd_iff) |
|
576 |
with that have "int (m mod q) = int (n mod q) \<longleftrightarrow> int q dvd int (m - n)" |
|
577 |
by (simp only: of_nat_mod of_nat_diff) |
|
578 |
then show ?thesis |
|
67118 | 579 |
by simp |
66837 | 580 |
qed |
581 |
||
582 |
lemma mod_eq_nat1E: |
|
583 |
fixes m n q :: nat |
|
584 |
assumes "m mod q = n mod q" and "m \<ge> n" |
|
585 |
obtains s where "m = n + q * s" |
|
586 |
proof - |
|
587 |
from assms have "q dvd m - n" |
|
588 |
by (simp add: mod_eq_dvd_iff_nat) |
|
589 |
then obtain s where "m - n = q * s" .. |
|
590 |
with \<open>m \<ge> n\<close> have "m = n + q * s" |
|
591 |
by simp |
|
592 |
with that show thesis . |
|
593 |
qed |
|
594 |
||
595 |
lemma mod_eq_nat2E: |
|
596 |
fixes m n q :: nat |
|
597 |
assumes "m mod q = n mod q" and "n \<ge> m" |
|
598 |
obtains s where "n = m + q * s" |
|
599 |
using assms mod_eq_nat1E [of n q m] by (auto simp add: ac_simps) |
|
600 |
||
601 |
lemma nat_mod_eq_lemma: |
|
602 |
assumes "(x::nat) mod n = y mod n" and "y \<le> x" |
|
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
603 |
shows "\<exists>q. x = y + n * q" |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
604 |
using assms by (rule mod_eq_nat1E) (rule exI) |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
605 |
|
60562
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
paulson <lp15@cam.ac.uk>
parents:
60517
diff
changeset
|
606 |
lemma nat_mod_eq_iff: "(x::nat) mod n = y mod n \<longleftrightarrow> (\<exists>q1 q2. x + n * q1 = y + n * q2)" |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
607 |
(is "?lhs = ?rhs") |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
608 |
proof |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
609 |
assume H: "x mod n = y mod n" |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
610 |
{assume xy: "x \<le> y" |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
611 |
from H have th: "y mod n = x mod n" by simp |
60562
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
paulson <lp15@cam.ac.uk>
parents:
60517
diff
changeset
|
612 |
from nat_mod_eq_lemma[OF th xy] have ?rhs |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
613 |
proof |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
614 |
fix q |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
615 |
assume "y = x + n * q" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
616 |
then have "x + n * q = y + n * 0" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
617 |
by simp |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
618 |
then show "\<exists>q1 q2. x + n * q1 = y + n * q2" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
619 |
by blast |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
620 |
qed} |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
621 |
moreover |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
622 |
{assume xy: "y \<le> x" |
60562
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
paulson <lp15@cam.ac.uk>
parents:
60517
diff
changeset
|
623 |
from nat_mod_eq_lemma[OF H xy] have ?rhs |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
624 |
proof |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
625 |
fix q |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
626 |
assume "x = y + n * q" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
627 |
then have "x + n * 0 = y + n * q" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
628 |
by simp |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
629 |
then show "\<exists>q1 q2. x + n * q1 = y + n * q2" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
630 |
by blast |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
631 |
qed} |
60562
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
paulson <lp15@cam.ac.uk>
parents:
60517
diff
changeset
|
632 |
ultimately show ?rhs using linear[of x y] by blast |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
633 |
next |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
634 |
assume ?rhs then obtain q1 q2 where q12: "x + n * q1 = y + n * q2" by blast |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
635 |
hence "(x + n * q1) mod n = (y + n * q2) mod n" by simp |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
636 |
thus ?lhs by simp |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
637 |
qed |
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
638 |
|
66808
1907167b6038
elementary definition of division on natural numbers
haftmann
parents:
66806
diff
changeset
|
639 |
|
68253 | 640 |
subsection \<open>Numeral division with a pragmatic type class\<close> |
641 |
||
642 |
text \<open> |
|
643 |
The following type class contains everything necessary to formulate |
|
644 |
a division algorithm in ring structures with numerals, restricted |
|
645 |
to its positive segments. This is its primary motivation, and it |
|
646 |
could surely be formulated using a more fine-grained, more algebraic |
|
647 |
and less technical class hierarchy. |
|
648 |
\<close> |
|
649 |
||
70340 | 650 |
class unique_euclidean_semiring_numeral = unique_euclidean_semiring_with_nat + linordered_semidom + |
68253 | 651 |
assumes div_less: "0 \<le> a \<Longrightarrow> a < b \<Longrightarrow> a div b = 0" |
652 |
and mod_less: " 0 \<le> a \<Longrightarrow> a < b \<Longrightarrow> a mod b = a" |
|
653 |
and div_positive: "0 < b \<Longrightarrow> b \<le> a \<Longrightarrow> a div b > 0" |
|
654 |
and mod_less_eq_dividend: "0 \<le> a \<Longrightarrow> a mod b \<le> a" |
|
655 |
and pos_mod_bound: "0 < b \<Longrightarrow> a mod b < b" |
|
656 |
and pos_mod_sign: "0 < b \<Longrightarrow> 0 \<le> a mod b" |
|
657 |
and mod_mult2_eq: "0 \<le> c \<Longrightarrow> a mod (b * c) = b * (a div b mod c) + a mod b" |
|
658 |
and div_mult2_eq: "0 \<le> c \<Longrightarrow> a div (b * c) = a div b div c" |
|
659 |
assumes discrete: "a < b \<longleftrightarrow> a + 1 \<le> b" |
|
660 |
fixes divmod :: "num \<Rightarrow> num \<Rightarrow> 'a \<times> 'a" |
|
661 |
and divmod_step :: "num \<Rightarrow> 'a \<times> 'a \<Rightarrow> 'a \<times> 'a" |
|
662 |
assumes divmod_def: "divmod m n = (numeral m div numeral n, numeral m mod numeral n)" |
|
663 |
and divmod_step_def: "divmod_step l qr = (let (q, r) = qr |
|
664 |
in if r \<ge> numeral l then (2 * q + 1, r - numeral l) |
|
665 |
else (2 * q, r))" |
|
666 |
\<comment> \<open>These are conceptually definitions but force generated code |
|
667 |
to be monomorphic wrt. particular instances of this class which |
|
668 |
yields a significant speedup.\<close> |
|
669 |
begin |
|
670 |
||
671 |
lemma divmod_digit_1: |
|
672 |
assumes "0 \<le> a" "0 < b" and "b \<le> a mod (2 * b)" |
|
673 |
shows "2 * (a div (2 * b)) + 1 = a div b" (is "?P") |
|
674 |
and "a mod (2 * b) - b = a mod b" (is "?Q") |
|
675 |
proof - |
|
676 |
from assms mod_less_eq_dividend [of a "2 * b"] have "b \<le> a" |
|
677 |
by (auto intro: trans) |
|
678 |
with \<open>0 < b\<close> have "0 < a div b" by (auto intro: div_positive) |
|
679 |
then have [simp]: "1 \<le> a div b" by (simp add: discrete) |
|
680 |
with \<open>0 < b\<close> have mod_less: "a mod b < b" by (simp add: pos_mod_bound) |
|
681 |
define w where "w = a div b mod 2" |
|
682 |
then have w_exhaust: "w = 0 \<or> w = 1" by auto |
|
683 |
have mod_w: "a mod (2 * b) = a mod b + b * w" |
|
684 |
by (simp add: w_def mod_mult2_eq ac_simps) |
|
685 |
from assms w_exhaust have "w = 1" |
|
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74101
diff
changeset
|
686 |
using mod_less by (auto simp add: mod_w) |
68253 | 687 |
with mod_w have mod: "a mod (2 * b) = a mod b + b" by simp |
688 |
have "2 * (a div (2 * b)) = a div b - w" |
|
689 |
by (simp add: w_def div_mult2_eq minus_mod_eq_mult_div ac_simps) |
|
690 |
with \<open>w = 1\<close> have div: "2 * (a div (2 * b)) = a div b - 1" by simp |
|
691 |
then show ?P and ?Q |
|
692 |
by (simp_all add: div mod add_implies_diff [symmetric]) |
|
693 |
qed |
|
694 |
||
695 |
lemma divmod_digit_0: |
|
696 |
assumes "0 < b" and "a mod (2 * b) < b" |
|
697 |
shows "2 * (a div (2 * b)) = a div b" (is "?P") |
|
698 |
and "a mod (2 * b) = a mod b" (is "?Q") |
|
699 |
proof - |
|
700 |
define w where "w = a div b mod 2" |
|
701 |
then have w_exhaust: "w = 0 \<or> w = 1" by auto |
|
702 |
have mod_w: "a mod (2 * b) = a mod b + b * w" |
|
703 |
by (simp add: w_def mod_mult2_eq ac_simps) |
|
704 |
moreover have "b \<le> a mod b + b" |
|
705 |
proof - |
|
706 |
from \<open>0 < b\<close> pos_mod_sign have "0 \<le> a mod b" by blast |
|
707 |
then have "0 + b \<le> a mod b + b" by (rule add_right_mono) |
|
708 |
then show ?thesis by simp |
|
709 |
qed |
|
710 |
moreover note assms w_exhaust |
|
711 |
ultimately have "w = 0" by auto |
|
712 |
with mod_w have mod: "a mod (2 * b) = a mod b" by simp |
|
713 |
have "2 * (a div (2 * b)) = a div b - w" |
|
714 |
by (simp add: w_def div_mult2_eq minus_mod_eq_mult_div ac_simps) |
|
715 |
with \<open>w = 0\<close> have div: "2 * (a div (2 * b)) = a div b" by simp |
|
716 |
then show ?P and ?Q |
|
717 |
by (simp_all add: div mod) |
|
718 |
qed |
|
719 |
||
69785
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
720 |
lemma mod_double_modulus: |
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
721 |
assumes "m > 0" "x \<ge> 0" |
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
722 |
shows "x mod (2 * m) = x mod m \<or> x mod (2 * m) = x mod m + m" |
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
723 |
proof (cases "x mod (2 * m) < m") |
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
724 |
case True |
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
725 |
thus ?thesis using assms using divmod_digit_0(2)[of m x] by auto |
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
726 |
next |
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
727 |
case False |
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
728 |
hence *: "x mod (2 * m) - m = x mod m" |
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
729 |
using assms by (intro divmod_digit_1) auto |
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
730 |
hence "x mod (2 * m) = x mod m + m" |
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
731 |
by (subst * [symmetric], subst le_add_diff_inverse2) (use False in auto) |
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
732 |
thus ?thesis by simp |
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
733 |
qed |
9e326f6f8a24
More material for HOL-Number_Theory: ord, Carmichael's function, primitive roots
Manuel Eberl <eberlm@in.tum.de>
parents:
69695
diff
changeset
|
734 |
|
68253 | 735 |
lemma fst_divmod: |
736 |
"fst (divmod m n) = numeral m div numeral n" |
|
737 |
by (simp add: divmod_def) |
|
738 |
||
739 |
lemma snd_divmod: |
|
740 |
"snd (divmod m n) = numeral m mod numeral n" |
|
741 |
by (simp add: divmod_def) |
|
742 |
||
743 |
text \<open> |
|
744 |
This is a formulation of one step (referring to one digit position) |
|
745 |
in school-method division: compare the dividend at the current |
|
746 |
digit position with the remainder from previous division steps |
|
747 |
and evaluate accordingly. |
|
748 |
\<close> |
|
749 |
||
750 |
lemma divmod_step_eq [simp]: |
|
751 |
"divmod_step l (q, r) = (if numeral l \<le> r |
|
752 |
then (2 * q + 1, r - numeral l) else (2 * q, r))" |
|
753 |
by (simp add: divmod_step_def) |
|
754 |
||
755 |
text \<open> |
|
756 |
This is a formulation of school-method division. |
|
757 |
If the divisor is smaller than the dividend, terminate. |
|
758 |
If not, shift the dividend to the right until termination |
|
759 |
occurs and then reiterate single division steps in the |
|
760 |
opposite direction. |
|
761 |
\<close> |
|
762 |
||
763 |
lemma divmod_divmod_step: |
|
764 |
"divmod m n = (if m < n then (0, numeral m) |
|
765 |
else divmod_step n (divmod m (Num.Bit0 n)))" |
|
766 |
proof (cases "m < n") |
|
767 |
case True then have "numeral m < numeral n" by simp |
|
768 |
then show ?thesis |
|
769 |
by (simp add: prod_eq_iff div_less mod_less fst_divmod snd_divmod) |
|
770 |
next |
|
771 |
case False |
|
772 |
have "divmod m n = |
|
773 |
divmod_step n (numeral m div (2 * numeral n), |
|
774 |
numeral m mod (2 * numeral n))" |
|
775 |
proof (cases "numeral n \<le> numeral m mod (2 * numeral n)") |
|
776 |
case True |
|
777 |
with divmod_step_eq |
|
778 |
have "divmod_step n (numeral m div (2 * numeral n), numeral m mod (2 * numeral n)) = |
|
779 |
(2 * (numeral m div (2 * numeral n)) + 1, numeral m mod (2 * numeral n) - numeral n)" |
|
780 |
by simp |
|
781 |
moreover from True divmod_digit_1 [of "numeral m" "numeral n"] |
|
782 |
have "2 * (numeral m div (2 * numeral n)) + 1 = numeral m div numeral n" |
|
783 |
and "numeral m mod (2 * numeral n) - numeral n = numeral m mod numeral n" |
|
784 |
by simp_all |
|
785 |
ultimately show ?thesis by (simp only: divmod_def) |
|
786 |
next |
|
787 |
case False then have *: "numeral m mod (2 * numeral n) < numeral n" |
|
788 |
by (simp add: not_le) |
|
789 |
with divmod_step_eq |
|
790 |
have "divmod_step n (numeral m div (2 * numeral n), numeral m mod (2 * numeral n)) = |
|
791 |
(2 * (numeral m div (2 * numeral n)), numeral m mod (2 * numeral n))" |
|
792 |
by auto |
|
793 |
moreover from * divmod_digit_0 [of "numeral n" "numeral m"] |
|
794 |
have "2 * (numeral m div (2 * numeral n)) = numeral m div numeral n" |
|
795 |
and "numeral m mod (2 * numeral n) = numeral m mod numeral n" |
|
796 |
by (simp_all only: zero_less_numeral) |
|
797 |
ultimately show ?thesis by (simp only: divmod_def) |
|
798 |
qed |
|
799 |
then have "divmod m n = |
|
800 |
divmod_step n (numeral m div numeral (Num.Bit0 n), |
|
801 |
numeral m mod numeral (Num.Bit0 n))" |
|
802 |
by (simp only: numeral.simps distrib mult_1) |
|
803 |
then have "divmod m n = divmod_step n (divmod m (Num.Bit0 n))" |
|
804 |
by (simp add: divmod_def) |
|
805 |
with False show ?thesis by simp |
|
806 |
qed |
|
807 |
||
808 |
text \<open>The division rewrite proper -- first, trivial results involving \<open>1\<close>\<close> |
|
809 |
||
810 |
lemma divmod_trivial [simp]: |
|
71756 | 811 |
"divmod m Num.One = (numeral m, 0)" |
68253 | 812 |
"divmod num.One (num.Bit0 n) = (0, Numeral1)" |
813 |
"divmod num.One (num.Bit1 n) = (0, Numeral1)" |
|
814 |
using divmod_divmod_step [of "Num.One"] by (simp_all add: divmod_def) |
|
815 |
||
816 |
text \<open>Division by an even number is a right-shift\<close> |
|
817 |
||
818 |
lemma divmod_cancel [simp]: |
|
819 |
"divmod (Num.Bit0 m) (Num.Bit0 n) = (case divmod m n of (q, r) \<Rightarrow> (q, 2 * r))" (is ?P) |
|
820 |
"divmod (Num.Bit1 m) (Num.Bit0 n) = (case divmod m n of (q, r) \<Rightarrow> (q, 2 * r + 1))" (is ?Q) |
|
821 |
proof - |
|
822 |
have *: "\<And>q. numeral (Num.Bit0 q) = 2 * numeral q" |
|
823 |
"\<And>q. numeral (Num.Bit1 q) = 2 * numeral q + 1" |
|
824 |
by (simp_all only: numeral_mult numeral.simps distrib) simp_all |
|
825 |
have "1 div 2 = 0" "1 mod 2 = 1" by (auto intro: div_less mod_less) |
|
826 |
then show ?P and ?Q |
|
827 |
by (simp_all add: fst_divmod snd_divmod prod_eq_iff split_def * [of m] * [of n] mod_mult_mult1 |
|
828 |
div_mult2_eq [of _ _ 2] mod_mult2_eq [of _ _ 2] |
|
829 |
add.commute del: numeral_times_numeral) |
|
830 |
qed |
|
831 |
||
832 |
text \<open>The really hard work\<close> |
|
833 |
||
834 |
lemma divmod_steps [simp]: |
|
835 |
"divmod (num.Bit0 m) (num.Bit1 n) = |
|
836 |
(if m \<le> n then (0, numeral (num.Bit0 m)) |
|
837 |
else divmod_step (num.Bit1 n) |
|
838 |
(divmod (num.Bit0 m) |
|
839 |
(num.Bit0 (num.Bit1 n))))" |
|
840 |
"divmod (num.Bit1 m) (num.Bit1 n) = |
|
841 |
(if m < n then (0, numeral (num.Bit1 m)) |
|
842 |
else divmod_step (num.Bit1 n) |
|
843 |
(divmod (num.Bit1 m) |
|
844 |
(num.Bit0 (num.Bit1 n))))" |
|
845 |
by (simp_all add: divmod_divmod_step) |
|
846 |
||
847 |
lemmas divmod_algorithm_code = divmod_step_eq divmod_trivial divmod_cancel divmod_steps |
|
848 |
||
849 |
text \<open>Special case: divisibility\<close> |
|
850 |
||
851 |
definition divides_aux :: "'a \<times> 'a \<Rightarrow> bool" |
|
852 |
where |
|
853 |
"divides_aux qr \<longleftrightarrow> snd qr = 0" |
|
854 |
||
855 |
lemma divides_aux_eq [simp]: |
|
856 |
"divides_aux (q, r) \<longleftrightarrow> r = 0" |
|
857 |
by (simp add: divides_aux_def) |
|
858 |
||
859 |
lemma dvd_numeral_simp [simp]: |
|
860 |
"numeral m dvd numeral n \<longleftrightarrow> divides_aux (divmod n m)" |
|
861 |
by (simp add: divmod_def mod_eq_0_iff_dvd) |
|
862 |
||
863 |
text \<open>Generic computation of quotient and remainder\<close> |
|
864 |
||
865 |
lemma numeral_div_numeral [simp]: |
|
866 |
"numeral k div numeral l = fst (divmod k l)" |
|
867 |
by (simp add: fst_divmod) |
|
868 |
||
869 |
lemma numeral_mod_numeral [simp]: |
|
870 |
"numeral k mod numeral l = snd (divmod k l)" |
|
871 |
by (simp add: snd_divmod) |
|
872 |
||
873 |
lemma one_div_numeral [simp]: |
|
874 |
"1 div numeral n = fst (divmod num.One n)" |
|
875 |
by (simp add: fst_divmod) |
|
876 |
||
877 |
lemma one_mod_numeral [simp]: |
|
878 |
"1 mod numeral n = snd (divmod num.One n)" |
|
879 |
by (simp add: snd_divmod) |
|
880 |
||
881 |
text \<open>Computing congruences modulo \<open>2 ^ q\<close>\<close> |
|
882 |
||
883 |
lemma cong_exp_iff_simps: |
|
884 |
"numeral n mod numeral Num.One = 0 |
|
885 |
\<longleftrightarrow> True" |
|
886 |
"numeral (Num.Bit0 n) mod numeral (Num.Bit0 q) = 0 |
|
887 |
\<longleftrightarrow> numeral n mod numeral q = 0" |
|
888 |
"numeral (Num.Bit1 n) mod numeral (Num.Bit0 q) = 0 |
|
889 |
\<longleftrightarrow> False" |
|
890 |
"numeral m mod numeral Num.One = (numeral n mod numeral Num.One) |
|
891 |
\<longleftrightarrow> True" |
|
892 |
"numeral Num.One mod numeral (Num.Bit0 q) = (numeral Num.One mod numeral (Num.Bit0 q)) |
|
893 |
\<longleftrightarrow> True" |
|
894 |
"numeral Num.One mod numeral (Num.Bit0 q) = (numeral (Num.Bit0 n) mod numeral (Num.Bit0 q)) |
|
895 |
\<longleftrightarrow> False" |
|
896 |
"numeral Num.One mod numeral (Num.Bit0 q) = (numeral (Num.Bit1 n) mod numeral (Num.Bit0 q)) |
|
897 |
\<longleftrightarrow> (numeral n mod numeral q) = 0" |
|
898 |
"numeral (Num.Bit0 m) mod numeral (Num.Bit0 q) = (numeral Num.One mod numeral (Num.Bit0 q)) |
|
899 |
\<longleftrightarrow> False" |
|
900 |
"numeral (Num.Bit0 m) mod numeral (Num.Bit0 q) = (numeral (Num.Bit0 n) mod numeral (Num.Bit0 q)) |
|
901 |
\<longleftrightarrow> numeral m mod numeral q = (numeral n mod numeral q)" |
|
902 |
"numeral (Num.Bit0 m) mod numeral (Num.Bit0 q) = (numeral (Num.Bit1 n) mod numeral (Num.Bit0 q)) |
|
903 |
\<longleftrightarrow> False" |
|
904 |
"numeral (Num.Bit1 m) mod numeral (Num.Bit0 q) = (numeral Num.One mod numeral (Num.Bit0 q)) |
|
905 |
\<longleftrightarrow> (numeral m mod numeral q) = 0" |
|
906 |
"numeral (Num.Bit1 m) mod numeral (Num.Bit0 q) = (numeral (Num.Bit0 n) mod numeral (Num.Bit0 q)) |
|
907 |
\<longleftrightarrow> False" |
|
908 |
"numeral (Num.Bit1 m) mod numeral (Num.Bit0 q) = (numeral (Num.Bit1 n) mod numeral (Num.Bit0 q)) |
|
909 |
\<longleftrightarrow> numeral m mod numeral q = (numeral n mod numeral q)" |
|
910 |
by (auto simp add: case_prod_beta dest: arg_cong [of _ _ even]) |
|
911 |
||
912 |
end |
|
913 |
||
914 |
hide_fact (open) div_less mod_less mod_less_eq_dividend mod_mult2_eq div_mult2_eq |
|
915 |
||
916 |
instantiation nat :: unique_euclidean_semiring_numeral |
|
917 |
begin |
|
918 |
||
919 |
definition divmod_nat :: "num \<Rightarrow> num \<Rightarrow> nat \<times> nat" |
|
920 |
where |
|
921 |
divmod'_nat_def: "divmod_nat m n = (numeral m div numeral n, numeral m mod numeral n)" |
|
922 |
||
923 |
definition divmod_step_nat :: "num \<Rightarrow> nat \<times> nat \<Rightarrow> nat \<times> nat" |
|
924 |
where |
|
925 |
"divmod_step_nat l qr = (let (q, r) = qr |
|
926 |
in if r \<ge> numeral l then (2 * q + 1, r - numeral l) |
|
927 |
else (2 * q, r))" |
|
928 |
||
929 |
instance by standard |
|
930 |
(auto simp add: divmod'_nat_def divmod_step_nat_def div_greater_zero_iff div_mult2_eq mod_mult2_eq) |
|
931 |
||
932 |
end |
|
933 |
||
934 |
declare divmod_algorithm_code [where ?'a = nat, code] |
|
935 |
||
936 |
lemma Suc_0_div_numeral [simp]: |
|
937 |
fixes k l :: num |
|
938 |
shows "Suc 0 div numeral k = fst (divmod Num.One k)" |
|
939 |
by (simp_all add: fst_divmod) |
|
940 |
||
941 |
lemma Suc_0_mod_numeral [simp]: |
|
942 |
fixes k l :: num |
|
943 |
shows "Suc 0 mod numeral k = snd (divmod Num.One k)" |
|
944 |
by (simp_all add: snd_divmod) |
|
945 |
||
946 |
instantiation int :: unique_euclidean_semiring_numeral |
|
947 |
begin |
|
948 |
||
949 |
definition divmod_int :: "num \<Rightarrow> num \<Rightarrow> int \<times> int" |
|
950 |
where |
|
951 |
"divmod_int m n = (numeral m div numeral n, numeral m mod numeral n)" |
|
952 |
||
953 |
definition divmod_step_int :: "num \<Rightarrow> int \<times> int \<Rightarrow> int \<times> int" |
|
954 |
where |
|
955 |
"divmod_step_int l qr = (let (q, r) = qr |
|
956 |
in if r \<ge> numeral l then (2 * q + 1, r - numeral l) |
|
957 |
else (2 * q, r))" |
|
958 |
||
959 |
instance |
|
960 |
by standard (auto intro: zmod_le_nonneg_dividend simp add: divmod_int_def divmod_step_int_def |
|
961 |
pos_imp_zdiv_pos_iff zmod_zmult2_eq zdiv_zmult2_eq) |
|
962 |
||
963 |
end |
|
964 |
||
965 |
declare divmod_algorithm_code [where ?'a = int, code] |
|
966 |
||
967 |
context |
|
968 |
begin |
|
969 |
||
970 |
qualified definition adjust_div :: "int \<times> int \<Rightarrow> int" |
|
971 |
where |
|
972 |
"adjust_div qr = (let (q, r) = qr in q + of_bool (r \<noteq> 0))" |
|
973 |
||
974 |
qualified lemma adjust_div_eq [simp, code]: |
|
975 |
"adjust_div (q, r) = q + of_bool (r \<noteq> 0)" |
|
976 |
by (simp add: adjust_div_def) |
|
977 |
||
978 |
qualified definition adjust_mod :: "int \<Rightarrow> int \<Rightarrow> int" |
|
979 |
where |
|
980 |
[simp]: "adjust_mod l r = (if r = 0 then 0 else l - r)" |
|
981 |
||
982 |
lemma minus_numeral_div_numeral [simp]: |
|
983 |
"- numeral m div numeral n = - (adjust_div (divmod m n) :: int)" |
|
984 |
proof - |
|
985 |
have "int (fst (divmod m n)) = fst (divmod m n)" |
|
986 |
by (simp only: fst_divmod divide_int_def) auto |
|
987 |
then show ?thesis |
|
988 |
by (auto simp add: split_def Let_def adjust_div_def divides_aux_def divide_int_def) |
|
989 |
qed |
|
990 |
||
991 |
lemma minus_numeral_mod_numeral [simp]: |
|
992 |
"- numeral m mod numeral n = adjust_mod (numeral n) (snd (divmod m n) :: int)" |
|
993 |
proof (cases "snd (divmod m n) = (0::int)") |
|
994 |
case True |
|
995 |
then show ?thesis |
|
996 |
by (simp add: mod_eq_0_iff_dvd divides_aux_def) |
|
997 |
next |
|
998 |
case False |
|
999 |
then have "int (snd (divmod m n)) = snd (divmod m n)" if "snd (divmod m n) \<noteq> (0::int)" |
|
1000 |
by (simp only: snd_divmod modulo_int_def) auto |
|
1001 |
then show ?thesis |
|
1002 |
by (simp add: divides_aux_def adjust_div_def) |
|
1003 |
(simp add: divides_aux_def modulo_int_def) |
|
1004 |
qed |
|
1005 |
||
1006 |
lemma numeral_div_minus_numeral [simp]: |
|
1007 |
"numeral m div - numeral n = - (adjust_div (divmod m n) :: int)" |
|
1008 |
proof - |
|
1009 |
have "int (fst (divmod m n)) = fst (divmod m n)" |
|
1010 |
by (simp only: fst_divmod divide_int_def) auto |
|
1011 |
then show ?thesis |
|
1012 |
by (auto simp add: split_def Let_def adjust_div_def divides_aux_def divide_int_def) |
|
1013 |
qed |
|
1014 |
||
1015 |
lemma numeral_mod_minus_numeral [simp]: |
|
1016 |
"numeral m mod - numeral n = - adjust_mod (numeral n) (snd (divmod m n) :: int)" |
|
1017 |
proof (cases "snd (divmod m n) = (0::int)") |
|
1018 |
case True |
|
1019 |
then show ?thesis |
|
1020 |
by (simp add: mod_eq_0_iff_dvd divides_aux_def) |
|
1021 |
next |
|
1022 |
case False |
|
1023 |
then have "int (snd (divmod m n)) = snd (divmod m n)" if "snd (divmod m n) \<noteq> (0::int)" |
|
1024 |
by (simp only: snd_divmod modulo_int_def) auto |
|
1025 |
then show ?thesis |
|
1026 |
by (simp add: divides_aux_def adjust_div_def) |
|
1027 |
(simp add: divides_aux_def modulo_int_def) |
|
1028 |
qed |
|
1029 |
||
1030 |
lemma minus_one_div_numeral [simp]: |
|
1031 |
"- 1 div numeral n = - (adjust_div (divmod Num.One n) :: int)" |
|
1032 |
using minus_numeral_div_numeral [of Num.One n] by simp |
|
1033 |
||
1034 |
lemma minus_one_mod_numeral [simp]: |
|
1035 |
"- 1 mod numeral n = adjust_mod (numeral n) (snd (divmod Num.One n) :: int)" |
|
1036 |
using minus_numeral_mod_numeral [of Num.One n] by simp |
|
1037 |
||
1038 |
lemma one_div_minus_numeral [simp]: |
|
1039 |
"1 div - numeral n = - (adjust_div (divmod Num.One n) :: int)" |
|
1040 |
using numeral_div_minus_numeral [of Num.One n] by simp |
|
1041 |
||
1042 |
lemma one_mod_minus_numeral [simp]: |
|
1043 |
"1 mod - numeral n = - adjust_mod (numeral n) (snd (divmod Num.One n) :: int)" |
|
1044 |
using numeral_mod_minus_numeral [of Num.One n] by simp |
|
1045 |
||
1046 |
end |
|
1047 |
||
71756 | 1048 |
lemma divmod_BitM_2_eq [simp]: |
1049 |
\<open>divmod (Num.BitM m) (Num.Bit0 Num.One) = (numeral m - 1, (1 :: int))\<close> |
|
1050 |
by (cases m) simp_all |
|
1051 |
||
68253 | 1052 |
lemma div_positive_int: |
1053 |
"k div l > 0" if "k \<ge> l" and "l > 0" for k l :: int |
|
1054 |
using that div_positive [of l k] by blast |
|
1055 |
||
1056 |
||
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1057 |
subsubsection \<open>Dedicated simproc for calculation\<close> |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1058 |
|
60758 | 1059 |
text \<open> |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1060 |
There is space for improvement here: the calculation itself |
66808
1907167b6038
elementary definition of division on natural numbers
haftmann
parents:
66806
diff
changeset
|
1061 |
could be carried out outside the logic, and a generic simproc |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1062 |
(simplifier setup) for generic calculation would be helpful. |
60758 | 1063 |
\<close> |
53067
ee0b7c2315d2
type class for generic division algorithm on numerals
haftmann
parents:
53066
diff
changeset
|
1064 |
|
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1065 |
simproc_setup numeral_divmod |
66806
a4e82b58d833
abolished (semi)ring_div in favour of euclidean_(semi)ring_cancel
haftmann
parents:
66801
diff
changeset
|
1066 |
("0 div 0 :: 'a :: unique_euclidean_semiring_numeral" | "0 mod 0 :: 'a :: unique_euclidean_semiring_numeral" | |
a4e82b58d833
abolished (semi)ring_div in favour of euclidean_(semi)ring_cancel
haftmann
parents:
66801
diff
changeset
|
1067 |
"0 div 1 :: 'a :: unique_euclidean_semiring_numeral" | "0 mod 1 :: 'a :: unique_euclidean_semiring_numeral" | |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1068 |
"0 div - 1 :: int" | "0 mod - 1 :: int" | |
66806
a4e82b58d833
abolished (semi)ring_div in favour of euclidean_(semi)ring_cancel
haftmann
parents:
66801
diff
changeset
|
1069 |
"0 div numeral b :: 'a :: unique_euclidean_semiring_numeral" | "0 mod numeral b :: 'a :: unique_euclidean_semiring_numeral" | |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1070 |
"0 div - numeral b :: int" | "0 mod - numeral b :: int" | |
66806
a4e82b58d833
abolished (semi)ring_div in favour of euclidean_(semi)ring_cancel
haftmann
parents:
66801
diff
changeset
|
1071 |
"1 div 0 :: 'a :: unique_euclidean_semiring_numeral" | "1 mod 0 :: 'a :: unique_euclidean_semiring_numeral" | |
a4e82b58d833
abolished (semi)ring_div in favour of euclidean_(semi)ring_cancel
haftmann
parents:
66801
diff
changeset
|
1072 |
"1 div 1 :: 'a :: unique_euclidean_semiring_numeral" | "1 mod 1 :: 'a :: unique_euclidean_semiring_numeral" | |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1073 |
"1 div - 1 :: int" | "1 mod - 1 :: int" | |
66806
a4e82b58d833
abolished (semi)ring_div in favour of euclidean_(semi)ring_cancel
haftmann
parents:
66801
diff
changeset
|
1074 |
"1 div numeral b :: 'a :: unique_euclidean_semiring_numeral" | "1 mod numeral b :: 'a :: unique_euclidean_semiring_numeral" | |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1075 |
"1 div - numeral b :: int" |"1 mod - numeral b :: int" | |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1076 |
"- 1 div 0 :: int" | "- 1 mod 0 :: int" | "- 1 div 1 :: int" | "- 1 mod 1 :: int" | |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1077 |
"- 1 div - 1 :: int" | "- 1 mod - 1 :: int" | "- 1 div numeral b :: int" | "- 1 mod numeral b :: int" | |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1078 |
"- 1 div - numeral b :: int" | "- 1 mod - numeral b :: int" | |
66806
a4e82b58d833
abolished (semi)ring_div in favour of euclidean_(semi)ring_cancel
haftmann
parents:
66801
diff
changeset
|
1079 |
"numeral a div 0 :: 'a :: unique_euclidean_semiring_numeral" | "numeral a mod 0 :: 'a :: unique_euclidean_semiring_numeral" | |
a4e82b58d833
abolished (semi)ring_div in favour of euclidean_(semi)ring_cancel
haftmann
parents:
66801
diff
changeset
|
1080 |
"numeral a div 1 :: 'a :: unique_euclidean_semiring_numeral" | "numeral a mod 1 :: 'a :: unique_euclidean_semiring_numeral" | |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1081 |
"numeral a div - 1 :: int" | "numeral a mod - 1 :: int" | |
66806
a4e82b58d833
abolished (semi)ring_div in favour of euclidean_(semi)ring_cancel
haftmann
parents:
66801
diff
changeset
|
1082 |
"numeral a div numeral b :: 'a :: unique_euclidean_semiring_numeral" | "numeral a mod numeral b :: 'a :: unique_euclidean_semiring_numeral" | |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1083 |
"numeral a div - numeral b :: int" | "numeral a mod - numeral b :: int" | |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1084 |
"- numeral a div 0 :: int" | "- numeral a mod 0 :: int" | |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1085 |
"- numeral a div 1 :: int" | "- numeral a mod 1 :: int" | |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1086 |
"- numeral a div - 1 :: int" | "- numeral a mod - 1 :: int" | |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1087 |
"- numeral a div numeral b :: int" | "- numeral a mod numeral b :: int" | |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1088 |
"- numeral a div - numeral b :: int" | "- numeral a mod - numeral b :: int") = |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1089 |
\<open> let |
69593 | 1090 |
val if_cong = the (Code.get_case_cong \<^theory> \<^const_name>\<open>If\<close>); |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1091 |
fun successful_rewrite ctxt ct = |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1092 |
let |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1093 |
val thm = Simplifier.rewrite ctxt ct |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1094 |
in if Thm.is_reflexive thm then NONE else SOME thm end; |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1095 |
in fn phi => |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1096 |
let |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1097 |
val simps = Morphism.fact phi (@{thms div_0 mod_0 div_by_0 mod_by_0 div_by_1 mod_by_1 |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1098 |
one_div_numeral one_mod_numeral minus_one_div_numeral minus_one_mod_numeral |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1099 |
one_div_minus_numeral one_mod_minus_numeral |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1100 |
numeral_div_numeral numeral_mod_numeral minus_numeral_div_numeral minus_numeral_mod_numeral |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1101 |
numeral_div_minus_numeral numeral_mod_minus_numeral |
60930 | 1102 |
div_minus_minus mod_minus_minus Divides.adjust_div_eq of_bool_eq one_neq_zero |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1103 |
numeral_neq_zero neg_equal_0_iff_equal arith_simps arith_special divmod_trivial |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1104 |
divmod_cancel divmod_steps divmod_step_eq fst_conv snd_conv numeral_One |
60930 | 1105 |
case_prod_beta rel_simps Divides.adjust_mod_def div_minus1_right mod_minus1_right |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1106 |
minus_minus numeral_times_numeral mult_zero_right mult_1_right} |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1107 |
@ [@{lemma "0 = 0 \<longleftrightarrow> True" by simp}]); |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1108 |
fun prepare_simpset ctxt = HOL_ss |> Simplifier.simpset_map ctxt |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1109 |
(Simplifier.add_cong if_cong #> fold Simplifier.add_simp simps) |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1110 |
in fn ctxt => successful_rewrite (Simplifier.put_simpset (prepare_simpset ctxt) ctxt) end |
69216
1a52baa70aed
clarified ML_Context.expression: it is a closed expression, not a let-declaration -- thus source positions are more accurate (amending d8849cfad60f, 162a4c2e97bc);
wenzelm
parents:
68644
diff
changeset
|
1111 |
end |
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1112 |
\<close> |
34126 | 1113 |
|
35673 | 1114 |
|
60758 | 1115 |
subsubsection \<open>Code generation\<close> |
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
1116 |
|
68253 | 1117 |
definition divmod_nat :: "nat \<Rightarrow> nat \<Rightarrow> nat \<times> nat" |
1118 |
where "divmod_nat m n = (m div n, m mod n)" |
|
1119 |
||
1120 |
lemma fst_divmod_nat [simp]: |
|
1121 |
"fst (divmod_nat m n) = m div n" |
|
1122 |
by (simp add: divmod_nat_def) |
|
1123 |
||
1124 |
lemma snd_divmod_nat [simp]: |
|
1125 |
"snd (divmod_nat m n) = m mod n" |
|
1126 |
by (simp add: divmod_nat_def) |
|
1127 |
||
1128 |
lemma divmod_nat_if [code]: |
|
1129 |
"Divides.divmod_nat m n = (if n = 0 \<or> m < n then (0, m) else |
|
1130 |
let (q, r) = Divides.divmod_nat (m - n) n in (Suc q, r))" |
|
1131 |
by (simp add: prod_eq_iff case_prod_beta not_less le_div_geq le_mod_geq) |
|
1132 |
||
1133 |
lemma [code]: |
|
1134 |
"m div n = fst (divmod_nat m n)" |
|
1135 |
"m mod n = snd (divmod_nat m n)" |
|
1136 |
by simp_all |
|
1137 |
||
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1138 |
lemma [code]: |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1139 |
fixes k :: int |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1140 |
shows |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1141 |
"k div 0 = 0" |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1142 |
"k mod 0 = k" |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1143 |
"0 div k = 0" |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1144 |
"0 mod k = 0" |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1145 |
"k div Int.Pos Num.One = k" |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1146 |
"k mod Int.Pos Num.One = 0" |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1147 |
"k div Int.Neg Num.One = - k" |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1148 |
"k mod Int.Neg Num.One = 0" |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1149 |
"Int.Pos m div Int.Pos n = (fst (divmod m n) :: int)" |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1150 |
"Int.Pos m mod Int.Pos n = (snd (divmod m n) :: int)" |
60930 | 1151 |
"Int.Neg m div Int.Pos n = - (Divides.adjust_div (divmod m n) :: int)" |
1152 |
"Int.Neg m mod Int.Pos n = Divides.adjust_mod (Int.Pos n) (snd (divmod m n) :: int)" |
|
1153 |
"Int.Pos m div Int.Neg n = - (Divides.adjust_div (divmod m n) :: int)" |
|
1154 |
"Int.Pos m mod Int.Neg n = - Divides.adjust_mod (Int.Pos n) (snd (divmod m n) :: int)" |
|
60868
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1155 |
"Int.Neg m div Int.Neg n = (fst (divmod m n) :: int)" |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1156 |
"Int.Neg m mod Int.Neg n = - (snd (divmod m n) :: int)" |
dd18c33c001e
direct bootstrap of integer division from natural division
haftmann
parents:
60867
diff
changeset
|
1157 |
by simp_all |
53069
d165213e3924
execution of int division by class semiring_numeral_div, replacing pdivmod by divmod_abs
haftmann
parents:
53068
diff
changeset
|
1158 |
|
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52398
diff
changeset
|
1159 |
code_identifier |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52398
diff
changeset
|
1160 |
code_module Divides \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith |
33364 | 1161 |
|
64246 | 1162 |
|
68253 | 1163 |
subsection \<open>Lemmas of doubtful value\<close> |
66808
1907167b6038
elementary definition of division on natural numbers
haftmann
parents:
66806
diff
changeset
|
1164 |
|
68631 | 1165 |
lemma div_geq: "m div n = Suc ((m - n) div n)" if "0 < n" and " \<not> m < n" for m n :: nat |
66808
1907167b6038
elementary definition of division on natural numbers
haftmann
parents:
66806
diff
changeset
|
1166 |
by (rule le_div_geq) (use that in \<open>simp_all add: not_less\<close>) |
1907167b6038
elementary definition of division on natural numbers
haftmann
parents:
66806
diff
changeset
|
1167 |
|
68631 | 1168 |
lemma mod_geq: "m mod n = (m - n) mod n" if "\<not> m < n" for m n :: nat |
66808
1907167b6038
elementary definition of division on natural numbers
haftmann
parents:
66806
diff
changeset
|
1169 |
by (rule le_mod_geq) (use that in \<open>simp add: not_less\<close>) |
1907167b6038
elementary definition of division on natural numbers
haftmann
parents:
66806
diff
changeset
|
1170 |
|
68631 | 1171 |
lemma mod_eq_0D: "\<exists>q. m = d * q" if "m mod d = 0" for m d :: nat |
1172 |
using that by (auto simp add: mod_eq_0_iff_dvd) |
|
66816
212a3334e7da
more fundamental definition of div and mod on int
haftmann
parents:
66815
diff
changeset
|
1173 |
|
69695 | 1174 |
lemma pos_mod_conj: "0 < b \<Longrightarrow> 0 \<le> a mod b \<and> a mod b < b" for a b :: int |
1175 |
by simp |
|
1176 |
||
1177 |
lemma neg_mod_conj: "b < 0 \<Longrightarrow> a mod b \<le> 0 \<and> b < a mod b" for a b :: int |
|
1178 |
by simp |
|
1179 |
||
1180 |
lemma zmod_eq_0_iff: "m mod d = 0 \<longleftrightarrow> (\<exists>q. m = d * q)" for m d :: int |
|
1181 |
by (auto simp add: mod_eq_0_iff_dvd) |
|
1182 |
||
1183 |
(* REVISIT: should this be generalized to all semiring_div types? *) |
|
1184 |
lemma zmod_eq_0D [dest!]: "\<exists>q. m = d * q" if "m mod d = 0" for m d :: int |
|
1185 |
using that by auto |
|
1186 |
||
33361
1f18de40b43f
combined former theories Divides and IntDiv to one theory Divides
haftmann
parents:
33340
diff
changeset
|
1187 |
end |