author | wenzelm |
Thu, 01 Oct 2009 22:39:06 +0200 | |
changeset 32840 | 75dff0bd4d5d |
parent 32479 | 521cc9bf2958 |
child 32879 | 7f5ce7af45fd |
permissions | -rw-r--r-- |
32479 | 1 |
(* Authors: Christophe Tabacznyj, Lawrence C. Paulson, Amine Chaieb, |
31798 | 2 |
Thomas M. Rasmussen, Jeremy Avigad, Tobias Nipkow |
31706 | 3 |
|
4 |
||
32479 | 5 |
This file deals with the functions gcd and lcm. Definitions and |
6 |
lemmas are proved uniformly for the natural numbers and integers. |
|
31706 | 7 |
|
8 |
This file combines and revises a number of prior developments. |
|
9 |
||
10 |
The original theories "GCD" and "Primes" were by Christophe Tabacznyj |
|
11 |
and Lawrence C. Paulson, based on \cite{davenport92}. They introduced |
|
12 |
gcd, lcm, and prime for the natural numbers. |
|
13 |
||
14 |
The original theory "IntPrimes" was by Thomas M. Rasmussen, and |
|
15 |
extended gcd, lcm, primes to the integers. Amine Chaieb provided |
|
16 |
another extension of the notions to the integers, and added a number |
|
17 |
of results to "Primes" and "GCD". IntPrimes also defined and developed |
|
18 |
the congruence relations on the integers. The notion was extended to |
|
19 |
the natural numbers by Chiaeb. |
|
20 |
||
32036
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
31952
diff
changeset
|
21 |
Jeremy Avigad combined all of these, made everything uniform for the |
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
31952
diff
changeset
|
22 |
natural numbers and the integers, and added a number of new theorems. |
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
31952
diff
changeset
|
23 |
|
31798 | 24 |
Tobias Nipkow cleaned up a lot. |
21256 | 25 |
*) |
26 |
||
31706 | 27 |
|
28 |
header {* GCD *} |
|
21256 | 29 |
|
30 |
theory GCD |
|
32036
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
avigad
parents:
31952
diff
changeset
|
31 |
imports Fact |
31706 | 32 |
begin |
33 |
||
34 |
declare One_nat_def [simp del] |
|
35 |
||
36 |
subsection {* gcd *} |
|
37 |
||
31992 | 38 |
class gcd = zero + one + dvd + |
31706 | 39 |
|
40 |
fixes |
|
41 |
gcd :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" and |
|
42 |
lcm :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" |
|
43 |
||
21256 | 44 |
begin |
45 |
||
31706 | 46 |
abbreviation |
47 |
coprime :: "'a \<Rightarrow> 'a \<Rightarrow> bool" |
|
48 |
where |
|
49 |
"coprime x y == (gcd x y = 1)" |
|
50 |
||
51 |
end |
|
52 |
||
53 |
||
54 |
(* definitions for the natural numbers *) |
|
55 |
||
56 |
instantiation nat :: gcd |
|
57 |
||
58 |
begin |
|
21256 | 59 |
|
31706 | 60 |
fun |
61 |
gcd_nat :: "nat \<Rightarrow> nat \<Rightarrow> nat" |
|
62 |
where |
|
63 |
"gcd_nat x y = |
|
64 |
(if y = 0 then x else gcd y (x mod y))" |
|
65 |
||
66 |
definition |
|
67 |
lcm_nat :: "nat \<Rightarrow> nat \<Rightarrow> nat" |
|
68 |
where |
|
69 |
"lcm_nat x y = x * y div (gcd x y)" |
|
70 |
||
71 |
instance proof qed |
|
72 |
||
73 |
end |
|
74 |
||
75 |
||
76 |
(* definitions for the integers *) |
|
77 |
||
78 |
instantiation int :: gcd |
|
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
79 |
|
31706 | 80 |
begin |
21256 | 81 |
|
31706 | 82 |
definition |
83 |
gcd_int :: "int \<Rightarrow> int \<Rightarrow> int" |
|
84 |
where |
|
85 |
"gcd_int x y = int (gcd (nat (abs x)) (nat (abs y)))" |
|
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
86 |
|
31706 | 87 |
definition |
88 |
lcm_int :: "int \<Rightarrow> int \<Rightarrow> int" |
|
89 |
where |
|
90 |
"lcm_int x y = int (lcm (nat (abs x)) (nat (abs y)))" |
|
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
91 |
|
31706 | 92 |
instance proof qed |
93 |
||
94 |
end |
|
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
95 |
|
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
96 |
|
31706 | 97 |
subsection {* Set up Transfer *} |
98 |
||
99 |
||
100 |
lemma transfer_nat_int_gcd: |
|
101 |
"(x::int) >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> gcd (nat x) (nat y) = nat (gcd x y)" |
|
102 |
"(x::int) >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> lcm (nat x) (nat y) = nat (lcm x y)" |
|
32479 | 103 |
unfolding gcd_int_def lcm_int_def |
31706 | 104 |
by auto |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
105 |
|
31706 | 106 |
lemma transfer_nat_int_gcd_closures: |
107 |
"x >= (0::int) \<Longrightarrow> y >= 0 \<Longrightarrow> gcd x y >= 0" |
|
108 |
"x >= (0::int) \<Longrightarrow> y >= 0 \<Longrightarrow> lcm x y >= 0" |
|
109 |
by (auto simp add: gcd_int_def lcm_int_def) |
|
110 |
||
111 |
declare TransferMorphism_nat_int[transfer add return: |
|
112 |
transfer_nat_int_gcd transfer_nat_int_gcd_closures] |
|
113 |
||
114 |
lemma transfer_int_nat_gcd: |
|
115 |
"gcd (int x) (int y) = int (gcd x y)" |
|
116 |
"lcm (int x) (int y) = int (lcm x y)" |
|
32479 | 117 |
by (unfold gcd_int_def lcm_int_def, auto) |
31706 | 118 |
|
119 |
lemma transfer_int_nat_gcd_closures: |
|
120 |
"is_nat x \<Longrightarrow> is_nat y \<Longrightarrow> gcd x y >= 0" |
|
121 |
"is_nat x \<Longrightarrow> is_nat y \<Longrightarrow> lcm x y >= 0" |
|
122 |
by (auto simp add: gcd_int_def lcm_int_def) |
|
123 |
||
124 |
declare TransferMorphism_int_nat[transfer add return: |
|
125 |
transfer_int_nat_gcd transfer_int_nat_gcd_closures] |
|
126 |
||
127 |
||
128 |
subsection {* GCD *} |
|
129 |
||
130 |
(* was gcd_induct *) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
131 |
lemma gcd_nat_induct: |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
132 |
fixes m n :: nat |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
133 |
assumes "\<And>m. P m 0" |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
134 |
and "\<And>m n. 0 < n \<Longrightarrow> P n (m mod n) \<Longrightarrow> P m n" |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
135 |
shows "P m n" |
31706 | 136 |
apply (rule gcd_nat.induct) |
137 |
apply (case_tac "y = 0") |
|
138 |
using assms apply simp_all |
|
139 |
done |
|
140 |
||
141 |
(* specific to int *) |
|
142 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
143 |
lemma gcd_neg1_int [simp]: "gcd (-x::int) y = gcd x y" |
31706 | 144 |
by (simp add: gcd_int_def) |
145 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
146 |
lemma gcd_neg2_int [simp]: "gcd (x::int) (-y) = gcd x y" |
31706 | 147 |
by (simp add: gcd_int_def) |
148 |
||
31813 | 149 |
lemma abs_gcd_int[simp]: "abs(gcd (x::int) y) = gcd x y" |
150 |
by(simp add: gcd_int_def) |
|
151 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
152 |
lemma gcd_abs_int: "gcd (x::int) y = gcd (abs x) (abs y)" |
31813 | 153 |
by (simp add: gcd_int_def) |
154 |
||
155 |
lemma gcd_abs1_int[simp]: "gcd (abs x) (y::int) = gcd x y" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
156 |
by (metis abs_idempotent gcd_abs_int) |
31813 | 157 |
|
158 |
lemma gcd_abs2_int[simp]: "gcd x (abs y::int) = gcd x y" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
159 |
by (metis abs_idempotent gcd_abs_int) |
31706 | 160 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
161 |
lemma gcd_cases_int: |
31706 | 162 |
fixes x :: int and y |
163 |
assumes "x >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> P (gcd x y)" |
|
164 |
and "x >= 0 \<Longrightarrow> y <= 0 \<Longrightarrow> P (gcd x (-y))" |
|
165 |
and "x <= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> P (gcd (-x) y)" |
|
166 |
and "x <= 0 \<Longrightarrow> y <= 0 \<Longrightarrow> P (gcd (-x) (-y))" |
|
167 |
shows "P (gcd x y)" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
168 |
by (insert prems, auto simp add: gcd_neg1_int gcd_neg2_int, arith) |
21256 | 169 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
170 |
lemma gcd_ge_0_int [simp]: "gcd (x::int) y >= 0" |
31706 | 171 |
by (simp add: gcd_int_def) |
172 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
173 |
lemma lcm_neg1_int: "lcm (-x::int) y = lcm x y" |
31706 | 174 |
by (simp add: lcm_int_def) |
175 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
176 |
lemma lcm_neg2_int: "lcm (x::int) (-y) = lcm x y" |
31706 | 177 |
by (simp add: lcm_int_def) |
178 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
179 |
lemma lcm_abs_int: "lcm (x::int) y = lcm (abs x) (abs y)" |
31706 | 180 |
by (simp add: lcm_int_def) |
21256 | 181 |
|
31814 | 182 |
lemma abs_lcm_int [simp]: "abs (lcm i j::int) = lcm i j" |
183 |
by(simp add:lcm_int_def) |
|
184 |
||
185 |
lemma lcm_abs1_int[simp]: "lcm (abs x) (y::int) = lcm x y" |
|
186 |
by (metis abs_idempotent lcm_int_def) |
|
187 |
||
188 |
lemma lcm_abs2_int[simp]: "lcm x (abs y::int) = lcm x y" |
|
189 |
by (metis abs_idempotent lcm_int_def) |
|
190 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
191 |
lemma lcm_cases_int: |
31706 | 192 |
fixes x :: int and y |
193 |
assumes "x >= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> P (lcm x y)" |
|
194 |
and "x >= 0 \<Longrightarrow> y <= 0 \<Longrightarrow> P (lcm x (-y))" |
|
195 |
and "x <= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> P (lcm (-x) y)" |
|
196 |
and "x <= 0 \<Longrightarrow> y <= 0 \<Longrightarrow> P (lcm (-x) (-y))" |
|
197 |
shows "P (lcm x y)" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
198 |
by (insert prems, auto simp add: lcm_neg1_int lcm_neg2_int, arith) |
31706 | 199 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
200 |
lemma lcm_ge_0_int [simp]: "lcm (x::int) y >= 0" |
31706 | 201 |
by (simp add: lcm_int_def) |
202 |
||
203 |
(* was gcd_0, etc. *) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
204 |
lemma gcd_0_nat [simp]: "gcd (x::nat) 0 = x" |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
205 |
by simp |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
206 |
|
31706 | 207 |
(* was igcd_0, etc. *) |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
208 |
lemma gcd_0_int [simp]: "gcd (x::int) 0 = abs x" |
31706 | 209 |
by (unfold gcd_int_def, auto) |
210 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
211 |
lemma gcd_0_left_nat [simp]: "gcd 0 (x::nat) = x" |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
212 |
by simp |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
213 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
214 |
lemma gcd_0_left_int [simp]: "gcd 0 (x::int) = abs x" |
31706 | 215 |
by (unfold gcd_int_def, auto) |
216 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
217 |
lemma gcd_red_nat: "gcd (x::nat) y = gcd y (x mod y)" |
31706 | 218 |
by (case_tac "y = 0", auto) |
219 |
||
220 |
(* weaker, but useful for the simplifier *) |
|
221 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
222 |
lemma gcd_non_0_nat: "y ~= (0::nat) \<Longrightarrow> gcd (x::nat) y = gcd y (x mod y)" |
31706 | 223 |
by simp |
224 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
225 |
lemma gcd_1_nat [simp]: "gcd (m::nat) 1 = 1" |
21263 | 226 |
by simp |
21256 | 227 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
228 |
lemma gcd_Suc_0 [simp]: "gcd (m::nat) (Suc 0) = Suc 0" |
31706 | 229 |
by (simp add: One_nat_def) |
230 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
231 |
lemma gcd_1_int [simp]: "gcd (m::int) 1 = 1" |
31706 | 232 |
by (simp add: gcd_int_def) |
30082
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
huffman
parents:
30042
diff
changeset
|
233 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
234 |
lemma gcd_idem_nat: "gcd (x::nat) x = x" |
31798 | 235 |
by simp |
31706 | 236 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
237 |
lemma gcd_idem_int: "gcd (x::int) x = abs x" |
31813 | 238 |
by (auto simp add: gcd_int_def) |
31706 | 239 |
|
240 |
declare gcd_nat.simps [simp del] |
|
21256 | 241 |
|
242 |
text {* |
|
27556 | 243 |
\medskip @{term "gcd m n"} divides @{text m} and @{text n}. The |
21256 | 244 |
conjunctions don't seem provable separately. |
245 |
*} |
|
246 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
247 |
lemma gcd_dvd1_nat [iff]: "(gcd (m::nat)) n dvd m" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
248 |
and gcd_dvd2_nat [iff]: "(gcd m n) dvd n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
249 |
apply (induct m n rule: gcd_nat_induct) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
250 |
apply (simp_all add: gcd_non_0_nat) |
21256 | 251 |
apply (blast dest: dvd_mod_imp_dvd) |
31706 | 252 |
done |
253 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
254 |
lemma gcd_dvd1_int [iff]: "gcd (x::int) y dvd x" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
255 |
by (metis gcd_int_def int_dvd_iff gcd_dvd1_nat) |
21256 | 256 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
257 |
lemma gcd_dvd2_int [iff]: "gcd (x::int) y dvd y" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
258 |
by (metis gcd_int_def int_dvd_iff gcd_dvd2_nat) |
31706 | 259 |
|
31730 | 260 |
lemma dvd_gcd_D1_nat: "k dvd gcd m n \<Longrightarrow> (k::nat) dvd m" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
261 |
by(metis gcd_dvd1_nat dvd_trans) |
31730 | 262 |
|
263 |
lemma dvd_gcd_D2_nat: "k dvd gcd m n \<Longrightarrow> (k::nat) dvd n" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
264 |
by(metis gcd_dvd2_nat dvd_trans) |
31730 | 265 |
|
266 |
lemma dvd_gcd_D1_int: "i dvd gcd m n \<Longrightarrow> (i::int) dvd m" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
267 |
by(metis gcd_dvd1_int dvd_trans) |
31730 | 268 |
|
269 |
lemma dvd_gcd_D2_int: "i dvd gcd m n \<Longrightarrow> (i::int) dvd n" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
270 |
by(metis gcd_dvd2_int dvd_trans) |
31730 | 271 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
272 |
lemma gcd_le1_nat [simp]: "a \<noteq> 0 \<Longrightarrow> gcd (a::nat) b \<le> a" |
31706 | 273 |
by (rule dvd_imp_le, auto) |
274 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
275 |
lemma gcd_le2_nat [simp]: "b \<noteq> 0 \<Longrightarrow> gcd (a::nat) b \<le> b" |
31706 | 276 |
by (rule dvd_imp_le, auto) |
277 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
278 |
lemma gcd_le1_int [simp]: "a > 0 \<Longrightarrow> gcd (a::int) b \<le> a" |
31706 | 279 |
by (rule zdvd_imp_le, auto) |
21256 | 280 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
281 |
lemma gcd_le2_int [simp]: "b > 0 \<Longrightarrow> gcd (a::int) b \<le> b" |
31706 | 282 |
by (rule zdvd_imp_le, auto) |
283 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
284 |
lemma gcd_greatest_nat: "(k::nat) dvd m \<Longrightarrow> k dvd n \<Longrightarrow> k dvd gcd m n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
285 |
by (induct m n rule: gcd_nat_induct) (simp_all add: gcd_non_0_nat dvd_mod) |
31706 | 286 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
287 |
lemma gcd_greatest_int: |
31813 | 288 |
"(k::int) dvd m \<Longrightarrow> k dvd n \<Longrightarrow> k dvd gcd m n" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
289 |
apply (subst gcd_abs_int) |
31706 | 290 |
apply (subst abs_dvd_iff [symmetric]) |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
291 |
apply (rule gcd_greatest_nat [transferred]) |
31813 | 292 |
apply auto |
31706 | 293 |
done |
21256 | 294 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
295 |
lemma gcd_greatest_iff_nat [iff]: "(k dvd gcd (m::nat) n) = |
31706 | 296 |
(k dvd m & k dvd n)" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
297 |
by (blast intro!: gcd_greatest_nat intro: dvd_trans) |
31706 | 298 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
299 |
lemma gcd_greatest_iff_int: "((k::int) dvd gcd m n) = (k dvd m & k dvd n)" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
300 |
by (blast intro!: gcd_greatest_int intro: dvd_trans) |
21256 | 301 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
302 |
lemma gcd_zero_nat [simp]: "(gcd (m::nat) n = 0) = (m = 0 & n = 0)" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
303 |
by (simp only: dvd_0_left_iff [symmetric] gcd_greatest_iff_nat) |
21256 | 304 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
305 |
lemma gcd_zero_int [simp]: "(gcd (m::int) n = 0) = (m = 0 & n = 0)" |
31706 | 306 |
by (auto simp add: gcd_int_def) |
21256 | 307 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
308 |
lemma gcd_pos_nat [simp]: "(gcd (m::nat) n > 0) = (m ~= 0 | n ~= 0)" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
309 |
by (insert gcd_zero_nat [of m n], arith) |
21256 | 310 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
311 |
lemma gcd_pos_int [simp]: "(gcd (m::int) n > 0) = (m ~= 0 | n ~= 0)" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
312 |
by (insert gcd_zero_int [of m n], insert gcd_ge_0_int [of m n], arith) |
31706 | 313 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
314 |
lemma gcd_commute_nat: "gcd (m::nat) n = gcd n m" |
31706 | 315 |
by (rule dvd_anti_sym, auto) |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
316 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
317 |
lemma gcd_commute_int: "gcd (m::int) n = gcd n m" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
318 |
by (auto simp add: gcd_int_def gcd_commute_nat) |
31706 | 319 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
320 |
lemma gcd_assoc_nat: "gcd (gcd (k::nat) m) n = gcd k (gcd m n)" |
31706 | 321 |
apply (rule dvd_anti_sym) |
322 |
apply (blast intro: dvd_trans)+ |
|
323 |
done |
|
21256 | 324 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
325 |
lemma gcd_assoc_int: "gcd (gcd (k::int) m) n = gcd k (gcd m n)" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
326 |
by (auto simp add: gcd_int_def gcd_assoc_nat) |
31706 | 327 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
328 |
lemmas gcd_left_commute_nat = |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
329 |
mk_left_commute[of gcd, OF gcd_assoc_nat gcd_commute_nat] |
31706 | 330 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
331 |
lemmas gcd_left_commute_int = |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
332 |
mk_left_commute[of gcd, OF gcd_assoc_int gcd_commute_int] |
31706 | 333 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
334 |
lemmas gcd_ac_nat = gcd_assoc_nat gcd_commute_nat gcd_left_commute_nat |
31706 | 335 |
-- {* gcd is an AC-operator *} |
21256 | 336 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
337 |
lemmas gcd_ac_int = gcd_assoc_int gcd_commute_int gcd_left_commute_int |
31706 | 338 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
339 |
lemma gcd_unique_nat: "(d::nat) dvd a \<and> d dvd b \<and> |
31706 | 340 |
(\<forall>e. e dvd a \<and> e dvd b \<longrightarrow> e dvd d) \<longleftrightarrow> d = gcd a b" |
341 |
apply auto |
|
342 |
apply (rule dvd_anti_sym) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
343 |
apply (erule (1) gcd_greatest_nat) |
31706 | 344 |
apply auto |
345 |
done |
|
21256 | 346 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
347 |
lemma gcd_unique_int: "d >= 0 & (d::int) dvd a \<and> d dvd b \<and> |
31706 | 348 |
(\<forall>e. e dvd a \<and> e dvd b \<longrightarrow> e dvd d) \<longleftrightarrow> d = gcd a b" |
349 |
apply (case_tac "d = 0") |
|
350 |
apply force |
|
351 |
apply (rule iffI) |
|
352 |
apply (rule zdvd_anti_sym) |
|
353 |
apply arith |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
354 |
apply (subst gcd_pos_int) |
31706 | 355 |
apply clarsimp |
356 |
apply (drule_tac x = "d + 1" in spec) |
|
357 |
apply (frule zdvd_imp_le) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
358 |
apply (auto intro: gcd_greatest_int) |
31706 | 359 |
done |
30082
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
huffman
parents:
30042
diff
changeset
|
360 |
|
31798 | 361 |
lemma gcd_proj1_if_dvd_nat [simp]: "(x::nat) dvd y \<Longrightarrow> gcd x y = x" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
362 |
by (metis dvd.eq_iff gcd_unique_nat) |
31798 | 363 |
|
364 |
lemma gcd_proj2_if_dvd_nat [simp]: "(y::nat) dvd x \<Longrightarrow> gcd x y = y" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
365 |
by (metis dvd.eq_iff gcd_unique_nat) |
31798 | 366 |
|
367 |
lemma gcd_proj1_if_dvd_int[simp]: "x dvd y \<Longrightarrow> gcd (x::int) y = abs x" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
368 |
by (metis abs_dvd_iff abs_eq_0 gcd_0_left_int gcd_abs_int gcd_unique_int) |
31798 | 369 |
|
370 |
lemma gcd_proj2_if_dvd_int[simp]: "y dvd x \<Longrightarrow> gcd (x::int) y = abs y" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
371 |
by (metis gcd_proj1_if_dvd_int gcd_commute_int) |
31798 | 372 |
|
373 |
||
21256 | 374 |
text {* |
375 |
\medskip Multiplication laws |
|
376 |
*} |
|
377 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
378 |
lemma gcd_mult_distrib_nat: "(k::nat) * gcd m n = gcd (k * m) (k * n)" |
21256 | 379 |
-- {* \cite[page 27]{davenport92} *} |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
380 |
apply (induct m n rule: gcd_nat_induct) |
31706 | 381 |
apply simp |
21256 | 382 |
apply (case_tac "k = 0") |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
383 |
apply (simp_all add: mod_geq gcd_non_0_nat mod_mult_distrib2) |
31706 | 384 |
done |
21256 | 385 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
386 |
lemma gcd_mult_distrib_int: "abs (k::int) * gcd m n = gcd (k * m) (k * n)" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
387 |
apply (subst (1 2) gcd_abs_int) |
31813 | 388 |
apply (subst (1 2) abs_mult) |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
389 |
apply (rule gcd_mult_distrib_nat [transferred]) |
31706 | 390 |
apply auto |
391 |
done |
|
21256 | 392 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
393 |
lemma coprime_dvd_mult_nat: "coprime (k::nat) n \<Longrightarrow> k dvd m * n \<Longrightarrow> k dvd m" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
394 |
apply (insert gcd_mult_distrib_nat [of m k n]) |
21256 | 395 |
apply simp |
396 |
apply (erule_tac t = m in ssubst) |
|
397 |
apply simp |
|
398 |
done |
|
399 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
400 |
lemma coprime_dvd_mult_int: |
31813 | 401 |
"coprime (k::int) n \<Longrightarrow> k dvd m * n \<Longrightarrow> k dvd m" |
402 |
apply (subst abs_dvd_iff [symmetric]) |
|
403 |
apply (subst dvd_abs_iff [symmetric]) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
404 |
apply (subst (asm) gcd_abs_int) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
405 |
apply (rule coprime_dvd_mult_nat [transferred]) |
31813 | 406 |
prefer 4 apply assumption |
407 |
apply auto |
|
408 |
apply (subst abs_mult [symmetric], auto) |
|
31706 | 409 |
done |
410 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
411 |
lemma coprime_dvd_mult_iff_nat: "coprime (k::nat) n \<Longrightarrow> |
31706 | 412 |
(k dvd m * n) = (k dvd m)" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
413 |
by (auto intro: coprime_dvd_mult_nat) |
31706 | 414 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
415 |
lemma coprime_dvd_mult_iff_int: "coprime (k::int) n \<Longrightarrow> |
31706 | 416 |
(k dvd m * n) = (k dvd m)" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
417 |
by (auto intro: coprime_dvd_mult_int) |
31706 | 418 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
419 |
lemma gcd_mult_cancel_nat: "coprime k n \<Longrightarrow> gcd ((k::nat) * m) n = gcd m n" |
21256 | 420 |
apply (rule dvd_anti_sym) |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
421 |
apply (rule gcd_greatest_nat) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
422 |
apply (rule_tac n = k in coprime_dvd_mult_nat) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
423 |
apply (simp add: gcd_assoc_nat) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
424 |
apply (simp add: gcd_commute_nat) |
31706 | 425 |
apply (simp_all add: mult_commute) |
426 |
done |
|
21256 | 427 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
428 |
lemma gcd_mult_cancel_int: |
31813 | 429 |
"coprime (k::int) n \<Longrightarrow> gcd (k * m) n = gcd m n" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
430 |
apply (subst (1 2) gcd_abs_int) |
31813 | 431 |
apply (subst abs_mult) |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
432 |
apply (rule gcd_mult_cancel_nat [transferred], auto) |
31706 | 433 |
done |
21256 | 434 |
|
435 |
text {* \medskip Addition laws *} |
|
436 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
437 |
lemma gcd_add1_nat [simp]: "gcd ((m::nat) + n) n = gcd m n" |
31706 | 438 |
apply (case_tac "n = 0") |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
439 |
apply (simp_all add: gcd_non_0_nat) |
31706 | 440 |
done |
441 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
442 |
lemma gcd_add2_nat [simp]: "gcd (m::nat) (m + n) = gcd m n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
443 |
apply (subst (1 2) gcd_commute_nat) |
31706 | 444 |
apply (subst add_commute) |
445 |
apply simp |
|
446 |
done |
|
447 |
||
448 |
(* to do: add the other variations? *) |
|
449 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
450 |
lemma gcd_diff1_nat: "(m::nat) >= n \<Longrightarrow> gcd (m - n) n = gcd m n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
451 |
by (subst gcd_add1_nat [symmetric], auto) |
31706 | 452 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
453 |
lemma gcd_diff2_nat: "(n::nat) >= m \<Longrightarrow> gcd (n - m) n = gcd m n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
454 |
apply (subst gcd_commute_nat) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
455 |
apply (subst gcd_diff1_nat [symmetric]) |
31706 | 456 |
apply auto |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
457 |
apply (subst gcd_commute_nat) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
458 |
apply (subst gcd_diff1_nat) |
31706 | 459 |
apply assumption |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
460 |
apply (rule gcd_commute_nat) |
31706 | 461 |
done |
462 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
463 |
lemma gcd_non_0_int: "(y::int) > 0 \<Longrightarrow> gcd x y = gcd y (x mod y)" |
31706 | 464 |
apply (frule_tac b = y and a = x in pos_mod_sign) |
465 |
apply (simp del: pos_mod_sign add: gcd_int_def abs_if nat_mod_distrib) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
466 |
apply (auto simp add: gcd_non_0_nat nat_mod_distrib [symmetric] |
31706 | 467 |
zmod_zminus1_eq_if) |
468 |
apply (frule_tac a = x in pos_mod_bound) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
469 |
apply (subst (1 2) gcd_commute_nat) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
470 |
apply (simp del: pos_mod_bound add: nat_diff_distrib gcd_diff2_nat |
31706 | 471 |
nat_le_eq_zle) |
472 |
done |
|
21256 | 473 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
474 |
lemma gcd_red_int: "gcd (x::int) y = gcd y (x mod y)" |
31706 | 475 |
apply (case_tac "y = 0") |
476 |
apply force |
|
477 |
apply (case_tac "y > 0") |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
478 |
apply (subst gcd_non_0_int, auto) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
479 |
apply (insert gcd_non_0_int [of "-y" "-x"]) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
480 |
apply (auto simp add: gcd_neg1_int gcd_neg2_int) |
31706 | 481 |
done |
482 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
483 |
lemma gcd_add1_int [simp]: "gcd ((m::int) + n) n = gcd m n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
484 |
by (metis gcd_red_int mod_add_self1 zadd_commute) |
31706 | 485 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
486 |
lemma gcd_add2_int [simp]: "gcd m ((m::int) + n) = gcd m n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
487 |
by (metis gcd_add1_int gcd_commute_int zadd_commute) |
21256 | 488 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
489 |
lemma gcd_add_mult_nat: "gcd (m::nat) (k * m + n) = gcd m n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
490 |
by (metis mod_mult_self3 gcd_commute_nat gcd_red_nat) |
21256 | 491 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
492 |
lemma gcd_add_mult_int: "gcd (m::int) (k * m + n) = gcd m n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
493 |
by (metis gcd_commute_int gcd_red_int mod_mult_self1 zadd_commute) |
31798 | 494 |
|
21256 | 495 |
|
31706 | 496 |
(* to do: differences, and all variations of addition rules |
497 |
as simplification rules for nat and int *) |
|
498 |
||
31798 | 499 |
(* FIXME remove iff *) |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
500 |
lemma gcd_dvd_prod_nat [iff]: "gcd (m::nat) n dvd k * n" |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
501 |
using mult_dvd_mono [of 1] by auto |
22027
e4a08629c4bd
A few lemmas about relative primes when dividing trough gcd
chaieb
parents:
21404
diff
changeset
|
502 |
|
31706 | 503 |
(* to do: add the three variations of these, and for ints? *) |
504 |
||
31992 | 505 |
lemma finite_divisors_nat[simp]: |
506 |
assumes "(m::nat) ~= 0" shows "finite{d. d dvd m}" |
|
31734 | 507 |
proof- |
508 |
have "finite{d. d <= m}" by(blast intro: bounded_nat_set_is_finite) |
|
509 |
from finite_subset[OF _ this] show ?thesis using assms |
|
510 |
by(bestsimp intro!:dvd_imp_le) |
|
511 |
qed |
|
512 |
||
31995 | 513 |
lemma finite_divisors_int[simp]: |
31734 | 514 |
assumes "(i::int) ~= 0" shows "finite{d. d dvd i}" |
515 |
proof- |
|
516 |
have "{d. abs d <= abs i} = {- abs i .. abs i}" by(auto simp:abs_if) |
|
517 |
hence "finite{d. abs d <= abs i}" by simp |
|
518 |
from finite_subset[OF _ this] show ?thesis using assms |
|
519 |
by(bestsimp intro!:dvd_imp_le_int) |
|
520 |
qed |
|
521 |
||
31995 | 522 |
lemma Max_divisors_self_nat[simp]: "n\<noteq>0 \<Longrightarrow> Max{d::nat. d dvd n} = n" |
523 |
apply(rule antisym) |
|
524 |
apply (fastsimp intro: Max_le_iff[THEN iffD2] simp: dvd_imp_le) |
|
525 |
apply simp |
|
526 |
done |
|
527 |
||
528 |
lemma Max_divisors_self_int[simp]: "n\<noteq>0 \<Longrightarrow> Max{d::int. d dvd n} = abs n" |
|
529 |
apply(rule antisym) |
|
530 |
apply(rule Max_le_iff[THEN iffD2]) |
|
531 |
apply simp |
|
532 |
apply fastsimp |
|
533 |
apply (metis Collect_def abs_ge_self dvd_imp_le_int mem_def zle_trans) |
|
534 |
apply simp |
|
535 |
done |
|
536 |
||
31734 | 537 |
lemma gcd_is_Max_divisors_nat: |
538 |
"m ~= 0 \<Longrightarrow> n ~= 0 \<Longrightarrow> gcd (m::nat) n = (Max {d. d dvd m & d dvd n})" |
|
539 |
apply(rule Max_eqI[THEN sym]) |
|
31995 | 540 |
apply (metis finite_Collect_conjI finite_divisors_nat) |
31734 | 541 |
apply simp |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
542 |
apply(metis Suc_diff_1 Suc_neq_Zero dvd_imp_le gcd_greatest_iff_nat gcd_pos_nat) |
31734 | 543 |
apply simp |
544 |
done |
|
545 |
||
546 |
lemma gcd_is_Max_divisors_int: |
|
547 |
"m ~= 0 ==> n ~= 0 ==> gcd (m::int) n = (Max {d. d dvd m & d dvd n})" |
|
548 |
apply(rule Max_eqI[THEN sym]) |
|
31995 | 549 |
apply (metis finite_Collect_conjI finite_divisors_int) |
31734 | 550 |
apply simp |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
551 |
apply (metis gcd_greatest_iff_int gcd_pos_int zdvd_imp_le) |
31734 | 552 |
apply simp |
553 |
done |
|
554 |
||
22027
e4a08629c4bd
A few lemmas about relative primes when dividing trough gcd
chaieb
parents:
21404
diff
changeset
|
555 |
|
31706 | 556 |
subsection {* Coprimality *} |
557 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
558 |
lemma div_gcd_coprime_nat: |
31706 | 559 |
assumes nz: "(a::nat) \<noteq> 0 \<or> b \<noteq> 0" |
560 |
shows "coprime (a div gcd a b) (b div gcd a b)" |
|
22367 | 561 |
proof - |
27556 | 562 |
let ?g = "gcd a b" |
22027
e4a08629c4bd
A few lemmas about relative primes when dividing trough gcd
chaieb
parents:
21404
diff
changeset
|
563 |
let ?a' = "a div ?g" |
e4a08629c4bd
A few lemmas about relative primes when dividing trough gcd
chaieb
parents:
21404
diff
changeset
|
564 |
let ?b' = "b div ?g" |
27556 | 565 |
let ?g' = "gcd ?a' ?b'" |
22027
e4a08629c4bd
A few lemmas about relative primes when dividing trough gcd
chaieb
parents:
21404
diff
changeset
|
566 |
have dvdg: "?g dvd a" "?g dvd b" by simp_all |
e4a08629c4bd
A few lemmas about relative primes when dividing trough gcd
chaieb
parents:
21404
diff
changeset
|
567 |
have dvdg': "?g' dvd ?a'" "?g' dvd ?b'" by simp_all |
22367 | 568 |
from dvdg dvdg' obtain ka kb ka' kb' where |
569 |
kab: "a = ?g * ka" "b = ?g * kb" "?a' = ?g' * ka'" "?b' = ?g' * kb'" |
|
22027
e4a08629c4bd
A few lemmas about relative primes when dividing trough gcd
chaieb
parents:
21404
diff
changeset
|
570 |
unfolding dvd_def by blast |
31706 | 571 |
then have "?g * ?a' = (?g * ?g') * ka'" "?g * ?b' = (?g * ?g') * kb'" |
572 |
by simp_all |
|
22367 | 573 |
then have dvdgg':"?g * ?g' dvd a" "?g* ?g' dvd b" |
574 |
by (auto simp add: dvd_mult_div_cancel [OF dvdg(1)] |
|
575 |
dvd_mult_div_cancel [OF dvdg(2)] dvd_def) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
576 |
have "?g \<noteq> 0" using nz by (simp add: gcd_zero_nat) |
31706 | 577 |
then have gp: "?g > 0" by arith |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
578 |
from gcd_greatest_nat [OF dvdgg'] have "?g * ?g' dvd ?g" . |
22367 | 579 |
with dvd_mult_cancel1 [OF gp] show "?g' = 1" by simp |
22027
e4a08629c4bd
A few lemmas about relative primes when dividing trough gcd
chaieb
parents:
21404
diff
changeset
|
580 |
qed |
e4a08629c4bd
A few lemmas about relative primes when dividing trough gcd
chaieb
parents:
21404
diff
changeset
|
581 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
582 |
lemma div_gcd_coprime_int: |
31706 | 583 |
assumes nz: "(a::int) \<noteq> 0 \<or> b \<noteq> 0" |
584 |
shows "coprime (a div gcd a b) (b div gcd a b)" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
585 |
apply (subst (1 2 3) gcd_abs_int) |
31813 | 586 |
apply (subst (1 2) abs_div) |
587 |
apply simp |
|
588 |
apply simp |
|
589 |
apply(subst (1 2) abs_gcd_int) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
590 |
apply (rule div_gcd_coprime_nat [transferred]) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
591 |
using nz apply (auto simp add: gcd_abs_int [symmetric]) |
31706 | 592 |
done |
593 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
594 |
lemma coprime_nat: "coprime (a::nat) b \<longleftrightarrow> (\<forall>d. d dvd a \<and> d dvd b \<longleftrightarrow> d = 1)" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
595 |
using gcd_unique_nat[of 1 a b, simplified] by auto |
31706 | 596 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
597 |
lemma coprime_Suc_0_nat: |
31706 | 598 |
"coprime (a::nat) b \<longleftrightarrow> (\<forall>d. d dvd a \<and> d dvd b \<longleftrightarrow> d = Suc 0)" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
599 |
using coprime_nat by (simp add: One_nat_def) |
31706 | 600 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
601 |
lemma coprime_int: "coprime (a::int) b \<longleftrightarrow> |
31706 | 602 |
(\<forall>d. d >= 0 \<and> d dvd a \<and> d dvd b \<longleftrightarrow> d = 1)" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
603 |
using gcd_unique_int [of 1 a b] |
31706 | 604 |
apply clarsimp |
605 |
apply (erule subst) |
|
606 |
apply (rule iffI) |
|
607 |
apply force |
|
608 |
apply (drule_tac x = "abs e" in exI) |
|
609 |
apply (case_tac "e >= 0") |
|
610 |
apply force |
|
611 |
apply force |
|
612 |
done |
|
613 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
614 |
lemma gcd_coprime_nat: |
31706 | 615 |
assumes z: "gcd (a::nat) b \<noteq> 0" and a: "a = a' * gcd a b" and |
616 |
b: "b = b' * gcd a b" |
|
617 |
shows "coprime a' b'" |
|
618 |
||
619 |
apply (subgoal_tac "a' = a div gcd a b") |
|
620 |
apply (erule ssubst) |
|
621 |
apply (subgoal_tac "b' = b div gcd a b") |
|
622 |
apply (erule ssubst) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
623 |
apply (rule div_gcd_coprime_nat) |
31706 | 624 |
using prems |
625 |
apply force |
|
626 |
apply (subst (1) b) |
|
627 |
using z apply force |
|
628 |
apply (subst (1) a) |
|
629 |
using z apply force |
|
630 |
done |
|
631 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
632 |
lemma gcd_coprime_int: |
31706 | 633 |
assumes z: "gcd (a::int) b \<noteq> 0" and a: "a = a' * gcd a b" and |
634 |
b: "b = b' * gcd a b" |
|
635 |
shows "coprime a' b'" |
|
636 |
||
637 |
apply (subgoal_tac "a' = a div gcd a b") |
|
638 |
apply (erule ssubst) |
|
639 |
apply (subgoal_tac "b' = b div gcd a b") |
|
640 |
apply (erule ssubst) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
641 |
apply (rule div_gcd_coprime_int) |
31706 | 642 |
using prems |
643 |
apply force |
|
644 |
apply (subst (1) b) |
|
645 |
using z apply force |
|
646 |
apply (subst (1) a) |
|
647 |
using z apply force |
|
648 |
done |
|
649 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
650 |
lemma coprime_mult_nat: assumes da: "coprime (d::nat) a" and db: "coprime d b" |
31706 | 651 |
shows "coprime d (a * b)" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
652 |
apply (subst gcd_commute_nat) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
653 |
using da apply (subst gcd_mult_cancel_nat) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
654 |
apply (subst gcd_commute_nat, assumption) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
655 |
apply (subst gcd_commute_nat, rule db) |
31706 | 656 |
done |
657 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
658 |
lemma coprime_mult_int: assumes da: "coprime (d::int) a" and db: "coprime d b" |
31706 | 659 |
shows "coprime d (a * b)" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
660 |
apply (subst gcd_commute_int) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
661 |
using da apply (subst gcd_mult_cancel_int) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
662 |
apply (subst gcd_commute_int, assumption) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
663 |
apply (subst gcd_commute_int, rule db) |
31706 | 664 |
done |
665 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
666 |
lemma coprime_lmult_nat: |
31706 | 667 |
assumes dab: "coprime (d::nat) (a * b)" shows "coprime d a" |
668 |
proof - |
|
669 |
have "gcd d a dvd gcd d (a * b)" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
670 |
by (rule gcd_greatest_nat, auto) |
31706 | 671 |
with dab show ?thesis |
672 |
by auto |
|
673 |
qed |
|
674 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
675 |
lemma coprime_lmult_int: |
31798 | 676 |
assumes "coprime (d::int) (a * b)" shows "coprime d a" |
31706 | 677 |
proof - |
678 |
have "gcd d a dvd gcd d (a * b)" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
679 |
by (rule gcd_greatest_int, auto) |
31798 | 680 |
with assms show ?thesis |
31706 | 681 |
by auto |
682 |
qed |
|
683 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
684 |
lemma coprime_rmult_nat: |
31798 | 685 |
assumes "coprime (d::nat) (a * b)" shows "coprime d b" |
31706 | 686 |
proof - |
687 |
have "gcd d b dvd gcd d (a * b)" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
688 |
by (rule gcd_greatest_nat, auto intro: dvd_mult) |
31798 | 689 |
with assms show ?thesis |
31706 | 690 |
by auto |
691 |
qed |
|
692 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
693 |
lemma coprime_rmult_int: |
31706 | 694 |
assumes dab: "coprime (d::int) (a * b)" shows "coprime d b" |
695 |
proof - |
|
696 |
have "gcd d b dvd gcd d (a * b)" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
697 |
by (rule gcd_greatest_int, auto intro: dvd_mult) |
31706 | 698 |
with dab show ?thesis |
699 |
by auto |
|
700 |
qed |
|
701 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
702 |
lemma coprime_mul_eq_nat: "coprime (d::nat) (a * b) \<longleftrightarrow> |
31706 | 703 |
coprime d a \<and> coprime d b" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
704 |
using coprime_rmult_nat[of d a b] coprime_lmult_nat[of d a b] |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
705 |
coprime_mult_nat[of d a b] |
31706 | 706 |
by blast |
707 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
708 |
lemma coprime_mul_eq_int: "coprime (d::int) (a * b) \<longleftrightarrow> |
31706 | 709 |
coprime d a \<and> coprime d b" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
710 |
using coprime_rmult_int[of d a b] coprime_lmult_int[of d a b] |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
711 |
coprime_mult_int[of d a b] |
31706 | 712 |
by blast |
713 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
714 |
lemma gcd_coprime_exists_nat: |
31706 | 715 |
assumes nz: "gcd (a::nat) b \<noteq> 0" |
716 |
shows "\<exists>a' b'. a = a' * gcd a b \<and> b = b' * gcd a b \<and> coprime a' b'" |
|
717 |
apply (rule_tac x = "a div gcd a b" in exI) |
|
718 |
apply (rule_tac x = "b div gcd a b" in exI) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
719 |
using nz apply (auto simp add: div_gcd_coprime_nat dvd_div_mult) |
31706 | 720 |
done |
721 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
722 |
lemma gcd_coprime_exists_int: |
31706 | 723 |
assumes nz: "gcd (a::int) b \<noteq> 0" |
724 |
shows "\<exists>a' b'. a = a' * gcd a b \<and> b = b' * gcd a b \<and> coprime a' b'" |
|
725 |
apply (rule_tac x = "a div gcd a b" in exI) |
|
726 |
apply (rule_tac x = "b div gcd a b" in exI) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
727 |
using nz apply (auto simp add: div_gcd_coprime_int dvd_div_mult_self) |
31706 | 728 |
done |
729 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
730 |
lemma coprime_exp_nat: "coprime (d::nat) a \<Longrightarrow> coprime d (a^n)" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
731 |
by (induct n, simp_all add: coprime_mult_nat) |
31706 | 732 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
733 |
lemma coprime_exp_int: "coprime (d::int) a \<Longrightarrow> coprime d (a^n)" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
734 |
by (induct n, simp_all add: coprime_mult_int) |
31706 | 735 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
736 |
lemma coprime_exp2_nat [intro]: "coprime (a::nat) b \<Longrightarrow> coprime (a^n) (b^m)" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
737 |
apply (rule coprime_exp_nat) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
738 |
apply (subst gcd_commute_nat) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
739 |
apply (rule coprime_exp_nat) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
740 |
apply (subst gcd_commute_nat, assumption) |
31706 | 741 |
done |
742 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
743 |
lemma coprime_exp2_int [intro]: "coprime (a::int) b \<Longrightarrow> coprime (a^n) (b^m)" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
744 |
apply (rule coprime_exp_int) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
745 |
apply (subst gcd_commute_int) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
746 |
apply (rule coprime_exp_int) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
747 |
apply (subst gcd_commute_int, assumption) |
31706 | 748 |
done |
749 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
750 |
lemma gcd_exp_nat: "gcd ((a::nat)^n) (b^n) = (gcd a b)^n" |
31706 | 751 |
proof (cases) |
752 |
assume "a = 0 & b = 0" |
|
753 |
thus ?thesis by simp |
|
754 |
next assume "~(a = 0 & b = 0)" |
|
755 |
hence "coprime ((a div gcd a b)^n) ((b div gcd a b)^n)" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
756 |
by (auto simp:div_gcd_coprime_nat) |
31706 | 757 |
hence "gcd ((a div gcd a b)^n * (gcd a b)^n) |
758 |
((b div gcd a b)^n * (gcd a b)^n) = (gcd a b)^n" |
|
759 |
apply (subst (1 2) mult_commute) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
760 |
apply (subst gcd_mult_distrib_nat [symmetric]) |
31706 | 761 |
apply simp |
762 |
done |
|
763 |
also have "(a div gcd a b)^n * (gcd a b)^n = a^n" |
|
764 |
apply (subst div_power) |
|
765 |
apply auto |
|
766 |
apply (rule dvd_div_mult_self) |
|
767 |
apply (rule dvd_power_same) |
|
768 |
apply auto |
|
769 |
done |
|
770 |
also have "(b div gcd a b)^n * (gcd a b)^n = b^n" |
|
771 |
apply (subst div_power) |
|
772 |
apply auto |
|
773 |
apply (rule dvd_div_mult_self) |
|
774 |
apply (rule dvd_power_same) |
|
775 |
apply auto |
|
776 |
done |
|
777 |
finally show ?thesis . |
|
778 |
qed |
|
779 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
780 |
lemma gcd_exp_int: "gcd ((a::int)^n) (b^n) = (gcd a b)^n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
781 |
apply (subst (1 2) gcd_abs_int) |
31706 | 782 |
apply (subst (1 2) power_abs) |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
783 |
apply (rule gcd_exp_nat [where n = n, transferred]) |
31706 | 784 |
apply auto |
785 |
done |
|
786 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
787 |
lemma coprime_divprod_nat: "(d::nat) dvd a * b \<Longrightarrow> coprime d a \<Longrightarrow> d dvd b" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
788 |
using coprime_dvd_mult_iff_nat[of d a b] |
31706 | 789 |
by (auto simp add: mult_commute) |
790 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
791 |
lemma coprime_divprod_int: "(d::int) dvd a * b \<Longrightarrow> coprime d a \<Longrightarrow> d dvd b" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
792 |
using coprime_dvd_mult_iff_int[of d a b] |
31706 | 793 |
by (auto simp add: mult_commute) |
794 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
795 |
lemma division_decomp_nat: assumes dc: "(a::nat) dvd b * c" |
31706 | 796 |
shows "\<exists>b' c'. a = b' * c' \<and> b' dvd b \<and> c' dvd c" |
797 |
proof- |
|
798 |
let ?g = "gcd a b" |
|
799 |
{assume "?g = 0" with dc have ?thesis by auto} |
|
800 |
moreover |
|
801 |
{assume z: "?g \<noteq> 0" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
802 |
from gcd_coprime_exists_nat[OF z] |
31706 | 803 |
obtain a' b' where ab': "a = a' * ?g" "b = b' * ?g" "coprime a' b'" |
804 |
by blast |
|
805 |
have thb: "?g dvd b" by auto |
|
806 |
from ab'(1) have "a' dvd a" unfolding dvd_def by blast |
|
807 |
with dc have th0: "a' dvd b*c" using dvd_trans[of a' a "b*c"] by simp |
|
808 |
from dc ab'(1,2) have "a'*?g dvd (b'*?g) *c" by auto |
|
809 |
hence "?g*a' dvd ?g * (b' * c)" by (simp add: mult_assoc) |
|
810 |
with z have th_1: "a' dvd b' * c" by auto |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
811 |
from coprime_dvd_mult_nat[OF ab'(3)] th_1 |
31706 | 812 |
have thc: "a' dvd c" by (subst (asm) mult_commute, blast) |
813 |
from ab' have "a = ?g*a'" by algebra |
|
814 |
with thb thc have ?thesis by blast } |
|
815 |
ultimately show ?thesis by blast |
|
816 |
qed |
|
817 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
818 |
lemma division_decomp_int: assumes dc: "(a::int) dvd b * c" |
31706 | 819 |
shows "\<exists>b' c'. a = b' * c' \<and> b' dvd b \<and> c' dvd c" |
820 |
proof- |
|
821 |
let ?g = "gcd a b" |
|
822 |
{assume "?g = 0" with dc have ?thesis by auto} |
|
823 |
moreover |
|
824 |
{assume z: "?g \<noteq> 0" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
825 |
from gcd_coprime_exists_int[OF z] |
31706 | 826 |
obtain a' b' where ab': "a = a' * ?g" "b = b' * ?g" "coprime a' b'" |
827 |
by blast |
|
828 |
have thb: "?g dvd b" by auto |
|
829 |
from ab'(1) have "a' dvd a" unfolding dvd_def by blast |
|
830 |
with dc have th0: "a' dvd b*c" |
|
831 |
using dvd_trans[of a' a "b*c"] by simp |
|
832 |
from dc ab'(1,2) have "a'*?g dvd (b'*?g) *c" by auto |
|
833 |
hence "?g*a' dvd ?g * (b' * c)" by (simp add: mult_assoc) |
|
834 |
with z have th_1: "a' dvd b' * c" by auto |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
835 |
from coprime_dvd_mult_int[OF ab'(3)] th_1 |
31706 | 836 |
have thc: "a' dvd c" by (subst (asm) mult_commute, blast) |
837 |
from ab' have "a = ?g*a'" by algebra |
|
838 |
with thb thc have ?thesis by blast } |
|
839 |
ultimately show ?thesis by blast |
|
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
840 |
qed |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
841 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
842 |
lemma pow_divides_pow_nat: |
31706 | 843 |
assumes ab: "(a::nat) ^ n dvd b ^n" and n:"n \<noteq> 0" |
844 |
shows "a dvd b" |
|
845 |
proof- |
|
846 |
let ?g = "gcd a b" |
|
847 |
from n obtain m where m: "n = Suc m" by (cases n, simp_all) |
|
848 |
{assume "?g = 0" with ab n have ?thesis by auto } |
|
849 |
moreover |
|
850 |
{assume z: "?g \<noteq> 0" |
|
851 |
hence zn: "?g ^ n \<noteq> 0" using n by (simp add: neq0_conv) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
852 |
from gcd_coprime_exists_nat[OF z] |
31706 | 853 |
obtain a' b' where ab': "a = a' * ?g" "b = b' * ?g" "coprime a' b'" |
854 |
by blast |
|
855 |
from ab have "(a' * ?g) ^ n dvd (b' * ?g)^n" |
|
856 |
by (simp add: ab'(1,2)[symmetric]) |
|
857 |
hence "?g^n*a'^n dvd ?g^n *b'^n" |
|
858 |
by (simp only: power_mult_distrib mult_commute) |
|
859 |
with zn z n have th0:"a'^n dvd b'^n" by auto |
|
860 |
have "a' dvd a'^n" by (simp add: m) |
|
861 |
with th0 have "a' dvd b'^n" using dvd_trans[of a' "a'^n" "b'^n"] by simp |
|
862 |
hence th1: "a' dvd b'^m * b'" by (simp add: m mult_commute) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
863 |
from coprime_dvd_mult_nat[OF coprime_exp_nat [OF ab'(3), of m]] th1 |
31706 | 864 |
have "a' dvd b'" by (subst (asm) mult_commute, blast) |
865 |
hence "a'*?g dvd b'*?g" by simp |
|
866 |
with ab'(1,2) have ?thesis by simp } |
|
867 |
ultimately show ?thesis by blast |
|
868 |
qed |
|
869 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
870 |
lemma pow_divides_pow_int: |
31706 | 871 |
assumes ab: "(a::int) ^ n dvd b ^n" and n:"n \<noteq> 0" |
872 |
shows "a dvd b" |
|
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
873 |
proof- |
31706 | 874 |
let ?g = "gcd a b" |
875 |
from n obtain m where m: "n = Suc m" by (cases n, simp_all) |
|
876 |
{assume "?g = 0" with ab n have ?thesis by auto } |
|
877 |
moreover |
|
878 |
{assume z: "?g \<noteq> 0" |
|
879 |
hence zn: "?g ^ n \<noteq> 0" using n by (simp add: neq0_conv) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
880 |
from gcd_coprime_exists_int[OF z] |
31706 | 881 |
obtain a' b' where ab': "a = a' * ?g" "b = b' * ?g" "coprime a' b'" |
882 |
by blast |
|
883 |
from ab have "(a' * ?g) ^ n dvd (b' * ?g)^n" |
|
884 |
by (simp add: ab'(1,2)[symmetric]) |
|
885 |
hence "?g^n*a'^n dvd ?g^n *b'^n" |
|
886 |
by (simp only: power_mult_distrib mult_commute) |
|
887 |
with zn z n have th0:"a'^n dvd b'^n" by auto |
|
888 |
have "a' dvd a'^n" by (simp add: m) |
|
889 |
with th0 have "a' dvd b'^n" |
|
890 |
using dvd_trans[of a' "a'^n" "b'^n"] by simp |
|
891 |
hence th1: "a' dvd b'^m * b'" by (simp add: m mult_commute) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
892 |
from coprime_dvd_mult_int[OF coprime_exp_int [OF ab'(3), of m]] th1 |
31706 | 893 |
have "a' dvd b'" by (subst (asm) mult_commute, blast) |
894 |
hence "a'*?g dvd b'*?g" by simp |
|
895 |
with ab'(1,2) have ?thesis by simp } |
|
896 |
ultimately show ?thesis by blast |
|
897 |
qed |
|
898 |
||
31798 | 899 |
(* FIXME move to Divides(?) *) |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
900 |
lemma pow_divides_eq_nat [simp]: "n ~= 0 \<Longrightarrow> ((a::nat)^n dvd b^n) = (a dvd b)" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
901 |
by (auto intro: pow_divides_pow_nat dvd_power_same) |
31706 | 902 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
903 |
lemma pow_divides_eq_int [simp]: "n ~= 0 \<Longrightarrow> ((a::int)^n dvd b^n) = (a dvd b)" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
904 |
by (auto intro: pow_divides_pow_int dvd_power_same) |
31706 | 905 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
906 |
lemma divides_mult_nat: |
31706 | 907 |
assumes mr: "(m::nat) dvd r" and nr: "n dvd r" and mn:"coprime m n" |
908 |
shows "m * n dvd r" |
|
909 |
proof- |
|
910 |
from mr nr obtain m' n' where m': "r = m*m'" and n': "r = n*n'" |
|
911 |
unfolding dvd_def by blast |
|
912 |
from mr n' have "m dvd n'*n" by (simp add: mult_commute) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
913 |
hence "m dvd n'" using coprime_dvd_mult_iff_nat[OF mn] by simp |
31706 | 914 |
then obtain k where k: "n' = m*k" unfolding dvd_def by blast |
915 |
from n' k show ?thesis unfolding dvd_def by auto |
|
916 |
qed |
|
917 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
918 |
lemma divides_mult_int: |
31706 | 919 |
assumes mr: "(m::int) dvd r" and nr: "n dvd r" and mn:"coprime m n" |
920 |
shows "m * n dvd r" |
|
921 |
proof- |
|
922 |
from mr nr obtain m' n' where m': "r = m*m'" and n': "r = n*n'" |
|
923 |
unfolding dvd_def by blast |
|
924 |
from mr n' have "m dvd n'*n" by (simp add: mult_commute) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
925 |
hence "m dvd n'" using coprime_dvd_mult_iff_int[OF mn] by simp |
31706 | 926 |
then obtain k where k: "n' = m*k" unfolding dvd_def by blast |
927 |
from n' k show ?thesis unfolding dvd_def by auto |
|
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
928 |
qed |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
929 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
930 |
lemma coprime_plus_one_nat [simp]: "coprime ((n::nat) + 1) n" |
31706 | 931 |
apply (subgoal_tac "gcd (n + 1) n dvd (n + 1 - n)") |
932 |
apply force |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
933 |
apply (rule dvd_diff_nat) |
31706 | 934 |
apply auto |
935 |
done |
|
936 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
937 |
lemma coprime_Suc_nat [simp]: "coprime (Suc n) n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
938 |
using coprime_plus_one_nat by (simp add: One_nat_def) |
31706 | 939 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
940 |
lemma coprime_plus_one_int [simp]: "coprime ((n::int) + 1) n" |
31706 | 941 |
apply (subgoal_tac "gcd (n + 1) n dvd (n + 1 - n)") |
942 |
apply force |
|
943 |
apply (rule dvd_diff) |
|
944 |
apply auto |
|
945 |
done |
|
946 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
947 |
lemma coprime_minus_one_nat: "(n::nat) \<noteq> 0 \<Longrightarrow> coprime (n - 1) n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
948 |
using coprime_plus_one_nat [of "n - 1"] |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
949 |
gcd_commute_nat [of "n - 1" n] by auto |
31706 | 950 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
951 |
lemma coprime_minus_one_int: "coprime ((n::int) - 1) n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
952 |
using coprime_plus_one_int [of "n - 1"] |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
953 |
gcd_commute_int [of "n - 1" n] by auto |
31706 | 954 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
955 |
lemma setprod_coprime_nat [rule_format]: |
31706 | 956 |
"(ALL i: A. coprime (f i) (x::nat)) --> coprime (PROD i:A. f i) x" |
957 |
apply (case_tac "finite A") |
|
958 |
apply (induct set: finite) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
959 |
apply (auto simp add: gcd_mult_cancel_nat) |
31706 | 960 |
done |
961 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
962 |
lemma setprod_coprime_int [rule_format]: |
31706 | 963 |
"(ALL i: A. coprime (f i) (x::int)) --> coprime (PROD i:A. f i) x" |
964 |
apply (case_tac "finite A") |
|
965 |
apply (induct set: finite) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
966 |
apply (auto simp add: gcd_mult_cancel_int) |
31706 | 967 |
done |
968 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
969 |
lemma coprime_common_divisor_nat: "coprime (a::nat) b \<Longrightarrow> x dvd a \<Longrightarrow> |
31706 | 970 |
x dvd b \<Longrightarrow> x = 1" |
971 |
apply (subgoal_tac "x dvd gcd a b") |
|
972 |
apply simp |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
973 |
apply (erule (1) gcd_greatest_nat) |
31706 | 974 |
done |
975 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
976 |
lemma coprime_common_divisor_int: "coprime (a::int) b \<Longrightarrow> x dvd a \<Longrightarrow> |
31706 | 977 |
x dvd b \<Longrightarrow> abs x = 1" |
978 |
apply (subgoal_tac "x dvd gcd a b") |
|
979 |
apply simp |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
980 |
apply (erule (1) gcd_greatest_int) |
31706 | 981 |
done |
982 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
983 |
lemma coprime_divisors_nat: "(d::int) dvd a \<Longrightarrow> e dvd b \<Longrightarrow> coprime a b \<Longrightarrow> |
31706 | 984 |
coprime d e" |
985 |
apply (auto simp add: dvd_def) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
986 |
apply (frule coprime_lmult_int) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
987 |
apply (subst gcd_commute_int) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
988 |
apply (subst (asm) (2) gcd_commute_int) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
989 |
apply (erule coprime_lmult_int) |
31706 | 990 |
done |
991 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
992 |
lemma invertible_coprime_nat: "(x::nat) * y mod m = 1 \<Longrightarrow> coprime x m" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
993 |
apply (metis coprime_lmult_nat gcd_1_nat gcd_commute_nat gcd_red_nat) |
31706 | 994 |
done |
995 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
996 |
lemma invertible_coprime_int: "(x::int) * y mod m = 1 \<Longrightarrow> coprime x m" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
997 |
apply (metis coprime_lmult_int gcd_1_int gcd_commute_int gcd_red_int) |
31706 | 998 |
done |
999 |
||
1000 |
||
1001 |
subsection {* Bezout's theorem *} |
|
1002 |
||
1003 |
(* Function bezw returns a pair of witnesses to Bezout's theorem -- |
|
1004 |
see the theorems that follow the definition. *) |
|
1005 |
fun |
|
1006 |
bezw :: "nat \<Rightarrow> nat \<Rightarrow> int * int" |
|
1007 |
where |
|
1008 |
"bezw x y = |
|
1009 |
(if y = 0 then (1, 0) else |
|
1010 |
(snd (bezw y (x mod y)), |
|
1011 |
fst (bezw y (x mod y)) - snd (bezw y (x mod y)) * int(x div y)))" |
|
1012 |
||
1013 |
lemma bezw_0 [simp]: "bezw x 0 = (1, 0)" by simp |
|
1014 |
||
1015 |
lemma bezw_non_0: "y > 0 \<Longrightarrow> bezw x y = (snd (bezw y (x mod y)), |
|
1016 |
fst (bezw y (x mod y)) - snd (bezw y (x mod y)) * int(x div y))" |
|
1017 |
by simp |
|
1018 |
||
1019 |
declare bezw.simps [simp del] |
|
1020 |
||
1021 |
lemma bezw_aux [rule_format]: |
|
1022 |
"fst (bezw x y) * int x + snd (bezw x y) * int y = int (gcd x y)" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1023 |
proof (induct x y rule: gcd_nat_induct) |
31706 | 1024 |
fix m :: nat |
1025 |
show "fst (bezw m 0) * int m + snd (bezw m 0) * int 0 = int (gcd m 0)" |
|
1026 |
by auto |
|
1027 |
next fix m :: nat and n |
|
1028 |
assume ngt0: "n > 0" and |
|
1029 |
ih: "fst (bezw n (m mod n)) * int n + |
|
1030 |
snd (bezw n (m mod n)) * int (m mod n) = |
|
1031 |
int (gcd n (m mod n))" |
|
1032 |
thus "fst (bezw m n) * int m + snd (bezw m n) * int n = int (gcd m n)" |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1033 |
apply (simp add: bezw_non_0 gcd_non_0_nat) |
31706 | 1034 |
apply (erule subst) |
1035 |
apply (simp add: ring_simps) |
|
1036 |
apply (subst mod_div_equality [of m n, symmetric]) |
|
1037 |
(* applying simp here undoes the last substitution! |
|
1038 |
what is procedure cancel_div_mod? *) |
|
1039 |
apply (simp only: ring_simps zadd_int [symmetric] |
|
1040 |
zmult_int [symmetric]) |
|
1041 |
done |
|
1042 |
qed |
|
1043 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1044 |
lemma bezout_int: |
31706 | 1045 |
fixes x y |
1046 |
shows "EX u v. u * (x::int) + v * y = gcd x y" |
|
1047 |
proof - |
|
1048 |
have bezout_aux: "!!x y. x \<ge> (0::int) \<Longrightarrow> y \<ge> 0 \<Longrightarrow> |
|
1049 |
EX u v. u * x + v * y = gcd x y" |
|
1050 |
apply (rule_tac x = "fst (bezw (nat x) (nat y))" in exI) |
|
1051 |
apply (rule_tac x = "snd (bezw (nat x) (nat y))" in exI) |
|
1052 |
apply (unfold gcd_int_def) |
|
1053 |
apply simp |
|
1054 |
apply (subst bezw_aux [symmetric]) |
|
1055 |
apply auto |
|
1056 |
done |
|
1057 |
have "(x \<ge> 0 \<and> y \<ge> 0) | (x \<ge> 0 \<and> y \<le> 0) | (x \<le> 0 \<and> y \<ge> 0) | |
|
1058 |
(x \<le> 0 \<and> y \<le> 0)" |
|
1059 |
by auto |
|
1060 |
moreover have "x \<ge> 0 \<Longrightarrow> y \<ge> 0 \<Longrightarrow> ?thesis" |
|
1061 |
by (erule (1) bezout_aux) |
|
1062 |
moreover have "x >= 0 \<Longrightarrow> y <= 0 \<Longrightarrow> ?thesis" |
|
1063 |
apply (insert bezout_aux [of x "-y"]) |
|
1064 |
apply auto |
|
1065 |
apply (rule_tac x = u in exI) |
|
1066 |
apply (rule_tac x = "-v" in exI) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1067 |
apply (subst gcd_neg2_int [symmetric]) |
31706 | 1068 |
apply auto |
1069 |
done |
|
1070 |
moreover have "x <= 0 \<Longrightarrow> y >= 0 \<Longrightarrow> ?thesis" |
|
1071 |
apply (insert bezout_aux [of "-x" y]) |
|
1072 |
apply auto |
|
1073 |
apply (rule_tac x = "-u" in exI) |
|
1074 |
apply (rule_tac x = v in exI) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1075 |
apply (subst gcd_neg1_int [symmetric]) |
31706 | 1076 |
apply auto |
1077 |
done |
|
1078 |
moreover have "x <= 0 \<Longrightarrow> y <= 0 \<Longrightarrow> ?thesis" |
|
1079 |
apply (insert bezout_aux [of "-x" "-y"]) |
|
1080 |
apply auto |
|
1081 |
apply (rule_tac x = "-u" in exI) |
|
1082 |
apply (rule_tac x = "-v" in exI) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1083 |
apply (subst gcd_neg1_int [symmetric]) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1084 |
apply (subst gcd_neg2_int [symmetric]) |
31706 | 1085 |
apply auto |
1086 |
done |
|
1087 |
ultimately show ?thesis by blast |
|
1088 |
qed |
|
1089 |
||
1090 |
text {* versions of Bezout for nat, by Amine Chaieb *} |
|
1091 |
||
1092 |
lemma ind_euclid: |
|
1093 |
assumes c: " \<forall>a b. P (a::nat) b \<longleftrightarrow> P b a" and z: "\<forall>a. P a 0" |
|
1094 |
and add: "\<forall>a b. P a b \<longrightarrow> P a (a + b)" |
|
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1095 |
shows "P a b" |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1096 |
proof(induct n\<equiv>"a+b" arbitrary: a b rule: nat_less_induct) |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1097 |
fix n a b |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1098 |
assume H: "\<forall>m < n. \<forall>a b. m = a + b \<longrightarrow> P a b" "n = a + b" |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1099 |
have "a = b \<or> a < b \<or> b < a" by arith |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1100 |
moreover {assume eq: "a= b" |
31706 | 1101 |
from add[rule_format, OF z[rule_format, of a]] have "P a b" using eq |
1102 |
by simp} |
|
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1103 |
moreover |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1104 |
{assume lt: "a < b" |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1105 |
hence "a + b - a < n \<or> a = 0" using H(2) by arith |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1106 |
moreover |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1107 |
{assume "a =0" with z c have "P a b" by blast } |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1108 |
moreover |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1109 |
{assume ab: "a + b - a < n" |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1110 |
have th0: "a + b - a = a + (b - a)" using lt by arith |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1111 |
from add[rule_format, OF H(1)[rule_format, OF ab th0]] |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1112 |
have "P a b" by (simp add: th0[symmetric])} |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1113 |
ultimately have "P a b" by blast} |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1114 |
moreover |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1115 |
{assume lt: "a > b" |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1116 |
hence "b + a - b < n \<or> b = 0" using H(2) by arith |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1117 |
moreover |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1118 |
{assume "b =0" with z c have "P a b" by blast } |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1119 |
moreover |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1120 |
{assume ab: "b + a - b < n" |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1121 |
have th0: "b + a - b = b + (a - b)" using lt by arith |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1122 |
from add[rule_format, OF H(1)[rule_format, OF ab th0]] |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1123 |
have "P b a" by (simp add: th0[symmetric]) |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1124 |
hence "P a b" using c by blast } |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1125 |
ultimately have "P a b" by blast} |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1126 |
ultimately show "P a b" by blast |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1127 |
qed |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1128 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1129 |
lemma bezout_lemma_nat: |
31706 | 1130 |
assumes ex: "\<exists>(d::nat) x y. d dvd a \<and> d dvd b \<and> |
1131 |
(a * x = b * y + d \<or> b * x = a * y + d)" |
|
1132 |
shows "\<exists>d x y. d dvd a \<and> d dvd a + b \<and> |
|
1133 |
(a * x = (a + b) * y + d \<or> (a + b) * x = a * y + d)" |
|
1134 |
using ex |
|
1135 |
apply clarsimp |
|
1136 |
apply (rule_tac x="d" in exI, simp add: dvd_add) |
|
1137 |
apply (case_tac "a * x = b * y + d" , simp_all) |
|
1138 |
apply (rule_tac x="x + y" in exI) |
|
1139 |
apply (rule_tac x="y" in exI) |
|
1140 |
apply algebra |
|
1141 |
apply (rule_tac x="x" in exI) |
|
1142 |
apply (rule_tac x="x + y" in exI) |
|
1143 |
apply algebra |
|
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1144 |
done |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1145 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1146 |
lemma bezout_add_nat: "\<exists>(d::nat) x y. d dvd a \<and> d dvd b \<and> |
31706 | 1147 |
(a * x = b * y + d \<or> b * x = a * y + d)" |
1148 |
apply(induct a b rule: ind_euclid) |
|
1149 |
apply blast |
|
1150 |
apply clarify |
|
1151 |
apply (rule_tac x="a" in exI, simp add: dvd_add) |
|
1152 |
apply clarsimp |
|
1153 |
apply (rule_tac x="d" in exI) |
|
1154 |
apply (case_tac "a * x = b * y + d", simp_all add: dvd_add) |
|
1155 |
apply (rule_tac x="x+y" in exI) |
|
1156 |
apply (rule_tac x="y" in exI) |
|
1157 |
apply algebra |
|
1158 |
apply (rule_tac x="x" in exI) |
|
1159 |
apply (rule_tac x="x+y" in exI) |
|
1160 |
apply algebra |
|
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1161 |
done |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1162 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1163 |
lemma bezout1_nat: "\<exists>(d::nat) x y. d dvd a \<and> d dvd b \<and> |
31706 | 1164 |
(a * x - b * y = d \<or> b * x - a * y = d)" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1165 |
using bezout_add_nat[of a b] |
31706 | 1166 |
apply clarsimp |
1167 |
apply (rule_tac x="d" in exI, simp) |
|
1168 |
apply (rule_tac x="x" in exI) |
|
1169 |
apply (rule_tac x="y" in exI) |
|
1170 |
apply auto |
|
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1171 |
done |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1172 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1173 |
lemma bezout_add_strong_nat: assumes nz: "a \<noteq> (0::nat)" |
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1174 |
shows "\<exists>d x y. d dvd a \<and> d dvd b \<and> a * x = b * y + d" |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1175 |
proof- |
31706 | 1176 |
from nz have ap: "a > 0" by simp |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1177 |
from bezout_add_nat[of a b] |
31706 | 1178 |
have "(\<exists>d x y. d dvd a \<and> d dvd b \<and> a * x = b * y + d) \<or> |
1179 |
(\<exists>d x y. d dvd a \<and> d dvd b \<and> b * x = a * y + d)" by blast |
|
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1180 |
moreover |
31706 | 1181 |
{fix d x y assume H: "d dvd a" "d dvd b" "a * x = b * y + d" |
1182 |
from H have ?thesis by blast } |
|
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1183 |
moreover |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1184 |
{fix d x y assume H: "d dvd a" "d dvd b" "b * x = a * y + d" |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1185 |
{assume b0: "b = 0" with H have ?thesis by simp} |
31706 | 1186 |
moreover |
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1187 |
{assume b: "b \<noteq> 0" hence bp: "b > 0" by simp |
31706 | 1188 |
from b dvd_imp_le [OF H(2)] have "d < b \<or> d = b" |
1189 |
by auto |
|
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1190 |
moreover |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1191 |
{assume db: "d=b" |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1192 |
from prems have ?thesis apply simp |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1193 |
apply (rule exI[where x = b], simp) |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1194 |
apply (rule exI[where x = b]) |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1195 |
by (rule exI[where x = "a - 1"], simp add: diff_mult_distrib2)} |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1196 |
moreover |
31706 | 1197 |
{assume db: "d < b" |
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1198 |
{assume "x=0" hence ?thesis using prems by simp } |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1199 |
moreover |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1200 |
{assume x0: "x \<noteq> 0" hence xp: "x > 0" by simp |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1201 |
from db have "d \<le> b - 1" by simp |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1202 |
hence "d*b \<le> b*(b - 1)" by simp |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1203 |
with xp mult_mono[of "1" "x" "d*b" "b*(b - 1)"] |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1204 |
have dble: "d*b \<le> x*b*(b - 1)" using bp by simp |
31706 | 1205 |
from H (3) have "d + (b - 1) * (b*x) = d + (b - 1) * (a*y + d)" |
1206 |
by simp |
|
1207 |
hence "d + (b - 1) * a * y + (b - 1) * d = d + (b - 1) * b * x" |
|
1208 |
by (simp only: mult_assoc right_distrib) |
|
1209 |
hence "a * ((b - 1) * y) + d * (b - 1 + 1) = d + x*b*(b - 1)" |
|
1210 |
by algebra |
|
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1211 |
hence "a * ((b - 1) * y) = d + x*b*(b - 1) - d*b" using bp by simp |
31706 | 1212 |
hence "a * ((b - 1) * y) = d + (x*b*(b - 1) - d*b)" |
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1213 |
by (simp only: diff_add_assoc[OF dble, of d, symmetric]) |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1214 |
hence "a * ((b - 1) * y) = b*(x*(b - 1) - d) + d" |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1215 |
by (simp only: diff_mult_distrib2 add_commute mult_ac) |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1216 |
hence ?thesis using H(1,2) |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1217 |
apply - |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1218 |
apply (rule exI[where x=d], simp) |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1219 |
apply (rule exI[where x="(b - 1) * y"]) |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1220 |
by (rule exI[where x="x*(b - 1) - d"], simp)} |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1221 |
ultimately have ?thesis by blast} |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1222 |
ultimately have ?thesis by blast} |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1223 |
ultimately have ?thesis by blast} |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1224 |
ultimately show ?thesis by blast |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1225 |
qed |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1226 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1227 |
lemma bezout_nat: assumes a: "(a::nat) \<noteq> 0" |
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1228 |
shows "\<exists>x y. a * x = b * y + gcd a b" |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1229 |
proof- |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1230 |
let ?g = "gcd a b" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1231 |
from bezout_add_strong_nat[OF a, of b] |
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1232 |
obtain d x y where d: "d dvd a" "d dvd b" "a * x = b * y + d" by blast |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1233 |
from d(1,2) have "d dvd ?g" by simp |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1234 |
then obtain k where k: "?g = d*k" unfolding dvd_def by blast |
31706 | 1235 |
from d(3) have "a * x * k = (b * y + d) *k " by auto |
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1236 |
hence "a * (x * k) = b * (y*k) + ?g" by (algebra add: k) |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1237 |
thus ?thesis by blast |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1238 |
qed |
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1239 |
|
31706 | 1240 |
|
1241 |
subsection {* LCM *} |
|
1242 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1243 |
lemma lcm_altdef_int: "lcm (a::int) b = (abs a) * (abs b) div gcd a b" |
31706 | 1244 |
by (simp add: lcm_int_def lcm_nat_def zdiv_int |
1245 |
zmult_int [symmetric] gcd_int_def) |
|
1246 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1247 |
lemma prod_gcd_lcm_nat: "(m::nat) * n = gcd m n * lcm m n" |
31706 | 1248 |
unfolding lcm_nat_def |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1249 |
by (simp add: dvd_mult_div_cancel [OF gcd_dvd_prod_nat]) |
31706 | 1250 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1251 |
lemma prod_gcd_lcm_int: "abs(m::int) * abs n = gcd m n * lcm m n" |
31706 | 1252 |
unfolding lcm_int_def gcd_int_def |
1253 |
apply (subst int_mult [symmetric]) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1254 |
apply (subst prod_gcd_lcm_nat [symmetric]) |
31706 | 1255 |
apply (subst nat_abs_mult_distrib [symmetric]) |
1256 |
apply (simp, simp add: abs_mult) |
|
1257 |
done |
|
1258 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1259 |
lemma lcm_0_nat [simp]: "lcm (m::nat) 0 = 0" |
31706 | 1260 |
unfolding lcm_nat_def by simp |
1261 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1262 |
lemma lcm_0_int [simp]: "lcm (m::int) 0 = 0" |
31706 | 1263 |
unfolding lcm_int_def by simp |
1264 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1265 |
lemma lcm_0_left_nat [simp]: "lcm (0::nat) n = 0" |
31706 | 1266 |
unfolding lcm_nat_def by simp |
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1267 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1268 |
lemma lcm_0_left_int [simp]: "lcm (0::int) n = 0" |
31706 | 1269 |
unfolding lcm_int_def by simp |
1270 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1271 |
lemma lcm_commute_nat: "lcm (m::nat) n = lcm n m" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1272 |
unfolding lcm_nat_def by (simp add: gcd_commute_nat ring_simps) |
31706 | 1273 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1274 |
lemma lcm_commute_int: "lcm (m::int) n = lcm n m" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1275 |
unfolding lcm_int_def by (subst lcm_commute_nat, rule refl) |
31706 | 1276 |
|
1277 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1278 |
lemma lcm_pos_nat: |
31798 | 1279 |
"(m::nat) > 0 \<Longrightarrow> n>0 \<Longrightarrow> lcm m n > 0" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1280 |
by (metis gr0I mult_is_0 prod_gcd_lcm_nat) |
27669
4b1642284dd7
Tuned and simplified proofs; Rules added to presburger's and algebra's context; moved Bezout theorems from Primes.thy
chaieb
parents:
27651
diff
changeset
|
1281 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1282 |
lemma lcm_pos_int: |
31798 | 1283 |
"(m::int) ~= 0 \<Longrightarrow> n ~= 0 \<Longrightarrow> lcm m n > 0" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1284 |
apply (subst lcm_abs_int) |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1285 |
apply (rule lcm_pos_nat [transferred]) |
31798 | 1286 |
apply auto |
31706 | 1287 |
done |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1288 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1289 |
lemma dvd_pos_nat: |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1290 |
fixes n m :: nat |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1291 |
assumes "n > 0" and "m dvd n" |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1292 |
shows "m > 0" |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1293 |
using assms by (cases m) auto |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1294 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1295 |
lemma lcm_least_nat: |
31706 | 1296 |
assumes "(m::nat) dvd k" and "n dvd k" |
27556 | 1297 |
shows "lcm m n dvd k" |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1298 |
proof (cases k) |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1299 |
case 0 then show ?thesis by auto |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1300 |
next |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1301 |
case (Suc _) then have pos_k: "k > 0" by auto |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1302 |
from assms dvd_pos_nat [OF this] have pos_mn: "m > 0" "n > 0" by auto |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1303 |
with gcd_zero_nat [of m n] have pos_gcd: "gcd m n > 0" by simp |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1304 |
from assms obtain p where k_m: "k = m * p" using dvd_def by blast |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1305 |
from assms obtain q where k_n: "k = n * q" using dvd_def by blast |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1306 |
from pos_k k_m have pos_p: "p > 0" by auto |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1307 |
from pos_k k_n have pos_q: "q > 0" by auto |
27556 | 1308 |
have "k * k * gcd q p = k * gcd (k * q) (k * p)" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1309 |
by (simp add: mult_ac gcd_mult_distrib_nat) |
27556 | 1310 |
also have "\<dots> = k * gcd (m * p * q) (n * q * p)" |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1311 |
by (simp add: k_m [symmetric] k_n [symmetric]) |
27556 | 1312 |
also have "\<dots> = k * p * q * gcd m n" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1313 |
by (simp add: mult_ac gcd_mult_distrib_nat) |
27556 | 1314 |
finally have "(m * p) * (n * q) * gcd q p = k * p * q * gcd m n" |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1315 |
by (simp only: k_m [symmetric] k_n [symmetric]) |
27556 | 1316 |
then have "p * q * m * n * gcd q p = p * q * k * gcd m n" |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1317 |
by (simp add: mult_ac) |
27556 | 1318 |
with pos_p pos_q have "m * n * gcd q p = k * gcd m n" |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1319 |
by simp |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1320 |
with prod_gcd_lcm_nat [of m n] |
27556 | 1321 |
have "lcm m n * gcd q p * gcd m n = k * gcd m n" |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1322 |
by (simp add: mult_ac) |
31706 | 1323 |
with pos_gcd have "lcm m n * gcd q p = k" by auto |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1324 |
then show ?thesis using dvd_def by auto |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1325 |
qed |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1326 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1327 |
lemma lcm_least_int: |
31798 | 1328 |
"(m::int) dvd k \<Longrightarrow> n dvd k \<Longrightarrow> lcm m n dvd k" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1329 |
apply (subst lcm_abs_int) |
31798 | 1330 |
apply (rule dvd_trans) |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1331 |
apply (rule lcm_least_nat [transferred, of _ "abs k" _]) |
31798 | 1332 |
apply auto |
31706 | 1333 |
done |
1334 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1335 |
lemma lcm_dvd1_nat: "(m::nat) dvd lcm m n" |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1336 |
proof (cases m) |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1337 |
case 0 then show ?thesis by simp |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1338 |
next |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1339 |
case (Suc _) |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1340 |
then have mpos: "m > 0" by simp |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1341 |
show ?thesis |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1342 |
proof (cases n) |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1343 |
case 0 then show ?thesis by simp |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1344 |
next |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1345 |
case (Suc _) |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1346 |
then have npos: "n > 0" by simp |
27556 | 1347 |
have "gcd m n dvd n" by simp |
1348 |
then obtain k where "n = gcd m n * k" using dvd_def by auto |
|
31706 | 1349 |
then have "m * n div gcd m n = m * (gcd m n * k) div gcd m n" |
1350 |
by (simp add: mult_ac) |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1351 |
also have "\<dots> = m * k" using mpos npos gcd_zero_nat by simp |
31706 | 1352 |
finally show ?thesis by (simp add: lcm_nat_def) |
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1353 |
qed |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1354 |
qed |
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1355 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1356 |
lemma lcm_dvd1_int: "(m::int) dvd lcm m n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1357 |
apply (subst lcm_abs_int) |
31706 | 1358 |
apply (rule dvd_trans) |
1359 |
prefer 2 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1360 |
apply (rule lcm_dvd1_nat [transferred]) |
31706 | 1361 |
apply auto |
1362 |
done |
|
1363 |
||
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1364 |
lemma lcm_dvd2_nat: "(n::nat) dvd lcm m n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1365 |
by (subst lcm_commute_nat, rule lcm_dvd1_nat) |
31706 | 1366 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1367 |
lemma lcm_dvd2_int: "(n::int) dvd lcm m n" |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1368 |
by (subst lcm_commute_int, rule lcm_dvd1_int) |
31706 | 1369 |
|
31730 | 1370 |
lemma dvd_lcm_I1_nat[simp]: "(k::nat) dvd m \<Longrightarrow> k dvd lcm m n" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1371 |
by(metis lcm_dvd1_nat dvd_trans) |
31729 | 1372 |
|
31730 | 1373 |
lemma dvd_lcm_I2_nat[simp]: "(k::nat) dvd n \<Longrightarrow> k dvd lcm m n" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1374 |
by(metis lcm_dvd2_nat dvd_trans) |
31729 | 1375 |
|
31730 | 1376 |
lemma dvd_lcm_I1_int[simp]: "(i::int) dvd m \<Longrightarrow> i dvd lcm m n" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1377 |
by(metis lcm_dvd1_int dvd_trans) |
31729 | 1378 |
|
31730 | 1379 |
lemma dvd_lcm_I2_int[simp]: "(i::int) dvd n \<Longrightarrow> i dvd lcm m n" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1380 |
by(metis lcm_dvd2_int dvd_trans) |
31729 | 1381 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1382 |
lemma lcm_unique_nat: "(a::nat) dvd d \<and> b dvd d \<and> |
31706 | 1383 |
(\<forall>e. a dvd e \<and> b dvd e \<longrightarrow> d dvd e) \<longleftrightarrow> d = lcm a b" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1384 |
by (auto intro: dvd_anti_sym lcm_least_nat lcm_dvd1_nat lcm_dvd2_nat) |
27568
9949dc7a24de
Theorem names as in IntPrimes.thy, also several theorems moved from there
chaieb
parents:
27556
diff
changeset
|
1385 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1386 |
lemma lcm_unique_int: "d >= 0 \<and> (a::int) dvd d \<and> b dvd d \<and> |
31706 | 1387 |
(\<forall>e. a dvd e \<and> b dvd e \<longrightarrow> d dvd e) \<longleftrightarrow> d = lcm a b" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1388 |
by (auto intro: dvd_anti_sym [transferred] lcm_least_int) |
31706 | 1389 |
|
31798 | 1390 |
lemma lcm_proj2_if_dvd_nat [simp]: "(x::nat) dvd y \<Longrightarrow> lcm x y = y" |
31706 | 1391 |
apply (rule sym) |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1392 |
apply (subst lcm_unique_nat [symmetric]) |
31706 | 1393 |
apply auto |
1394 |
done |
|
1395 |
||
31798 | 1396 |
lemma lcm_proj2_if_dvd_int [simp]: "(x::int) dvd y \<Longrightarrow> lcm x y = abs y" |
31706 | 1397 |
apply (rule sym) |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1398 |
apply (subst lcm_unique_int [symmetric]) |
31706 | 1399 |
apply auto |
1400 |
done |
|
1401 |
||
31798 | 1402 |
lemma lcm_proj1_if_dvd_nat [simp]: "(x::nat) dvd y \<Longrightarrow> lcm y x = y" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1403 |
by (subst lcm_commute_nat, erule lcm_proj2_if_dvd_nat) |
31706 | 1404 |
|
31798 | 1405 |
lemma lcm_proj1_if_dvd_int [simp]: "(x::int) dvd y \<Longrightarrow> lcm y x = abs y" |
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1406 |
by (subst lcm_commute_int, erule lcm_proj2_if_dvd_int) |
31706 | 1407 |
|
31992 | 1408 |
lemma lcm_proj1_iff_nat[simp]: "lcm m n = (m::nat) \<longleftrightarrow> n dvd m" |
1409 |
by (metis lcm_proj1_if_dvd_nat lcm_unique_nat) |
|
1410 |
||
1411 |
lemma lcm_proj2_iff_nat[simp]: "lcm m n = (n::nat) \<longleftrightarrow> m dvd n" |
|
1412 |
by (metis lcm_proj2_if_dvd_nat lcm_unique_nat) |
|
1413 |
||
1414 |
lemma lcm_proj1_iff_int[simp]: "lcm m n = abs(m::int) \<longleftrightarrow> n dvd m" |
|
1415 |
by (metis dvd_abs_iff lcm_proj1_if_dvd_int lcm_unique_int) |
|
1416 |
||
1417 |
lemma lcm_proj2_iff_int[simp]: "lcm m n = abs(n::int) \<longleftrightarrow> m dvd n" |
|
1418 |
by (metis dvd_abs_iff lcm_proj2_if_dvd_int lcm_unique_int) |
|
27568
9949dc7a24de
Theorem names as in IntPrimes.thy, also several theorems moved from there
chaieb
parents:
27556
diff
changeset
|
1419 |
|
31766 | 1420 |
lemma lcm_assoc_nat: "lcm (lcm n m) (p::nat) = lcm n (lcm m p)" |
31992 | 1421 |
by(rule lcm_unique_nat[THEN iffD1])(metis dvd.order_trans lcm_unique_nat) |
31766 | 1422 |
|
1423 |
lemma lcm_assoc_int: "lcm (lcm n m) (p::int) = lcm n (lcm m p)" |
|
31992 | 1424 |
by(rule lcm_unique_int[THEN iffD1])(metis dvd_trans lcm_unique_int) |
31766 | 1425 |
|
31992 | 1426 |
lemmas lcm_left_commute_nat = mk_left_commute[of lcm, OF lcm_assoc_nat lcm_commute_nat] |
1427 |
lemmas lcm_left_commute_int = mk_left_commute[of lcm, OF lcm_assoc_int lcm_commute_int] |
|
31766 | 1428 |
|
31952
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1429 |
lemmas lcm_ac_nat = lcm_assoc_nat lcm_commute_nat lcm_left_commute_nat |
40501bb2d57c
renamed lemmas: nat_xyz/int_xyz -> xyz_nat/xyz_int
nipkow
parents:
31814
diff
changeset
|
1430 |
lemmas lcm_ac_int = lcm_assoc_int lcm_commute_int lcm_left_commute_int |
31766 | 1431 |
|
31992 | 1432 |
lemma fun_left_comm_idem_gcd_nat: "fun_left_comm_idem (gcd :: nat\<Rightarrow>nat\<Rightarrow>nat)" |
1433 |
proof qed (auto simp add: gcd_ac_nat) |
|
1434 |
||
1435 |
lemma fun_left_comm_idem_gcd_int: "fun_left_comm_idem (gcd :: int\<Rightarrow>int\<Rightarrow>int)" |
|
1436 |
proof qed (auto simp add: gcd_ac_int) |
|
1437 |
||
1438 |
lemma fun_left_comm_idem_lcm_nat: "fun_left_comm_idem (lcm :: nat\<Rightarrow>nat\<Rightarrow>nat)" |
|
1439 |
proof qed (auto simp add: lcm_ac_nat) |
|
1440 |
||
1441 |
lemma fun_left_comm_idem_lcm_int: "fun_left_comm_idem (lcm :: int\<Rightarrow>int\<Rightarrow>int)" |
|
1442 |
proof qed (auto simp add: lcm_ac_int) |
|
1443 |
||
23687
06884f7ffb18
extended - convers now basic lcm properties also
haftmann
parents:
23431
diff
changeset
|
1444 |
|
31995 | 1445 |
(* FIXME introduce selimattice_bot/top and derive the following lemmas in there: *) |
1446 |
||
1447 |
lemma lcm_0_iff_nat[simp]: "lcm (m::nat) n = 0 \<longleftrightarrow> m=0 \<or> n=0" |
|
1448 |
by (metis lcm_0_left_nat lcm_0_nat mult_is_0 prod_gcd_lcm_nat) |
|
1449 |
||
1450 |
lemma lcm_0_iff_int[simp]: "lcm (m::int) n = 0 \<longleftrightarrow> m=0 \<or> n=0" |
|
1451 |
by (metis lcm_0_int lcm_0_left_int lcm_pos_int zless_le) |
|
1452 |
||
1453 |
lemma lcm_1_iff_nat[simp]: "lcm (m::nat) n = 1 \<longleftrightarrow> m=1 \<and> n=1" |
|
1454 |
by (metis gcd_1_nat lcm_unique_nat nat_mult_1 prod_gcd_lcm_nat) |
|
1455 |
||
1456 |
lemma lcm_1_iff_int[simp]: "lcm (m::int) n = 1 \<longleftrightarrow> (m=1 \<or> m = -1) \<and> (n=1 \<or> n = -1)" |
|
31996
1d93369079c4
Tuned proof of lcm_1_iff_int, because metis produced enormous proof term.
berghofe
parents:
31995
diff
changeset
|
1457 |
by (auto simp add: abs_mult_self trans [OF lcm_unique_int eq_commute, symmetric] zmult_eq_1_iff) |
31995 | 1458 |
|
32112
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1459 |
subsubsection {* The complete divisibility lattice *} |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1460 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1461 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1462 |
interpretation gcd_semilattice_nat: lower_semilattice "op dvd" "(%m n::nat. m dvd n & ~ n dvd m)" gcd |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1463 |
proof |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1464 |
case goal3 thus ?case by(metis gcd_unique_nat) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1465 |
qed auto |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1466 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1467 |
interpretation lcm_semilattice_nat: upper_semilattice "op dvd" "(%m n::nat. m dvd n & ~ n dvd m)" lcm |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1468 |
proof |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1469 |
case goal3 thus ?case by(metis lcm_unique_nat) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1470 |
qed auto |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1471 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1472 |
interpretation gcd_lcm_lattice_nat: lattice "op dvd" "(%m n::nat. m dvd n & ~ n dvd m)" gcd lcm .. |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1473 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1474 |
text{* Lifting gcd and lcm to finite (Gcd/Lcm) and infinite sets (GCD/LCM). |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1475 |
GCD is defined via LCM to facilitate the proof that we have a complete lattice. |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1476 |
Later on we show that GCD and Gcd coincide on finite sets. |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1477 |
*} |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1478 |
context gcd |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1479 |
begin |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1480 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1481 |
definition Gcd :: "'a set \<Rightarrow> 'a" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1482 |
where "Gcd = fold gcd 0" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1483 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1484 |
definition Lcm :: "'a set \<Rightarrow> 'a" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1485 |
where "Lcm = fold lcm 1" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1486 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1487 |
definition LCM :: "'a set \<Rightarrow> 'a" where |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1488 |
"LCM M = (if finite M then Lcm M else 0)" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1489 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1490 |
definition GCD :: "'a set \<Rightarrow> 'a" where |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1491 |
"GCD M = LCM(INT m:M. {d. d dvd m})" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1492 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1493 |
end |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1494 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1495 |
lemma Gcd_empty[simp]: "Gcd {} = 0" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1496 |
by(simp add:Gcd_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1497 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1498 |
lemma Lcm_empty[simp]: "Lcm {} = 1" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1499 |
by(simp add:Lcm_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1500 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1501 |
lemma GCD_empty_nat[simp]: "GCD {} = (0::nat)" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1502 |
by(simp add:GCD_def LCM_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1503 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1504 |
lemma LCM_eq_Lcm[simp]: "finite M \<Longrightarrow> LCM M = Lcm M" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1505 |
by(simp add:LCM_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1506 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1507 |
lemma Lcm_insert_nat [simp]: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1508 |
assumes "finite N" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1509 |
shows "Lcm (insert (n::nat) N) = lcm n (Lcm N)" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1510 |
proof - |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1511 |
interpret fun_left_comm_idem "lcm::nat\<Rightarrow>nat\<Rightarrow>nat" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1512 |
by (rule fun_left_comm_idem_lcm_nat) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1513 |
from assms show ?thesis by(simp add: Lcm_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1514 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1515 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1516 |
lemma Lcm_insert_int [simp]: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1517 |
assumes "finite N" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1518 |
shows "Lcm (insert (n::int) N) = lcm n (Lcm N)" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1519 |
proof - |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1520 |
interpret fun_left_comm_idem "lcm::int\<Rightarrow>int\<Rightarrow>int" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1521 |
by (rule fun_left_comm_idem_lcm_int) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1522 |
from assms show ?thesis by(simp add: Lcm_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1523 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1524 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1525 |
lemma Gcd_insert_nat [simp]: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1526 |
assumes "finite N" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1527 |
shows "Gcd (insert (n::nat) N) = gcd n (Gcd N)" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1528 |
proof - |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1529 |
interpret fun_left_comm_idem "gcd::nat\<Rightarrow>nat\<Rightarrow>nat" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1530 |
by (rule fun_left_comm_idem_gcd_nat) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1531 |
from assms show ?thesis by(simp add: Gcd_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1532 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1533 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1534 |
lemma Gcd_insert_int [simp]: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1535 |
assumes "finite N" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1536 |
shows "Gcd (insert (n::int) N) = gcd n (Gcd N)" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1537 |
proof - |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1538 |
interpret fun_left_comm_idem "gcd::int\<Rightarrow>int\<Rightarrow>int" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1539 |
by (rule fun_left_comm_idem_gcd_int) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1540 |
from assms show ?thesis by(simp add: Gcd_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1541 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1542 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1543 |
lemma Lcm0_iff[simp]: "finite (M::nat set) \<Longrightarrow> M \<noteq> {} \<Longrightarrow> Lcm M = 0 \<longleftrightarrow> 0 : M" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1544 |
by(induct rule:finite_ne_induct) auto |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1545 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1546 |
lemma Lcm_eq_0[simp]: "finite (M::nat set) \<Longrightarrow> 0 : M \<Longrightarrow> Lcm M = 0" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1547 |
by (metis Lcm0_iff empty_iff) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1548 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1549 |
lemma Gcd_dvd_nat [simp]: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1550 |
assumes "finite M" and "(m::nat) \<in> M" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1551 |
shows "Gcd M dvd m" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1552 |
proof - |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1553 |
show ?thesis using gcd_semilattice_nat.fold_inf_le_inf[OF assms, of 0] by (simp add: Gcd_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1554 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1555 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1556 |
lemma dvd_Gcd_nat[simp]: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1557 |
assumes "finite M" and "ALL (m::nat) : M. n dvd m" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1558 |
shows "n dvd Gcd M" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1559 |
proof - |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1560 |
show ?thesis using gcd_semilattice_nat.inf_le_fold_inf[OF assms, of 0] by (simp add: Gcd_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1561 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1562 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1563 |
lemma dvd_Lcm_nat [simp]: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1564 |
assumes "finite M" and "(m::nat) \<in> M" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1565 |
shows "m dvd Lcm M" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1566 |
proof - |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1567 |
show ?thesis using lcm_semilattice_nat.sup_le_fold_sup[OF assms, of 1] by (simp add: Lcm_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1568 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1569 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1570 |
lemma Lcm_dvd_nat[simp]: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1571 |
assumes "finite M" and "ALL (m::nat) : M. m dvd n" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1572 |
shows "Lcm M dvd n" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1573 |
proof - |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1574 |
show ?thesis using lcm_semilattice_nat.fold_sup_le_sup[OF assms, of 1] by (simp add: Lcm_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1575 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1576 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1577 |
interpretation gcd_lcm_complete_lattice_nat: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1578 |
complete_lattice "op dvd" "%m n::nat. m dvd n & ~ n dvd m" gcd lcm 1 0 GCD LCM |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1579 |
proof |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1580 |
case goal1 show ?case by simp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1581 |
next |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1582 |
case goal2 show ?case by simp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1583 |
next |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1584 |
case goal5 thus ?case by (auto simp: LCM_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1585 |
next |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1586 |
case goal6 thus ?case |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1587 |
by(auto simp: LCM_def)(metis finite_nat_set_iff_bounded_le gcd_proj2_if_dvd_nat gcd_le1_nat) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1588 |
next |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1589 |
case goal3 thus ?case by (auto simp: GCD_def LCM_def)(metis finite_INT finite_divisors_nat) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1590 |
next |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1591 |
case goal4 thus ?case by(auto simp: LCM_def GCD_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1592 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1593 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1594 |
text{* Alternative characterizations of Gcd and GCD: *} |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1595 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1596 |
lemma Gcd_eq_Max: "finite(M::nat set) \<Longrightarrow> M \<noteq> {} \<Longrightarrow> 0 \<notin> M \<Longrightarrow> Gcd M = Max(\<Inter>m\<in>M. {d. d dvd m})" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1597 |
apply(rule antisym) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1598 |
apply(rule Max_ge) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1599 |
apply (metis all_not_in_conv finite_divisors_nat finite_INT) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1600 |
apply simp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1601 |
apply (rule Max_le_iff[THEN iffD2]) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1602 |
apply (metis all_not_in_conv finite_divisors_nat finite_INT) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1603 |
apply fastsimp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1604 |
apply clarsimp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1605 |
apply (metis Gcd_dvd_nat Max_in dvd_0_left dvd_Gcd_nat dvd_imp_le linorder_antisym_conv3 not_less0) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1606 |
done |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1607 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1608 |
lemma Gcd_remove0_nat: "finite M \<Longrightarrow> Gcd M = Gcd (M - {0::nat})" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1609 |
apply(induct pred:finite) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1610 |
apply simp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1611 |
apply(case_tac "x=0") |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1612 |
apply simp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1613 |
apply(subgoal_tac "insert x F - {0} = insert x (F - {0})") |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1614 |
apply simp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1615 |
apply blast |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1616 |
done |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1617 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1618 |
lemma Lcm_in_lcm_closed_set_nat: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1619 |
"finite M \<Longrightarrow> M \<noteq> {} \<Longrightarrow> ALL m n :: nat. m:M \<longrightarrow> n:M \<longrightarrow> lcm m n : M \<Longrightarrow> Lcm M : M" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1620 |
apply(induct rule:finite_linorder_min_induct) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1621 |
apply simp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1622 |
apply simp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1623 |
apply(subgoal_tac "ALL m n :: nat. m:A \<longrightarrow> n:A \<longrightarrow> lcm m n : A") |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1624 |
apply simp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1625 |
apply(case_tac "A={}") |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1626 |
apply simp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1627 |
apply simp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1628 |
apply (metis lcm_pos_nat lcm_unique_nat linorder_neq_iff nat_dvd_not_less not_less0) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1629 |
done |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1630 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1631 |
lemma Lcm_eq_Max_nat: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1632 |
"finite M \<Longrightarrow> M \<noteq> {} \<Longrightarrow> 0 \<notin> M \<Longrightarrow> ALL m n :: nat. m:M \<longrightarrow> n:M \<longrightarrow> lcm m n : M \<Longrightarrow> Lcm M = Max M" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1633 |
apply(rule antisym) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1634 |
apply(rule Max_ge, assumption) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1635 |
apply(erule (2) Lcm_in_lcm_closed_set_nat) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1636 |
apply clarsimp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1637 |
apply (metis Lcm0_iff dvd_Lcm_nat dvd_imp_le neq0_conv) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1638 |
done |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1639 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1640 |
text{* Finally GCD is Gcd: *} |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1641 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1642 |
lemma GCD_eq_Gcd[simp]: assumes "finite(M::nat set)" shows "GCD M = Gcd M" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1643 |
proof- |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1644 |
have divisors_remove0_nat: "(\<Inter>m\<in>M. {d::nat. d dvd m}) = (\<Inter>m\<in>M-{0}. {d::nat. d dvd m})" by auto |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1645 |
show ?thesis |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1646 |
proof cases |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1647 |
assume "M={}" thus ?thesis by simp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1648 |
next |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1649 |
assume "M\<noteq>{}" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1650 |
show ?thesis |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1651 |
proof cases |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1652 |
assume "M={0}" thus ?thesis by(simp add:GCD_def LCM_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1653 |
next |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1654 |
assume "M\<noteq>{0}" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1655 |
with `M\<noteq>{}` assms show ?thesis |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1656 |
apply(subst Gcd_remove0_nat[OF assms]) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1657 |
apply(simp add:GCD_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1658 |
apply(subst divisors_remove0_nat) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1659 |
apply(simp add:LCM_def) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1660 |
apply rule |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1661 |
apply rule |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1662 |
apply(subst Gcd_eq_Max) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1663 |
apply simp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1664 |
apply blast |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1665 |
apply blast |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1666 |
apply(rule Lcm_eq_Max_nat) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1667 |
apply simp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1668 |
apply blast |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1669 |
apply fastsimp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1670 |
apply clarsimp |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1671 |
apply(fastsimp intro: finite_divisors_nat intro!: finite_INT) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1672 |
done |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1673 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1674 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1675 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1676 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1677 |
lemma Lcm_set_nat [code_unfold]: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1678 |
"Lcm (set ns) = foldl lcm (1::nat) ns" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1679 |
proof - |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1680 |
interpret fun_left_comm_idem "lcm::nat\<Rightarrow>nat\<Rightarrow>nat" by (rule fun_left_comm_idem_lcm_nat) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1681 |
show ?thesis by(simp add: Lcm_def fold_set lcm_commute_nat) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1682 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1683 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1684 |
lemma Lcm_set_int [code_unfold]: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1685 |
"Lcm (set is) = foldl lcm (1::int) is" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1686 |
proof - |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1687 |
interpret fun_left_comm_idem "lcm::int\<Rightarrow>int\<Rightarrow>int" by (rule fun_left_comm_idem_lcm_int) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1688 |
show ?thesis by(simp add: Lcm_def fold_set lcm_commute_int) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1689 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1690 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1691 |
lemma Gcd_set_nat [code_unfold]: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1692 |
"Gcd (set ns) = foldl gcd (0::nat) ns" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1693 |
proof - |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1694 |
interpret fun_left_comm_idem "gcd::nat\<Rightarrow>nat\<Rightarrow>nat" by (rule fun_left_comm_idem_gcd_nat) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1695 |
show ?thesis by(simp add: Gcd_def fold_set gcd_commute_nat) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1696 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1697 |
|
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1698 |
lemma Gcd_set_int [code_unfold]: |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1699 |
"Gcd (set ns) = foldl gcd (0::int) ns" |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1700 |
proof - |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1701 |
interpret fun_left_comm_idem "gcd::int\<Rightarrow>int\<Rightarrow>int" by (rule fun_left_comm_idem_gcd_int) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1702 |
show ?thesis by(simp add: Gcd_def fold_set gcd_commute_int) |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1703 |
qed |
6da9c2a49fed
Made dvd/gcd/lcm a complete lattice by introducing Gcd/GCD/Lcm/LCM
nipkow
parents:
32111
diff
changeset
|
1704 |
|
21256 | 1705 |
end |