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