author | huffman |
Tue, 12 Dec 2006 00:03:42 +0100 | |
changeset 21777 | a535be528d3a |
parent 21733 | 131dd2a27137 |
child 22262 | 96ba62dff413 |
permissions | -rw-r--r-- |
12396 | 1 |
(* Title: HOL/Finite_Set.thy |
2 |
ID: $Id$ |
|
3 |
Author: Tobias Nipkow, Lawrence C Paulson and Markus Wenzel |
|
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
4 |
with contributions by Jeremy Avigad |
12396 | 5 |
*) |
6 |
||
7 |
header {* Finite sets *} |
|
8 |
||
15131 | 9 |
theory Finite_Set |
21409 | 10 |
imports Power Divides Inductive Lattices |
15131 | 11 |
begin |
12396 | 12 |
|
15392 | 13 |
subsection {* Definition and basic properties *} |
12396 | 14 |
|
15 |
consts Finites :: "'a set set" |
|
19363 | 16 |
abbreviation |
17 |
"finite A == A : Finites" |
|
12396 | 18 |
|
19 |
inductive Finites |
|
20 |
intros |
|
21 |
emptyI [simp, intro!]: "{} : Finites" |
|
22 |
insertI [simp, intro!]: "A : Finites ==> insert a A : Finites" |
|
23 |
||
24 |
axclass finite \<subseteq> type |
|
25 |
finite: "finite UNIV" |
|
26 |
||
13737 | 27 |
lemma ex_new_if_finite: -- "does not depend on def of finite at all" |
14661 | 28 |
assumes "\<not> finite (UNIV :: 'a set)" and "finite A" |
29 |
shows "\<exists>a::'a. a \<notin> A" |
|
30 |
proof - |
|
31 |
from prems have "A \<noteq> UNIV" by blast |
|
32 |
thus ?thesis by blast |
|
33 |
qed |
|
12396 | 34 |
|
35 |
lemma finite_induct [case_names empty insert, induct set: Finites]: |
|
36 |
"finite F ==> |
|
15327
0230a10582d3
changed the order of !!-quantifiers in finite set induction.
nipkow
parents:
15318
diff
changeset
|
37 |
P {} ==> (!!x F. finite F ==> x \<notin> F ==> P F ==> P (insert x F)) ==> P F" |
12396 | 38 |
-- {* Discharging @{text "x \<notin> F"} entails extra work. *} |
39 |
proof - |
|
13421 | 40 |
assume "P {}" and |
15327
0230a10582d3
changed the order of !!-quantifiers in finite set induction.
nipkow
parents:
15318
diff
changeset
|
41 |
insert: "!!x F. finite F ==> x \<notin> F ==> P F ==> P (insert x F)" |
12396 | 42 |
assume "finite F" |
43 |
thus "P F" |
|
44 |
proof induct |
|
45 |
show "P {}" . |
|
15327
0230a10582d3
changed the order of !!-quantifiers in finite set induction.
nipkow
parents:
15318
diff
changeset
|
46 |
fix x F assume F: "finite F" and P: "P F" |
12396 | 47 |
show "P (insert x F)" |
48 |
proof cases |
|
49 |
assume "x \<in> F" |
|
50 |
hence "insert x F = F" by (rule insert_absorb) |
|
51 |
with P show ?thesis by (simp only:) |
|
52 |
next |
|
53 |
assume "x \<notin> F" |
|
54 |
from F this P show ?thesis by (rule insert) |
|
55 |
qed |
|
56 |
qed |
|
57 |
qed |
|
58 |
||
15484 | 59 |
lemma finite_ne_induct[case_names singleton insert, consumes 2]: |
60 |
assumes fin: "finite F" shows "F \<noteq> {} \<Longrightarrow> |
|
61 |
\<lbrakk> \<And>x. P{x}; |
|
62 |
\<And>x F. \<lbrakk> finite F; F \<noteq> {}; x \<notin> F; P F \<rbrakk> \<Longrightarrow> P (insert x F) \<rbrakk> |
|
63 |
\<Longrightarrow> P F" |
|
64 |
using fin |
|
65 |
proof induct |
|
66 |
case empty thus ?case by simp |
|
67 |
next |
|
68 |
case (insert x F) |
|
69 |
show ?case |
|
70 |
proof cases |
|
71 |
assume "F = {}" thus ?thesis using insert(4) by simp |
|
72 |
next |
|
73 |
assume "F \<noteq> {}" thus ?thesis using insert by blast |
|
74 |
qed |
|
75 |
qed |
|
76 |
||
12396 | 77 |
lemma finite_subset_induct [consumes 2, case_names empty insert]: |
78 |
"finite F ==> F \<subseteq> A ==> |
|
15327
0230a10582d3
changed the order of !!-quantifiers in finite set induction.
nipkow
parents:
15318
diff
changeset
|
79 |
P {} ==> (!!a F. finite F ==> a \<in> A ==> a \<notin> F ==> P F ==> P (insert a F)) ==> |
12396 | 80 |
P F" |
81 |
proof - |
|
13421 | 82 |
assume "P {}" and insert: |
15327
0230a10582d3
changed the order of !!-quantifiers in finite set induction.
nipkow
parents:
15318
diff
changeset
|
83 |
"!!a F. finite F ==> a \<in> A ==> a \<notin> F ==> P F ==> P (insert a F)" |
12396 | 84 |
assume "finite F" |
85 |
thus "F \<subseteq> A ==> P F" |
|
86 |
proof induct |
|
87 |
show "P {}" . |
|
15327
0230a10582d3
changed the order of !!-quantifiers in finite set induction.
nipkow
parents:
15318
diff
changeset
|
88 |
fix x F assume "finite F" and "x \<notin> F" |
12396 | 89 |
and P: "F \<subseteq> A ==> P F" and i: "insert x F \<subseteq> A" |
90 |
show "P (insert x F)" |
|
91 |
proof (rule insert) |
|
92 |
from i show "x \<in> A" by blast |
|
93 |
from i have "F \<subseteq> A" by blast |
|
94 |
with P show "P F" . |
|
95 |
qed |
|
96 |
qed |
|
97 |
qed |
|
98 |
||
15392 | 99 |
text{* Finite sets are the images of initial segments of natural numbers: *} |
100 |
||
15510 | 101 |
lemma finite_imp_nat_seg_image_inj_on: |
102 |
assumes fin: "finite A" |
|
103 |
shows "\<exists> (n::nat) f. A = f ` {i. i<n} & inj_on f {i. i<n}" |
|
15392 | 104 |
using fin |
105 |
proof induct |
|
106 |
case empty |
|
15510 | 107 |
show ?case |
108 |
proof show "\<exists>f. {} = f ` {i::nat. i < 0} & inj_on f {i. i<0}" by simp |
|
109 |
qed |
|
15392 | 110 |
next |
111 |
case (insert a A) |
|
15510 | 112 |
have notinA: "a \<notin> A" . |
113 |
from insert.hyps obtain n f |
|
114 |
where "A = f ` {i::nat. i < n}" "inj_on f {i. i < n}" by blast |
|
115 |
hence "insert a A = f(n:=a) ` {i. i < Suc n}" |
|
116 |
"inj_on (f(n:=a)) {i. i < Suc n}" using notinA |
|
117 |
by (auto simp add: image_def Ball_def inj_on_def less_Suc_eq) |
|
15392 | 118 |
thus ?case by blast |
119 |
qed |
|
120 |
||
121 |
lemma nat_seg_image_imp_finite: |
|
122 |
"!!f A. A = f ` {i::nat. i<n} \<Longrightarrow> finite A" |
|
123 |
proof (induct n) |
|
124 |
case 0 thus ?case by simp |
|
125 |
next |
|
126 |
case (Suc n) |
|
127 |
let ?B = "f ` {i. i < n}" |
|
128 |
have finB: "finite ?B" by(rule Suc.hyps[OF refl]) |
|
129 |
show ?case |
|
130 |
proof cases |
|
131 |
assume "\<exists>k<n. f n = f k" |
|
132 |
hence "A = ?B" using Suc.prems by(auto simp:less_Suc_eq) |
|
133 |
thus ?thesis using finB by simp |
|
134 |
next |
|
135 |
assume "\<not>(\<exists> k<n. f n = f k)" |
|
136 |
hence "A = insert (f n) ?B" using Suc.prems by(auto simp:less_Suc_eq) |
|
137 |
thus ?thesis using finB by simp |
|
138 |
qed |
|
139 |
qed |
|
140 |
||
141 |
lemma finite_conv_nat_seg_image: |
|
142 |
"finite A = (\<exists> (n::nat) f. A = f ` {i::nat. i<n})" |
|
15510 | 143 |
by(blast intro: nat_seg_image_imp_finite dest: finite_imp_nat_seg_image_inj_on) |
15392 | 144 |
|
145 |
subsubsection{* Finiteness and set theoretic constructions *} |
|
146 |
||
12396 | 147 |
lemma finite_UnI: "finite F ==> finite G ==> finite (F Un G)" |
148 |
-- {* The union of two finite sets is finite. *} |
|
149 |
by (induct set: Finites) simp_all |
|
150 |
||
151 |
lemma finite_subset: "A \<subseteq> B ==> finite B ==> finite A" |
|
152 |
-- {* Every subset of a finite set is finite. *} |
|
153 |
proof - |
|
154 |
assume "finite B" |
|
155 |
thus "!!A. A \<subseteq> B ==> finite A" |
|
156 |
proof induct |
|
157 |
case empty |
|
158 |
thus ?case by simp |
|
159 |
next |
|
15327
0230a10582d3
changed the order of !!-quantifiers in finite set induction.
nipkow
parents:
15318
diff
changeset
|
160 |
case (insert x F A) |
12396 | 161 |
have A: "A \<subseteq> insert x F" and r: "A - {x} \<subseteq> F ==> finite (A - {x})" . |
162 |
show "finite A" |
|
163 |
proof cases |
|
164 |
assume x: "x \<in> A" |
|
165 |
with A have "A - {x} \<subseteq> F" by (simp add: subset_insert_iff) |
|
166 |
with r have "finite (A - {x})" . |
|
167 |
hence "finite (insert x (A - {x}))" .. |
|
168 |
also have "insert x (A - {x}) = A" by (rule insert_Diff) |
|
169 |
finally show ?thesis . |
|
170 |
next |
|
171 |
show "A \<subseteq> F ==> ?thesis" . |
|
172 |
assume "x \<notin> A" |
|
173 |
with A show "A \<subseteq> F" by (simp add: subset_insert_iff) |
|
174 |
qed |
|
175 |
qed |
|
176 |
qed |
|
177 |
||
18423 | 178 |
lemma finite_Collect_subset[simp]: "finite A \<Longrightarrow> finite{x \<in> A. P x}" |
17761 | 179 |
using finite_subset[of "{x \<in> A. P x}" "A"] by blast |
180 |
||
12396 | 181 |
lemma finite_Un [iff]: "finite (F Un G) = (finite F & finite G)" |
182 |
by (blast intro: finite_subset [of _ "X Un Y", standard] finite_UnI) |
|
183 |
||
184 |
lemma finite_Int [simp, intro]: "finite F | finite G ==> finite (F Int G)" |
|
185 |
-- {* The converse obviously fails. *} |
|
186 |
by (blast intro: finite_subset) |
|
187 |
||
188 |
lemma finite_insert [simp]: "finite (insert a A) = finite A" |
|
189 |
apply (subst insert_is_Un) |
|
14208 | 190 |
apply (simp only: finite_Un, blast) |
12396 | 191 |
done |
192 |
||
15281 | 193 |
lemma finite_Union[simp, intro]: |
194 |
"\<lbrakk> finite A; !!M. M \<in> A \<Longrightarrow> finite M \<rbrakk> \<Longrightarrow> finite(\<Union>A)" |
|
195 |
by (induct rule:finite_induct) simp_all |
|
196 |
||
12396 | 197 |
lemma finite_empty_induct: |
198 |
"finite A ==> |
|
199 |
P A ==> (!!a A. finite A ==> a:A ==> P A ==> P (A - {a})) ==> P {}" |
|
200 |
proof - |
|
201 |
assume "finite A" |
|
202 |
and "P A" and "!!a A. finite A ==> a:A ==> P A ==> P (A - {a})" |
|
203 |
have "P (A - A)" |
|
204 |
proof - |
|
205 |
fix c b :: "'a set" |
|
206 |
presume c: "finite c" and b: "finite b" |
|
207 |
and P1: "P b" and P2: "!!x y. finite y ==> x \<in> y ==> P y ==> P (y - {x})" |
|
208 |
from c show "c \<subseteq> b ==> P (b - c)" |
|
209 |
proof induct |
|
210 |
case empty |
|
211 |
from P1 show ?case by simp |
|
212 |
next |
|
15327
0230a10582d3
changed the order of !!-quantifiers in finite set induction.
nipkow
parents:
15318
diff
changeset
|
213 |
case (insert x F) |
12396 | 214 |
have "P (b - F - {x})" |
215 |
proof (rule P2) |
|
216 |
from _ b show "finite (b - F)" by (rule finite_subset) blast |
|
217 |
from insert show "x \<in> b - F" by simp |
|
218 |
from insert show "P (b - F)" by simp |
|
219 |
qed |
|
220 |
also have "b - F - {x} = b - insert x F" by (rule Diff_insert [symmetric]) |
|
221 |
finally show ?case . |
|
222 |
qed |
|
223 |
next |
|
224 |
show "A \<subseteq> A" .. |
|
225 |
qed |
|
226 |
thus "P {}" by simp |
|
227 |
qed |
|
228 |
||
229 |
lemma finite_Diff [simp]: "finite B ==> finite (B - Ba)" |
|
230 |
by (rule Diff_subset [THEN finite_subset]) |
|
231 |
||
232 |
lemma finite_Diff_insert [iff]: "finite (A - insert a B) = finite (A - B)" |
|
233 |
apply (subst Diff_insert) |
|
234 |
apply (case_tac "a : A - B") |
|
235 |
apply (rule finite_insert [symmetric, THEN trans]) |
|
14208 | 236 |
apply (subst insert_Diff, simp_all) |
12396 | 237 |
done |
238 |
||
19870 | 239 |
lemma finite_Diff_singleton [simp]: "finite (A - {a}) = finite A" |
240 |
by simp |
|
241 |
||
12396 | 242 |
|
15392 | 243 |
text {* Image and Inverse Image over Finite Sets *} |
13825 | 244 |
|
245 |
lemma finite_imageI[simp]: "finite F ==> finite (h ` F)" |
|
246 |
-- {* The image of a finite set is finite. *} |
|
247 |
by (induct set: Finites) simp_all |
|
248 |
||
14430
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
paulson
parents:
14331
diff
changeset
|
249 |
lemma finite_surj: "finite A ==> B <= f ` A ==> finite B" |
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
paulson
parents:
14331
diff
changeset
|
250 |
apply (frule finite_imageI) |
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
paulson
parents:
14331
diff
changeset
|
251 |
apply (erule finite_subset, assumption) |
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
paulson
parents:
14331
diff
changeset
|
252 |
done |
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
paulson
parents:
14331
diff
changeset
|
253 |
|
13825 | 254 |
lemma finite_range_imageI: |
255 |
"finite (range g) ==> finite (range (%x. f (g x)))" |
|
14208 | 256 |
apply (drule finite_imageI, simp) |
13825 | 257 |
done |
258 |
||
12396 | 259 |
lemma finite_imageD: "finite (f`A) ==> inj_on f A ==> finite A" |
260 |
proof - |
|
261 |
have aux: "!!A. finite (A - {}) = finite A" by simp |
|
262 |
fix B :: "'a set" |
|
263 |
assume "finite B" |
|
264 |
thus "!!A. f`A = B ==> inj_on f A ==> finite A" |
|
265 |
apply induct |
|
266 |
apply simp |
|
267 |
apply (subgoal_tac "EX y:A. f y = x & F = f ` (A - {y})") |
|
268 |
apply clarify |
|
269 |
apply (simp (no_asm_use) add: inj_on_def) |
|
14208 | 270 |
apply (blast dest!: aux [THEN iffD1], atomize) |
12396 | 271 |
apply (erule_tac V = "ALL A. ?PP (A)" in thin_rl) |
14208 | 272 |
apply (frule subsetD [OF equalityD2 insertI1], clarify) |
12396 | 273 |
apply (rule_tac x = xa in bexI) |
274 |
apply (simp_all add: inj_on_image_set_diff) |
|
275 |
done |
|
276 |
qed (rule refl) |
|
277 |
||
278 |
||
13825 | 279 |
lemma inj_vimage_singleton: "inj f ==> f-`{a} \<subseteq> {THE x. f x = a}" |
280 |
-- {* The inverse image of a singleton under an injective function |
|
281 |
is included in a singleton. *} |
|
14430
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
paulson
parents:
14331
diff
changeset
|
282 |
apply (auto simp add: inj_on_def) |
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
paulson
parents:
14331
diff
changeset
|
283 |
apply (blast intro: the_equality [symmetric]) |
13825 | 284 |
done |
285 |
||
286 |
lemma finite_vimageI: "[|finite F; inj h|] ==> finite (h -` F)" |
|
287 |
-- {* The inverse image of a finite set under an injective function |
|
288 |
is finite. *} |
|
21575 | 289 |
apply (induct set: Finites) |
290 |
apply simp_all |
|
14430
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
paulson
parents:
14331
diff
changeset
|
291 |
apply (subst vimage_insert) |
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
paulson
parents:
14331
diff
changeset
|
292 |
apply (simp add: finite_Un finite_subset [OF inj_vimage_singleton]) |
13825 | 293 |
done |
294 |
||
295 |
||
15392 | 296 |
text {* The finite UNION of finite sets *} |
12396 | 297 |
|
298 |
lemma finite_UN_I: "finite A ==> (!!a. a:A ==> finite (B a)) ==> finite (UN a:A. B a)" |
|
299 |
by (induct set: Finites) simp_all |
|
300 |
||
301 |
text {* |
|
302 |
Strengthen RHS to |
|
14430
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
paulson
parents:
14331
diff
changeset
|
303 |
@{prop "((ALL x:A. finite (B x)) & finite {x. x:A & B x \<noteq> {}})"}? |
12396 | 304 |
|
305 |
We'd need to prove |
|
14430
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
paulson
parents:
14331
diff
changeset
|
306 |
@{prop "finite C ==> ALL A B. (UNION A B) <= C --> finite {x. x:A & B x \<noteq> {}}"} |
12396 | 307 |
by induction. *} |
308 |
||
309 |
lemma finite_UN [simp]: "finite A ==> finite (UNION A B) = (ALL x:A. finite (B x))" |
|
310 |
by (blast intro: finite_UN_I finite_subset) |
|
311 |
||
312 |
||
17022 | 313 |
lemma finite_Plus: "[| finite A; finite B |] ==> finite (A <+> B)" |
314 |
by (simp add: Plus_def) |
|
315 |
||
15392 | 316 |
text {* Sigma of finite sets *} |
12396 | 317 |
|
318 |
lemma finite_SigmaI [simp]: |
|
319 |
"finite A ==> (!!a. a:A ==> finite (B a)) ==> finite (SIGMA a:A. B a)" |
|
320 |
by (unfold Sigma_def) (blast intro!: finite_UN_I) |
|
321 |
||
15402 | 322 |
lemma finite_cartesian_product: "[| finite A; finite B |] ==> |
323 |
finite (A <*> B)" |
|
324 |
by (rule finite_SigmaI) |
|
325 |
||
12396 | 326 |
lemma finite_Prod_UNIV: |
327 |
"finite (UNIV::'a set) ==> finite (UNIV::'b set) ==> finite (UNIV::('a * 'b) set)" |
|
328 |
apply (subgoal_tac "(UNIV:: ('a * 'b) set) = Sigma UNIV (%x. UNIV)") |
|
329 |
apply (erule ssubst) |
|
14208 | 330 |
apply (erule finite_SigmaI, auto) |
12396 | 331 |
done |
332 |
||
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
333 |
lemma finite_cartesian_productD1: |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
334 |
"[| finite (A <*> B); B \<noteq> {} |] ==> finite A" |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
335 |
apply (auto simp add: finite_conv_nat_seg_image) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
336 |
apply (drule_tac x=n in spec) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
337 |
apply (drule_tac x="fst o f" in spec) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
338 |
apply (auto simp add: o_def) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
339 |
prefer 2 apply (force dest!: equalityD2) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
340 |
apply (drule equalityD1) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
341 |
apply (rename_tac y x) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
342 |
apply (subgoal_tac "\<exists>k. k<n & f k = (x,y)") |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
343 |
prefer 2 apply force |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
344 |
apply clarify |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
345 |
apply (rule_tac x=k in image_eqI, auto) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
346 |
done |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
347 |
|
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
348 |
lemma finite_cartesian_productD2: |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
349 |
"[| finite (A <*> B); A \<noteq> {} |] ==> finite B" |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
350 |
apply (auto simp add: finite_conv_nat_seg_image) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
351 |
apply (drule_tac x=n in spec) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
352 |
apply (drule_tac x="snd o f" in spec) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
353 |
apply (auto simp add: o_def) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
354 |
prefer 2 apply (force dest!: equalityD2) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
355 |
apply (drule equalityD1) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
356 |
apply (rename_tac x y) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
357 |
apply (subgoal_tac "\<exists>k. k<n & f k = (x,y)") |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
358 |
prefer 2 apply force |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
359 |
apply clarify |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
360 |
apply (rule_tac x=k in image_eqI, auto) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
361 |
done |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
362 |
|
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
363 |
|
15392 | 364 |
text {* The powerset of a finite set *} |
12396 | 365 |
|
366 |
lemma finite_Pow_iff [iff]: "finite (Pow A) = finite A" |
|
367 |
proof |
|
368 |
assume "finite (Pow A)" |
|
369 |
with _ have "finite ((%x. {x}) ` A)" by (rule finite_subset) blast |
|
370 |
thus "finite A" by (rule finite_imageD [unfolded inj_on_def]) simp |
|
371 |
next |
|
372 |
assume "finite A" |
|
373 |
thus "finite (Pow A)" |
|
374 |
by induct (simp_all add: finite_UnI finite_imageI Pow_insert) |
|
375 |
qed |
|
376 |
||
15392 | 377 |
|
378 |
lemma finite_UnionD: "finite(\<Union>A) \<Longrightarrow> finite A" |
|
379 |
by(blast intro: finite_subset[OF subset_Pow_Union]) |
|
380 |
||
381 |
||
12396 | 382 |
lemma finite_converse [iff]: "finite (r^-1) = finite r" |
383 |
apply (subgoal_tac "r^-1 = (%(x,y). (y,x))`r") |
|
384 |
apply simp |
|
385 |
apply (rule iffI) |
|
386 |
apply (erule finite_imageD [unfolded inj_on_def]) |
|
387 |
apply (simp split add: split_split) |
|
388 |
apply (erule finite_imageI) |
|
14208 | 389 |
apply (simp add: converse_def image_def, auto) |
12396 | 390 |
apply (rule bexI) |
391 |
prefer 2 apply assumption |
|
392 |
apply simp |
|
393 |
done |
|
394 |
||
14430
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
paulson
parents:
14331
diff
changeset
|
395 |
|
15392 | 396 |
text {* \paragraph{Finiteness of transitive closure} (Thanks to Sidi |
397 |
Ehmety) *} |
|
12396 | 398 |
|
399 |
lemma finite_Field: "finite r ==> finite (Field r)" |
|
400 |
-- {* A finite relation has a finite field (@{text "= domain \<union> range"}. *} |
|
401 |
apply (induct set: Finites) |
|
402 |
apply (auto simp add: Field_def Domain_insert Range_insert) |
|
403 |
done |
|
404 |
||
405 |
lemma trancl_subset_Field2: "r^+ <= Field r \<times> Field r" |
|
406 |
apply clarify |
|
407 |
apply (erule trancl_induct) |
|
408 |
apply (auto simp add: Field_def) |
|
409 |
done |
|
410 |
||
411 |
lemma finite_trancl: "finite (r^+) = finite r" |
|
412 |
apply auto |
|
413 |
prefer 2 |
|
414 |
apply (rule trancl_subset_Field2 [THEN finite_subset]) |
|
415 |
apply (rule finite_SigmaI) |
|
416 |
prefer 3 |
|
13704
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
13595
diff
changeset
|
417 |
apply (blast intro: r_into_trancl' finite_subset) |
12396 | 418 |
apply (auto simp add: finite_Field) |
419 |
done |
|
420 |
||
421 |
||
15392 | 422 |
subsection {* A fold functional for finite sets *} |
423 |
||
424 |
text {* The intended behaviour is |
|
15480 | 425 |
@{text "fold f g z {x\<^isub>1, ..., x\<^isub>n} = f (g x\<^isub>1) (\<dots> (f (g x\<^isub>n) z)\<dots>)"} |
15392 | 426 |
if @{text f} is associative-commutative. For an application of @{text fold} |
427 |
se the definitions of sums and products over finite sets. |
|
428 |
*} |
|
429 |
||
430 |
consts |
|
21733 | 431 |
foldSet :: "('a => 'a => 'a) => ('b => 'a) => 'a => ('b set \<times> 'a) set" |
15392 | 432 |
|
15480 | 433 |
inductive "foldSet f g z" |
15392 | 434 |
intros |
15480 | 435 |
emptyI [intro]: "({}, z) : foldSet f g z" |
15506 | 436 |
insertI [intro]: |
437 |
"\<lbrakk> x \<notin> A; (A, y) : foldSet f g z \<rbrakk> |
|
438 |
\<Longrightarrow> (insert x A, f (g x) y) : foldSet f g z" |
|
15392 | 439 |
|
15480 | 440 |
inductive_cases empty_foldSetE [elim!]: "({}, x) : foldSet f g z" |
15392 | 441 |
|
442 |
constdefs |
|
21733 | 443 |
fold :: "('a => 'a => 'a) => ('b => 'a) => 'a => 'b set => 'a" |
15480 | 444 |
"fold f g z A == THE x. (A, x) : foldSet f g z" |
15392 | 445 |
|
15498 | 446 |
text{*A tempting alternative for the definiens is |
447 |
@{term "if finite A then THE x. (A, x) : foldSet f g e else e"}. |
|
448 |
It allows the removal of finiteness assumptions from the theorems |
|
449 |
@{text fold_commute}, @{text fold_reindex} and @{text fold_distrib}. |
|
450 |
The proofs become ugly, with @{text rule_format}. It is not worth the effort.*} |
|
451 |
||
452 |
||
15392 | 453 |
lemma Diff1_foldSet: |
15480 | 454 |
"(A - {x}, y) : foldSet f g z ==> x: A ==> (A, f (g x) y) : foldSet f g z" |
15392 | 455 |
by (erule insert_Diff [THEN subst], rule foldSet.intros, auto) |
456 |
||
15480 | 457 |
lemma foldSet_imp_finite: "(A, x) : foldSet f g z ==> finite A" |
15392 | 458 |
by (induct set: foldSet) auto |
459 |
||
15480 | 460 |
lemma finite_imp_foldSet: "finite A ==> EX x. (A, x) : foldSet f g z" |
15392 | 461 |
by (induct set: Finites) auto |
462 |
||
463 |
||
464 |
subsubsection {* Commutative monoids *} |
|
15480 | 465 |
|
15392 | 466 |
locale ACf = |
467 |
fixes f :: "'a => 'a => 'a" (infixl "\<cdot>" 70) |
|
468 |
assumes commute: "x \<cdot> y = y \<cdot> x" |
|
469 |
and assoc: "(x \<cdot> y) \<cdot> z = x \<cdot> (y \<cdot> z)" |
|
470 |
||
471 |
locale ACe = ACf + |
|
472 |
fixes e :: 'a |
|
473 |
assumes ident [simp]: "x \<cdot> e = x" |
|
474 |
||
15480 | 475 |
locale ACIf = ACf + |
476 |
assumes idem: "x \<cdot> x = x" |
|
477 |
||
15392 | 478 |
lemma (in ACf) left_commute: "x \<cdot> (y \<cdot> z) = y \<cdot> (x \<cdot> z)" |
479 |
proof - |
|
480 |
have "x \<cdot> (y \<cdot> z) = (y \<cdot> z) \<cdot> x" by (simp only: commute) |
|
481 |
also have "... = y \<cdot> (z \<cdot> x)" by (simp only: assoc) |
|
482 |
also have "z \<cdot> x = x \<cdot> z" by (simp only: commute) |
|
483 |
finally show ?thesis . |
|
484 |
qed |
|
485 |
||
486 |
lemmas (in ACf) AC = assoc commute left_commute |
|
487 |
||
488 |
lemma (in ACe) left_ident [simp]: "e \<cdot> x = x" |
|
489 |
proof - |
|
490 |
have "x \<cdot> e = x" by (rule ident) |
|
491 |
thus ?thesis by (subst commute) |
|
492 |
qed |
|
493 |
||
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
494 |
lemma (in ACIf) idem2: "x \<cdot> (x \<cdot> y) = x \<cdot> y" |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
495 |
proof - |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
496 |
have "x \<cdot> (x \<cdot> y) = (x \<cdot> x) \<cdot> y" by(simp add:assoc) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
497 |
also have "\<dots> = x \<cdot> y" by(simp add:idem) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
498 |
finally show ?thesis . |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
499 |
qed |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
500 |
|
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
501 |
lemmas (in ACIf) ACI = AC idem idem2 |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
502 |
|
15765 | 503 |
text{* Interpretation of locales: *} |
504 |
||
505 |
interpretation AC_add: ACe ["op +" "0::'a::comm_monoid_add"] |
|
19984
29bb4659f80a
Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents:
19931
diff
changeset
|
506 |
by unfold_locales (auto intro: add_assoc add_commute) |
15402 | 507 |
|
15765 | 508 |
interpretation AC_mult: ACe ["op *" "1::'a::comm_monoid_mult"] |
19984
29bb4659f80a
Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents:
19931
diff
changeset
|
509 |
by unfold_locales (auto intro: mult_assoc mult_commute) |
15402 | 510 |
|
15392 | 511 |
subsubsection{*From @{term foldSet} to @{term fold}*} |
512 |
||
15510 | 513 |
lemma image_less_Suc: "h ` {i. i < Suc m} = insert (h m) (h ` {i. i < m})" |
19868 | 514 |
by (auto simp add: less_Suc_eq) |
15510 | 515 |
|
516 |
lemma insert_image_inj_on_eq: |
|
517 |
"[|insert (h m) A = h ` {i. i < Suc m}; h m \<notin> A; |
|
518 |
inj_on h {i. i < Suc m}|] |
|
519 |
==> A = h ` {i. i < m}" |
|
520 |
apply (auto simp add: image_less_Suc inj_on_def) |
|
521 |
apply (blast intro: less_trans) |
|
522 |
done |
|
523 |
||
524 |
lemma insert_inj_onE: |
|
525 |
assumes aA: "insert a A = h`{i::nat. i<n}" and anot: "a \<notin> A" |
|
526 |
and inj_on: "inj_on h {i::nat. i<n}" |
|
527 |
shows "\<exists>hm m. inj_on hm {i::nat. i<m} & A = hm ` {i. i<m} & m < n" |
|
528 |
proof (cases n) |
|
529 |
case 0 thus ?thesis using aA by auto |
|
530 |
next |
|
531 |
case (Suc m) |
|
532 |
have nSuc: "n = Suc m" . |
|
533 |
have mlessn: "m<n" by (simp add: nSuc) |
|
15532 | 534 |
from aA obtain k where hkeq: "h k = a" and klessn: "k<n" by (blast elim!: equalityE) |
15520 | 535 |
let ?hm = "swap k m h" |
536 |
have inj_hm: "inj_on ?hm {i. i < n}" using klessn mlessn |
|
537 |
by (simp add: inj_on_swap_iff inj_on) |
|
15510 | 538 |
show ?thesis |
15520 | 539 |
proof (intro exI conjI) |
540 |
show "inj_on ?hm {i. i < m}" using inj_hm |
|
15510 | 541 |
by (auto simp add: nSuc less_Suc_eq intro: subset_inj_on) |
15520 | 542 |
show "m<n" by (rule mlessn) |
543 |
show "A = ?hm ` {i. i < m}" |
|
544 |
proof (rule insert_image_inj_on_eq) |
|
545 |
show "inj_on (swap k m h) {i. i < Suc m}" using inj_hm nSuc by simp |
|
546 |
show "?hm m \<notin> A" by (simp add: swap_def hkeq anot) |
|
547 |
show "insert (?hm m) A = ?hm ` {i. i < Suc m}" |
|
548 |
using aA hkeq nSuc klessn |
|
549 |
by (auto simp add: swap_def image_less_Suc fun_upd_image |
|
550 |
less_Suc_eq inj_on_image_set_diff [OF inj_on]) |
|
15479 | 551 |
qed |
552 |
qed |
|
553 |
qed |
|
554 |
||
15392 | 555 |
lemma (in ACf) foldSet_determ_aux: |
15510 | 556 |
"!!A x x' h. \<lbrakk> A = h`{i::nat. i<n}; inj_on h {i. i<n}; |
557 |
(A,x) : foldSet f g z; (A,x') : foldSet f g z \<rbrakk> |
|
15392 | 558 |
\<Longrightarrow> x' = x" |
15510 | 559 |
proof (induct n rule: less_induct) |
560 |
case (less n) |
|
561 |
have IH: "!!m h A x x'. |
|
562 |
\<lbrakk>m<n; A = h ` {i. i<m}; inj_on h {i. i<m}; |
|
563 |
(A,x) \<in> foldSet f g z; (A, x') \<in> foldSet f g z\<rbrakk> \<Longrightarrow> x' = x" . |
|
564 |
have Afoldx: "(A,x) \<in> foldSet f g z" and Afoldx': "(A,x') \<in> foldSet f g z" |
|
565 |
and A: "A = h`{i. i<n}" and injh: "inj_on h {i. i<n}" . |
|
566 |
show ?case |
|
567 |
proof (rule foldSet.cases [OF Afoldx]) |
|
568 |
assume "(A, x) = ({}, z)" |
|
569 |
with Afoldx' show "x' = x" by blast |
|
15392 | 570 |
next |
15510 | 571 |
fix B b u |
572 |
assume "(A,x) = (insert b B, g b \<cdot> u)" and notinB: "b \<notin> B" |
|
573 |
and Bu: "(B,u) \<in> foldSet f g z" |
|
574 |
hence AbB: "A = insert b B" and x: "x = g b \<cdot> u" by auto |
|
575 |
show "x'=x" |
|
576 |
proof (rule foldSet.cases [OF Afoldx']) |
|
577 |
assume "(A, x') = ({}, z)" |
|
578 |
with AbB show "x' = x" by blast |
|
15392 | 579 |
next |
15510 | 580 |
fix C c v |
581 |
assume "(A,x') = (insert c C, g c \<cdot> v)" and notinC: "c \<notin> C" |
|
582 |
and Cv: "(C,v) \<in> foldSet f g z" |
|
583 |
hence AcC: "A = insert c C" and x': "x' = g c \<cdot> v" by auto |
|
584 |
from A AbB have Beq: "insert b B = h`{i. i<n}" by simp |
|
585 |
from insert_inj_onE [OF Beq notinB injh] |
|
586 |
obtain hB mB where inj_onB: "inj_on hB {i. i < mB}" |
|
587 |
and Beq: "B = hB ` {i. i < mB}" |
|
588 |
and lessB: "mB < n" by auto |
|
589 |
from A AcC have Ceq: "insert c C = h`{i. i<n}" by simp |
|
590 |
from insert_inj_onE [OF Ceq notinC injh] |
|
591 |
obtain hC mC where inj_onC: "inj_on hC {i. i < mC}" |
|
592 |
and Ceq: "C = hC ` {i. i < mC}" |
|
593 |
and lessC: "mC < n" by auto |
|
594 |
show "x'=x" |
|
15392 | 595 |
proof cases |
15510 | 596 |
assume "b=c" |
597 |
then moreover have "B = C" using AbB AcC notinB notinC by auto |
|
598 |
ultimately show ?thesis using Bu Cv x x' IH[OF lessC Ceq inj_onC] |
|
599 |
by auto |
|
15392 | 600 |
next |
601 |
assume diff: "b \<noteq> c" |
|
602 |
let ?D = "B - {c}" |
|
603 |
have B: "B = insert c ?D" and C: "C = insert b ?D" |
|
15510 | 604 |
using AbB AcC notinB notinC diff by(blast elim!:equalityE)+ |
15402 | 605 |
have "finite A" by(rule foldSet_imp_finite[OF Afoldx]) |
15510 | 606 |
with AbB have "finite ?D" by simp |
15480 | 607 |
then obtain d where Dfoldd: "(?D,d) \<in> foldSet f g z" |
17589 | 608 |
using finite_imp_foldSet by iprover |
15506 | 609 |
moreover have cinB: "c \<in> B" using B by auto |
15480 | 610 |
ultimately have "(B,g c \<cdot> d) \<in> foldSet f g z" |
15392 | 611 |
by(rule Diff1_foldSet) |
15510 | 612 |
hence "g c \<cdot> d = u" by (rule IH [OF lessB Beq inj_onB Bu]) |
613 |
moreover have "g b \<cdot> d = v" |
|
614 |
proof (rule IH[OF lessC Ceq inj_onC Cv]) |
|
615 |
show "(C, g b \<cdot> d) \<in> foldSet f g z" using C notinB Dfoldd |
|
15392 | 616 |
by fastsimp |
617 |
qed |
|
15510 | 618 |
ultimately show ?thesis using x x' by (auto simp: AC) |
15392 | 619 |
qed |
620 |
qed |
|
621 |
qed |
|
622 |
qed |
|
623 |
||
624 |
||
625 |
lemma (in ACf) foldSet_determ: |
|
15510 | 626 |
"(A,x) : foldSet f g z ==> (A,y) : foldSet f g z ==> y = x" |
627 |
apply (frule foldSet_imp_finite [THEN finite_imp_nat_seg_image_inj_on]) |
|
628 |
apply (blast intro: foldSet_determ_aux [rule_format]) |
|
15392 | 629 |
done |
630 |
||
15480 | 631 |
lemma (in ACf) fold_equality: "(A, y) : foldSet f g z ==> fold f g z A = y" |
15392 | 632 |
by (unfold fold_def) (blast intro: foldSet_determ) |
633 |
||
634 |
text{* The base case for @{text fold}: *} |
|
635 |
||
15480 | 636 |
lemma fold_empty [simp]: "fold f g z {} = z" |
15392 | 637 |
by (unfold fold_def) blast |
638 |
||
639 |
lemma (in ACf) fold_insert_aux: "x \<notin> A ==> |
|
15480 | 640 |
((insert x A, v) : foldSet f g z) = |
641 |
(EX y. (A, y) : foldSet f g z & v = f (g x) y)" |
|
15392 | 642 |
apply auto |
643 |
apply (rule_tac A1 = A and f1 = f in finite_imp_foldSet [THEN exE]) |
|
644 |
apply (fastsimp dest: foldSet_imp_finite) |
|
645 |
apply (blast intro: foldSet_determ) |
|
646 |
done |
|
647 |
||
648 |
text{* The recursion equation for @{text fold}: *} |
|
649 |
||
650 |
lemma (in ACf) fold_insert[simp]: |
|
15480 | 651 |
"finite A ==> x \<notin> A ==> fold f g z (insert x A) = f (g x) (fold f g z A)" |
15392 | 652 |
apply (unfold fold_def) |
653 |
apply (simp add: fold_insert_aux) |
|
654 |
apply (rule the_equality) |
|
655 |
apply (auto intro: finite_imp_foldSet |
|
656 |
cong add: conj_cong simp add: fold_def [symmetric] fold_equality) |
|
657 |
done |
|
658 |
||
15535 | 659 |
lemma (in ACf) fold_rec: |
660 |
assumes fin: "finite A" and a: "a:A" |
|
661 |
shows "fold f g z A = f (g a) (fold f g z (A - {a}))" |
|
662 |
proof- |
|
663 |
have A: "A = insert a (A - {a})" using a by blast |
|
664 |
hence "fold f g z A = fold f g z (insert a (A - {a}))" by simp |
|
665 |
also have "\<dots> = f (g a) (fold f g z (A - {a}))" |
|
666 |
by(rule fold_insert) (simp add:fin)+ |
|
667 |
finally show ?thesis . |
|
668 |
qed |
|
669 |
||
15392 | 670 |
|
15480 | 671 |
text{* A simplified version for idempotent functions: *} |
672 |
||
15509 | 673 |
lemma (in ACIf) fold_insert_idem: |
15480 | 674 |
assumes finA: "finite A" |
15508 | 675 |
shows "fold f g z (insert a A) = g a \<cdot> fold f g z A" |
15480 | 676 |
proof cases |
677 |
assume "a \<in> A" |
|
678 |
then obtain B where A: "A = insert a B" and disj: "a \<notin> B" |
|
679 |
by(blast dest: mk_disjoint_insert) |
|
680 |
show ?thesis |
|
681 |
proof - |
|
682 |
from finA A have finB: "finite B" by(blast intro: finite_subset) |
|
683 |
have "fold f g z (insert a A) = fold f g z (insert a B)" using A by simp |
|
684 |
also have "\<dots> = (g a) \<cdot> (fold f g z B)" |
|
15506 | 685 |
using finB disj by simp |
15480 | 686 |
also have "\<dots> = g a \<cdot> fold f g z A" |
687 |
using A finB disj by(simp add:idem assoc[symmetric]) |
|
688 |
finally show ?thesis . |
|
689 |
qed |
|
690 |
next |
|
691 |
assume "a \<notin> A" |
|
692 |
with finA show ?thesis by simp |
|
693 |
qed |
|
694 |
||
15484 | 695 |
lemma (in ACIf) foldI_conv_id: |
696 |
"finite A \<Longrightarrow> fold f g z A = fold f id z (g ` A)" |
|
15509 | 697 |
by(erule finite_induct)(simp_all add: fold_insert_idem del: fold_insert) |
15484 | 698 |
|
15392 | 699 |
subsubsection{*Lemmas about @{text fold}*} |
700 |
||
701 |
lemma (in ACf) fold_commute: |
|
15487 | 702 |
"finite A ==> (!!z. f x (fold f g z A) = fold f g (f x z) A)" |
21575 | 703 |
apply (induct set: Finites) |
704 |
apply simp |
|
15487 | 705 |
apply (simp add: left_commute [of x]) |
15392 | 706 |
done |
707 |
||
708 |
lemma (in ACf) fold_nest_Un_Int: |
|
709 |
"finite A ==> finite B |
|
15480 | 710 |
==> fold f g (fold f g z B) A = fold f g (fold f g z (A Int B)) (A Un B)" |
21575 | 711 |
apply (induct set: Finites) |
712 |
apply simp |
|
15392 | 713 |
apply (simp add: fold_commute Int_insert_left insert_absorb) |
714 |
done |
|
715 |
||
716 |
lemma (in ACf) fold_nest_Un_disjoint: |
|
717 |
"finite A ==> finite B ==> A Int B = {} |
|
15480 | 718 |
==> fold f g z (A Un B) = fold f g (fold f g z B) A" |
15392 | 719 |
by (simp add: fold_nest_Un_Int) |
720 |
||
721 |
lemma (in ACf) fold_reindex: |
|
15487 | 722 |
assumes fin: "finite A" |
723 |
shows "inj_on h A \<Longrightarrow> fold f g z (h ` A) = fold f (g \<circ> h) z A" |
|
15506 | 724 |
using fin apply induct |
15392 | 725 |
apply simp |
726 |
apply simp |
|
727 |
done |
|
728 |
||
729 |
lemma (in ACe) fold_Un_Int: |
|
730 |
"finite A ==> finite B ==> |
|
731 |
fold f g e A \<cdot> fold f g e B = |
|
732 |
fold f g e (A Un B) \<cdot> fold f g e (A Int B)" |
|
733 |
apply (induct set: Finites, simp) |
|
734 |
apply (simp add: AC insert_absorb Int_insert_left) |
|
735 |
done |
|
736 |
||
737 |
corollary (in ACe) fold_Un_disjoint: |
|
738 |
"finite A ==> finite B ==> A Int B = {} ==> |
|
739 |
fold f g e (A Un B) = fold f g e A \<cdot> fold f g e B" |
|
740 |
by (simp add: fold_Un_Int) |
|
741 |
||
742 |
lemma (in ACe) fold_UN_disjoint: |
|
743 |
"\<lbrakk> finite I; ALL i:I. finite (A i); |
|
744 |
ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {} \<rbrakk> |
|
745 |
\<Longrightarrow> fold f g e (UNION I A) = |
|
746 |
fold f (%i. fold f g e (A i)) e I" |
|
747 |
apply (induct set: Finites, simp, atomize) |
|
748 |
apply (subgoal_tac "ALL i:F. x \<noteq> i") |
|
749 |
prefer 2 apply blast |
|
750 |
apply (subgoal_tac "A x Int UNION F A = {}") |
|
751 |
prefer 2 apply blast |
|
752 |
apply (simp add: fold_Un_disjoint) |
|
753 |
done |
|
754 |
||
15506 | 755 |
text{*Fusion theorem, as described in |
756 |
Graham Hutton's paper, |
|
757 |
A Tutorial on the Universality and Expressiveness of Fold, |
|
758 |
JFP 9:4 (355-372), 1999.*} |
|
759 |
lemma (in ACf) fold_fusion: |
|
760 |
includes ACf g |
|
761 |
shows |
|
762 |
"finite A ==> |
|
763 |
(!!x y. h (g x y) = f x (h y)) ==> |
|
764 |
h (fold g j w A) = fold f j (h w) A" |
|
21575 | 765 |
by (induct set: Finites) simp_all |
15506 | 766 |
|
15392 | 767 |
lemma (in ACf) fold_cong: |
15480 | 768 |
"finite A \<Longrightarrow> (!!x. x:A ==> g x = h x) ==> fold f g z A = fold f h z A" |
769 |
apply (subgoal_tac "ALL C. C <= A --> (ALL x:C. g x = h x) --> fold f g z C = fold f h z C") |
|
15392 | 770 |
apply simp |
771 |
apply (erule finite_induct, simp) |
|
772 |
apply (simp add: subset_insert_iff, clarify) |
|
773 |
apply (subgoal_tac "finite C") |
|
774 |
prefer 2 apply (blast dest: finite_subset [COMP swap_prems_rl]) |
|
775 |
apply (subgoal_tac "C = insert x (C - {x})") |
|
776 |
prefer 2 apply blast |
|
777 |
apply (erule ssubst) |
|
778 |
apply (drule spec) |
|
779 |
apply (erule (1) notE impE) |
|
780 |
apply (simp add: Ball_def del: insert_Diff_single) |
|
781 |
done |
|
782 |
||
783 |
lemma (in ACe) fold_Sigma: "finite A ==> ALL x:A. finite (B x) ==> |
|
784 |
fold f (%x. fold f (g x) e (B x)) e A = |
|
785 |
fold f (split g) e (SIGMA x:A. B x)" |
|
786 |
apply (subst Sigma_def) |
|
15506 | 787 |
apply (subst fold_UN_disjoint, assumption, simp) |
15392 | 788 |
apply blast |
789 |
apply (erule fold_cong) |
|
15506 | 790 |
apply (subst fold_UN_disjoint, simp, simp) |
15392 | 791 |
apply blast |
15506 | 792 |
apply simp |
15392 | 793 |
done |
794 |
||
795 |
lemma (in ACe) fold_distrib: "finite A \<Longrightarrow> |
|
796 |
fold f (%x. f (g x) (h x)) e A = f (fold f g e A) (fold f h e A)" |
|
15506 | 797 |
apply (erule finite_induct, simp) |
15392 | 798 |
apply (simp add:AC) |
799 |
done |
|
800 |
||
801 |
||
15402 | 802 |
subsection {* Generalized summation over a set *} |
803 |
||
804 |
constdefs |
|
805 |
setsum :: "('a => 'b) => 'a set => 'b::comm_monoid_add" |
|
806 |
"setsum f A == if finite A then fold (op +) f 0 A else 0" |
|
807 |
||
19535 | 808 |
abbreviation |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21249
diff
changeset
|
809 |
Setsum ("\<Sum>_" [1000] 999) where |
19535 | 810 |
"\<Sum>A == setsum (%x. x) A" |
811 |
||
15402 | 812 |
text{* Now: lot's of fancy syntax. First, @{term "setsum (%x. e) A"} is |
813 |
written @{text"\<Sum>x\<in>A. e"}. *} |
|
814 |
||
815 |
syntax |
|
17189 | 816 |
"_setsum" :: "pttrn => 'a set => 'b => 'b::comm_monoid_add" ("(3SUM _:_. _)" [0, 51, 10] 10) |
15402 | 817 |
syntax (xsymbols) |
17189 | 818 |
"_setsum" :: "pttrn => 'a set => 'b => 'b::comm_monoid_add" ("(3\<Sum>_\<in>_. _)" [0, 51, 10] 10) |
15402 | 819 |
syntax (HTML output) |
17189 | 820 |
"_setsum" :: "pttrn => 'a set => 'b => 'b::comm_monoid_add" ("(3\<Sum>_\<in>_. _)" [0, 51, 10] 10) |
15402 | 821 |
|
822 |
translations -- {* Beware of argument permutation! *} |
|
823 |
"SUM i:A. b" == "setsum (%i. b) A" |
|
824 |
"\<Sum>i\<in>A. b" == "setsum (%i. b) A" |
|
825 |
||
826 |
text{* Instead of @{term"\<Sum>x\<in>{x. P}. e"} we introduce the shorter |
|
827 |
@{text"\<Sum>x|P. e"}. *} |
|
828 |
||
829 |
syntax |
|
17189 | 830 |
"_qsetsum" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3SUM _ |/ _./ _)" [0,0,10] 10) |
15402 | 831 |
syntax (xsymbols) |
17189 | 832 |
"_qsetsum" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3\<Sum>_ | (_)./ _)" [0,0,10] 10) |
15402 | 833 |
syntax (HTML output) |
17189 | 834 |
"_qsetsum" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3\<Sum>_ | (_)./ _)" [0,0,10] 10) |
15402 | 835 |
|
836 |
translations |
|
837 |
"SUM x|P. t" => "setsum (%x. t) {x. P}" |
|
838 |
"\<Sum>x|P. t" => "setsum (%x. t) {x. P}" |
|
839 |
||
840 |
print_translation {* |
|
841 |
let |
|
19535 | 842 |
fun setsum_tr' [Abs(x,Tx,t), Const ("Collect",_) $ Abs(y,Ty,P)] = |
843 |
if x<>y then raise Match |
|
844 |
else let val x' = Syntax.mark_bound x |
|
845 |
val t' = subst_bound(x',t) |
|
846 |
val P' = subst_bound(x',P) |
|
847 |
in Syntax.const "_qsetsum" $ Syntax.mark_bound x $ P' $ t' end |
|
848 |
in [("setsum", setsum_tr')] end |
|
15402 | 849 |
*} |
850 |
||
19535 | 851 |
|
15402 | 852 |
lemma setsum_empty [simp]: "setsum f {} = 0" |
853 |
by (simp add: setsum_def) |
|
854 |
||
855 |
lemma setsum_insert [simp]: |
|
856 |
"finite F ==> a \<notin> F ==> setsum f (insert a F) = f a + setsum f F" |
|
15765 | 857 |
by (simp add: setsum_def) |
15402 | 858 |
|
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
859 |
lemma setsum_infinite [simp]: "~ finite A ==> setsum f A = 0" |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
860 |
by (simp add: setsum_def) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
861 |
|
15402 | 862 |
lemma setsum_reindex: |
863 |
"inj_on f B ==> setsum h (f ` B) = setsum (h \<circ> f) B" |
|
15765 | 864 |
by(auto simp add: setsum_def AC_add.fold_reindex dest!:finite_imageD) |
15402 | 865 |
|
866 |
lemma setsum_reindex_id: |
|
867 |
"inj_on f B ==> setsum f B = setsum id (f ` B)" |
|
868 |
by (auto simp add: setsum_reindex) |
|
869 |
||
870 |
lemma setsum_cong: |
|
871 |
"A = B ==> (!!x. x:B ==> f x = g x) ==> setsum f A = setsum g B" |
|
15765 | 872 |
by(fastsimp simp: setsum_def intro: AC_add.fold_cong) |
15402 | 873 |
|
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16632
diff
changeset
|
874 |
lemma strong_setsum_cong[cong]: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16632
diff
changeset
|
875 |
"A = B ==> (!!x. x:B =simp=> f x = g x) |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16632
diff
changeset
|
876 |
==> setsum (%x. f x) A = setsum (%x. g x) B" |
16632
ad2895beef79
Added strong_setsum_cong and strong_setprod_cong.
berghofe
parents:
16550
diff
changeset
|
877 |
by(fastsimp simp: simp_implies_def setsum_def intro: AC_add.fold_cong) |
ad2895beef79
Added strong_setsum_cong and strong_setprod_cong.
berghofe
parents:
16550
diff
changeset
|
878 |
|
15554 | 879 |
lemma setsum_cong2: "\<lbrakk>\<And>x. x \<in> A \<Longrightarrow> f x = g x\<rbrakk> \<Longrightarrow> setsum f A = setsum g A"; |
880 |
by (rule setsum_cong[OF refl], auto); |
|
881 |
||
15402 | 882 |
lemma setsum_reindex_cong: |
15554 | 883 |
"[|inj_on f A; B = f ` A; !!a. a:A \<Longrightarrow> g a = h (f a)|] |
15402 | 884 |
==> setsum h B = setsum g A" |
885 |
by (simp add: setsum_reindex cong: setsum_cong) |
|
886 |
||
15542 | 887 |
lemma setsum_0[simp]: "setsum (%i. 0) A = 0" |
15402 | 888 |
apply (clarsimp simp: setsum_def) |
15765 | 889 |
apply (erule finite_induct, auto) |
15402 | 890 |
done |
891 |
||
15543 | 892 |
lemma setsum_0': "ALL a:A. f a = 0 ==> setsum f A = 0" |
893 |
by(simp add:setsum_cong) |
|
15402 | 894 |
|
895 |
lemma setsum_Un_Int: "finite A ==> finite B ==> |
|
896 |
setsum g (A Un B) + setsum g (A Int B) = setsum g A + setsum g B" |
|
897 |
-- {* The reversed orientation looks more natural, but LOOPS as a simprule! *} |
|
15765 | 898 |
by(simp add: setsum_def AC_add.fold_Un_Int [symmetric]) |
15402 | 899 |
|
900 |
lemma setsum_Un_disjoint: "finite A ==> finite B |
|
901 |
==> A Int B = {} ==> setsum g (A Un B) = setsum g A + setsum g B" |
|
902 |
by (subst setsum_Un_Int [symmetric], auto) |
|
903 |
||
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
904 |
(*But we can't get rid of finite I. If infinite, although the rhs is 0, |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
905 |
the lhs need not be, since UNION I A could still be finite.*) |
15402 | 906 |
lemma setsum_UN_disjoint: |
907 |
"finite I ==> (ALL i:I. finite (A i)) ==> |
|
908 |
(ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {}) ==> |
|
909 |
setsum f (UNION I A) = (\<Sum>i\<in>I. setsum f (A i))" |
|
15765 | 910 |
by(simp add: setsum_def AC_add.fold_UN_disjoint cong: setsum_cong) |
15402 | 911 |
|
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
912 |
text{*No need to assume that @{term C} is finite. If infinite, the rhs is |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
913 |
directly 0, and @{term "Union C"} is also infinite, hence the lhs is also 0.*} |
15402 | 914 |
lemma setsum_Union_disjoint: |
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
915 |
"[| (ALL A:C. finite A); |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
916 |
(ALL A:C. ALL B:C. A \<noteq> B --> A Int B = {}) |] |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
917 |
==> setsum f (Union C) = setsum (setsum f) C" |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
918 |
apply (cases "finite C") |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
919 |
prefer 2 apply (force dest: finite_UnionD simp add: setsum_def) |
15402 | 920 |
apply (frule setsum_UN_disjoint [of C id f]) |
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
921 |
apply (unfold Union_def id_def, assumption+) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
922 |
done |
15402 | 923 |
|
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
924 |
(*But we can't get rid of finite A. If infinite, although the lhs is 0, |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
925 |
the rhs need not be, since SIGMA A B could still be finite.*) |
15402 | 926 |
lemma setsum_Sigma: "finite A ==> ALL x:A. finite (B x) ==> |
17189 | 927 |
(\<Sum>x\<in>A. (\<Sum>y\<in>B x. f x y)) = (\<Sum>(x,y)\<in>(SIGMA x:A. B x). f x y)" |
15765 | 928 |
by(simp add:setsum_def AC_add.fold_Sigma split_def cong:setsum_cong) |
15402 | 929 |
|
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
930 |
text{*Here we can eliminate the finiteness assumptions, by cases.*} |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
931 |
lemma setsum_cartesian_product: |
17189 | 932 |
"(\<Sum>x\<in>A. (\<Sum>y\<in>B. f x y)) = (\<Sum>(x,y) \<in> A <*> B. f x y)" |
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
933 |
apply (cases "finite A") |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
934 |
apply (cases "finite B") |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
935 |
apply (simp add: setsum_Sigma) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
936 |
apply (cases "A={}", simp) |
15543 | 937 |
apply (simp) |
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
938 |
apply (auto simp add: setsum_def |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
939 |
dest: finite_cartesian_productD1 finite_cartesian_productD2) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
940 |
done |
15402 | 941 |
|
942 |
lemma setsum_addf: "setsum (%x. f x + g x) A = (setsum f A + setsum g A)" |
|
15765 | 943 |
by(simp add:setsum_def AC_add.fold_distrib) |
15402 | 944 |
|
945 |
||
946 |
subsubsection {* Properties in more restricted classes of structures *} |
|
947 |
||
948 |
lemma setsum_SucD: "setsum f A = Suc n ==> EX a:A. 0 < f a" |
|
949 |
apply (case_tac "finite A") |
|
950 |
prefer 2 apply (simp add: setsum_def) |
|
951 |
apply (erule rev_mp) |
|
952 |
apply (erule finite_induct, auto) |
|
953 |
done |
|
954 |
||
955 |
lemma setsum_eq_0_iff [simp]: |
|
956 |
"finite F ==> (setsum f F = 0) = (ALL a:F. f a = (0::nat))" |
|
957 |
by (induct set: Finites) auto |
|
958 |
||
959 |
lemma setsum_Un_nat: "finite A ==> finite B ==> |
|
960 |
(setsum f (A Un B) :: nat) = setsum f A + setsum f B - setsum f (A Int B)" |
|
961 |
-- {* For the natural numbers, we have subtraction. *} |
|
962 |
by (subst setsum_Un_Int [symmetric], auto simp add: ring_eq_simps) |
|
963 |
||
964 |
lemma setsum_Un: "finite A ==> finite B ==> |
|
965 |
(setsum f (A Un B) :: 'a :: ab_group_add) = |
|
966 |
setsum f A + setsum f B - setsum f (A Int B)" |
|
967 |
by (subst setsum_Un_Int [symmetric], auto simp add: ring_eq_simps) |
|
968 |
||
969 |
lemma setsum_diff1_nat: "(setsum f (A - {a}) :: nat) = |
|
970 |
(if a:A then setsum f A - f a else setsum f A)" |
|
971 |
apply (case_tac "finite A") |
|
972 |
prefer 2 apply (simp add: setsum_def) |
|
973 |
apply (erule finite_induct) |
|
974 |
apply (auto simp add: insert_Diff_if) |
|
975 |
apply (drule_tac a = a in mk_disjoint_insert, auto) |
|
976 |
done |
|
977 |
||
978 |
lemma setsum_diff1: "finite A \<Longrightarrow> |
|
979 |
(setsum f (A - {a}) :: ('a::ab_group_add)) = |
|
980 |
(if a:A then setsum f A - f a else setsum f A)" |
|
981 |
by (erule finite_induct) (auto simp add: insert_Diff_if) |
|
982 |
||
15552
8ab8e425410b
added setsum_diff1' which holds in more general cases than setsum_diff1
obua
parents:
15543
diff
changeset
|
983 |
lemma setsum_diff1'[rule_format]: "finite A \<Longrightarrow> a \<in> A \<longrightarrow> (\<Sum> x \<in> A. f x) = f a + (\<Sum> x \<in> (A - {a}). f x)" |
8ab8e425410b
added setsum_diff1' which holds in more general cases than setsum_diff1
obua
parents:
15543
diff
changeset
|
984 |
apply (erule finite_induct[where F=A and P="% A. (a \<in> A \<longrightarrow> (\<Sum> x \<in> A. f x) = f a + (\<Sum> x \<in> (A - {a}). f x))"]) |
8ab8e425410b
added setsum_diff1' which holds in more general cases than setsum_diff1
obua
parents:
15543
diff
changeset
|
985 |
apply (auto simp add: insert_Diff_if add_ac) |
8ab8e425410b
added setsum_diff1' which holds in more general cases than setsum_diff1
obua
parents:
15543
diff
changeset
|
986 |
done |
8ab8e425410b
added setsum_diff1' which holds in more general cases than setsum_diff1
obua
parents:
15543
diff
changeset
|
987 |
|
15402 | 988 |
(* By Jeremy Siek: *) |
989 |
||
990 |
lemma setsum_diff_nat: |
|
19535 | 991 |
assumes "finite B" |
992 |
and "B \<subseteq> A" |
|
993 |
shows "(setsum f (A - B) :: nat) = (setsum f A) - (setsum f B)" |
|
994 |
using prems |
|
995 |
proof induct |
|
15402 | 996 |
show "setsum f (A - {}) = (setsum f A) - (setsum f {})" by simp |
997 |
next |
|
998 |
fix F x assume finF: "finite F" and xnotinF: "x \<notin> F" |
|
999 |
and xFinA: "insert x F \<subseteq> A" |
|
1000 |
and IH: "F \<subseteq> A \<Longrightarrow> setsum f (A - F) = setsum f A - setsum f F" |
|
1001 |
from xnotinF xFinA have xinAF: "x \<in> (A - F)" by simp |
|
1002 |
from xinAF have A: "setsum f ((A - F) - {x}) = setsum f (A - F) - f x" |
|
1003 |
by (simp add: setsum_diff1_nat) |
|
1004 |
from xFinA have "F \<subseteq> A" by simp |
|
1005 |
with IH have "setsum f (A - F) = setsum f A - setsum f F" by simp |
|
1006 |
with A have B: "setsum f ((A - F) - {x}) = setsum f A - setsum f F - f x" |
|
1007 |
by simp |
|
1008 |
from xnotinF have "A - insert x F = (A - F) - {x}" by auto |
|
1009 |
with B have C: "setsum f (A - insert x F) = setsum f A - setsum f F - f x" |
|
1010 |
by simp |
|
1011 |
from finF xnotinF have "setsum f (insert x F) = setsum f F + f x" by simp |
|
1012 |
with C have "setsum f (A - insert x F) = setsum f A - setsum f (insert x F)" |
|
1013 |
by simp |
|
1014 |
thus "setsum f (A - insert x F) = setsum f A - setsum f (insert x F)" by simp |
|
1015 |
qed |
|
1016 |
||
1017 |
lemma setsum_diff: |
|
1018 |
assumes le: "finite A" "B \<subseteq> A" |
|
1019 |
shows "setsum f (A - B) = setsum f A - ((setsum f B)::('a::ab_group_add))" |
|
1020 |
proof - |
|
1021 |
from le have finiteB: "finite B" using finite_subset by auto |
|
1022 |
show ?thesis using finiteB le |
|
21575 | 1023 |
proof induct |
19535 | 1024 |
case empty |
1025 |
thus ?case by auto |
|
1026 |
next |
|
1027 |
case (insert x F) |
|
1028 |
thus ?case using le finiteB |
|
1029 |
by (simp add: Diff_insert[where a=x and B=F] setsum_diff1 insert_absorb) |
|
15402 | 1030 |
qed |
19535 | 1031 |
qed |
15402 | 1032 |
|
1033 |
lemma setsum_mono: |
|
1034 |
assumes le: "\<And>i. i\<in>K \<Longrightarrow> f (i::'a) \<le> ((g i)::('b::{comm_monoid_add, pordered_ab_semigroup_add}))" |
|
1035 |
shows "(\<Sum>i\<in>K. f i) \<le> (\<Sum>i\<in>K. g i)" |
|
1036 |
proof (cases "finite K") |
|
1037 |
case True |
|
1038 |
thus ?thesis using le |
|
19535 | 1039 |
proof induct |
15402 | 1040 |
case empty |
1041 |
thus ?case by simp |
|
1042 |
next |
|
1043 |
case insert |
|
19535 | 1044 |
thus ?case using add_mono by fastsimp |
15402 | 1045 |
qed |
1046 |
next |
|
1047 |
case False |
|
1048 |
thus ?thesis |
|
1049 |
by (simp add: setsum_def) |
|
1050 |
qed |
|
1051 |
||
15554 | 1052 |
lemma setsum_strict_mono: |
19535 | 1053 |
fixes f :: "'a \<Rightarrow> 'b::{pordered_cancel_ab_semigroup_add,comm_monoid_add}" |
1054 |
assumes "finite A" "A \<noteq> {}" |
|
1055 |
and "!!x. x:A \<Longrightarrow> f x < g x" |
|
1056 |
shows "setsum f A < setsum g A" |
|
1057 |
using prems |
|
15554 | 1058 |
proof (induct rule: finite_ne_induct) |
1059 |
case singleton thus ?case by simp |
|
1060 |
next |
|
1061 |
case insert thus ?case by (auto simp: add_strict_mono) |
|
1062 |
qed |
|
1063 |
||
15535 | 1064 |
lemma setsum_negf: |
19535 | 1065 |
"setsum (%x. - (f x)::'a::ab_group_add) A = - setsum f A" |
15535 | 1066 |
proof (cases "finite A") |
21575 | 1067 |
case True thus ?thesis by (induct set: Finites) auto |
15535 | 1068 |
next |
1069 |
case False thus ?thesis by (simp add: setsum_def) |
|
1070 |
qed |
|
15402 | 1071 |
|
15535 | 1072 |
lemma setsum_subtractf: |
19535 | 1073 |
"setsum (%x. ((f x)::'a::ab_group_add) - g x) A = |
1074 |
setsum f A - setsum g A" |
|
15535 | 1075 |
proof (cases "finite A") |
1076 |
case True thus ?thesis by (simp add: diff_minus setsum_addf setsum_negf) |
|
1077 |
next |
|
1078 |
case False thus ?thesis by (simp add: setsum_def) |
|
1079 |
qed |
|
15402 | 1080 |
|
15535 | 1081 |
lemma setsum_nonneg: |
19535 | 1082 |
assumes nn: "\<forall>x\<in>A. (0::'a::{pordered_ab_semigroup_add,comm_monoid_add}) \<le> f x" |
1083 |
shows "0 \<le> setsum f A" |
|
15535 | 1084 |
proof (cases "finite A") |
1085 |
case True thus ?thesis using nn |
|
21575 | 1086 |
proof induct |
19535 | 1087 |
case empty then show ?case by simp |
1088 |
next |
|
1089 |
case (insert x F) |
|
1090 |
then have "0 + 0 \<le> f x + setsum f F" by (blast intro: add_mono) |
|
1091 |
with insert show ?case by simp |
|
1092 |
qed |
|
15535 | 1093 |
next |
1094 |
case False thus ?thesis by (simp add: setsum_def) |
|
1095 |
qed |
|
15402 | 1096 |
|
15535 | 1097 |
lemma setsum_nonpos: |
19535 | 1098 |
assumes np: "\<forall>x\<in>A. f x \<le> (0::'a::{pordered_ab_semigroup_add,comm_monoid_add})" |
1099 |
shows "setsum f A \<le> 0" |
|
15535 | 1100 |
proof (cases "finite A") |
1101 |
case True thus ?thesis using np |
|
21575 | 1102 |
proof induct |
19535 | 1103 |
case empty then show ?case by simp |
1104 |
next |
|
1105 |
case (insert x F) |
|
1106 |
then have "f x + setsum f F \<le> 0 + 0" by (blast intro: add_mono) |
|
1107 |
with insert show ?case by simp |
|
1108 |
qed |
|
15535 | 1109 |
next |
1110 |
case False thus ?thesis by (simp add: setsum_def) |
|
1111 |
qed |
|
15402 | 1112 |
|
15539 | 1113 |
lemma setsum_mono2: |
1114 |
fixes f :: "'a \<Rightarrow> 'b :: {pordered_ab_semigroup_add_imp_le,comm_monoid_add}" |
|
1115 |
assumes fin: "finite B" and sub: "A \<subseteq> B" and nn: "\<And>b. b \<in> B-A \<Longrightarrow> 0 \<le> f b" |
|
1116 |
shows "setsum f A \<le> setsum f B" |
|
1117 |
proof - |
|
1118 |
have "setsum f A \<le> setsum f A + setsum f (B-A)" |
|
1119 |
by(simp add: add_increasing2[OF setsum_nonneg] nn Ball_def) |
|
1120 |
also have "\<dots> = setsum f (A \<union> (B-A))" using fin finite_subset[OF sub fin] |
|
1121 |
by (simp add:setsum_Un_disjoint del:Un_Diff_cancel) |
|
1122 |
also have "A \<union> (B-A) = B" using sub by blast |
|
1123 |
finally show ?thesis . |
|
1124 |
qed |
|
15542 | 1125 |
|
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1126 |
lemma setsum_mono3: "finite B ==> A <= B ==> |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1127 |
ALL x: B - A. |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1128 |
0 <= ((f x)::'a::{comm_monoid_add,pordered_ab_semigroup_add}) ==> |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1129 |
setsum f A <= setsum f B" |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1130 |
apply (subgoal_tac "setsum f B = setsum f A + setsum f (B - A)") |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1131 |
apply (erule ssubst) |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1132 |
apply (subgoal_tac "setsum f A + 0 <= setsum f A + setsum f (B - A)") |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1133 |
apply simp |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1134 |
apply (rule add_left_mono) |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1135 |
apply (erule setsum_nonneg) |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1136 |
apply (subst setsum_Un_disjoint [THEN sym]) |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1137 |
apply (erule finite_subset, assumption) |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1138 |
apply (rule finite_subset) |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1139 |
prefer 2 |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1140 |
apply assumption |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1141 |
apply auto |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1142 |
apply (rule setsum_cong) |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1143 |
apply auto |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1144 |
done |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1145 |
|
19279 | 1146 |
lemma setsum_right_distrib: |
15402 | 1147 |
fixes f :: "'a => ('b::semiring_0_cancel)" |
1148 |
shows "r * setsum f A = setsum (%n. r * f n) A" |
|
1149 |
proof (cases "finite A") |
|
1150 |
case True |
|
1151 |
thus ?thesis |
|
21575 | 1152 |
proof induct |
15402 | 1153 |
case empty thus ?case by simp |
1154 |
next |
|
1155 |
case (insert x A) thus ?case by (simp add: right_distrib) |
|
1156 |
qed |
|
1157 |
next |
|
1158 |
case False thus ?thesis by (simp add: setsum_def) |
|
1159 |
qed |
|
1160 |
||
17149
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1161 |
lemma setsum_left_distrib: |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1162 |
"setsum f A * (r::'a::semiring_0_cancel) = (\<Sum>n\<in>A. f n * r)" |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1163 |
proof (cases "finite A") |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1164 |
case True |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1165 |
then show ?thesis |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1166 |
proof induct |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1167 |
case empty thus ?case by simp |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1168 |
next |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1169 |
case (insert x A) thus ?case by (simp add: left_distrib) |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1170 |
qed |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1171 |
next |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1172 |
case False thus ?thesis by (simp add: setsum_def) |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1173 |
qed |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1174 |
|
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1175 |
lemma setsum_divide_distrib: |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1176 |
"setsum f A / (r::'a::field) = (\<Sum>n\<in>A. f n / r)" |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1177 |
proof (cases "finite A") |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1178 |
case True |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1179 |
then show ?thesis |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1180 |
proof induct |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1181 |
case empty thus ?case by simp |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1182 |
next |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1183 |
case (insert x A) thus ?case by (simp add: add_divide_distrib) |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1184 |
qed |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1185 |
next |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1186 |
case False thus ?thesis by (simp add: setsum_def) |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1187 |
qed |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1188 |
|
15535 | 1189 |
lemma setsum_abs[iff]: |
15402 | 1190 |
fixes f :: "'a => ('b::lordered_ab_group_abs)" |
1191 |
shows "abs (setsum f A) \<le> setsum (%i. abs(f i)) A" |
|
15535 | 1192 |
proof (cases "finite A") |
1193 |
case True |
|
1194 |
thus ?thesis |
|
21575 | 1195 |
proof induct |
15535 | 1196 |
case empty thus ?case by simp |
1197 |
next |
|
1198 |
case (insert x A) |
|
1199 |
thus ?case by (auto intro: abs_triangle_ineq order_trans) |
|
1200 |
qed |
|
15402 | 1201 |
next |
15535 | 1202 |
case False thus ?thesis by (simp add: setsum_def) |
15402 | 1203 |
qed |
1204 |
||
15535 | 1205 |
lemma setsum_abs_ge_zero[iff]: |
15402 | 1206 |
fixes f :: "'a => ('b::lordered_ab_group_abs)" |
1207 |
shows "0 \<le> setsum (%i. abs(f i)) A" |
|
15535 | 1208 |
proof (cases "finite A") |
1209 |
case True |
|
1210 |
thus ?thesis |
|
21575 | 1211 |
proof induct |
15535 | 1212 |
case empty thus ?case by simp |
1213 |
next |
|
21733 | 1214 |
case (insert x A) thus ?case by (auto simp: add_nonneg_nonneg) |
15535 | 1215 |
qed |
15402 | 1216 |
next |
15535 | 1217 |
case False thus ?thesis by (simp add: setsum_def) |
15402 | 1218 |
qed |
1219 |
||
15539 | 1220 |
lemma abs_setsum_abs[simp]: |
1221 |
fixes f :: "'a => ('b::lordered_ab_group_abs)" |
|
1222 |
shows "abs (\<Sum>a\<in>A. abs(f a)) = (\<Sum>a\<in>A. abs(f a))" |
|
1223 |
proof (cases "finite A") |
|
1224 |
case True |
|
1225 |
thus ?thesis |
|
21575 | 1226 |
proof induct |
15539 | 1227 |
case empty thus ?case by simp |
1228 |
next |
|
1229 |
case (insert a A) |
|
1230 |
hence "\<bar>\<Sum>a\<in>insert a A. \<bar>f a\<bar>\<bar> = \<bar>\<bar>f a\<bar> + (\<Sum>a\<in>A. \<bar>f a\<bar>)\<bar>" by simp |
|
1231 |
also have "\<dots> = \<bar>\<bar>f a\<bar> + \<bar>\<Sum>a\<in>A. \<bar>f a\<bar>\<bar>\<bar>" using insert by simp |
|
16775
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1232 |
also have "\<dots> = \<bar>f a\<bar> + \<bar>\<Sum>a\<in>A. \<bar>f a\<bar>\<bar>" |
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents:
16760
diff
changeset
|
1233 |
by (simp del: abs_of_nonneg) |
15539 | 1234 |
also have "\<dots> = (\<Sum>a\<in>insert a A. \<bar>f a\<bar>)" using insert by simp |
1235 |
finally show ?case . |
|
1236 |
qed |
|
1237 |
next |
|
1238 |
case False thus ?thesis by (simp add: setsum_def) |
|
1239 |
qed |
|
1240 |
||
15402 | 1241 |
|
17149
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1242 |
text {* Commuting outer and inner summation *} |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1243 |
|
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1244 |
lemma swap_inj_on: |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1245 |
"inj_on (%(i, j). (j, i)) (A \<times> B)" |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1246 |
by (unfold inj_on_def) fast |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1247 |
|
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1248 |
lemma swap_product: |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1249 |
"(%(i, j). (j, i)) ` (A \<times> B) = B \<times> A" |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1250 |
by (simp add: split_def image_def) blast |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1251 |
|
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1252 |
lemma setsum_commute: |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1253 |
"(\<Sum>i\<in>A. \<Sum>j\<in>B. f i j) = (\<Sum>j\<in>B. \<Sum>i\<in>A. f i j)" |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1254 |
proof (simp add: setsum_cartesian_product) |
17189 | 1255 |
have "(\<Sum>(x,y) \<in> A <*> B. f x y) = |
1256 |
(\<Sum>(y,x) \<in> (%(i, j). (j, i)) ` (A \<times> B). f x y)" |
|
17149
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1257 |
(is "?s = _") |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1258 |
apply (simp add: setsum_reindex [where f = "%(i, j). (j, i)"] swap_inj_on) |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1259 |
apply (simp add: split_def) |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1260 |
done |
17189 | 1261 |
also have "... = (\<Sum>(y,x)\<in>B \<times> A. f x y)" |
17149
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1262 |
(is "_ = ?t") |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1263 |
apply (simp add: swap_product) |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1264 |
done |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1265 |
finally show "?s = ?t" . |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1266 |
qed |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1267 |
|
19279 | 1268 |
lemma setsum_product: |
1269 |
fixes f :: "nat => ('a::semiring_0_cancel)" |
|
1270 |
shows "setsum f A * setsum g B = (\<Sum>i\<in>A. \<Sum>j\<in>B. f i * g j)" |
|
1271 |
by (simp add: setsum_right_distrib setsum_left_distrib) (rule setsum_commute) |
|
1272 |
||
17149
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
17085
diff
changeset
|
1273 |
|
15402 | 1274 |
subsection {* Generalized product over a set *} |
1275 |
||
1276 |
constdefs |
|
1277 |
setprod :: "('a => 'b) => 'a set => 'b::comm_monoid_mult" |
|
1278 |
"setprod f A == if finite A then fold (op *) f 1 A else 1" |
|
1279 |
||
19535 | 1280 |
abbreviation |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21249
diff
changeset
|
1281 |
Setprod ("\<Prod>_" [1000] 999) where |
19535 | 1282 |
"\<Prod>A == setprod (%x. x) A" |
1283 |
||
15402 | 1284 |
syntax |
17189 | 1285 |
"_setprod" :: "pttrn => 'a set => 'b => 'b::comm_monoid_mult" ("(3PROD _:_. _)" [0, 51, 10] 10) |
15402 | 1286 |
syntax (xsymbols) |
17189 | 1287 |
"_setprod" :: "pttrn => 'a set => 'b => 'b::comm_monoid_mult" ("(3\<Prod>_\<in>_. _)" [0, 51, 10] 10) |
15402 | 1288 |
syntax (HTML output) |
17189 | 1289 |
"_setprod" :: "pttrn => 'a set => 'b => 'b::comm_monoid_mult" ("(3\<Prod>_\<in>_. _)" [0, 51, 10] 10) |
16550 | 1290 |
|
1291 |
translations -- {* Beware of argument permutation! *} |
|
1292 |
"PROD i:A. b" == "setprod (%i. b) A" |
|
1293 |
"\<Prod>i\<in>A. b" == "setprod (%i. b) A" |
|
1294 |
||
1295 |
text{* Instead of @{term"\<Prod>x\<in>{x. P}. e"} we introduce the shorter |
|
1296 |
@{text"\<Prod>x|P. e"}. *} |
|
1297 |
||
1298 |
syntax |
|
17189 | 1299 |
"_qsetprod" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3PROD _ |/ _./ _)" [0,0,10] 10) |
16550 | 1300 |
syntax (xsymbols) |
17189 | 1301 |
"_qsetprod" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3\<Prod>_ | (_)./ _)" [0,0,10] 10) |
16550 | 1302 |
syntax (HTML output) |
17189 | 1303 |
"_qsetprod" :: "pttrn \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3\<Prod>_ | (_)./ _)" [0,0,10] 10) |
16550 | 1304 |
|
15402 | 1305 |
translations |
16550 | 1306 |
"PROD x|P. t" => "setprod (%x. t) {x. P}" |
1307 |
"\<Prod>x|P. t" => "setprod (%x. t) {x. P}" |
|
1308 |
||
15402 | 1309 |
|
1310 |
lemma setprod_empty [simp]: "setprod f {} = 1" |
|
1311 |
by (auto simp add: setprod_def) |
|
1312 |
||
1313 |
lemma setprod_insert [simp]: "[| finite A; a \<notin> A |] ==> |
|
1314 |
setprod f (insert a A) = f a * setprod f A" |
|
19931
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
ballarin
parents:
19870
diff
changeset
|
1315 |
by (simp add: setprod_def) |
15402 | 1316 |
|
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1317 |
lemma setprod_infinite [simp]: "~ finite A ==> setprod f A = 1" |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1318 |
by (simp add: setprod_def) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1319 |
|
15402 | 1320 |
lemma setprod_reindex: |
1321 |
"inj_on f B ==> setprod h (f ` B) = setprod (h \<circ> f) B" |
|
15765 | 1322 |
by(auto simp: setprod_def AC_mult.fold_reindex dest!:finite_imageD) |
15402 | 1323 |
|
1324 |
lemma setprod_reindex_id: "inj_on f B ==> setprod f B = setprod id (f ` B)" |
|
1325 |
by (auto simp add: setprod_reindex) |
|
1326 |
||
1327 |
lemma setprod_cong: |
|
1328 |
"A = B ==> (!!x. x:B ==> f x = g x) ==> setprod f A = setprod g B" |
|
15765 | 1329 |
by(fastsimp simp: setprod_def intro: AC_mult.fold_cong) |
15402 | 1330 |
|
16632
ad2895beef79
Added strong_setsum_cong and strong_setprod_cong.
berghofe
parents:
16550
diff
changeset
|
1331 |
lemma strong_setprod_cong: |
ad2895beef79
Added strong_setsum_cong and strong_setprod_cong.
berghofe
parents:
16550
diff
changeset
|
1332 |
"A = B ==> (!!x. x:B =simp=> f x = g x) ==> setprod f A = setprod g B" |
ad2895beef79
Added strong_setsum_cong and strong_setprod_cong.
berghofe
parents:
16550
diff
changeset
|
1333 |
by(fastsimp simp: simp_implies_def setprod_def intro: AC_mult.fold_cong) |
ad2895beef79
Added strong_setsum_cong and strong_setprod_cong.
berghofe
parents:
16550
diff
changeset
|
1334 |
|
15402 | 1335 |
lemma setprod_reindex_cong: "inj_on f A ==> |
1336 |
B = f ` A ==> g = h \<circ> f ==> setprod h B = setprod g A" |
|
1337 |
by (frule setprod_reindex, simp) |
|
1338 |
||
1339 |
||
1340 |
lemma setprod_1: "setprod (%i. 1) A = 1" |
|
1341 |
apply (case_tac "finite A") |
|
1342 |
apply (erule finite_induct, auto simp add: mult_ac) |
|
1343 |
done |
|
1344 |
||
1345 |
lemma setprod_1': "ALL a:F. f a = 1 ==> setprod f F = 1" |
|
1346 |
apply (subgoal_tac "setprod f F = setprod (%x. 1) F") |
|
1347 |
apply (erule ssubst, rule setprod_1) |
|
1348 |
apply (rule setprod_cong, auto) |
|
1349 |
done |
|
1350 |
||
1351 |
lemma setprod_Un_Int: "finite A ==> finite B |
|
1352 |
==> setprod g (A Un B) * setprod g (A Int B) = setprod g A * setprod g B" |
|
15765 | 1353 |
by(simp add: setprod_def AC_mult.fold_Un_Int[symmetric]) |
15402 | 1354 |
|
1355 |
lemma setprod_Un_disjoint: "finite A ==> finite B |
|
1356 |
==> A Int B = {} ==> setprod g (A Un B) = setprod g A * setprod g B" |
|
1357 |
by (subst setprod_Un_Int [symmetric], auto) |
|
1358 |
||
1359 |
lemma setprod_UN_disjoint: |
|
1360 |
"finite I ==> (ALL i:I. finite (A i)) ==> |
|
1361 |
(ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {}) ==> |
|
1362 |
setprod f (UNION I A) = setprod (%i. setprod f (A i)) I" |
|
15765 | 1363 |
by(simp add: setprod_def AC_mult.fold_UN_disjoint cong: setprod_cong) |
15402 | 1364 |
|
1365 |
lemma setprod_Union_disjoint: |
|
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1366 |
"[| (ALL A:C. finite A); |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1367 |
(ALL A:C. ALL B:C. A \<noteq> B --> A Int B = {}) |] |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1368 |
==> setprod f (Union C) = setprod (setprod f) C" |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1369 |
apply (cases "finite C") |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1370 |
prefer 2 apply (force dest: finite_UnionD simp add: setprod_def) |
15402 | 1371 |
apply (frule setprod_UN_disjoint [of C id f]) |
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1372 |
apply (unfold Union_def id_def, assumption+) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1373 |
done |
15402 | 1374 |
|
1375 |
lemma setprod_Sigma: "finite A ==> ALL x:A. finite (B x) ==> |
|
16550 | 1376 |
(\<Prod>x\<in>A. (\<Prod>y\<in> B x. f x y)) = |
17189 | 1377 |
(\<Prod>(x,y)\<in>(SIGMA x:A. B x). f x y)" |
15765 | 1378 |
by(simp add:setprod_def AC_mult.fold_Sigma split_def cong:setprod_cong) |
15402 | 1379 |
|
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1380 |
text{*Here we can eliminate the finiteness assumptions, by cases.*} |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1381 |
lemma setprod_cartesian_product: |
17189 | 1382 |
"(\<Prod>x\<in>A. (\<Prod>y\<in> B. f x y)) = (\<Prod>(x,y)\<in>(A <*> B). f x y)" |
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1383 |
apply (cases "finite A") |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1384 |
apply (cases "finite B") |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1385 |
apply (simp add: setprod_Sigma) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1386 |
apply (cases "A={}", simp) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1387 |
apply (simp add: setprod_1) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1388 |
apply (auto simp add: setprod_def |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1389 |
dest: finite_cartesian_productD1 finite_cartesian_productD2) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1390 |
done |
15402 | 1391 |
|
1392 |
lemma setprod_timesf: |
|
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1393 |
"setprod (%x. f x * g x) A = (setprod f A * setprod g A)" |
15765 | 1394 |
by(simp add:setprod_def AC_mult.fold_distrib) |
15402 | 1395 |
|
1396 |
||
1397 |
subsubsection {* Properties in more restricted classes of structures *} |
|
1398 |
||
1399 |
lemma setprod_eq_1_iff [simp]: |
|
1400 |
"finite F ==> (setprod f F = 1) = (ALL a:F. f a = (1::nat))" |
|
1401 |
by (induct set: Finites) auto |
|
1402 |
||
1403 |
lemma setprod_zero: |
|
1404 |
"finite A ==> EX x: A. f x = (0::'a::comm_semiring_1_cancel) ==> setprod f A = 0" |
|
1405 |
apply (induct set: Finites, force, clarsimp) |
|
1406 |
apply (erule disjE, auto) |
|
1407 |
done |
|
1408 |
||
1409 |
lemma setprod_nonneg [rule_format]: |
|
1410 |
"(ALL x: A. (0::'a::ordered_idom) \<le> f x) --> 0 \<le> setprod f A" |
|
1411 |
apply (case_tac "finite A") |
|
1412 |
apply (induct set: Finites, force, clarsimp) |
|
1413 |
apply (subgoal_tac "0 * 0 \<le> f x * setprod f F", force) |
|
1414 |
apply (rule mult_mono, assumption+) |
|
1415 |
apply (auto simp add: setprod_def) |
|
1416 |
done |
|
1417 |
||
1418 |
lemma setprod_pos [rule_format]: "(ALL x: A. (0::'a::ordered_idom) < f x) |
|
1419 |
--> 0 < setprod f A" |
|
1420 |
apply (case_tac "finite A") |
|
1421 |
apply (induct set: Finites, force, clarsimp) |
|
1422 |
apply (subgoal_tac "0 * 0 < f x * setprod f F", force) |
|
1423 |
apply (rule mult_strict_mono, assumption+) |
|
1424 |
apply (auto simp add: setprod_def) |
|
1425 |
done |
|
1426 |
||
1427 |
lemma setprod_nonzero [rule_format]: |
|
1428 |
"(ALL x y. (x::'a::comm_semiring_1_cancel) * y = 0 --> x = 0 | y = 0) ==> |
|
1429 |
finite A ==> (ALL x: A. f x \<noteq> (0::'a)) --> setprod f A \<noteq> 0" |
|
1430 |
apply (erule finite_induct, auto) |
|
1431 |
done |
|
1432 |
||
1433 |
lemma setprod_zero_eq: |
|
1434 |
"(ALL x y. (x::'a::comm_semiring_1_cancel) * y = 0 --> x = 0 | y = 0) ==> |
|
1435 |
finite A ==> (setprod f A = (0::'a)) = (EX x: A. f x = 0)" |
|
1436 |
apply (insert setprod_zero [of A f] setprod_nonzero [of A f], blast) |
|
1437 |
done |
|
1438 |
||
1439 |
lemma setprod_nonzero_field: |
|
1440 |
"finite A ==> (ALL x: A. f x \<noteq> (0::'a::field)) ==> setprod f A \<noteq> 0" |
|
1441 |
apply (rule setprod_nonzero, auto) |
|
1442 |
done |
|
1443 |
||
1444 |
lemma setprod_zero_eq_field: |
|
1445 |
"finite A ==> (setprod f A = (0::'a::field)) = (EX x: A. f x = 0)" |
|
1446 |
apply (rule setprod_zero_eq, auto) |
|
1447 |
done |
|
1448 |
||
1449 |
lemma setprod_Un: "finite A ==> finite B ==> (ALL x: A Int B. f x \<noteq> 0) ==> |
|
1450 |
(setprod f (A Un B) :: 'a ::{field}) |
|
1451 |
= setprod f A * setprod f B / setprod f (A Int B)" |
|
1452 |
apply (subst setprod_Un_Int [symmetric], auto) |
|
1453 |
apply (subgoal_tac "finite (A Int B)") |
|
1454 |
apply (frule setprod_nonzero_field [of "A Int B" f], assumption) |
|
1455 |
apply (subst times_divide_eq_right [THEN sym], auto simp add: divide_self) |
|
1456 |
done |
|
1457 |
||
1458 |
lemma setprod_diff1: "finite A ==> f a \<noteq> 0 ==> |
|
1459 |
(setprod f (A - {a}) :: 'a :: {field}) = |
|
1460 |
(if a:A then setprod f A / f a else setprod f A)" |
|
1461 |
apply (erule finite_induct) |
|
1462 |
apply (auto simp add: insert_Diff_if) |
|
1463 |
apply (subgoal_tac "f a * setprod f F / f a = setprod f F * f a / f a") |
|
1464 |
apply (erule ssubst) |
|
1465 |
apply (subst times_divide_eq_right [THEN sym]) |
|
1466 |
apply (auto simp add: mult_ac times_divide_eq_right divide_self) |
|
1467 |
done |
|
1468 |
||
1469 |
lemma setprod_inversef: "finite A ==> |
|
1470 |
ALL x: A. f x \<noteq> (0::'a::{field,division_by_zero}) ==> |
|
1471 |
setprod (inverse \<circ> f) A = inverse (setprod f A)" |
|
1472 |
apply (erule finite_induct) |
|
1473 |
apply (simp, simp) |
|
1474 |
done |
|
1475 |
||
1476 |
lemma setprod_dividef: |
|
1477 |
"[|finite A; |
|
1478 |
\<forall>x \<in> A. g x \<noteq> (0::'a::{field,division_by_zero})|] |
|
1479 |
==> setprod (%x. f x / g x) A = setprod f A / setprod g A" |
|
1480 |
apply (subgoal_tac |
|
1481 |
"setprod (%x. f x / g x) A = setprod (%x. f x * (inverse \<circ> g) x) A") |
|
1482 |
apply (erule ssubst) |
|
1483 |
apply (subst divide_inverse) |
|
1484 |
apply (subst setprod_timesf) |
|
1485 |
apply (subst setprod_inversef, assumption+, rule refl) |
|
1486 |
apply (rule setprod_cong, rule refl) |
|
1487 |
apply (subst divide_inverse, auto) |
|
1488 |
done |
|
1489 |
||
12396 | 1490 |
subsection {* Finite cardinality *} |
1491 |
||
15402 | 1492 |
text {* This definition, although traditional, is ugly to work with: |
1493 |
@{text "card A == LEAST n. EX f. A = {f i | i. i < n}"}. |
|
1494 |
But now that we have @{text setsum} things are easy: |
|
12396 | 1495 |
*} |
1496 |
||
1497 |
constdefs |
|
1498 |
card :: "'a set => nat" |
|
15402 | 1499 |
"card A == setsum (%x. 1::nat) A" |
12396 | 1500 |
|
1501 |
lemma card_empty [simp]: "card {} = 0" |
|
15402 | 1502 |
by (simp add: card_def) |
1503 |
||
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1504 |
lemma card_infinite [simp]: "~ finite A ==> card A = 0" |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1505 |
by (simp add: card_def) |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1506 |
|
15402 | 1507 |
lemma card_eq_setsum: "card A = setsum (%x. 1) A" |
1508 |
by (simp add: card_def) |
|
12396 | 1509 |
|
1510 |
lemma card_insert_disjoint [simp]: |
|
1511 |
"finite A ==> x \<notin> A ==> card (insert x A) = Suc(card A)" |
|
15765 | 1512 |
by(simp add: card_def) |
15402 | 1513 |
|
1514 |
lemma card_insert_if: |
|
1515 |
"finite A ==> card (insert x A) = (if x:A then card A else Suc(card(A)))" |
|
1516 |
by (simp add: insert_absorb) |
|
12396 | 1517 |
|
1518 |
lemma card_0_eq [simp]: "finite A ==> (card A = 0) = (A = {})" |
|
1519 |
apply auto |
|
15506 | 1520 |
apply (drule_tac a = x in mk_disjoint_insert, clarify, auto) |
12396 | 1521 |
done |
1522 |
||
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1523 |
lemma card_eq_0_iff: "(card A = 0) = (A = {} | ~ finite A)" |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1524 |
by auto |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1525 |
|
12396 | 1526 |
lemma card_Suc_Diff1: "finite A ==> x: A ==> Suc (card (A - {x})) = card A" |
14302 | 1527 |
apply(rule_tac t = A in insert_Diff [THEN subst], assumption) |
1528 |
apply(simp del:insert_Diff_single) |
|
1529 |
done |
|
12396 | 1530 |
|
1531 |
lemma card_Diff_singleton: |
|
1532 |
"finite A ==> x: A ==> card (A - {x}) = card A - 1" |
|
1533 |
by (simp add: card_Suc_Diff1 [symmetric]) |
|
1534 |
||
1535 |
lemma card_Diff_singleton_if: |
|
1536 |
"finite A ==> card (A-{x}) = (if x : A then card A - 1 else card A)" |
|
1537 |
by (simp add: card_Diff_singleton) |
|
1538 |
||
1539 |
lemma card_insert: "finite A ==> card (insert x A) = Suc (card (A - {x}))" |
|
1540 |
by (simp add: card_insert_if card_Suc_Diff1) |
|
1541 |
||
1542 |
lemma card_insert_le: "finite A ==> card A <= card (insert x A)" |
|
1543 |
by (simp add: card_insert_if) |
|
1544 |
||
15402 | 1545 |
lemma card_mono: "\<lbrakk> finite B; A \<subseteq> B \<rbrakk> \<Longrightarrow> card A \<le> card B" |
15539 | 1546 |
by (simp add: card_def setsum_mono2) |
15402 | 1547 |
|
12396 | 1548 |
lemma card_seteq: "finite B ==> (!!A. A <= B ==> card B <= card A ==> A = B)" |
14208 | 1549 |
apply (induct set: Finites, simp, clarify) |
12396 | 1550 |
apply (subgoal_tac "finite A & A - {x} <= F") |
14208 | 1551 |
prefer 2 apply (blast intro: finite_subset, atomize) |
12396 | 1552 |
apply (drule_tac x = "A - {x}" in spec) |
1553 |
apply (simp add: card_Diff_singleton_if split add: split_if_asm) |
|
14208 | 1554 |
apply (case_tac "card A", auto) |
12396 | 1555 |
done |
1556 |
||
1557 |
lemma psubset_card_mono: "finite B ==> A < B ==> card A < card B" |
|
1558 |
apply (simp add: psubset_def linorder_not_le [symmetric]) |
|
1559 |
apply (blast dest: card_seteq) |
|
1560 |
done |
|
1561 |
||
1562 |
lemma card_Un_Int: "finite A ==> finite B |
|
1563 |
==> card A + card B = card (A Un B) + card (A Int B)" |
|
15402 | 1564 |
by(simp add:card_def setsum_Un_Int) |
12396 | 1565 |
|
1566 |
lemma card_Un_disjoint: "finite A ==> finite B |
|
1567 |
==> A Int B = {} ==> card (A Un B) = card A + card B" |
|
1568 |
by (simp add: card_Un_Int) |
|
1569 |
||
1570 |
lemma card_Diff_subset: |
|
15402 | 1571 |
"finite B ==> B <= A ==> card (A - B) = card A - card B" |
1572 |
by(simp add:card_def setsum_diff_nat) |
|
12396 | 1573 |
|
1574 |
lemma card_Diff1_less: "finite A ==> x: A ==> card (A - {x}) < card A" |
|
1575 |
apply (rule Suc_less_SucD) |
|
1576 |
apply (simp add: card_Suc_Diff1) |
|
1577 |
done |
|
1578 |
||
1579 |
lemma card_Diff2_less: |
|
1580 |
"finite A ==> x: A ==> y: A ==> card (A - {x} - {y}) < card A" |
|
1581 |
apply (case_tac "x = y") |
|
1582 |
apply (simp add: card_Diff1_less) |
|
1583 |
apply (rule less_trans) |
|
1584 |
prefer 2 apply (auto intro!: card_Diff1_less) |
|
1585 |
done |
|
1586 |
||
1587 |
lemma card_Diff1_le: "finite A ==> card (A - {x}) <= card A" |
|
1588 |
apply (case_tac "x : A") |
|
1589 |
apply (simp_all add: card_Diff1_less less_imp_le) |
|
1590 |
done |
|
1591 |
||
1592 |
lemma card_psubset: "finite B ==> A \<subseteq> B ==> card A < card B ==> A < B" |
|
14208 | 1593 |
by (erule psubsetI, blast) |
12396 | 1594 |
|
14889 | 1595 |
lemma insert_partition: |
15402 | 1596 |
"\<lbrakk> x \<notin> F; \<forall>c1 \<in> insert x F. \<forall>c2 \<in> insert x F. c1 \<noteq> c2 \<longrightarrow> c1 \<inter> c2 = {} \<rbrakk> |
1597 |
\<Longrightarrow> x \<inter> \<Union> F = {}" |
|
14889 | 1598 |
by auto |
1599 |
||
19793 | 1600 |
text{* main cardinality theorem *} |
14889 | 1601 |
lemma card_partition [rule_format]: |
1602 |
"finite C ==> |
|
1603 |
finite (\<Union> C) --> |
|
1604 |
(\<forall>c\<in>C. card c = k) --> |
|
1605 |
(\<forall>c1 \<in> C. \<forall>c2 \<in> C. c1 \<noteq> c2 --> c1 \<inter> c2 = {}) --> |
|
1606 |
k * card(C) = card (\<Union> C)" |
|
1607 |
apply (erule finite_induct, simp) |
|
1608 |
apply (simp add: card_insert_disjoint card_Un_disjoint insert_partition |
|
1609 |
finite_subset [of _ "\<Union> (insert x F)"]) |
|
1610 |
done |
|
1611 |
||
12396 | 1612 |
|
19793 | 1613 |
text{*The form of a finite set of given cardinality*} |
1614 |
||
1615 |
lemma card_eq_SucD: |
|
1616 |
assumes cardeq: "card A = Suc k" and fin: "finite A" |
|
1617 |
shows "\<exists>b B. A = insert b B & b \<notin> B & card B = k" |
|
1618 |
proof - |
|
1619 |
have "card A \<noteq> 0" using cardeq by auto |
|
1620 |
then obtain b where b: "b \<in> A" using fin by auto |
|
1621 |
show ?thesis |
|
1622 |
proof (intro exI conjI) |
|
1623 |
show "A = insert b (A-{b})" using b by blast |
|
1624 |
show "b \<notin> A - {b}" by blast |
|
1625 |
show "card (A - {b}) = k" by (simp add: fin cardeq b card_Diff_singleton) |
|
1626 |
qed |
|
1627 |
qed |
|
1628 |
||
1629 |
||
1630 |
lemma card_Suc_eq: |
|
1631 |
"finite A ==> |
|
1632 |
(card A = Suc k) = (\<exists>b B. A = insert b B & b \<notin> B & card B = k)" |
|
1633 |
by (auto dest!: card_eq_SucD) |
|
1634 |
||
1635 |
lemma card_1_eq: |
|
1636 |
"finite A ==> (card A = Suc 0) = (\<exists>x. A = {x})" |
|
1637 |
by (auto dest!: card_eq_SucD) |
|
1638 |
||
1639 |
lemma card_2_eq: |
|
1640 |
"finite A ==> (card A = Suc(Suc 0)) = (\<exists>x y. x\<noteq>y & A = {x,y})" |
|
1641 |
by (auto dest!: card_eq_SucD, blast) |
|
1642 |
||
1643 |
||
15539 | 1644 |
lemma setsum_constant [simp]: "(\<Sum>x \<in> A. y) = of_nat(card A) * y" |
1645 |
apply (cases "finite A") |
|
1646 |
apply (erule finite_induct) |
|
1647 |
apply (auto simp add: ring_distrib add_ac) |
|
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1648 |
done |
15402 | 1649 |
|
15539 | 1650 |
|
21199
2d83f93c3580
* Added annihilation axioms ("x * 0 = 0") to axclass semiring_0.
krauss
parents:
19984
diff
changeset
|
1651 |
lemma setprod_constant: "finite A ==> (\<Prod>x\<in> A. (y::'a::{recpower, comm_monoid_mult})) = y^(card A)" |
15402 | 1652 |
apply (erule finite_induct) |
1653 |
apply (auto simp add: power_Suc) |
|
1654 |
done |
|
1655 |
||
15542 | 1656 |
lemma setsum_bounded: |
1657 |
assumes le: "\<And>i. i\<in>A \<Longrightarrow> f i \<le> (K::'a::{comm_semiring_1_cancel, pordered_ab_semigroup_add})" |
|
1658 |
shows "setsum f A \<le> of_nat(card A) * K" |
|
1659 |
proof (cases "finite A") |
|
1660 |
case True |
|
1661 |
thus ?thesis using le setsum_mono[where K=A and g = "%x. K"] by simp |
|
1662 |
next |
|
1663 |
case False thus ?thesis by (simp add: setsum_def) |
|
1664 |
qed |
|
1665 |
||
15402 | 1666 |
|
1667 |
subsubsection {* Cardinality of unions *} |
|
1668 |
||
15539 | 1669 |
lemma of_nat_id[simp]: "(of_nat n :: nat) = n" |
21575 | 1670 |
by(induct n) auto |
15539 | 1671 |
|
15402 | 1672 |
lemma card_UN_disjoint: |
1673 |
"finite I ==> (ALL i:I. finite (A i)) ==> |
|
1674 |
(ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {}) ==> |
|
1675 |
card (UNION I A) = (\<Sum>i\<in>I. card(A i))" |
|
15539 | 1676 |
apply (simp add: card_def del: setsum_constant) |
15402 | 1677 |
apply (subgoal_tac |
1678 |
"setsum (%i. card (A i)) I = setsum (%i. (setsum (%x. 1) (A i))) I") |
|
15539 | 1679 |
apply (simp add: setsum_UN_disjoint del: setsum_constant) |
1680 |
apply (simp cong: setsum_cong) |
|
15402 | 1681 |
done |
1682 |
||
1683 |
lemma card_Union_disjoint: |
|
1684 |
"finite C ==> (ALL A:C. finite A) ==> |
|
1685 |
(ALL A:C. ALL B:C. A \<noteq> B --> A Int B = {}) ==> |
|
1686 |
card (Union C) = setsum card C" |
|
1687 |
apply (frule card_UN_disjoint [of C id]) |
|
1688 |
apply (unfold Union_def id_def, assumption+) |
|
1689 |
done |
|
1690 |
||
12396 | 1691 |
subsubsection {* Cardinality of image *} |
1692 |
||
15447 | 1693 |
text{*The image of a finite set can be expressed using @{term fold}.*} |
1694 |
lemma image_eq_fold: "finite A ==> f ` A = fold (op Un) (%x. {f x}) {} A" |
|
1695 |
apply (erule finite_induct, simp) |
|
1696 |
apply (subst ACf.fold_insert) |
|
1697 |
apply (auto simp add: ACf_def) |
|
1698 |
done |
|
1699 |
||
12396 | 1700 |
lemma card_image_le: "finite A ==> card (f ` A) <= card A" |
21575 | 1701 |
apply (induct set: Finites) |
1702 |
apply simp |
|
12396 | 1703 |
apply (simp add: le_SucI finite_imageI card_insert_if) |
1704 |
done |
|
1705 |
||
15402 | 1706 |
lemma card_image: "inj_on f A ==> card (f ` A) = card A" |
15539 | 1707 |
by(simp add:card_def setsum_reindex o_def del:setsum_constant) |
12396 | 1708 |
|
1709 |
lemma endo_inj_surj: "finite A ==> f ` A \<subseteq> A ==> inj_on f A ==> f ` A = A" |
|
1710 |
by (simp add: card_seteq card_image) |
|
1711 |
||
15111 | 1712 |
lemma eq_card_imp_inj_on: |
1713 |
"[| finite A; card(f ` A) = card A |] ==> inj_on f A" |
|
21575 | 1714 |
apply (induct rule:finite_induct) |
1715 |
apply simp |
|
15111 | 1716 |
apply(frule card_image_le[where f = f]) |
1717 |
apply(simp add:card_insert_if split:if_splits) |
|
1718 |
done |
|
1719 |
||
1720 |
lemma inj_on_iff_eq_card: |
|
1721 |
"finite A ==> inj_on f A = (card(f ` A) = card A)" |
|
1722 |
by(blast intro: card_image eq_card_imp_inj_on) |
|
1723 |
||
12396 | 1724 |
|
15402 | 1725 |
lemma card_inj_on_le: |
1726 |
"[|inj_on f A; f ` A \<subseteq> B; finite B |] ==> card A \<le> card B" |
|
1727 |
apply (subgoal_tac "finite A") |
|
1728 |
apply (force intro: card_mono simp add: card_image [symmetric]) |
|
1729 |
apply (blast intro: finite_imageD dest: finite_subset) |
|
1730 |
done |
|
1731 |
||
1732 |
lemma card_bij_eq: |
|
1733 |
"[|inj_on f A; f ` A \<subseteq> B; inj_on g B; g ` B \<subseteq> A; |
|
1734 |
finite A; finite B |] ==> card A = card B" |
|
1735 |
by (auto intro: le_anti_sym card_inj_on_le) |
|
1736 |
||
1737 |
||
1738 |
subsubsection {* Cardinality of products *} |
|
1739 |
||
1740 |
(* |
|
1741 |
lemma SigmaI_insert: "y \<notin> A ==> |
|
1742 |
(SIGMA x:(insert y A). B x) = (({y} <*> (B y)) \<union> (SIGMA x: A. B x))" |
|
1743 |
by auto |
|
1744 |
*) |
|
1745 |
||
1746 |
lemma card_SigmaI [simp]: |
|
1747 |
"\<lbrakk> finite A; ALL a:A. finite (B a) \<rbrakk> |
|
1748 |
\<Longrightarrow> card (SIGMA x: A. B x) = (\<Sum>a\<in>A. card (B a))" |
|
15539 | 1749 |
by(simp add:card_def setsum_Sigma del:setsum_constant) |
15402 | 1750 |
|
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1751 |
lemma card_cartesian_product: "card (A <*> B) = card(A) * card(B)" |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1752 |
apply (cases "finite A") |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1753 |
apply (cases "finite B") |
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1754 |
apply (auto simp add: card_eq_0_iff |
15539 | 1755 |
dest: finite_cartesian_productD1 finite_cartesian_productD2) |
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1756 |
done |
15402 | 1757 |
|
1758 |
lemma card_cartesian_product_singleton: "card({x} <*> A) = card(A)" |
|
15539 | 1759 |
by (simp add: card_cartesian_product) |
15409
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
paulson
parents:
15402
diff
changeset
|
1760 |
|
15402 | 1761 |
|
1762 |
||
12396 | 1763 |
subsubsection {* Cardinality of the Powerset *} |
1764 |
||
1765 |
lemma card_Pow: "finite A ==> card (Pow A) = Suc (Suc 0) ^ card A" (* FIXME numeral 2 (!?) *) |
|
1766 |
apply (induct set: Finites) |
|
1767 |
apply (simp_all add: Pow_insert) |
|
14208 | 1768 |
apply (subst card_Un_disjoint, blast) |
1769 |
apply (blast intro: finite_imageI, blast) |
|
12396 | 1770 |
apply (subgoal_tac "inj_on (insert x) (Pow F)") |
1771 |
apply (simp add: card_image Pow_insert) |
|
1772 |
apply (unfold inj_on_def) |
|
1773 |
apply (blast elim!: equalityE) |
|
1774 |
done |
|
1775 |
||
15392 | 1776 |
text {* Relates to equivalence classes. Based on a theorem of |
1777 |
F. Kammüller's. *} |
|
12396 | 1778 |
|
1779 |
lemma dvd_partition: |
|
15392 | 1780 |
"finite (Union C) ==> |
12396 | 1781 |
ALL c : C. k dvd card c ==> |
14430
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
paulson
parents:
14331
diff
changeset
|
1782 |
(ALL c1: C. ALL c2: C. c1 \<noteq> c2 --> c1 Int c2 = {}) ==> |
12396 | 1783 |
k dvd card (Union C)" |
15392 | 1784 |
apply(frule finite_UnionD) |
1785 |
apply(rotate_tac -1) |
|
14208 | 1786 |
apply (induct set: Finites, simp_all, clarify) |
12396 | 1787 |
apply (subst card_Un_disjoint) |
1788 |
apply (auto simp add: dvd_add disjoint_eq_subset_Compl) |
|
1789 |
done |
|
1790 |
||
1791 |
||
15392 | 1792 |
subsection{* A fold functional for non-empty sets *} |
1793 |
||
1794 |
text{* Does not require start value. *} |
|
12396 | 1795 |
|
15392 | 1796 |
consts |
15506 | 1797 |
fold1Set :: "('a => 'a => 'a) => ('a set \<times> 'a) set" |
15392 | 1798 |
|
15506 | 1799 |
inductive "fold1Set f" |
15392 | 1800 |
intros |
15506 | 1801 |
fold1Set_insertI [intro]: |
1802 |
"\<lbrakk> (A,x) \<in> foldSet f id a; a \<notin> A \<rbrakk> \<Longrightarrow> (insert a A, x) \<in> fold1Set f" |
|
12396 | 1803 |
|
15392 | 1804 |
constdefs |
1805 |
fold1 :: "('a => 'a => 'a) => 'a set => 'a" |
|
15506 | 1806 |
"fold1 f A == THE x. (A, x) : fold1Set f" |
1807 |
||
1808 |
lemma fold1Set_nonempty: |
|
1809 |
"(A, x) : fold1Set f \<Longrightarrow> A \<noteq> {}" |
|
1810 |
by(erule fold1Set.cases, simp_all) |
|
1811 |
||
15392 | 1812 |
|
15506 | 1813 |
inductive_cases empty_fold1SetE [elim!]: "({}, x) : fold1Set f" |
1814 |
||
1815 |
inductive_cases insert_fold1SetE [elim!]: "(insert a X, x) : fold1Set f" |
|
1816 |
||
1817 |
||
1818 |
lemma fold1Set_sing [iff]: "(({a},b) : fold1Set f) = (a = b)" |
|
1819 |
by (blast intro: foldSet.intros elim: foldSet.cases) |
|
15392 | 1820 |
|
15508 | 1821 |
lemma fold1_singleton[simp]: "fold1 f {a} = a" |
1822 |
by (unfold fold1_def) blast |
|
12396 | 1823 |
|
15508 | 1824 |
lemma finite_nonempty_imp_fold1Set: |
1825 |
"\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> EX x. (A, x) : fold1Set f" |
|
1826 |
apply (induct A rule: finite_induct) |
|
1827 |
apply (auto dest: finite_imp_foldSet [of _ f id]) |
|
1828 |
done |
|
15506 | 1829 |
|
1830 |
text{*First, some lemmas about @{term foldSet}.*} |
|
15392 | 1831 |
|
15508 | 1832 |
lemma (in ACf) foldSet_insert_swap: |
1833 |
assumes fold: "(A,y) \<in> foldSet f id b" |
|
15521 | 1834 |
shows "b \<notin> A \<Longrightarrow> (insert b A, z \<cdot> y) \<in> foldSet f id z" |
15508 | 1835 |
using fold |
1836 |
proof (induct rule: foldSet.induct) |
|
1837 |
case emptyI thus ?case by (force simp add: fold_insert_aux commute) |
|
1838 |
next |
|
1839 |
case (insertI A x y) |
|
1840 |
have "(insert x (insert b A), x \<cdot> (z \<cdot> y)) \<in> foldSet f (\<lambda>u. u) z" |
|
15521 | 1841 |
using insertI by force --{*how does @{term id} get unfolded?*} |
15508 | 1842 |
thus ?case by (simp add: insert_commute AC) |
1843 |
qed |
|
1844 |
||
1845 |
lemma (in ACf) foldSet_permute_diff: |
|
1846 |
assumes fold: "(A,x) \<in> foldSet f id b" |
|
1847 |
shows "!!a. \<lbrakk>a \<in> A; b \<notin> A\<rbrakk> \<Longrightarrow> (insert b (A-{a}), x) \<in> foldSet f id a" |
|
1848 |
using fold |
|
1849 |
proof (induct rule: foldSet.induct) |
|
1850 |
case emptyI thus ?case by simp |
|
1851 |
next |
|
1852 |
case (insertI A x y) |
|
15521 | 1853 |
have "a = x \<or> a \<in> A" using insertI by simp |
1854 |
thus ?case |
|
1855 |
proof |
|
1856 |
assume "a = x" |
|
1857 |
with insertI show ?thesis |
|
1858 |
by (simp add: id_def [symmetric], blast intro: foldSet_insert_swap) |
|
1859 |
next |
|
1860 |
assume ainA: "a \<in> A" |
|
1861 |
hence "(insert x (insert b (A - {a})), x \<cdot> y) \<in> foldSet f id a" |
|
1862 |
using insertI by (force simp: id_def) |
|
1863 |
moreover |
|
1864 |
have "insert x (insert b (A - {a})) = insert b (insert x A - {a})" |
|
1865 |
using ainA insertI by blast |
|
1866 |
ultimately show ?thesis by (simp add: id_def) |
|
15508 | 1867 |
qed |
1868 |
qed |
|
1869 |
||
1870 |
lemma (in ACf) fold1_eq_fold: |
|
1871 |
"[|finite A; a \<notin> A|] ==> fold1 f (insert a A) = fold f id a A" |
|
1872 |
apply (simp add: fold1_def fold_def) |
|
1873 |
apply (rule the_equality) |
|
1874 |
apply (best intro: foldSet_determ theI dest: finite_imp_foldSet [of _ f id]) |
|
1875 |
apply (rule sym, clarify) |
|
1876 |
apply (case_tac "Aa=A") |
|
1877 |
apply (best intro: the_equality foldSet_determ) |
|
1878 |
apply (subgoal_tac "(A,x) \<in> foldSet f id a") |
|
1879 |
apply (best intro: the_equality foldSet_determ) |
|
1880 |
apply (subgoal_tac "insert aa (Aa - {a}) = A") |
|
1881 |
prefer 2 apply (blast elim: equalityE) |
|
1882 |
apply (auto dest: foldSet_permute_diff [where a=a]) |
|
1883 |
done |
|
1884 |
||
15521 | 1885 |
lemma nonempty_iff: "(A \<noteq> {}) = (\<exists>x B. A = insert x B & x \<notin> B)" |
1886 |
apply safe |
|
1887 |
apply simp |
|
1888 |
apply (drule_tac x=x in spec) |
|
1889 |
apply (drule_tac x="A-{x}" in spec, auto) |
|
15508 | 1890 |
done |
1891 |
||
15521 | 1892 |
lemma (in ACf) fold1_insert: |
1893 |
assumes nonempty: "A \<noteq> {}" and A: "finite A" "x \<notin> A" |
|
1894 |
shows "fold1 f (insert x A) = f x (fold1 f A)" |
|
1895 |
proof - |
|
1896 |
from nonempty obtain a A' where "A = insert a A' & a ~: A'" |
|
1897 |
by (auto simp add: nonempty_iff) |
|
1898 |
with A show ?thesis |
|
1899 |
by (simp add: insert_commute [of x] fold1_eq_fold eq_commute) |
|
1900 |
qed |
|
1901 |
||
15509 | 1902 |
lemma (in ACIf) fold1_insert_idem [simp]: |
15521 | 1903 |
assumes nonempty: "A \<noteq> {}" and A: "finite A" |
1904 |
shows "fold1 f (insert x A) = f x (fold1 f A)" |
|
1905 |
proof - |
|
1906 |
from nonempty obtain a A' where A': "A = insert a A' & a ~: A'" |
|
1907 |
by (auto simp add: nonempty_iff) |
|
1908 |
show ?thesis |
|
1909 |
proof cases |
|
1910 |
assume "a = x" |
|
1911 |
thus ?thesis |
|
1912 |
proof cases |
|
1913 |
assume "A' = {}" |
|
1914 |
with prems show ?thesis by (simp add: idem) |
|
1915 |
next |
|
1916 |
assume "A' \<noteq> {}" |
|
1917 |
with prems show ?thesis |
|
1918 |
by (simp add: fold1_insert assoc [symmetric] idem) |
|
1919 |
qed |
|
1920 |
next |
|
1921 |
assume "a \<noteq> x" |
|
1922 |
with prems show ?thesis |
|
1923 |
by (simp add: insert_commute fold1_eq_fold fold_insert_idem) |
|
1924 |
qed |
|
1925 |
qed |
|
15506 | 1926 |
|
1927 |
||
15508 | 1928 |
text{* Now the recursion rules for definitions: *} |
1929 |
||
1930 |
lemma fold1_singleton_def: "g \<equiv> fold1 f \<Longrightarrow> g {a} = a" |
|
1931 |
by(simp add:fold1_singleton) |
|
1932 |
||
1933 |
lemma (in ACf) fold1_insert_def: |
|
1934 |
"\<lbrakk> g \<equiv> fold1 f; finite A; x \<notin> A; A \<noteq> {} \<rbrakk> \<Longrightarrow> g(insert x A) = x \<cdot> (g A)" |
|
1935 |
by(simp add:fold1_insert) |
|
1936 |
||
15509 | 1937 |
lemma (in ACIf) fold1_insert_idem_def: |
15508 | 1938 |
"\<lbrakk> g \<equiv> fold1 f; finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> g(insert x A) = x \<cdot> (g A)" |
15509 | 1939 |
by(simp add:fold1_insert_idem) |
15508 | 1940 |
|
1941 |
subsubsection{* Determinacy for @{term fold1Set} *} |
|
1942 |
||
1943 |
text{*Not actually used!!*} |
|
12396 | 1944 |
|
15506 | 1945 |
lemma (in ACf) foldSet_permute: |
1946 |
"[|(insert a A, x) \<in> foldSet f id b; a \<notin> A; b \<notin> A|] |
|
1947 |
==> (insert b A, x) \<in> foldSet f id a" |
|
1948 |
apply (case_tac "a=b") |
|
1949 |
apply (auto dest: foldSet_permute_diff) |
|
1950 |
done |
|
15376 | 1951 |
|
15506 | 1952 |
lemma (in ACf) fold1Set_determ: |
1953 |
"(A, x) \<in> fold1Set f ==> (A, y) \<in> fold1Set f ==> y = x" |
|
1954 |
proof (clarify elim!: fold1Set.cases) |
|
1955 |
fix A x B y a b |
|
1956 |
assume Ax: "(A, x) \<in> foldSet f id a" |
|
1957 |
assume By: "(B, y) \<in> foldSet f id b" |
|
1958 |
assume anotA: "a \<notin> A" |
|
1959 |
assume bnotB: "b \<notin> B" |
|
1960 |
assume eq: "insert a A = insert b B" |
|
1961 |
show "y=x" |
|
1962 |
proof cases |
|
1963 |
assume same: "a=b" |
|
1964 |
hence "A=B" using anotA bnotB eq by (blast elim!: equalityE) |
|
1965 |
thus ?thesis using Ax By same by (blast intro: foldSet_determ) |
|
15392 | 1966 |
next |
15506 | 1967 |
assume diff: "a\<noteq>b" |
1968 |
let ?D = "B - {a}" |
|
1969 |
have B: "B = insert a ?D" and A: "A = insert b ?D" |
|
1970 |
and aB: "a \<in> B" and bA: "b \<in> A" |
|
1971 |
using eq anotA bnotB diff by (blast elim!:equalityE)+ |
|
1972 |
with aB bnotB By |
|
1973 |
have "(insert b ?D, y) \<in> foldSet f id a" |
|
1974 |
by (auto intro: foldSet_permute simp add: insert_absorb) |
|
1975 |
moreover |
|
1976 |
have "(insert b ?D, x) \<in> foldSet f id a" |
|
1977 |
by (simp add: A [symmetric] Ax) |
|
1978 |
ultimately show ?thesis by (blast intro: foldSet_determ) |
|
15392 | 1979 |
qed |
12396 | 1980 |
qed |
1981 |
||
15506 | 1982 |
lemma (in ACf) fold1Set_equality: "(A, y) : fold1Set f ==> fold1 f A = y" |
1983 |
by (unfold fold1_def) (blast intro: fold1Set_determ) |
|
1984 |
||
1985 |
declare |
|
1986 |
empty_foldSetE [rule del] foldSet.intros [rule del] |
|
1987 |
empty_fold1SetE [rule del] insert_fold1SetE [rule del] |
|
19931
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
ballarin
parents:
19870
diff
changeset
|
1988 |
-- {* No more proofs involve these relations. *} |
15376 | 1989 |
|
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
1990 |
subsubsection{* Semi-Lattices *} |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
1991 |
|
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
1992 |
locale ACIfSL = ACIf + |
15500 | 1993 |
fixes below :: "'a \<Rightarrow> 'a \<Rightarrow> bool" (infixl "\<sqsubseteq>" 50) |
18493 | 1994 |
and strict_below :: "'a \<Rightarrow> 'a \<Rightarrow> bool" (infixl "\<sqsubset>" 50) |
15500 | 1995 |
assumes below_def: "(x \<sqsubseteq> y) = (x\<cdot>y = x)" |
18493 | 1996 |
defines strict_below_def: "(x \<sqsubset> y) \<equiv> (x \<sqsubseteq> y \<and> x \<noteq> y)" |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
1997 |
|
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
1998 |
locale ACIfSLlin = ACIfSL + |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
1999 |
assumes lin: "x\<cdot>y \<in> {x,y}" |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2000 |
|
15500 | 2001 |
lemma (in ACIfSL) below_refl[simp]: "x \<sqsubseteq> x" |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2002 |
by(simp add: below_def idem) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2003 |
|
15500 | 2004 |
lemma (in ACIfSL) below_f_conv[simp]: "x \<sqsubseteq> y \<cdot> z = (x \<sqsubseteq> y \<and> x \<sqsubseteq> z)" |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2005 |
proof |
15500 | 2006 |
assume "x \<sqsubseteq> y \<cdot> z" |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2007 |
hence xyzx: "x \<cdot> (y \<cdot> z) = x" by(simp add: below_def) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2008 |
have "x \<cdot> y = x" |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2009 |
proof - |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2010 |
have "x \<cdot> y = (x \<cdot> (y \<cdot> z)) \<cdot> y" by(rule subst[OF xyzx], rule refl) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2011 |
also have "\<dots> = x \<cdot> (y \<cdot> z)" by(simp add:ACI) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2012 |
also have "\<dots> = x" by(rule xyzx) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2013 |
finally show ?thesis . |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2014 |
qed |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2015 |
moreover have "x \<cdot> z = x" |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2016 |
proof - |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2017 |
have "x \<cdot> z = (x \<cdot> (y \<cdot> z)) \<cdot> z" by(rule subst[OF xyzx], rule refl) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2018 |
also have "\<dots> = x \<cdot> (y \<cdot> z)" by(simp add:ACI) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2019 |
also have "\<dots> = x" by(rule xyzx) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2020 |
finally show ?thesis . |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2021 |
qed |
15500 | 2022 |
ultimately show "x \<sqsubseteq> y \<and> x \<sqsubseteq> z" by(simp add: below_def) |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2023 |
next |
15500 | 2024 |
assume a: "x \<sqsubseteq> y \<and> x \<sqsubseteq> z" |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2025 |
hence y: "x \<cdot> y = x" and z: "x \<cdot> z = x" by(simp_all add: below_def) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2026 |
have "x \<cdot> (y \<cdot> z) = (x \<cdot> y) \<cdot> z" by(simp add:assoc) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2027 |
also have "x \<cdot> y = x" using a by(simp_all add: below_def) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2028 |
also have "x \<cdot> z = x" using a by(simp_all add: below_def) |
15500 | 2029 |
finally show "x \<sqsubseteq> y \<cdot> z" by(simp_all add: below_def) |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2030 |
qed |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2031 |
|
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2032 |
lemma (in ACIfSLlin) above_f_conv: |
15500 | 2033 |
"x \<cdot> y \<sqsubseteq> z = (x \<sqsubseteq> z \<or> y \<sqsubseteq> z)" |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2034 |
proof |
15500 | 2035 |
assume a: "x \<cdot> y \<sqsubseteq> z" |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2036 |
have "x \<cdot> y = x \<or> x \<cdot> y = y" using lin[of x y] by simp |
15500 | 2037 |
thus "x \<sqsubseteq> z \<or> y \<sqsubseteq> z" |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2038 |
proof |
15500 | 2039 |
assume "x \<cdot> y = x" hence "x \<sqsubseteq> z" by(rule subst)(rule a) thus ?thesis .. |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2040 |
next |
15500 | 2041 |
assume "x \<cdot> y = y" hence "y \<sqsubseteq> z" by(rule subst)(rule a) thus ?thesis .. |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2042 |
qed |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2043 |
next |
15500 | 2044 |
assume "x \<sqsubseteq> z \<or> y \<sqsubseteq> z" |
2045 |
thus "x \<cdot> y \<sqsubseteq> z" |
|
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2046 |
proof |
15500 | 2047 |
assume a: "x \<sqsubseteq> z" |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2048 |
have "(x \<cdot> y) \<cdot> z = (x \<cdot> z) \<cdot> y" by(simp add:ACI) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2049 |
also have "x \<cdot> z = x" using a by(simp add:below_def) |
15500 | 2050 |
finally show "x \<cdot> y \<sqsubseteq> z" by(simp add:below_def) |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2051 |
next |
15500 | 2052 |
assume a: "y \<sqsubseteq> z" |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2053 |
have "(x \<cdot> y) \<cdot> z = x \<cdot> (y \<cdot> z)" by(simp add:ACI) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2054 |
also have "y \<cdot> z = y" using a by(simp add:below_def) |
15500 | 2055 |
finally show "x \<cdot> y \<sqsubseteq> z" by(simp add:below_def) |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2056 |
qed |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2057 |
qed |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2058 |
|
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2059 |
|
18493 | 2060 |
lemma (in ACIfSLlin) strict_below_f_conv[simp]: "x \<sqsubset> y \<cdot> z = (x \<sqsubset> y \<and> x \<sqsubset> z)" |
2061 |
apply(simp add: strict_below_def) |
|
2062 |
using lin[of y z] by (auto simp:below_def ACI) |
|
2063 |
||
2064 |
||
2065 |
lemma (in ACIfSLlin) strict_above_f_conv: |
|
19931
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
ballarin
parents:
19870
diff
changeset
|
2066 |
"x \<cdot> y \<sqsubset> z = (x \<sqsubset> z \<or> y \<sqsubset> z)" |
18493 | 2067 |
apply(simp add: strict_below_def above_f_conv) |
2068 |
using lin[of y z] lin[of x z] by (auto simp:below_def ACI) |
|
2069 |
||
2070 |
||
15502 | 2071 |
subsubsection{* Lemmas about @{text fold1} *} |
15484 | 2072 |
|
2073 |
lemma (in ACf) fold1_Un: |
|
2074 |
assumes A: "finite A" "A \<noteq> {}" |
|
2075 |
shows "finite B \<Longrightarrow> B \<noteq> {} \<Longrightarrow> A Int B = {} \<Longrightarrow> |
|
2076 |
fold1 f (A Un B) = f (fold1 f A) (fold1 f B)" |
|
2077 |
using A |
|
2078 |
proof(induct rule:finite_ne_induct) |
|
2079 |
case singleton thus ?case by(simp add:fold1_insert) |
|
2080 |
next |
|
2081 |
case insert thus ?case by (simp add:fold1_insert assoc) |
|
2082 |
qed |
|
2083 |
||
2084 |
lemma (in ACIf) fold1_Un2: |
|
2085 |
assumes A: "finite A" "A \<noteq> {}" |
|
2086 |
shows "finite B \<Longrightarrow> B \<noteq> {} \<Longrightarrow> |
|
2087 |
fold1 f (A Un B) = f (fold1 f A) (fold1 f B)" |
|
2088 |
using A |
|
2089 |
proof(induct rule:finite_ne_induct) |
|
15509 | 2090 |
case singleton thus ?case by(simp add:fold1_insert_idem) |
15484 | 2091 |
next |
15509 | 2092 |
case insert thus ?case by (simp add:fold1_insert_idem assoc) |
15484 | 2093 |
qed |
2094 |
||
2095 |
lemma (in ACf) fold1_in: |
|
2096 |
assumes A: "finite (A)" "A \<noteq> {}" and elem: "\<And>x y. x\<cdot>y \<in> {x,y}" |
|
2097 |
shows "fold1 f A \<in> A" |
|
2098 |
using A |
|
2099 |
proof (induct rule:finite_ne_induct) |
|
15506 | 2100 |
case singleton thus ?case by simp |
15484 | 2101 |
next |
2102 |
case insert thus ?case using elem by (force simp add:fold1_insert) |
|
2103 |
qed |
|
2104 |
||
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2105 |
lemma (in ACIfSL) below_fold1_iff: |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2106 |
assumes A: "finite A" "A \<noteq> {}" |
15500 | 2107 |
shows "x \<sqsubseteq> fold1 f A = (\<forall>a\<in>A. x \<sqsubseteq> a)" |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2108 |
using A |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2109 |
by(induct rule:finite_ne_induct) simp_all |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2110 |
|
18493 | 2111 |
lemma (in ACIfSLlin) strict_below_fold1_iff: |
2112 |
"finite A \<Longrightarrow> A \<noteq> {} \<Longrightarrow> x \<sqsubset> fold1 f A = (\<forall>a\<in>A. x \<sqsubset> a)" |
|
2113 |
by(induct rule:finite_ne_induct) simp_all |
|
2114 |
||
2115 |
||
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2116 |
lemma (in ACIfSL) fold1_belowI: |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2117 |
assumes A: "finite A" "A \<noteq> {}" |
15500 | 2118 |
shows "a \<in> A \<Longrightarrow> fold1 f A \<sqsubseteq> a" |
15484 | 2119 |
using A |
2120 |
proof (induct rule:finite_ne_induct) |
|
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2121 |
case singleton thus ?case by simp |
15484 | 2122 |
next |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2123 |
case (insert x F) |
15517 | 2124 |
from insert(5) have "a = x \<or> a \<in> F" by simp |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2125 |
thus ?case |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2126 |
proof |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2127 |
assume "a = x" thus ?thesis using insert by(simp add:below_def ACI) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2128 |
next |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2129 |
assume "a \<in> F" |
15508 | 2130 |
hence bel: "fold1 f F \<sqsubseteq> a" by(rule insert) |
2131 |
have "fold1 f (insert x F) \<cdot> a = x \<cdot> (fold1 f F \<cdot> a)" |
|
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2132 |
using insert by(simp add:below_def ACI) |
15508 | 2133 |
also have "fold1 f F \<cdot> a = fold1 f F" |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2134 |
using bel by(simp add:below_def ACI) |
15508 | 2135 |
also have "x \<cdot> \<dots> = fold1 f (insert x F)" |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2136 |
using insert by(simp add:below_def ACI) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2137 |
finally show ?thesis by(simp add:below_def) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2138 |
qed |
15484 | 2139 |
qed |
2140 |
||
18493 | 2141 |
|
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2142 |
lemma (in ACIfSLlin) fold1_below_iff: |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2143 |
assumes A: "finite A" "A \<noteq> {}" |
15500 | 2144 |
shows "fold1 f A \<sqsubseteq> x = (\<exists>a\<in>A. a \<sqsubseteq> x)" |
15484 | 2145 |
using A |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2146 |
by(induct rule:finite_ne_induct)(simp_all add:above_f_conv) |
15484 | 2147 |
|
18493 | 2148 |
lemma (in ACIfSLlin) fold1_strict_below_iff: |
2149 |
assumes A: "finite A" "A \<noteq> {}" |
|
2150 |
shows "fold1 f A \<sqsubset> x = (\<exists>a\<in>A. a \<sqsubset> x)" |
|
2151 |
using A |
|
2152 |
by(induct rule:finite_ne_induct)(simp_all add:strict_above_f_conv) |
|
2153 |
||
15512
ed1fa4617f52
Extracted generic lattice stuff to new Lattice_Locales.thy
nipkow
parents:
15510
diff
changeset
|
2154 |
|
18423 | 2155 |
lemma (in ACIfSLlin) fold1_antimono: |
2156 |
assumes "A \<noteq> {}" and "A \<subseteq> B" and "finite B" |
|
2157 |
shows "fold1 f B \<sqsubseteq> fold1 f A" |
|
2158 |
proof(cases) |
|
2159 |
assume "A = B" thus ?thesis by simp |
|
2160 |
next |
|
2161 |
assume "A \<noteq> B" |
|
2162 |
have B: "B = A \<union> (B-A)" using `A \<subseteq> B` by blast |
|
2163 |
have "fold1 f B = fold1 f (A \<union> (B-A))" by(subst B)(rule refl) |
|
2164 |
also have "\<dots> = f (fold1 f A) (fold1 f (B-A))" |
|
2165 |
proof - |
|
2166 |
have "finite A" by(rule finite_subset[OF `A \<subseteq> B` `finite B`]) |
|
18493 | 2167 |
moreover have "finite(B-A)" by(rule finite_Diff[OF `finite B`]) (* by(blast intro:finite_Diff prems) fails *) |
18423 | 2168 |
moreover have "(B-A) \<noteq> {}" using prems by blast |
2169 |
moreover have "A Int (B-A) = {}" using prems by blast |
|
2170 |
ultimately show ?thesis using `A \<noteq> {}` by(rule_tac fold1_Un) |
|
2171 |
qed |
|
2172 |
also have "\<dots> \<sqsubseteq> fold1 f A" by(simp add: above_f_conv) |
|
2173 |
finally show ?thesis . |
|
2174 |
qed |
|
2175 |
||
2176 |
||
18493 | 2177 |
|
15500 | 2178 |
subsubsection{* Lattices *} |
2179 |
||
15512
ed1fa4617f52
Extracted generic lattice stuff to new Lattice_Locales.thy
nipkow
parents:
15510
diff
changeset
|
2180 |
locale Lattice = lattice + |
ed1fa4617f52
Extracted generic lattice stuff to new Lattice_Locales.thy
nipkow
parents:
15510
diff
changeset
|
2181 |
fixes Inf :: "'a set \<Rightarrow> 'a" ("\<Sqinter>_" [900] 900) |
15500 | 2182 |
and Sup :: "'a set \<Rightarrow> 'a" ("\<Squnion>_" [900] 900) |
2183 |
defines "Inf == fold1 inf" and "Sup == fold1 sup" |
|
2184 |
||
15512
ed1fa4617f52
Extracted generic lattice stuff to new Lattice_Locales.thy
nipkow
parents:
15510
diff
changeset
|
2185 |
locale Distrib_Lattice = distrib_lattice + Lattice |
15504 | 2186 |
|
15500 | 2187 |
text{* Lattices are semilattices *} |
2188 |
||
2189 |
lemma (in Lattice) ACf_inf: "ACf inf" |
|
15512
ed1fa4617f52
Extracted generic lattice stuff to new Lattice_Locales.thy
nipkow
parents:
15510
diff
changeset
|
2190 |
by(blast intro: ACf.intro inf_commute inf_assoc) |
15500 | 2191 |
|
2192 |
lemma (in Lattice) ACf_sup: "ACf sup" |
|
15512
ed1fa4617f52
Extracted generic lattice stuff to new Lattice_Locales.thy
nipkow
parents:
15510
diff
changeset
|
2193 |
by(blast intro: ACf.intro sup_commute sup_assoc) |
15500 | 2194 |
|
2195 |
lemma (in Lattice) ACIf_inf: "ACIf inf" |
|
2196 |
apply(rule ACIf.intro) |
|
2197 |
apply(rule ACf_inf) |
|
2198 |
apply(rule ACIf_axioms.intro) |
|
2199 |
apply(rule inf_idem) |
|
2200 |
done |
|
2201 |
||
2202 |
lemma (in Lattice) ACIf_sup: "ACIf sup" |
|
2203 |
apply(rule ACIf.intro) |
|
2204 |
apply(rule ACf_sup) |
|
2205 |
apply(rule ACIf_axioms.intro) |
|
2206 |
apply(rule sup_idem) |
|
2207 |
done |
|
2208 |
||
2209 |
lemma (in Lattice) ACIfSL_inf: "ACIfSL inf (op \<sqsubseteq>)" |
|
2210 |
apply(rule ACIfSL.intro) |
|
19931
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
ballarin
parents:
19870
diff
changeset
|
2211 |
apply(rule ACIf.intro) |
15500 | 2212 |
apply(rule ACf_inf) |
2213 |
apply(rule ACIf.axioms[OF ACIf_inf]) |
|
2214 |
apply(rule ACIfSL_axioms.intro) |
|
2215 |
apply(rule iffI) |
|
21733 | 2216 |
apply(blast intro: antisym inf_le1 inf_le2 inf_greatest refl) |
15500 | 2217 |
apply(erule subst) |
2218 |
apply(rule inf_le2) |
|
2219 |
done |
|
2220 |
||
2221 |
lemma (in Lattice) ACIfSL_sup: "ACIfSL sup (%x y. y \<sqsubseteq> x)" |
|
19984
29bb4659f80a
Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents:
19931
diff
changeset
|
2222 |
(* FIXME: insert ACf_sup and use unfold_locales *) |
15500 | 2223 |
apply(rule ACIfSL.intro) |
19931
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
ballarin
parents:
19870
diff
changeset
|
2224 |
apply(rule ACIf.intro) |
15500 | 2225 |
apply(rule ACf_sup) |
2226 |
apply(rule ACIf.axioms[OF ACIf_sup]) |
|
2227 |
apply(rule ACIfSL_axioms.intro) |
|
2228 |
apply(rule iffI) |
|
21733 | 2229 |
apply(blast intro: antisym sup_ge1 sup_ge2 sup_least refl) |
15500 | 2230 |
apply(erule subst) |
2231 |
apply(rule sup_ge2) |
|
2232 |
done |
|
2233 |
||
15505 | 2234 |
|
2235 |
subsubsection{* Fold laws in lattices *} |
|
15500 | 2236 |
|
15780 | 2237 |
lemma (in Lattice) Inf_le_Sup[simp]: "\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> \<Sqinter>A \<sqsubseteq> \<Squnion>A" |
15500 | 2238 |
apply(unfold Sup_def Inf_def) |
2239 |
apply(subgoal_tac "EX a. a:A") |
|
2240 |
prefer 2 apply blast |
|
2241 |
apply(erule exE) |
|
2242 |
apply(rule trans) |
|
2243 |
apply(erule (2) ACIfSL.fold1_belowI[OF ACIfSL_inf]) |
|
2244 |
apply(erule (2) ACIfSL.fold1_belowI[OF ACIfSL_sup]) |
|
2245 |
done |
|
2246 |
||
15780 | 2247 |
lemma (in Lattice) sup_Inf_absorb[simp]: |
15504 | 2248 |
"\<lbrakk> finite A; A \<noteq> {}; a \<in> A \<rbrakk> \<Longrightarrow> (a \<squnion> \<Sqinter>A) = a" |
15512
ed1fa4617f52
Extracted generic lattice stuff to new Lattice_Locales.thy
nipkow
parents:
15510
diff
changeset
|
2249 |
apply(subst sup_commute) |
21733 | 2250 |
apply(simp add:Inf_def sup_absorb2 ACIfSL.fold1_belowI[OF ACIfSL_inf]) |
15504 | 2251 |
done |
2252 |
||
15780 | 2253 |
lemma (in Lattice) inf_Sup_absorb[simp]: |
15504 | 2254 |
"\<lbrakk> finite A; A \<noteq> {}; a \<in> A \<rbrakk> \<Longrightarrow> (a \<sqinter> \<Squnion>A) = a" |
21733 | 2255 |
by(simp add:Sup_def inf_absorb1 ACIfSL.fold1_belowI[OF ACIfSL_sup]) |
15504 | 2256 |
|
2257 |
||
18423 | 2258 |
lemma (in ACIf) hom_fold1_commute: |
2259 |
assumes hom: "!!x y. h(f x y) = f (h x) (h y)" |
|
2260 |
and N: "finite N" "N \<noteq> {}" shows "h(fold1 f N) = fold1 f (h ` N)" |
|
2261 |
using N proof (induct rule: finite_ne_induct) |
|
2262 |
case singleton thus ?case by simp |
|
15500 | 2263 |
next |
18423 | 2264 |
case (insert n N) |
2265 |
have "h(fold1 f (insert n N)) = h(f n (fold1 f N))" using insert by(simp) |
|
2266 |
also have "\<dots> = f (h n) (h(fold1 f N))" by(rule hom) |
|
2267 |
also have "h(fold1 f N) = fold1 f (h ` N)" by(rule insert) |
|
2268 |
also have "f (h n) \<dots> = fold1 f (insert (h n) (h ` N))" |
|
2269 |
using insert by(simp) |
|
2270 |
also have "insert (h n) (h ` N) = h ` insert n N" by simp |
|
15500 | 2271 |
finally show ?case . |
2272 |
qed |
|
2273 |
||
18423 | 2274 |
lemma (in Distrib_Lattice) sup_Inf1_distrib: |
2275 |
"finite A \<Longrightarrow> A \<noteq> {} \<Longrightarrow> (x \<squnion> \<Sqinter>A) = \<Sqinter>{x \<squnion> a|a. a \<in> A}" |
|
2276 |
apply(simp add:Inf_def image_def |
|
2277 |
ACIf.hom_fold1_commute[OF ACIf_inf, where h="sup x", OF sup_inf_distrib1]) |
|
2278 |
apply(rule arg_cong, blast) |
|
2279 |
done |
|
2280 |
||
2281 |
||
15512
ed1fa4617f52
Extracted generic lattice stuff to new Lattice_Locales.thy
nipkow
parents:
15510
diff
changeset
|
2282 |
lemma (in Distrib_Lattice) sup_Inf2_distrib: |
15500 | 2283 |
assumes A: "finite A" "A \<noteq> {}" and B: "finite B" "B \<noteq> {}" |
2284 |
shows "(\<Sqinter>A \<squnion> \<Sqinter>B) = \<Sqinter>{a \<squnion> b|a b. a \<in> A \<and> b \<in> B}" |
|
2285 |
using A |
|
2286 |
proof (induct rule: finite_ne_induct) |
|
2287 |
case singleton thus ?case |
|
2288 |
by(simp add: sup_Inf1_distrib[OF B] fold1_singleton_def[OF Inf_def]) |
|
2289 |
next |
|
2290 |
case (insert x A) |
|
2291 |
have finB: "finite {x \<squnion> b |b. b \<in> B}" |
|
21733 | 2292 |
by(rule finite_surj[where f = "%b. x \<squnion> b", OF B(1)], auto) |
15500 | 2293 |
have finAB: "finite {a \<squnion> b |a b. a \<in> A \<and> b \<in> B}" |
2294 |
proof - |
|
2295 |
have "{a \<squnion> b |a b. a \<in> A \<and> b \<in> B} = (UN a:A. UN b:B. {a \<squnion> b})" |
|
2296 |
by blast |
|
15517 | 2297 |
thus ?thesis by(simp add: insert(1) B(1)) |
15500 | 2298 |
qed |
2299 |
have ne: "{a \<squnion> b |a b. a \<in> A \<and> b \<in> B} \<noteq> {}" using insert B by blast |
|
2300 |
have "\<Sqinter>(insert x A) \<squnion> \<Sqinter>B = (x \<sqinter> \<Sqinter>A) \<squnion> \<Sqinter>B" |
|
15509 | 2301 |
using insert by(simp add:ACIf.fold1_insert_idem_def[OF ACIf_inf Inf_def]) |
15500 | 2302 |
also have "\<dots> = (x \<squnion> \<Sqinter>B) \<sqinter> (\<Sqinter>A \<squnion> \<Sqinter>B)" by(rule sup_inf_distrib2) |
2303 |
also have "\<dots> = \<Sqinter>{x \<squnion> b|b. b \<in> B} \<sqinter> \<Sqinter>{a \<squnion> b|a b. a \<in> A \<and> b \<in> B}" |
|
2304 |
using insert by(simp add:sup_Inf1_distrib[OF B]) |
|
2305 |
also have "\<dots> = \<Sqinter>({x\<squnion>b |b. b \<in> B} \<union> {a\<squnion>b |a b. a \<in> A \<and> b \<in> B})" |
|
2306 |
(is "_ = \<Sqinter>?M") |
|
2307 |
using B insert |
|
2308 |
by(simp add:Inf_def ACIf.fold1_Un2[OF ACIf_inf finB _ finAB ne]) |
|
2309 |
also have "?M = {a \<squnion> b |a b. a \<in> insert x A \<and> b \<in> B}" |
|
2310 |
by blast |
|
2311 |
finally show ?case . |
|
2312 |
qed |
|
2313 |
||
15484 | 2314 |
|
18423 | 2315 |
lemma (in Distrib_Lattice) inf_Sup1_distrib: |
2316 |
"finite A \<Longrightarrow> A \<noteq> {} \<Longrightarrow> (x \<sqinter> \<Squnion>A) = \<Squnion>{x \<sqinter> a|a. a \<in> A}" |
|
2317 |
apply(simp add:Sup_def image_def |
|
2318 |
ACIf.hom_fold1_commute[OF ACIf_sup, where h="inf x", OF inf_sup_distrib1]) |
|
2319 |
apply(rule arg_cong, blast) |
|
2320 |
done |
|
2321 |
||
2322 |
||
2323 |
lemma (in Distrib_Lattice) inf_Sup2_distrib: |
|
2324 |
assumes A: "finite A" "A \<noteq> {}" and B: "finite B" "B \<noteq> {}" |
|
2325 |
shows "(\<Squnion>A \<sqinter> \<Squnion>B) = \<Squnion>{a \<sqinter> b|a b. a \<in> A \<and> b \<in> B}" |
|
2326 |
using A |
|
2327 |
proof (induct rule: finite_ne_induct) |
|
2328 |
case singleton thus ?case |
|
2329 |
by(simp add: inf_Sup1_distrib[OF B] fold1_singleton_def[OF Sup_def]) |
|
2330 |
next |
|
2331 |
case (insert x A) |
|
2332 |
have finB: "finite {x \<sqinter> b |b. b \<in> B}" |
|
21733 | 2333 |
by(rule finite_surj[where f = "%b. x \<sqinter> b", OF B(1)], auto) |
18423 | 2334 |
have finAB: "finite {a \<sqinter> b |a b. a \<in> A \<and> b \<in> B}" |
2335 |
proof - |
|
2336 |
have "{a \<sqinter> b |a b. a \<in> A \<and> b \<in> B} = (UN a:A. UN b:B. {a \<sqinter> b})" |
|
2337 |
by blast |
|
2338 |
thus ?thesis by(simp add: insert(1) B(1)) |
|
2339 |
qed |
|
2340 |
have ne: "{a \<sqinter> b |a b. a \<in> A \<and> b \<in> B} \<noteq> {}" using insert B by blast |
|
2341 |
have "\<Squnion>(insert x A) \<sqinter> \<Squnion>B = (x \<squnion> \<Squnion>A) \<sqinter> \<Squnion>B" |
|
2342 |
using insert by(simp add:ACIf.fold1_insert_idem_def[OF ACIf_sup Sup_def]) |
|
2343 |
also have "\<dots> = (x \<sqinter> \<Squnion>B) \<squnion> (\<Squnion>A \<sqinter> \<Squnion>B)" by(rule inf_sup_distrib2) |
|
2344 |
also have "\<dots> = \<Squnion>{x \<sqinter> b|b. b \<in> B} \<squnion> \<Squnion>{a \<sqinter> b|a b. a \<in> A \<and> b \<in> B}" |
|
2345 |
using insert by(simp add:inf_Sup1_distrib[OF B]) |
|
2346 |
also have "\<dots> = \<Squnion>({x\<sqinter>b |b. b \<in> B} \<union> {a\<sqinter>b |a b. a \<in> A \<and> b \<in> B})" |
|
2347 |
(is "_ = \<Squnion>?M") |
|
2348 |
using B insert |
|
2349 |
by(simp add:Sup_def ACIf.fold1_Un2[OF ACIf_sup finB _ finAB ne]) |
|
2350 |
also have "?M = {a \<sqinter> b |a b. a \<in> insert x A \<and> b \<in> B}" |
|
2351 |
by blast |
|
2352 |
finally show ?case . |
|
2353 |
qed |
|
2354 |
||
2355 |
||
15392 | 2356 |
subsection{*Min and Max*} |
2357 |
||
2358 |
text{* As an application of @{text fold1} we define the minimal and |
|
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2359 |
maximal element of a (non-empty) set over a linear order. *} |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2360 |
|
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2361 |
constdefs |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2362 |
Min :: "('a::linorder)set => 'a" |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2363 |
"Min == fold1 min" |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2364 |
|
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2365 |
Max :: "('a::linorder)set => 'a" |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2366 |
"Max == fold1 max" |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2367 |
|
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2368 |
|
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2369 |
text{* Before we can do anything, we need to show that @{text min} and |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2370 |
@{text max} are ACI and the ordering is linear: *} |
15392 | 2371 |
|
15837 | 2372 |
interpretation min: ACf ["min:: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a"] |
15392 | 2373 |
apply(rule ACf.intro) |
2374 |
apply(auto simp:min_def) |
|
2375 |
done |
|
2376 |
||
15837 | 2377 |
interpretation min: ACIf ["min:: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a"] |
19984
29bb4659f80a
Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents:
19931
diff
changeset
|
2378 |
apply unfold_locales |
15392 | 2379 |
apply(auto simp:min_def) |
15376 | 2380 |
done |
2381 |
||
15837 | 2382 |
interpretation max: ACf ["max :: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a"] |
19984
29bb4659f80a
Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents:
19931
diff
changeset
|
2383 |
apply unfold_locales |
15392 | 2384 |
apply(auto simp:max_def) |
2385 |
done |
|
2386 |
||
15837 | 2387 |
interpretation max: ACIf ["max:: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a"] |
19984
29bb4659f80a
Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents:
19931
diff
changeset
|
2388 |
apply unfold_locales |
15392 | 2389 |
apply(auto simp:max_def) |
15376 | 2390 |
done |
12396 | 2391 |
|
15837 | 2392 |
interpretation min: |
18493 | 2393 |
ACIfSL ["min:: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a" "op \<le>" "op <"] |
2394 |
apply(simp add:order_less_le) |
|
19984
29bb4659f80a
Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents:
19931
diff
changeset
|
2395 |
apply unfold_locales |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2396 |
apply(auto simp:min_def) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2397 |
done |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2398 |
|
15837 | 2399 |
interpretation min: |
18493 | 2400 |
ACIfSLlin ["min :: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a" "op \<le>" "op <"] |
19984
29bb4659f80a
Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents:
19931
diff
changeset
|
2401 |
apply unfold_locales |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2402 |
apply(auto simp:min_def) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2403 |
done |
15392 | 2404 |
|
15837 | 2405 |
interpretation max: |
18493 | 2406 |
ACIfSL ["max :: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a" "%x y. y\<le>x" "%x y. y<x"] |
2407 |
apply(simp add:order_less_le eq_sym_conv) |
|
19984
29bb4659f80a
Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents:
19931
diff
changeset
|
2408 |
apply unfold_locales |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2409 |
apply(auto simp:max_def) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2410 |
done |
15392 | 2411 |
|
15837 | 2412 |
interpretation max: |
18493 | 2413 |
ACIfSLlin ["max :: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a" "%x y. y\<le>x" "%x y. y<x"] |
19984
29bb4659f80a
Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents:
19931
diff
changeset
|
2414 |
apply unfold_locales |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2415 |
apply(auto simp:max_def) |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2416 |
done |
15392 | 2417 |
|
15837 | 2418 |
interpretation min_max: |
21215
7c9337a0e30a
made locale partial_order compatible with axclass order
haftmann
parents:
21199
diff
changeset
|
2419 |
Lattice ["op \<le>" "op <" "min :: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a" "max" "Min" "Max"] |
15780 | 2420 |
apply - |
2421 |
apply(rule Min_def) |
|
2422 |
apply(rule Max_def) |
|
19984
29bb4659f80a
Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents:
19931
diff
changeset
|
2423 |
apply unfold_locales |
15507 | 2424 |
done |
15500 | 2425 |
|
2426 |
||
15837 | 2427 |
interpretation min_max: |
21215
7c9337a0e30a
made locale partial_order compatible with axclass order
haftmann
parents:
21199
diff
changeset
|
2428 |
Distrib_Lattice ["op \<le>" "op <" "min :: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a" "max" "Min" "Max"] |
19984
29bb4659f80a
Method intro_locales replaced by intro_locales and unfold_locales.
ballarin
parents:
19931
diff
changeset
|
2429 |
by unfold_locales |
19931
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
ballarin
parents:
19870
diff
changeset
|
2430 |
|
15765 | 2431 |
|
15402 | 2432 |
text{* Now we instantiate the recursion equations and declare them |
15392 | 2433 |
simplification rules: *} |
2434 |
||
17085 | 2435 |
(* Making Min or Max a defined parameter of a locale, suitably |
2436 |
extending ACIf, could make the following interpretations more automatic. *) |
|
15765 | 2437 |
|
17085 | 2438 |
lemmas Min_singleton = fold1_singleton_def [OF Min_def] |
2439 |
lemmas Max_singleton = fold1_singleton_def [OF Max_def] |
|
2440 |
lemmas Min_insert = min.fold1_insert_idem_def [OF Min_def] |
|
2441 |
lemmas Max_insert = max.fold1_insert_idem_def [OF Max_def] |
|
2442 |
||
2443 |
declare Min_singleton [simp] Max_singleton [simp] |
|
2444 |
declare Min_insert [simp] Max_insert [simp] |
|
2445 |
||
15392 | 2446 |
|
15484 | 2447 |
text{* Now we instantiate some @{text fold1} properties: *} |
15392 | 2448 |
|
2449 |
lemma Min_in [simp]: |
|
15484 | 2450 |
shows "finite A \<Longrightarrow> A \<noteq> {} \<Longrightarrow> Min A \<in> A" |
15791 | 2451 |
using min.fold1_in |
15484 | 2452 |
by(fastsimp simp: Min_def min_def) |
15392 | 2453 |
|
2454 |
lemma Max_in [simp]: |
|
15484 | 2455 |
shows "finite A \<Longrightarrow> A \<noteq> {} \<Longrightarrow> Max A \<in> A" |
15791 | 2456 |
using max.fold1_in |
15484 | 2457 |
by(fastsimp simp: Max_def max_def) |
15392 | 2458 |
|
18423 | 2459 |
lemma Min_antimono: "\<lbrakk> M \<subseteq> N; M \<noteq> {}; finite N \<rbrakk> \<Longrightarrow> Min N \<le> Min M" |
2460 |
by(simp add:Finite_Set.Min_def min.fold1_antimono) |
|
2461 |
||
2462 |
lemma Max_mono: "\<lbrakk> M \<subseteq> N; M \<noteq> {}; finite N \<rbrakk> \<Longrightarrow> Max M \<le> Max N" |
|
2463 |
by(simp add:Max_def max.fold1_antimono) |
|
2464 |
||
15484 | 2465 |
lemma Min_le [simp]: "\<lbrakk> finite A; A \<noteq> {}; x \<in> A \<rbrakk> \<Longrightarrow> Min A \<le> x" |
15791 | 2466 |
by(simp add: Min_def min.fold1_belowI) |
15392 | 2467 |
|
15484 | 2468 |
lemma Max_ge [simp]: "\<lbrakk> finite A; A \<noteq> {}; x \<in> A \<rbrakk> \<Longrightarrow> x \<le> Max A" |
15791 | 2469 |
by(simp add: Max_def max.fold1_belowI) |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2470 |
|
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2471 |
lemma Min_ge_iff[simp]: |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2472 |
"\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> (x \<le> Min A) = (\<forall>a\<in>A. x \<le> a)" |
15791 | 2473 |
by(simp add: Min_def min.below_fold1_iff) |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2474 |
|
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2475 |
lemma Max_le_iff[simp]: |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2476 |
"\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> (Max A \<le> x) = (\<forall>a\<in>A. a \<le> x)" |
15791 | 2477 |
by(simp add: Max_def max.below_fold1_iff) |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2478 |
|
18493 | 2479 |
lemma Min_gr_iff[simp]: |
2480 |
"\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> (x < Min A) = (\<forall>a\<in>A. x < a)" |
|
2481 |
by(simp add: Min_def min.strict_below_fold1_iff) |
|
2482 |
||
2483 |
lemma Max_less_iff[simp]: |
|
2484 |
"\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> (Max A < x) = (\<forall>a\<in>A. a < x)" |
|
2485 |
by(simp add: Max_def max.strict_below_fold1_iff) |
|
2486 |
||
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2487 |
lemma Min_le_iff: |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2488 |
"\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> (Min A \<le> x) = (\<exists>a\<in>A. a \<le> x)" |
15791 | 2489 |
by(simp add: Min_def min.fold1_below_iff) |
15497
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2490 |
|
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2491 |
lemma Max_ge_iff: |
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents:
15487
diff
changeset
|
2492 |
"\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> (x \<le> Max A) = (\<exists>a\<in>A. x \<le> a)" |
15791 | 2493 |
by(simp add: Max_def max.fold1_below_iff) |
12396 | 2494 |
|
18493 | 2495 |
lemma Min_le_iff: |
2496 |
"\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> (Min A < x) = (\<exists>a\<in>A. a < x)" |
|
2497 |
by(simp add: Min_def min.fold1_strict_below_iff) |
|
2498 |
||
2499 |
lemma Max_ge_iff: |
|
2500 |
"\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> (x < Max A) = (\<exists>a\<in>A. x < a)" |
|
2501 |
by(simp add: Max_def max.fold1_strict_below_iff) |
|
2502 |
||
18423 | 2503 |
lemma Min_Un: "\<lbrakk>finite A; A \<noteq> {}; finite B; B \<noteq> {}\<rbrakk> |
2504 |
\<Longrightarrow> Min (A \<union> B) = min (Min A) (Min B)" |
|
2505 |
by(simp add:Min_def min.f.fold1_Un2) |
|
2506 |
||
2507 |
lemma Max_Un: "\<lbrakk>finite A; A \<noteq> {}; finite B; B \<noteq> {}\<rbrakk> |
|
2508 |
\<Longrightarrow> Max (A \<union> B) = max (Max A) (Max B)" |
|
2509 |
by(simp add:Max_def max.f.fold1_Un2) |
|
2510 |
||
2511 |
||
2512 |
lemma hom_Min_commute: |
|
2513 |
"(!!x y::'a::linorder. h(min x y) = min (h x) (h y::'a)) |
|
2514 |
\<Longrightarrow> finite N \<Longrightarrow> N \<noteq> {} \<Longrightarrow> h(Min N) = Min(h ` N)" |
|
2515 |
by(simp add:Finite_Set.Min_def min.hom_fold1_commute) |
|
2516 |
||
2517 |
lemma hom_Max_commute: |
|
2518 |
"(!!x y::'a::linorder. h(max x y) = max (h x) (h y::'a)) |
|
2519 |
\<Longrightarrow> finite N \<Longrightarrow> N \<noteq> {} \<Longrightarrow> h(Max N) = Max(h ` N)" |
|
2520 |
by(simp add:Max_def max.hom_fold1_commute) |
|
2521 |
||
2522 |
||
2523 |
lemma add_Min_commute: fixes k::"'a::{pordered_ab_semigroup_add,linorder}" |
|
2524 |
shows "finite N \<Longrightarrow> N \<noteq> {} \<Longrightarrow> k + Min N = Min {k+m|m. m \<in> N}" |
|
2525 |
apply(subgoal_tac "!!x y. k + min x y = min (k + x) (k + y)") |
|
2526 |
using hom_Min_commute[of "op + k" N] |
|
2527 |
apply simp apply(rule arg_cong[where f = Min]) apply blast |
|
2528 |
apply(simp add:min_def linorder_not_le) |
|
2529 |
apply(blast intro:order.antisym order_less_imp_le add_left_mono) |
|
2530 |
done |
|
2531 |
||
2532 |
lemma add_Max_commute: fixes k::"'a::{pordered_ab_semigroup_add,linorder}" |
|
2533 |
shows "finite N \<Longrightarrow> N \<noteq> {} \<Longrightarrow> k + Max N = Max {k+m|m. m \<in> N}" |
|
2534 |
apply(subgoal_tac "!!x y. k + max x y = max (k + x) (k + y)") |
|
2535 |
using hom_Max_commute[of "op + k" N] |
|
2536 |
apply simp apply(rule arg_cong[where f = Max]) apply blast |
|
2537 |
apply(simp add:max_def linorder_not_le) |
|
2538 |
apply(blast intro:order.antisym order_less_imp_le add_left_mono) |
|
2539 |
done |
|
2540 |
||
2541 |
||
2542 |
||
17022 | 2543 |
subsection {* Properties of axclass @{text finite} *} |
2544 |
||
2545 |
text{* Many of these are by Brian Huffman. *} |
|
2546 |
||
2547 |
lemma finite_set: "finite (A::'a::finite set)" |
|
2548 |
by (rule finite_subset [OF subset_UNIV finite]) |
|
2549 |
||
2550 |
||
2551 |
instance unit :: finite |
|
2552 |
proof |
|
2553 |
have "finite {()}" by simp |
|
2554 |
also have "{()} = UNIV" by auto |
|
2555 |
finally show "finite (UNIV :: unit set)" . |
|
2556 |
qed |
|
2557 |
||
2558 |
instance bool :: finite |
|
2559 |
proof |
|
2560 |
have "finite {True, False}" by simp |
|
2561 |
also have "{True, False} = UNIV" by auto |
|
2562 |
finally show "finite (UNIV :: bool set)" . |
|
2563 |
qed |
|
2564 |
||
2565 |
||
2566 |
instance * :: (finite, finite) finite |
|
2567 |
proof |
|
2568 |
show "finite (UNIV :: ('a \<times> 'b) set)" |
|
2569 |
proof (rule finite_Prod_UNIV) |
|
2570 |
show "finite (UNIV :: 'a set)" by (rule finite) |
|
2571 |
show "finite (UNIV :: 'b set)" by (rule finite) |
|
2572 |
qed |
|
2573 |
qed |
|
2574 |
||
2575 |
instance "+" :: (finite, finite) finite |
|
2576 |
proof |
|
2577 |
have a: "finite (UNIV :: 'a set)" by (rule finite) |
|
2578 |
have b: "finite (UNIV :: 'b set)" by (rule finite) |
|
2579 |
from a b have "finite ((UNIV :: 'a set) <+> (UNIV :: 'b set))" |
|
2580 |
by (rule finite_Plus) |
|
2581 |
thus "finite (UNIV :: ('a + 'b) set)" by simp |
|
2582 |
qed |
|
2583 |
||
2584 |
||
2585 |
instance set :: (finite) finite |
|
2586 |
proof |
|
2587 |
have "finite (UNIV :: 'a set)" by (rule finite) |
|
2588 |
hence "finite (Pow (UNIV :: 'a set))" |
|
2589 |
by (rule finite_Pow_iff [THEN iffD2]) |
|
2590 |
thus "finite (UNIV :: 'a set set)" by simp |
|
2591 |
qed |
|
2592 |
||
2593 |
lemma inj_graph: "inj (%f. {(x, y). y = f x})" |
|
2594 |
by (rule inj_onI, auto simp add: expand_set_eq expand_fun_eq) |
|
2595 |
||
21215
7c9337a0e30a
made locale partial_order compatible with axclass order
haftmann
parents:
21199
diff
changeset
|
2596 |
instance "fun" :: (finite, finite) finite |
17022 | 2597 |
proof |
2598 |
show "finite (UNIV :: ('a => 'b) set)" |
|
2599 |
proof (rule finite_imageD) |
|
2600 |
let ?graph = "%f::'a => 'b. {(x, y). y = f x}" |
|
2601 |
show "finite (range ?graph)" by (rule finite_set) |
|
2602 |
show "inj ?graph" by (rule inj_graph) |
|
2603 |
qed |
|
2604 |
qed |
|
2605 |
||
15042 | 2606 |
end |