| author | blanchet | 
| Thu, 02 Aug 2012 10:10:29 +0200 | |
| changeset 48653 | 6ac7fd9b3a54 | 
| parent 48632 | c028cf680a3e | 
| child 48891 | c0eafbd55de3 | 
| permissions | -rw-r--r-- | 
| 12396 | 1 | (* Title: HOL/Finite_Set.thy | 
| 2 | 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: 
16760diff
changeset | 3 | with contributions by Jeremy Avigad | 
| 12396 | 4 | *) | 
| 5 | ||
| 6 | header {* Finite sets *}
 | |
| 7 | ||
| 15131 | 8 | theory Finite_Set | 
| 38400 
9bfcb1507c6b
import swap prevents strange failure of SML code generator for datatypes
 haftmann parents: 
37770diff
changeset | 9 | imports Option Power | 
| 48109 
0a58f7eefba2
Integrated set comprehension pointfree simproc.
 Rafal Kolanski <rafal.kolanski@nicta.com.au> parents: 
48063diff
changeset | 10 | uses ("Tools/set_comprehension_pointfree.ML")
 | 
| 15131 | 11 | begin | 
| 12396 | 12 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 13 | subsection {* Predicate for finite sets *}
 | 
| 12396 | 14 | |
| 41656 | 15 | inductive finite :: "'a set \<Rightarrow> bool" | 
| 22262 | 16 | where | 
| 17 |     emptyI [simp, intro!]: "finite {}"
 | |
| 41656 | 18 | | insertI [simp, intro!]: "finite A \<Longrightarrow> finite (insert a A)" | 
| 19 | ||
| 48122 
f479f36ed2ff
adding set comprehension simproc to code generation's preprocessing to generate code for some set comprehensions;
 bulwahn parents: 
48109diff
changeset | 20 | (* FIXME: move to Set theory *) | 
| 48109 
0a58f7eefba2
Integrated set comprehension pointfree simproc.
 Rafal Kolanski <rafal.kolanski@nicta.com.au> parents: 
48063diff
changeset | 21 | use "Tools/set_comprehension_pointfree.ML" | 
| 
0a58f7eefba2
Integrated set comprehension pointfree simproc.
 Rafal Kolanski <rafal.kolanski@nicta.com.au> parents: 
48063diff
changeset | 22 | |
| 
0a58f7eefba2
Integrated set comprehension pointfree simproc.
 Rafal Kolanski <rafal.kolanski@nicta.com.au> parents: 
48063diff
changeset | 23 | simproc_setup finite_Collect ("finite (Collect P)") =
 | 
| 48124 | 24 |   {* K Set_Comprehension_Pointfree.simproc *}
 | 
| 48109 
0a58f7eefba2
Integrated set comprehension pointfree simproc.
 Rafal Kolanski <rafal.kolanski@nicta.com.au> parents: 
48063diff
changeset | 25 | |
| 48122 
f479f36ed2ff
adding set comprehension simproc to code generation's preprocessing to generate code for some set comprehensions;
 bulwahn parents: 
48109diff
changeset | 26 | (* FIXME: move to Set theory*) | 
| 
f479f36ed2ff
adding set comprehension simproc to code generation's preprocessing to generate code for some set comprehensions;
 bulwahn parents: 
48109diff
changeset | 27 | setup {*
 | 
| 
f479f36ed2ff
adding set comprehension simproc to code generation's preprocessing to generate code for some set comprehensions;
 bulwahn parents: 
48109diff
changeset | 28 | Code_Preproc.map_pre (fn ss => ss addsimprocs | 
| 
f479f36ed2ff
adding set comprehension simproc to code generation's preprocessing to generate code for some set comprehensions;
 bulwahn parents: 
48109diff
changeset | 29 |     [Raw_Simplifier.make_simproc {name = "set comprehension", lhss = [@{cpat "Collect ?P"}],
 | 
| 48128 | 30 | proc = K Set_Comprehension_Pointfree.code_simproc, identifier = []}]) | 
| 48122 
f479f36ed2ff
adding set comprehension simproc to code generation's preprocessing to generate code for some set comprehensions;
 bulwahn parents: 
48109diff
changeset | 31 | *} | 
| 48109 
0a58f7eefba2
Integrated set comprehension pointfree simproc.
 Rafal Kolanski <rafal.kolanski@nicta.com.au> parents: 
48063diff
changeset | 32 | |
| 41656 | 33 | lemma finite_induct [case_names empty insert, induct set: finite]: | 
| 34 |   -- {* Discharging @{text "x \<notin> F"} entails extra work. *}
 | |
| 35 | assumes "finite F" | |
| 36 |   assumes "P {}"
 | |
| 37 | and insert: "\<And>x F. finite F \<Longrightarrow> x \<notin> F \<Longrightarrow> P F \<Longrightarrow> P (insert x F)" | |
| 38 | shows "P F" | |
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 39 | using `finite F` | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 40 | proof induct | 
| 41656 | 41 |   show "P {}" by fact
 | 
| 42 | fix x F assume F: "finite F" and P: "P F" | |
| 43 | show "P (insert x F)" | |
| 44 | proof cases | |
| 45 | assume "x \<in> F" | |
| 46 | hence "insert x F = F" by (rule insert_absorb) | |
| 47 | with P show ?thesis by (simp only:) | |
| 48 | next | |
| 49 | assume "x \<notin> F" | |
| 50 | from F this P show ?thesis by (rule insert) | |
| 51 | qed | |
| 52 | qed | |
| 53 | ||
| 54 | ||
| 55 | subsubsection {* Choice principles *}
 | |
| 12396 | 56 | |
| 13737 | 57 | lemma ex_new_if_finite: -- "does not depend on def of finite at all" | 
| 14661 | 58 | assumes "\<not> finite (UNIV :: 'a set)" and "finite A" | 
| 59 | shows "\<exists>a::'a. a \<notin> A" | |
| 60 | proof - | |
| 28823 | 61 | from assms have "A \<noteq> UNIV" by blast | 
| 41656 | 62 | then show ?thesis by blast | 
| 12396 | 63 | qed | 
| 64 | ||
| 41656 | 65 | text {* A finite choice principle. Does not need the SOME choice operator. *}
 | 
| 15484 | 66 | |
| 29923 | 67 | lemma finite_set_choice: | 
| 41656 | 68 | "finite A \<Longrightarrow> \<forall>x\<in>A. \<exists>y. P x y \<Longrightarrow> \<exists>f. \<forall>x\<in>A. P x (f x)" | 
| 69 | proof (induct rule: finite_induct) | |
| 70 | case empty then show ?case by simp | |
| 29923 | 71 | next | 
| 72 | case (insert a A) | |
| 73 | then obtain f b where f: "ALL x:A. P x (f x)" and ab: "P a b" by auto | |
| 74 | show ?case (is "EX f. ?P f") | |
| 75 | proof | |
| 76 | show "?P(%x. if x = a then b else f x)" using f ab by auto | |
| 77 | qed | |
| 78 | qed | |
| 79 | ||
| 23878 | 80 | |
| 41656 | 81 | subsubsection {* Finite sets are the images of initial segments of natural numbers *}
 | 
| 15392 | 82 | |
| 15510 | 83 | lemma finite_imp_nat_seg_image_inj_on: | 
| 41656 | 84 | assumes "finite A" | 
| 85 |   shows "\<exists>(n::nat) f. A = f ` {i. i < n} \<and> inj_on f {i. i < n}"
 | |
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 86 | using assms | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 87 | proof induct | 
| 15392 | 88 | case empty | 
| 41656 | 89 | show ?case | 
| 90 | proof | |
| 91 |     show "\<exists>f. {} = f ` {i::nat. i < 0} \<and> inj_on f {i. i < 0}" by simp 
 | |
| 15510 | 92 | qed | 
| 15392 | 93 | next | 
| 94 | case (insert a A) | |
| 23389 | 95 | have notinA: "a \<notin> A" by fact | 
| 15510 | 96 | from insert.hyps obtain n f | 
| 97 |     where "A = f ` {i::nat. i < n}" "inj_on f {i. i < n}" by blast
 | |
| 98 |   hence "insert a A = f(n:=a) ` {i. i < Suc n}"
 | |
| 99 |         "inj_on (f(n:=a)) {i. i < Suc n}" using notinA
 | |
| 100 | by (auto simp add: image_def Ball_def inj_on_def less_Suc_eq) | |
| 15392 | 101 | thus ?case by blast | 
| 102 | qed | |
| 103 | ||
| 104 | lemma nat_seg_image_imp_finite: | |
| 41656 | 105 |   "A = f ` {i::nat. i < n} \<Longrightarrow> finite A"
 | 
| 106 | proof (induct n arbitrary: A) | |
| 15392 | 107 | case 0 thus ?case by simp | 
| 108 | next | |
| 109 | case (Suc n) | |
| 110 |   let ?B = "f ` {i. i < n}"
 | |
| 111 | have finB: "finite ?B" by(rule Suc.hyps[OF refl]) | |
| 112 | show ?case | |
| 113 | proof cases | |
| 114 | assume "\<exists>k<n. f n = f k" | |
| 115 | hence "A = ?B" using Suc.prems by(auto simp:less_Suc_eq) | |
| 116 | thus ?thesis using finB by simp | |
| 117 | next | |
| 118 | assume "\<not>(\<exists> k<n. f n = f k)" | |
| 119 | hence "A = insert (f n) ?B" using Suc.prems by(auto simp:less_Suc_eq) | |
| 120 | thus ?thesis using finB by simp | |
| 121 | qed | |
| 122 | qed | |
| 123 | ||
| 124 | lemma finite_conv_nat_seg_image: | |
| 41656 | 125 |   "finite A \<longleftrightarrow> (\<exists>(n::nat) f. A = f ` {i::nat. i < n})"
 | 
| 126 | by (blast intro: nat_seg_image_imp_finite dest: finite_imp_nat_seg_image_inj_on) | |
| 15392 | 127 | |
| 32988 | 128 | lemma finite_imp_inj_to_nat_seg: | 
| 41656 | 129 | assumes "finite A" | 
| 130 |   shows "\<exists>f n::nat. f ` A = {i. i < n} \<and> inj_on f A"
 | |
| 32988 | 131 | proof - | 
| 132 | from finite_imp_nat_seg_image_inj_on[OF `finite A`] | |
| 133 |   obtain f and n::nat where bij: "bij_betw f {i. i<n} A"
 | |
| 134 | by (auto simp:bij_betw_def) | |
| 33057 | 135 |   let ?f = "the_inv_into {i. i<n} f"
 | 
| 32988 | 136 |   have "inj_on ?f A & ?f ` A = {i. i<n}"
 | 
| 33057 | 137 | by (fold bij_betw_def) (rule bij_betw_the_inv_into[OF bij]) | 
| 32988 | 138 | thus ?thesis by blast | 
| 139 | qed | |
| 140 | ||
| 41656 | 141 | lemma finite_Collect_less_nat [iff]: | 
| 142 |   "finite {n::nat. n < k}"
 | |
| 44890 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 nipkow parents: 
44835diff
changeset | 143 | by (fastforce simp: finite_conv_nat_seg_image) | 
| 29920 | 144 | |
| 41656 | 145 | lemma finite_Collect_le_nat [iff]: | 
| 146 |   "finite {n::nat. n \<le> k}"
 | |
| 147 | by (simp add: le_eq_less_or_eq Collect_disj_eq) | |
| 15392 | 148 | |
| 41656 | 149 | |
| 150 | subsubsection {* Finiteness and common set operations *}
 | |
| 12396 | 151 | |
| 41656 | 152 | lemma rev_finite_subset: | 
| 153 | "finite B \<Longrightarrow> A \<subseteq> B \<Longrightarrow> finite A" | |
| 154 | proof (induct arbitrary: A rule: finite_induct) | |
| 155 | case empty | |
| 156 | then show ?case by simp | |
| 157 | next | |
| 158 | case (insert x F A) | |
| 159 |   have A: "A \<subseteq> insert x F" and r: "A - {x} \<subseteq> F \<Longrightarrow> finite (A - {x})" by fact+
 | |
| 160 | show "finite A" | |
| 161 | proof cases | |
| 162 | assume x: "x \<in> A" | |
| 163 |     with A have "A - {x} \<subseteq> F" by (simp add: subset_insert_iff)
 | |
| 164 |     with r have "finite (A - {x})" .
 | |
| 165 |     hence "finite (insert x (A - {x}))" ..
 | |
| 166 |     also have "insert x (A - {x}) = A" using x by (rule insert_Diff)
 | |
| 167 | finally show ?thesis . | |
| 12396 | 168 | next | 
| 41656 | 169 | show "A \<subseteq> F ==> ?thesis" by fact | 
| 170 | assume "x \<notin> A" | |
| 171 | with A show "A \<subseteq> F" by (simp add: subset_insert_iff) | |
| 12396 | 172 | qed | 
| 173 | qed | |
| 174 | ||
| 41656 | 175 | lemma finite_subset: | 
| 176 | "A \<subseteq> B \<Longrightarrow> finite B \<Longrightarrow> finite A" | |
| 177 | by (rule rev_finite_subset) | |
| 29901 | 178 | |
| 41656 | 179 | lemma finite_UnI: | 
| 180 | assumes "finite F" and "finite G" | |
| 181 | shows "finite (F \<union> G)" | |
| 182 | using assms by induct simp_all | |
| 31992 | 183 | |
| 41656 | 184 | lemma finite_Un [iff]: | 
| 185 | "finite (F \<union> G) \<longleftrightarrow> finite F \<and> finite G" | |
| 186 | by (blast intro: finite_UnI finite_subset [of _ "F \<union> G"]) | |
| 31992 | 187 | |
| 41656 | 188 | lemma finite_insert [simp]: "finite (insert a A) \<longleftrightarrow> finite A" | 
| 12396 | 189 | proof - | 
| 41656 | 190 |   have "finite {a} \<and> finite A \<longleftrightarrow> finite A" by simp
 | 
| 191 |   then have "finite ({a} \<union> A) \<longleftrightarrow> finite A" by (simp only: finite_Un)
 | |
| 23389 | 192 | then show ?thesis by simp | 
| 12396 | 193 | qed | 
| 194 | ||
| 41656 | 195 | lemma finite_Int [simp, intro]: | 
| 196 | "finite F \<or> finite G \<Longrightarrow> finite (F \<inter> G)" | |
| 197 | by (blast intro: finite_subset) | |
| 198 | ||
| 199 | lemma finite_Collect_conjI [simp, intro]: | |
| 200 |   "finite {x. P x} \<or> finite {x. Q x} \<Longrightarrow> finite {x. P x \<and> Q x}"
 | |
| 201 | by (simp add: Collect_conj_eq) | |
| 202 | ||
| 203 | lemma finite_Collect_disjI [simp]: | |
| 204 |   "finite {x. P x \<or> Q x} \<longleftrightarrow> finite {x. P x} \<and> finite {x. Q x}"
 | |
| 205 | by (simp add: Collect_disj_eq) | |
| 206 | ||
| 207 | lemma finite_Diff [simp, intro]: | |
| 208 | "finite A \<Longrightarrow> finite (A - B)" | |
| 209 | by (rule finite_subset, rule Diff_subset) | |
| 29901 | 210 | |
| 211 | lemma finite_Diff2 [simp]: | |
| 41656 | 212 | assumes "finite B" | 
| 213 | shows "finite (A - B) \<longleftrightarrow> finite A" | |
| 29901 | 214 | proof - | 
| 41656 | 215 | have "finite A \<longleftrightarrow> finite((A - B) \<union> (A \<inter> B))" by (simp add: Un_Diff_Int) | 
| 216 | also have "\<dots> \<longleftrightarrow> finite (A - B)" using `finite B` by simp | |
| 29901 | 217 | finally show ?thesis .. | 
| 218 | qed | |
| 219 | ||
| 41656 | 220 | lemma finite_Diff_insert [iff]: | 
| 221 | "finite (A - insert a B) \<longleftrightarrow> finite (A - B)" | |
| 222 | proof - | |
| 223 |   have "finite (A - B) \<longleftrightarrow> finite (A - B - {a})" by simp
 | |
| 224 |   moreover have "A - insert a B = A - B - {a}" by auto
 | |
| 225 | ultimately show ?thesis by simp | |
| 226 | qed | |
| 227 | ||
| 29901 | 228 | lemma finite_compl[simp]: | 
| 41656 | 229 | "finite (A :: 'a set) \<Longrightarrow> finite (- A) \<longleftrightarrow> finite (UNIV :: 'a set)" | 
| 230 | by (simp add: Compl_eq_Diff_UNIV) | |
| 12396 | 231 | |
| 29916 | 232 | lemma finite_Collect_not[simp]: | 
| 41656 | 233 |   "finite {x :: 'a. P x} \<Longrightarrow> finite {x. \<not> P x} \<longleftrightarrow> finite (UNIV :: 'a set)"
 | 
| 234 | by (simp add: Collect_neg_eq) | |
| 235 | ||
| 236 | lemma finite_Union [simp, intro]: | |
| 237 | "finite A \<Longrightarrow> (\<And>M. M \<in> A \<Longrightarrow> finite M) \<Longrightarrow> finite(\<Union>A)" | |
| 238 | by (induct rule: finite_induct) simp_all | |
| 239 | ||
| 240 | lemma finite_UN_I [intro]: | |
| 241 | "finite A \<Longrightarrow> (\<And>a. a \<in> A \<Longrightarrow> finite (B a)) \<Longrightarrow> finite (\<Union>a\<in>A. B a)" | |
| 242 | by (induct rule: finite_induct) simp_all | |
| 29903 | 243 | |
| 41656 | 244 | lemma finite_UN [simp]: | 
| 245 | "finite A \<Longrightarrow> finite (UNION A B) \<longleftrightarrow> (\<forall>x\<in>A. finite (B x))" | |
| 246 | by (blast intro: finite_subset) | |
| 247 | ||
| 248 | lemma finite_Inter [intro]: | |
| 249 | "\<exists>A\<in>M. finite A \<Longrightarrow> finite (\<Inter>M)" | |
| 250 | by (blast intro: Inter_lower finite_subset) | |
| 12396 | 251 | |
| 41656 | 252 | lemma finite_INT [intro]: | 
| 253 | "\<exists>x\<in>I. finite (A x) \<Longrightarrow> finite (\<Inter>x\<in>I. A x)" | |
| 254 | by (blast intro: INT_lower finite_subset) | |
| 13825 | 255 | |
| 41656 | 256 | lemma finite_imageI [simp, intro]: | 
| 257 | "finite F \<Longrightarrow> finite (h ` F)" | |
| 258 | by (induct rule: finite_induct) simp_all | |
| 13825 | 259 | |
| 31768 | 260 | lemma finite_image_set [simp]: | 
| 261 |   "finite {x. P x} \<Longrightarrow> finite { f x | x. P x }"
 | |
| 262 | by (simp add: image_Collect [symmetric]) | |
| 263 | ||
| 41656 | 264 | lemma finite_imageD: | 
| 42206 | 265 | assumes "finite (f ` A)" and "inj_on f A" | 
| 266 | shows "finite A" | |
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 267 | using assms | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 268 | proof (induct "f ` A" arbitrary: A) | 
| 42206 | 269 | case empty then show ?case by simp | 
| 270 | next | |
| 271 | case (insert x B) | |
| 272 | then have B_A: "insert x B = f ` A" by simp | |
| 273 | then obtain y where "x = f y" and "y \<in> A" by blast | |
| 274 |   from B_A `x \<notin> B` have "B = f ` A - {x}" by blast
 | |
| 275 |   with B_A `x \<notin> B` `x = f y` `inj_on f A` `y \<in> A` have "B = f ` (A - {y})" by (simp add: inj_on_image_set_diff)
 | |
| 276 |   moreover from `inj_on f A` have "inj_on f (A - {y})" by (rule inj_on_diff)
 | |
| 277 |   ultimately have "finite (A - {y})" by (rule insert.hyps)
 | |
| 278 | then show "finite A" by simp | |
| 279 | qed | |
| 12396 | 280 | |
| 41656 | 281 | lemma finite_surj: | 
| 282 | "finite A \<Longrightarrow> B \<subseteq> f ` A \<Longrightarrow> finite B" | |
| 283 | by (erule finite_subset) (rule finite_imageI) | |
| 12396 | 284 | |
| 41656 | 285 | lemma finite_range_imageI: | 
| 286 | "finite (range g) \<Longrightarrow> finite (range (\<lambda>x. f (g x)))" | |
| 287 | by (drule finite_imageI) (simp add: range_composition) | |
| 13825 | 288 | |
| 41656 | 289 | lemma finite_subset_image: | 
| 290 | assumes "finite B" | |
| 291 | shows "B \<subseteq> f ` A \<Longrightarrow> \<exists>C\<subseteq>A. finite C \<and> B = f ` C" | |
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 292 | using assms | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 293 | proof induct | 
| 41656 | 294 | case empty then show ?case by simp | 
| 295 | next | |
| 296 | case insert then show ?case | |
| 297 | by (clarsimp simp del: image_insert simp add: image_insert [symmetric]) | |
| 298 | blast | |
| 299 | qed | |
| 300 | ||
| 43991 | 301 | lemma finite_vimage_IntI: | 
| 302 | "finite F \<Longrightarrow> inj_on h A \<Longrightarrow> finite (h -` F \<inter> A)" | |
| 41656 | 303 | apply (induct rule: finite_induct) | 
| 21575 | 304 | apply simp_all | 
| 14430 
5cb24165a2e1
new material from Avigad, and simplified treatment of division by 0
 paulson parents: 
14331diff
changeset | 305 | apply (subst vimage_insert) | 
| 43991 | 306 | apply (simp add: finite_subset [OF inj_on_vimage_singleton] Int_Un_distrib2) | 
| 13825 | 307 | done | 
| 308 | ||
| 43991 | 309 | lemma finite_vimageI: | 
| 310 | "finite F \<Longrightarrow> inj h \<Longrightarrow> finite (h -` F)" | |
| 311 | using finite_vimage_IntI[of F h UNIV] by auto | |
| 312 | ||
| 34111 
1b015caba46c
add lemmas rev_finite_subset, finite_vimageD, finite_vimage_iff
 huffman parents: 
34007diff
changeset | 313 | lemma finite_vimageD: | 
| 
1b015caba46c
add lemmas rev_finite_subset, finite_vimageD, finite_vimage_iff
 huffman parents: 
34007diff
changeset | 314 | assumes fin: "finite (h -` F)" and surj: "surj h" | 
| 
1b015caba46c
add lemmas rev_finite_subset, finite_vimageD, finite_vimage_iff
 huffman parents: 
34007diff
changeset | 315 | shows "finite F" | 
| 
1b015caba46c
add lemmas rev_finite_subset, finite_vimageD, finite_vimage_iff
 huffman parents: 
34007diff
changeset | 316 | proof - | 
| 
1b015caba46c
add lemmas rev_finite_subset, finite_vimageD, finite_vimage_iff
 huffman parents: 
34007diff
changeset | 317 | have "finite (h ` (h -` F))" using fin by (rule finite_imageI) | 
| 
1b015caba46c
add lemmas rev_finite_subset, finite_vimageD, finite_vimage_iff
 huffman parents: 
34007diff
changeset | 318 | also have "h ` (h -` F) = F" using surj by (rule surj_image_vimage_eq) | 
| 
1b015caba46c
add lemmas rev_finite_subset, finite_vimageD, finite_vimage_iff
 huffman parents: 
34007diff
changeset | 319 | finally show "finite F" . | 
| 
1b015caba46c
add lemmas rev_finite_subset, finite_vimageD, finite_vimage_iff
 huffman parents: 
34007diff
changeset | 320 | qed | 
| 
1b015caba46c
add lemmas rev_finite_subset, finite_vimageD, finite_vimage_iff
 huffman parents: 
34007diff
changeset | 321 | |
| 
1b015caba46c
add lemmas rev_finite_subset, finite_vimageD, finite_vimage_iff
 huffman parents: 
34007diff
changeset | 322 | lemma finite_vimage_iff: "bij h \<Longrightarrow> finite (h -` F) \<longleftrightarrow> finite F" | 
| 
1b015caba46c
add lemmas rev_finite_subset, finite_vimageD, finite_vimage_iff
 huffman parents: 
34007diff
changeset | 323 | unfolding bij_def by (auto elim: finite_vimageD finite_vimageI) | 
| 
1b015caba46c
add lemmas rev_finite_subset, finite_vimageD, finite_vimage_iff
 huffman parents: 
34007diff
changeset | 324 | |
| 41656 | 325 | lemma finite_Collect_bex [simp]: | 
| 326 | assumes "finite A" | |
| 327 |   shows "finite {x. \<exists>y\<in>A. Q x y} \<longleftrightarrow> (\<forall>y\<in>A. finite {x. Q x y})"
 | |
| 328 | proof - | |
| 329 |   have "{x. \<exists>y\<in>A. Q x y} = (\<Union>y\<in>A. {x. Q x y})" by auto
 | |
| 330 | with assms show ?thesis by simp | |
| 331 | qed | |
| 12396 | 332 | |
| 41656 | 333 | lemma finite_Collect_bounded_ex [simp]: | 
| 334 |   assumes "finite {y. P y}"
 | |
| 335 |   shows "finite {x. \<exists>y. P y \<and> Q x y} \<longleftrightarrow> (\<forall>y. P y \<longrightarrow> finite {x. Q x y})"
 | |
| 336 | proof - | |
| 337 |   have "{x. EX y. P y & Q x y} = (\<Union>y\<in>{y. P y}. {x. Q x y})" by auto
 | |
| 338 | with assms show ?thesis by simp | |
| 339 | qed | |
| 29920 | 340 | |
| 41656 | 341 | lemma finite_Plus: | 
| 342 | "finite A \<Longrightarrow> finite B \<Longrightarrow> finite (A <+> B)" | |
| 343 | by (simp add: Plus_def) | |
| 17022 | 344 | |
| 31080 | 345 | lemma finite_PlusD: | 
| 346 | fixes A :: "'a set" and B :: "'b set" | |
| 347 | assumes fin: "finite (A <+> B)" | |
| 348 | shows "finite A" "finite B" | |
| 349 | proof - | |
| 350 | have "Inl ` A \<subseteq> A <+> B" by auto | |
| 41656 | 351 |   then have "finite (Inl ` A :: ('a + 'b) set)" using fin by (rule finite_subset)
 | 
| 352 | then show "finite A" by (rule finite_imageD) (auto intro: inj_onI) | |
| 31080 | 353 | next | 
| 354 | have "Inr ` B \<subseteq> A <+> B" by auto | |
| 41656 | 355 |   then have "finite (Inr ` B :: ('a + 'b) set)" using fin by (rule finite_subset)
 | 
| 356 | then show "finite B" by (rule finite_imageD) (auto intro: inj_onI) | |
| 31080 | 357 | qed | 
| 358 | ||
| 41656 | 359 | lemma finite_Plus_iff [simp]: | 
| 360 | "finite (A <+> B) \<longleftrightarrow> finite A \<and> finite B" | |
| 361 | by (auto intro: finite_PlusD finite_Plus) | |
| 31080 | 362 | |
| 41656 | 363 | lemma finite_Plus_UNIV_iff [simp]: | 
| 364 |   "finite (UNIV :: ('a + 'b) set) \<longleftrightarrow> finite (UNIV :: 'a set) \<and> finite (UNIV :: 'b set)"
 | |
| 365 | by (subst UNIV_Plus_UNIV [symmetric]) (rule finite_Plus_iff) | |
| 12396 | 366 | |
| 40786 
0a54cfc9add3
gave more standard finite set rules simp and intro attribute
 nipkow parents: 
40716diff
changeset | 367 | lemma finite_SigmaI [simp, intro]: | 
| 41656 | 368 | "finite A \<Longrightarrow> (\<And>a. a\<in>A \<Longrightarrow> finite (B a)) ==> finite (SIGMA a:A. B a)" | 
| 40786 
0a54cfc9add3
gave more standard finite set rules simp and intro attribute
 nipkow parents: 
40716diff
changeset | 369 | by (unfold Sigma_def) blast | 
| 12396 | 370 | |
| 41656 | 371 | lemma finite_cartesian_product: | 
| 372 | "finite A \<Longrightarrow> finite B \<Longrightarrow> finite (A \<times> B)" | |
| 15402 | 373 | by (rule finite_SigmaI) | 
| 374 | ||
| 12396 | 375 | lemma finite_Prod_UNIV: | 
| 41656 | 376 |   "finite (UNIV :: 'a set) \<Longrightarrow> finite (UNIV :: 'b set) \<Longrightarrow> finite (UNIV :: ('a \<times> 'b) set)"
 | 
| 377 | by (simp only: UNIV_Times_UNIV [symmetric] finite_cartesian_product) | |
| 12396 | 378 | |
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 379 | lemma finite_cartesian_productD1: | 
| 42207 | 380 |   assumes "finite (A \<times> B)" and "B \<noteq> {}"
 | 
| 381 | shows "finite A" | |
| 382 | proof - | |
| 383 |   from assms obtain n f where "A \<times> B = f ` {i::nat. i < n}"
 | |
| 384 | by (auto simp add: finite_conv_nat_seg_image) | |
| 385 |   then have "fst ` (A \<times> B) = fst ` f ` {i::nat. i < n}" by simp
 | |
| 386 |   with `B \<noteq> {}` have "A = (fst \<circ> f) ` {i::nat. i < n}"
 | |
| 387 | by (simp add: image_compose) | |
| 388 |   then have "\<exists>n f. A = f ` {i::nat. i < n}" by blast
 | |
| 389 | then show ?thesis | |
| 390 | by (auto simp add: finite_conv_nat_seg_image) | |
| 391 | qed | |
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 392 | |
| 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 393 | lemma finite_cartesian_productD2: | 
| 42207 | 394 |   assumes "finite (A \<times> B)" and "A \<noteq> {}"
 | 
| 395 | shows "finite B" | |
| 396 | proof - | |
| 397 |   from assms obtain n f where "A \<times> B = f ` {i::nat. i < n}"
 | |
| 398 | by (auto simp add: finite_conv_nat_seg_image) | |
| 399 |   then have "snd ` (A \<times> B) = snd ` f ` {i::nat. i < n}" by simp
 | |
| 400 |   with `A \<noteq> {}` have "B = (snd \<circ> f) ` {i::nat. i < n}"
 | |
| 401 | by (simp add: image_compose) | |
| 402 |   then have "\<exists>n f. B = f ` {i::nat. i < n}" by blast
 | |
| 403 | then show ?thesis | |
| 404 | by (auto simp add: finite_conv_nat_seg_image) | |
| 405 | qed | |
| 15409 
a063687d24eb
new and stronger lemmas and improved simplification for finite sets
 paulson parents: 
15402diff
changeset | 406 | |
| 48175 
fea68365c975
add finiteness lemmas for 'a * 'b and 'a set
 Andreas Lochbihler parents: 
48128diff
changeset | 407 | lemma finite_prod: | 
| 
fea68365c975
add finiteness lemmas for 'a * 'b and 'a set
 Andreas Lochbihler parents: 
48128diff
changeset | 408 |   "finite (UNIV :: ('a \<times> 'b) set) \<longleftrightarrow> finite (UNIV :: 'a set) \<and> finite (UNIV :: 'b set)"
 | 
| 
fea68365c975
add finiteness lemmas for 'a * 'b and 'a set
 Andreas Lochbihler parents: 
48128diff
changeset | 409 | by(auto simp add: UNIV_Times_UNIV[symmetric] simp del: UNIV_Times_UNIV | 
| 
fea68365c975
add finiteness lemmas for 'a * 'b and 'a set
 Andreas Lochbihler parents: 
48128diff
changeset | 410 | dest: finite_cartesian_productD1 finite_cartesian_productD2) | 
| 
fea68365c975
add finiteness lemmas for 'a * 'b and 'a set
 Andreas Lochbihler parents: 
48128diff
changeset | 411 | |
| 41656 | 412 | lemma finite_Pow_iff [iff]: | 
| 413 | "finite (Pow A) \<longleftrightarrow> finite A" | |
| 12396 | 414 | proof | 
| 415 | assume "finite (Pow A)" | |
| 41656 | 416 |   then have "finite ((%x. {x}) ` A)" by (blast intro: finite_subset)
 | 
| 417 | then show "finite A" by (rule finite_imageD [unfolded inj_on_def]) simp | |
| 12396 | 418 | next | 
| 419 | assume "finite A" | |
| 41656 | 420 | then show "finite (Pow A)" | 
| 35216 | 421 | by induct (simp_all add: Pow_insert) | 
| 12396 | 422 | qed | 
| 423 | ||
| 41656 | 424 | corollary finite_Collect_subsets [simp, intro]: | 
| 425 |   "finite A \<Longrightarrow> finite {B. B \<subseteq> A}"
 | |
| 426 | by (simp add: Pow_def [symmetric]) | |
| 29918 | 427 | |
| 48175 
fea68365c975
add finiteness lemmas for 'a * 'b and 'a set
 Andreas Lochbihler parents: 
48128diff
changeset | 428 | lemma finite_set: "finite (UNIV :: 'a set set) \<longleftrightarrow> finite (UNIV :: 'a set)" | 
| 
fea68365c975
add finiteness lemmas for 'a * 'b and 'a set
 Andreas Lochbihler parents: 
48128diff
changeset | 429 | by(simp only: finite_Pow_iff Pow_UNIV[symmetric]) | 
| 
fea68365c975
add finiteness lemmas for 'a * 'b and 'a set
 Andreas Lochbihler parents: 
48128diff
changeset | 430 | |
| 15392 | 431 | lemma finite_UnionD: "finite(\<Union>A) \<Longrightarrow> finite A" | 
| 41656 | 432 | by (blast intro: finite_subset [OF subset_Pow_Union]) | 
| 15392 | 433 | |
| 434 | ||
| 41656 | 435 | subsubsection {* Further induction rules on finite sets *}
 | 
| 436 | ||
| 437 | lemma finite_ne_induct [case_names singleton insert, consumes 2]: | |
| 438 |   assumes "finite F" and "F \<noteq> {}"
 | |
| 439 |   assumes "\<And>x. P {x}"
 | |
| 440 |     and "\<And>x F. finite F \<Longrightarrow> F \<noteq> {} \<Longrightarrow> x \<notin> F \<Longrightarrow> P F  \<Longrightarrow> P (insert x F)"
 | |
| 441 | shows "P F" | |
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 442 | using assms | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 443 | proof induct | 
| 41656 | 444 | case empty then show ?case by simp | 
| 445 | next | |
| 446 | case (insert x F) then show ?case by cases auto | |
| 447 | qed | |
| 448 | ||
| 449 | lemma finite_subset_induct [consumes 2, case_names empty insert]: | |
| 450 | assumes "finite F" and "F \<subseteq> A" | |
| 451 |   assumes empty: "P {}"
 | |
| 452 | and insert: "\<And>a F. finite F \<Longrightarrow> a \<in> A \<Longrightarrow> a \<notin> F \<Longrightarrow> P F \<Longrightarrow> P (insert a F)" | |
| 453 | shows "P F" | |
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 454 | using `finite F` `F \<subseteq> A` | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 455 | proof induct | 
| 41656 | 456 |   show "P {}" by fact
 | 
| 31441 | 457 | next | 
| 41656 | 458 | fix x F | 
| 459 | assume "finite F" and "x \<notin> F" and | |
| 460 | P: "F \<subseteq> A \<Longrightarrow> P F" and i: "insert x F \<subseteq> A" | |
| 461 | show "P (insert x F)" | |
| 462 | proof (rule insert) | |
| 463 | from i show "x \<in> A" by blast | |
| 464 | from i have "F \<subseteq> A" by blast | |
| 465 | with P show "P F" . | |
| 466 | show "finite F" by fact | |
| 467 | show "x \<notin> F" by fact | |
| 468 | qed | |
| 469 | qed | |
| 470 | ||
| 471 | lemma finite_empty_induct: | |
| 472 | assumes "finite A" | |
| 473 | assumes "P A" | |
| 474 |     and remove: "\<And>a A. finite A \<Longrightarrow> a \<in> A \<Longrightarrow> P A \<Longrightarrow> P (A - {a})"
 | |
| 475 |   shows "P {}"
 | |
| 476 | proof - | |
| 477 | have "\<And>B. B \<subseteq> A \<Longrightarrow> P (A - B)" | |
| 478 | proof - | |
| 479 | fix B :: "'a set" | |
| 480 | assume "B \<subseteq> A" | |
| 481 | with `finite A` have "finite B" by (rule rev_finite_subset) | |
| 482 | from this `B \<subseteq> A` show "P (A - B)" | |
| 483 | proof induct | |
| 484 | case empty | |
| 485 | from `P A` show ?case by simp | |
| 486 | next | |
| 487 | case (insert b B) | |
| 488 |       have "P (A - B - {b})"
 | |
| 489 | proof (rule remove) | |
| 490 | from `finite A` show "finite (A - B)" by induct auto | |
| 491 | from insert show "b \<in> A - B" by simp | |
| 492 | from insert show "P (A - B)" by simp | |
| 493 | qed | |
| 494 |       also have "A - B - {b} = A - insert b B" by (rule Diff_insert [symmetric])
 | |
| 495 | finally show ?case . | |
| 496 | qed | |
| 497 | qed | |
| 498 | then have "P (A - A)" by blast | |
| 499 | then show ?thesis by simp | |
| 31441 | 500 | qed | 
| 501 | ||
| 502 | ||
| 26441 | 503 | subsection {* Class @{text finite}  *}
 | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 504 | |
| 29797 | 505 | class finite = | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 506 | assumes finite_UNIV: "finite (UNIV \<Colon> 'a set)" | 
| 27430 | 507 | begin | 
| 508 | ||
| 509 | lemma finite [simp]: "finite (A \<Colon> 'a set)" | |
| 26441 | 510 | by (rule subset_UNIV finite_UNIV finite_subset)+ | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 511 | |
| 43866 
8a50dc70cbff
moving UNIV = ... equations to their proper theories
 haftmann parents: 
42875diff
changeset | 512 | lemma finite_code [code]: "finite (A \<Colon> 'a set) \<longleftrightarrow> True" | 
| 40922 
4d0f96a54e76
adding code equation for finiteness of finite types
 bulwahn parents: 
40786diff
changeset | 513 | by simp | 
| 
4d0f96a54e76
adding code equation for finiteness of finite types
 bulwahn parents: 
40786diff
changeset | 514 | |
| 27430 | 515 | end | 
| 516 | ||
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 517 | instance prod :: (finite, finite) finite | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 518 | by default (simp only: UNIV_Times_UNIV [symmetric] finite_cartesian_product finite) | 
| 26146 | 519 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 520 | lemma inj_graph: "inj (%f. {(x, y). y = f x})"
 | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 521 | by (rule inj_onI, auto simp add: set_eq_iff fun_eq_iff) | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 522 | |
| 26146 | 523 | instance "fun" :: (finite, finite) finite | 
| 524 | proof | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 525 |   show "finite (UNIV :: ('a => 'b) set)"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 526 | proof (rule finite_imageD) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 527 |     let ?graph = "%f::'a => 'b. {(x, y). y = f x}"
 | 
| 26792 | 528 | have "range ?graph \<subseteq> Pow UNIV" by simp | 
| 529 |     moreover have "finite (Pow (UNIV :: ('a * 'b) set))"
 | |
| 530 | by (simp only: finite_Pow_iff finite) | |
| 531 | ultimately show "finite (range ?graph)" | |
| 532 | by (rule finite_subset) | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 533 | show "inj ?graph" by (rule inj_graph) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 534 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 535 | qed | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 536 | |
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 537 | instance bool :: finite | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 538 | by default (simp add: UNIV_bool) | 
| 44831 | 539 | |
| 45962 | 540 | instance set :: (finite) finite | 
| 541 | by default (simp only: Pow_UNIV [symmetric] finite_Pow_iff finite) | |
| 542 | ||
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 543 | instance unit :: finite | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 544 | by default (simp add: UNIV_unit) | 
| 44831 | 545 | |
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 546 | instance sum :: (finite, finite) finite | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 547 | by default (simp only: UNIV_Plus_UNIV [symmetric] finite_Plus finite) | 
| 27981 | 548 | |
| 44831 | 549 | lemma finite_option_UNIV [simp]: | 
| 550 | "finite (UNIV :: 'a option set) = finite (UNIV :: 'a set)" | |
| 551 | by (auto simp add: UNIV_option_conv elim: finite_imageD intro: inj_Some) | |
| 552 | ||
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 553 | instance option :: (finite) finite | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 554 | by default (simp add: UNIV_option_conv) | 
| 44831 | 555 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 556 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 557 | subsection {* A basic fold functional for finite sets *}
 | 
| 15392 | 558 | |
| 559 | text {* The intended behaviour is
 | |
| 31916 
f3227bb306a4
recovered subscripts, which were lost in b41d61c768e2 (due to Emacs accident?);
 wenzelm parents: 
31907diff
changeset | 560 | @{text "fold f z {x\<^isub>1, ..., x\<^isub>n} = f x\<^isub>1 (\<dots> (f x\<^isub>n z)\<dots>)"}
 | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 561 | if @{text f} is ``left-commutative'':
 | 
| 15392 | 562 | *} | 
| 563 | ||
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 564 | locale comp_fun_commute = | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 565 | fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'b" | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 566 | assumes comp_fun_commute: "f y \<circ> f x = f x \<circ> f y" | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 567 | begin | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 568 | |
| 42809 
5b45125b15ba
use pointfree characterisation for fold_set locale
 haftmann parents: 
42715diff
changeset | 569 | lemma fun_left_comm: "f x (f y z) = f y (f x z)" | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 570 | using comp_fun_commute by (simp add: fun_eq_iff) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 571 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 572 | end | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 573 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 574 | inductive fold_graph :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> bool"
 | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 575 | for f :: "'a \<Rightarrow> 'b \<Rightarrow> 'b" and z :: 'b where | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 576 |   emptyI [intro]: "fold_graph f z {} z" |
 | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 577 | insertI [intro]: "x \<notin> A \<Longrightarrow> fold_graph f z A y | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 578 | \<Longrightarrow> fold_graph f z (insert x A) (f x y)" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 579 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 580 | inductive_cases empty_fold_graphE [elim!]: "fold_graph f z {} x"
 | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 581 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 582 | definition fold :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> 'a set \<Rightarrow> 'b" where
 | 
| 37767 | 583 | "fold f z A = (THE y. fold_graph f z A y)" | 
| 15392 | 584 | |
| 15498 | 585 | text{*A tempting alternative for the definiens is
 | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 586 | @{term "if finite A then THE y. fold_graph f z A y else e"}.
 | 
| 15498 | 587 | It allows the removal of finiteness assumptions from the theorems | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 588 | @{text fold_comm}, @{text fold_reindex} and @{text fold_distrib}.
 | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 589 | The proofs become ugly. It is not worth the effort. (???) *} | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 590 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 591 | lemma finite_imp_fold_graph: "finite A \<Longrightarrow> \<exists>x. fold_graph f z A x" | 
| 41656 | 592 | by (induct rule: finite_induct) auto | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 593 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 594 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 595 | subsubsection{*From @{const fold_graph} to @{term fold}*}
 | 
| 15392 | 596 | |
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 597 | context comp_fun_commute | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 598 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 599 | |
| 36045 | 600 | lemma fold_graph_insertE_aux: | 
| 601 |   "fold_graph f z A y \<Longrightarrow> a \<in> A \<Longrightarrow> \<exists>y'. y = f a y' \<and> fold_graph f z (A - {a}) y'"
 | |
| 602 | proof (induct set: fold_graph) | |
| 603 | case (insertI x A y) show ?case | |
| 604 | proof (cases "x = a") | |
| 605 | assume "x = a" with insertI show ?case by auto | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 606 | next | 
| 36045 | 607 | assume "x \<noteq> a" | 
| 608 |     then obtain y' where y: "y = f a y'" and y': "fold_graph f z (A - {a}) y'"
 | |
| 609 | using insertI by auto | |
| 42875 | 610 | have "f x y = f a (f x y')" | 
| 36045 | 611 | unfolding y by (rule fun_left_comm) | 
| 42875 | 612 |     moreover have "fold_graph f z (insert x A - {a}) (f x y')"
 | 
| 36045 | 613 | using y' and `x \<noteq> a` and `x \<notin> A` | 
| 614 | by (simp add: insert_Diff_if fold_graph.insertI) | |
| 42875 | 615 | ultimately show ?case by fast | 
| 15392 | 616 | qed | 
| 36045 | 617 | qed simp | 
| 618 | ||
| 619 | lemma fold_graph_insertE: | |
| 620 | assumes "fold_graph f z (insert x A) v" and "x \<notin> A" | |
| 621 | obtains y where "v = f x y" and "fold_graph f z A y" | |
| 622 | using assms by (auto dest: fold_graph_insertE_aux [OF _ insertI1]) | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 623 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 624 | lemma fold_graph_determ: | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 625 | "fold_graph f z A x \<Longrightarrow> fold_graph f z A y \<Longrightarrow> y = x" | 
| 36045 | 626 | proof (induct arbitrary: y set: fold_graph) | 
| 627 | case (insertI x A y v) | |
| 628 | from `fold_graph f z (insert x A) v` and `x \<notin> A` | |
| 629 | obtain y' where "v = f x y'" and "fold_graph f z A y'" | |
| 630 | by (rule fold_graph_insertE) | |
| 631 | from `fold_graph f z A y'` have "y' = y" by (rule insertI) | |
| 632 | with `v = f x y'` show "v = f x y" by simp | |
| 633 | qed fast | |
| 15392 | 634 | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 635 | lemma fold_equality: | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 636 | "fold_graph f z A y \<Longrightarrow> fold f z A = y" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 637 | by (unfold fold_def) (blast intro: fold_graph_determ) | 
| 15392 | 638 | |
| 42272 | 639 | lemma fold_graph_fold: | 
| 640 | assumes "finite A" | |
| 641 | shows "fold_graph f z A (fold f z A)" | |
| 642 | proof - | |
| 643 | from assms have "\<exists>x. fold_graph f z A x" by (rule finite_imp_fold_graph) | |
| 644 | moreover note fold_graph_determ | |
| 645 | ultimately have "\<exists>!x. fold_graph f z A x" by (rule ex_ex1I) | |
| 646 | then have "fold_graph f z A (The (fold_graph f z A))" by (rule theI') | |
| 647 | then show ?thesis by (unfold fold_def) | |
| 648 | qed | |
| 36045 | 649 | |
| 15392 | 650 | text{* The base case for @{text fold}: *}
 | 
| 651 | ||
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 652 | lemma (in -) fold_empty [simp]: "fold f z {} = z"
 | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 653 | by (unfold fold_def) blast | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 654 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 655 | text{* The various recursion equations for @{const fold}: *}
 | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 656 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 657 | lemma fold_insert [simp]: | 
| 42875 | 658 | assumes "finite A" and "x \<notin> A" | 
| 659 | shows "fold f z (insert x A) = f x (fold f z A)" | |
| 660 | proof (rule fold_equality) | |
| 661 | from `finite A` have "fold_graph f z A (fold f z A)" by (rule fold_graph_fold) | |
| 662 | with `x \<notin> A`show "fold_graph f z (insert x A) (f x (fold f z A))" by (rule fold_graph.insertI) | |
| 663 | qed | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 664 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 665 | lemma fold_fun_comm: | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 666 | "finite A \<Longrightarrow> f x (fold f z A) = fold f (f x z) A" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 667 | proof (induct rule: finite_induct) | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 668 | case empty then show ?case by simp | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 669 | next | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 670 | case (insert y A) then show ?case | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 671 | by (simp add: fun_left_comm[of x]) | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 672 | qed | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 673 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 674 | lemma fold_insert2: | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 675 | "finite A \<Longrightarrow> x \<notin> A \<Longrightarrow> fold f z (insert x A) = fold f (f x z) A" | 
| 35216 | 676 | by (simp add: fold_fun_comm) | 
| 15392 | 677 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 678 | lemma fold_rec: | 
| 42875 | 679 | assumes "finite A" and "x \<in> A" | 
| 680 |   shows "fold f z A = f x (fold f z (A - {x}))"
 | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 681 | proof - | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 682 |   have A: "A = insert x (A - {x})" using `x \<in> A` by blast
 | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 683 |   then have "fold f z A = fold f z (insert x (A - {x}))" by simp
 | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 684 |   also have "\<dots> = f x (fold f z (A - {x}))"
 | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 685 | by (rule fold_insert) (simp add: `finite A`)+ | 
| 15535 | 686 | finally show ?thesis . | 
| 687 | qed | |
| 688 | ||
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 689 | lemma fold_insert_remove: | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 690 | assumes "finite A" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 691 |   shows "fold f z (insert x A) = f x (fold f z (A - {x}))"
 | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 692 | proof - | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 693 | from `finite A` have "finite (insert x A)" by auto | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 694 | moreover have "x \<in> insert x A" by auto | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 695 |   ultimately have "fold f z (insert x A) = f x (fold f z (insert x A - {x}))"
 | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 696 | by (rule fold_rec) | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 697 | then show ?thesis by simp | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 698 | qed | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 699 | |
| 48619 | 700 | text{* Other properties of @{const fold}: *}
 | 
| 701 | ||
| 702 | lemma fold_image: | |
| 703 | assumes "finite A" and "inj_on g A" | |
| 704 | shows "fold f x (g ` A) = fold (f \<circ> g) x A" | |
| 705 | using assms | |
| 706 | proof induction | |
| 707 | case (insert a F) | |
| 708 | interpret comp_fun_commute "\<lambda>x. f (g x)" by default (simp add: comp_fun_commute) | |
| 709 | from insert show ?case by auto | |
| 710 | qed (simp) | |
| 711 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 712 | end | 
| 15392 | 713 | |
| 15480 | 714 | text{* A simplified version for idempotent functions: *}
 | 
| 715 | ||
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 716 | locale comp_fun_idem = comp_fun_commute + | 
| 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 717 | assumes comp_fun_idem: "f x o f x = f x" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 718 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 719 | |
| 42869 
43b0f61f56d0
use point-free characterization for locale fun_left_comm_idem
 haftmann parents: 
42809diff
changeset | 720 | lemma fun_left_idem: "f x (f x z) = f x z" | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 721 | using comp_fun_idem by (simp add: fun_eq_iff) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 722 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 723 | lemma fold_insert_idem: | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 724 | assumes fin: "finite A" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 725 | shows "fold f z (insert x A) = f x (fold f z A)" | 
| 15480 | 726 | proof cases | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 727 | assume "x \<in> A" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 728 | then obtain B where "A = insert x B" and "x \<notin> B" by (rule set_insert) | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 729 | then show ?thesis using assms by (simp add:fun_left_idem) | 
| 15480 | 730 | next | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 731 | assume "x \<notin> A" then show ?thesis using assms by simp | 
| 15480 | 732 | qed | 
| 733 | ||
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 734 | declare fold_insert[simp del] fold_insert_idem[simp] | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 735 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 736 | lemma fold_insert_idem2: | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 737 | "finite A \<Longrightarrow> fold f z (insert x A) = fold f (f x z) A" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 738 | by(simp add:fold_fun_comm) | 
| 15484 | 739 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 740 | end | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 741 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 742 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 743 | subsubsection {* Expressing set operations via @{const fold} *}
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 744 | |
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 745 | lemma (in comp_fun_commute) comp_comp_fun_commute: | 
| 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 746 | "comp_fun_commute (f \<circ> g)" | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 747 | proof | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 748 | qed (simp_all add: comp_fun_commute) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 749 | |
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 750 | lemma (in comp_fun_idem) comp_comp_fun_idem: | 
| 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 751 | "comp_fun_idem (f \<circ> g)" | 
| 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 752 | by (rule comp_fun_idem.intro, rule comp_comp_fun_commute, unfold_locales) | 
| 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 753 | (simp_all add: comp_fun_idem) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 754 | |
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 755 | lemma comp_fun_idem_insert: | 
| 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 756 | "comp_fun_idem insert" | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 757 | proof | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 758 | qed auto | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 759 | |
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 760 | lemma comp_fun_idem_remove: | 
| 46146 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 761 | "comp_fun_idem Set.remove" | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 762 | proof | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 763 | qed auto | 
| 31992 | 764 | |
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 765 | lemma (in semilattice_inf) comp_fun_idem_inf: | 
| 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 766 | "comp_fun_idem inf" | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 767 | proof | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 768 | qed (auto simp add: inf_left_commute) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 769 | |
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 770 | lemma (in semilattice_sup) comp_fun_idem_sup: | 
| 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 771 | "comp_fun_idem sup" | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 772 | proof | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 773 | qed (auto simp add: sup_left_commute) | 
| 31992 | 774 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 775 | lemma union_fold_insert: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 776 | assumes "finite A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 777 | shows "A \<union> B = fold insert B A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 778 | proof - | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 779 | interpret comp_fun_idem insert by (fact comp_fun_idem_insert) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 780 | from `finite A` show ?thesis by (induct A arbitrary: B) simp_all | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 781 | qed | 
| 31992 | 782 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 783 | lemma minus_fold_remove: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 784 | assumes "finite A" | 
| 46146 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 785 | shows "B - A = fold Set.remove B A" | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 786 | proof - | 
| 46146 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 787 | interpret comp_fun_idem Set.remove by (fact comp_fun_idem_remove) | 
| 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 788 | from `finite A` have "fold Set.remove B A = B - A" by (induct A arbitrary: B) auto | 
| 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 789 | then show ?thesis .. | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 790 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 791 | |
| 48619 | 792 | definition filter :: "('a \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> 'a set" 
 | 
| 793 |   where "filter P A = fold (\<lambda>x A'. if P x then Set.insert x A' else A') {} A"
 | |
| 794 | ||
| 795 | lemma comp_fun_commute_filter_fold: "comp_fun_commute (\<lambda>x A'. if P x then Set.insert x A' else A')" | |
| 796 | proof - | |
| 797 | interpret comp_fun_idem Set.insert by (fact comp_fun_idem_insert) | |
| 798 | show ?thesis by default (auto simp: fun_eq_iff) | |
| 799 | qed | |
| 800 | ||
| 801 | lemma inter_filter: | |
| 802 | assumes "finite B" | |
| 803 | shows "A \<inter> B = filter (\<lambda>x. x \<in> A) B" | |
| 804 | using assms | |
| 805 | by (induct B) (auto simp: filter_def comp_fun_commute.fold_insert[OF comp_fun_commute_filter_fold]) | |
| 806 | ||
| 807 | lemma project_filter: | |
| 808 | assumes "finite A" | |
| 809 | shows "Set.project P A = filter P A" | |
| 810 | using assms | |
| 811 | by (induct A) | |
| 812 | (auto simp add: filter_def project_def comp_fun_commute.fold_insert[OF comp_fun_commute_filter_fold]) | |
| 813 | ||
| 814 | lemma image_fold_insert: | |
| 815 | assumes "finite A" | |
| 816 |   shows "image f A = fold (\<lambda>k A. Set.insert (f k) A) {} A"
 | |
| 817 | using assms | |
| 818 | proof - | |
| 819 | interpret comp_fun_commute "\<lambda>k A. Set.insert (f k) A" by default auto | |
| 820 | show ?thesis using assms by (induct A) auto | |
| 821 | qed | |
| 822 | ||
| 823 | lemma Ball_fold: | |
| 824 | assumes "finite A" | |
| 825 | shows "Ball A P = fold (\<lambda>k s. s \<and> P k) True A" | |
| 826 | using assms | |
| 827 | proof - | |
| 828 | interpret comp_fun_commute "\<lambda>k s. s \<and> P k" by default auto | |
| 829 | show ?thesis using assms by (induct A) auto | |
| 830 | qed | |
| 831 | ||
| 832 | lemma Bex_fold: | |
| 833 | assumes "finite A" | |
| 834 | shows "Bex A P = fold (\<lambda>k s. s \<or> P k) False A" | |
| 835 | using assms | |
| 836 | proof - | |
| 837 | interpret comp_fun_commute "\<lambda>k s. s \<or> P k" by default auto | |
| 838 | show ?thesis using assms by (induct A) auto | |
| 839 | qed | |
| 840 | ||
| 841 | lemma comp_fun_commute_Pow_fold: | |
| 842 | "comp_fun_commute (\<lambda>x A. A \<union> Set.insert x ` A)" | |
| 843 | by (clarsimp simp: fun_eq_iff comp_fun_commute_def) blast | |
| 844 | ||
| 845 | lemma Pow_fold: | |
| 846 | assumes "finite A" | |
| 847 |   shows "Pow A = fold (\<lambda>x A. A \<union> Set.insert x ` A) {{}} A"
 | |
| 848 | using assms | |
| 849 | proof - | |
| 850 | interpret comp_fun_commute "\<lambda>x A. A \<union> Set.insert x ` A" by (rule comp_fun_commute_Pow_fold) | |
| 851 | show ?thesis using assms by (induct A) (auto simp: Pow_insert) | |
| 852 | qed | |
| 853 | ||
| 854 | lemma fold_union_pair: | |
| 855 | assumes "finite B" | |
| 856 |   shows "(\<Union>y\<in>B. {(x, y)}) \<union> A = fold (\<lambda>y. Set.insert (x, y)) A B"
 | |
| 857 | proof - | |
| 858 | interpret comp_fun_commute "\<lambda>y. Set.insert (x, y)" by default auto | |
| 859 | show ?thesis using assms by (induct B arbitrary: A) simp_all | |
| 860 | qed | |
| 861 | ||
| 862 | lemma comp_fun_commute_product_fold: | |
| 863 | assumes "finite B" | |
| 864 | shows "comp_fun_commute (\<lambda>x A. fold (\<lambda>y. Set.insert (x, y)) A B)" | |
| 865 | by default (auto simp: fold_union_pair[symmetric] assms) | |
| 866 | ||
| 867 | lemma product_fold: | |
| 868 | assumes "finite A" | |
| 869 | assumes "finite B" | |
| 870 |   shows "A \<times> B = fold (\<lambda>x A. fold (\<lambda>y. Set.insert (x, y)) A B) {} A"
 | |
| 871 | using assms unfolding Sigma_def | |
| 872 | by (induct A) | |
| 873 | (simp_all add: comp_fun_commute.fold_insert[OF comp_fun_commute_product_fold] fold_union_pair) | |
| 874 | ||
| 875 | ||
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 876 | context complete_lattice | 
| 31992 | 877 | begin | 
| 878 | ||
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 879 | lemma inf_Inf_fold_inf: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 880 | assumes "finite A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 881 | shows "inf B (Inf A) = fold inf B A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 882 | proof - | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 883 | interpret comp_fun_idem inf by (fact comp_fun_idem_inf) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 884 | from `finite A` show ?thesis by (induct A arbitrary: B) | 
| 44919 | 885 | (simp_all add: inf_commute fold_fun_comm) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 886 | qed | 
| 31992 | 887 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 888 | lemma sup_Sup_fold_sup: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 889 | assumes "finite A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 890 | shows "sup B (Sup A) = fold sup B A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 891 | proof - | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 892 | interpret comp_fun_idem sup by (fact comp_fun_idem_sup) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 893 | from `finite A` show ?thesis by (induct A arbitrary: B) | 
| 44919 | 894 | (simp_all add: sup_commute fold_fun_comm) | 
| 31992 | 895 | qed | 
| 896 | ||
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 897 | lemma Inf_fold_inf: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 898 | assumes "finite A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 899 | shows "Inf A = fold inf top A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 900 | using assms inf_Inf_fold_inf [of A top] by (simp add: inf_absorb2) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 901 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 902 | lemma Sup_fold_sup: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 903 | assumes "finite A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 904 | shows "Sup A = fold sup bot A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 905 | using assms sup_Sup_fold_sup [of A bot] by (simp add: sup_absorb2) | 
| 31992 | 906 | |
| 46146 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 907 | lemma inf_INF_fold_inf: | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 908 | assumes "finite A" | 
| 42873 
da1253ff1764
point-free characterization of operations on finite sets
 haftmann parents: 
42871diff
changeset | 909 | shows "inf B (INFI A f) = fold (inf \<circ> f) B A" (is "?inf = ?fold") | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 910 | proof (rule sym) | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 911 | interpret comp_fun_idem inf by (fact comp_fun_idem_inf) | 
| 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 912 | interpret comp_fun_idem "inf \<circ> f" by (fact comp_comp_fun_idem) | 
| 42873 
da1253ff1764
point-free characterization of operations on finite sets
 haftmann parents: 
42871diff
changeset | 913 | from `finite A` show "?fold = ?inf" | 
| 42869 
43b0f61f56d0
use point-free characterization for locale fun_left_comm_idem
 haftmann parents: 
42809diff
changeset | 914 | by (induct A arbitrary: B) | 
| 44928 
7ef6505bde7f
renamed Complete_Lattices lemmas, removed legacy names
 hoelzl parents: 
44919diff
changeset | 915 | (simp_all add: INF_def inf_left_commute) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 916 | qed | 
| 31992 | 917 | |
| 46146 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 918 | lemma sup_SUP_fold_sup: | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 919 | assumes "finite A" | 
| 42873 
da1253ff1764
point-free characterization of operations on finite sets
 haftmann parents: 
42871diff
changeset | 920 | shows "sup B (SUPR A f) = fold (sup \<circ> f) B A" (is "?sup = ?fold") | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 921 | proof (rule sym) | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 922 | interpret comp_fun_idem sup by (fact comp_fun_idem_sup) | 
| 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 923 | interpret comp_fun_idem "sup \<circ> f" by (fact comp_comp_fun_idem) | 
| 42873 
da1253ff1764
point-free characterization of operations on finite sets
 haftmann parents: 
42871diff
changeset | 924 | from `finite A` show "?fold = ?sup" | 
| 42869 
43b0f61f56d0
use point-free characterization for locale fun_left_comm_idem
 haftmann parents: 
42809diff
changeset | 925 | by (induct A arbitrary: B) | 
| 44928 
7ef6505bde7f
renamed Complete_Lattices lemmas, removed legacy names
 hoelzl parents: 
44919diff
changeset | 926 | (simp_all add: SUP_def sup_left_commute) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 927 | qed | 
| 31992 | 928 | |
| 46146 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 929 | lemma INF_fold_inf: | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 930 | assumes "finite A" | 
| 42873 
da1253ff1764
point-free characterization of operations on finite sets
 haftmann parents: 
42871diff
changeset | 931 | shows "INFI A f = fold (inf \<circ> f) top A" | 
| 46146 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 932 | using assms inf_INF_fold_inf [of A top] by simp | 
| 31992 | 933 | |
| 46146 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 934 | lemma SUP_fold_sup: | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 935 | assumes "finite A" | 
| 42873 
da1253ff1764
point-free characterization of operations on finite sets
 haftmann parents: 
42871diff
changeset | 936 | shows "SUPR A f = fold (sup \<circ> f) bot A" | 
| 46146 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 937 | using assms sup_SUP_fold_sup [of A bot] by simp | 
| 31992 | 938 | |
| 939 | end | |
| 940 | ||
| 941 | ||
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 942 | subsection {* The derived combinator @{text fold_image} *}
 | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 943 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 944 | definition fold_image :: "('b \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> 'a set \<Rightarrow> 'b"
 | 
| 42875 | 945 | where "fold_image f g = fold (\<lambda>x y. f (g x) y)" | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 946 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 947 | lemma fold_image_empty[simp]: "fold_image f g z {} = z"
 | 
| 42875 | 948 | by (simp add:fold_image_def) | 
| 15392 | 949 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 950 | context ab_semigroup_mult | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 951 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 952 | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 953 | lemma fold_image_insert[simp]: | 
| 42875 | 954 | assumes "finite A" and "a \<notin> A" | 
| 955 | shows "fold_image times g z (insert a A) = g a * (fold_image times g z A)" | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 956 | proof - | 
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 957 | interpret comp_fun_commute "%x y. (g x) * y" | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 958 | by default (simp add: fun_eq_iff mult_ac) | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 959 | from assms show ?thesis by (simp add: fold_image_def) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 960 | qed | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 961 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 962 | lemma fold_image_reindex: | 
| 42875 | 963 | assumes "finite A" | 
| 964 | shows "inj_on h A \<Longrightarrow> fold_image times g z (h ` A) = fold_image times (g \<circ> h) z A" | |
| 965 | using assms by induct auto | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 966 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 967 | lemma fold_image_cong: | 
| 42875 | 968 | assumes "finite A" and g_h: "\<And>x. x\<in>A \<Longrightarrow> g x = h x" | 
| 969 | shows "fold_image times g z A = fold_image times h z A" | |
| 970 | proof - | |
| 971 | from `finite A` | |
| 972 | have "\<And>C. C <= A --> (ALL x:C. g x = h x) --> fold_image times g z C = fold_image times h z C" | |
| 973 | proof (induct arbitrary: C) | |
| 974 | case empty then show ?case by simp | |
| 975 | next | |
| 976 | case (insert x F) then show ?case apply - | |
| 977 | apply (simp add: subset_insert_iff, clarify) | |
| 978 | apply (subgoal_tac "finite C") | |
| 48125 
602dc0215954
tuned proofs -- prefer direct "rotated" instead of old-style COMP;
 wenzelm parents: 
48124diff
changeset | 979 | prefer 2 apply (blast dest: finite_subset [rotated]) | 
| 42875 | 980 |     apply (subgoal_tac "C = insert x (C - {x})")
 | 
| 981 | prefer 2 apply blast | |
| 982 | apply (erule ssubst) | |
| 983 | apply (simp add: Ball_def del: insert_Diff_single) | |
| 984 | done | |
| 985 | qed | |
| 986 | with g_h show ?thesis by simp | |
| 987 | qed | |
| 15392 | 988 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 989 | end | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 990 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 991 | context comm_monoid_mult | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 992 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 993 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 994 | lemma fold_image_1: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 995 | "finite S \<Longrightarrow> (\<forall>x\<in>S. f x = 1) \<Longrightarrow> fold_image op * f 1 S = 1" | 
| 41656 | 996 | apply (induct rule: finite_induct) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 997 | apply simp by auto | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 998 | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 999 | lemma fold_image_Un_Int: | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1000 | "finite A ==> finite B ==> | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1001 | fold_image times g 1 A * fold_image times g 1 B = | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1002 | fold_image times g 1 (A Un B) * fold_image times g 1 (A Int B)" | 
| 41656 | 1003 | apply (induct rule: finite_induct) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1004 | by (induct set: finite) | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1005 | (auto simp add: mult_ac insert_absorb Int_insert_left) | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1006 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1007 | lemma fold_image_Un_one: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1008 | assumes fS: "finite S" and fT: "finite T" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1009 | and I0: "\<forall>x \<in> S\<inter>T. f x = 1" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1010 | shows "fold_image (op *) f 1 (S \<union> T) = fold_image (op *) f 1 S * fold_image (op *) f 1 T" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1011 | proof- | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1012 | have "fold_image op * f 1 (S \<inter> T) = 1" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1013 | apply (rule fold_image_1) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1014 | using fS fT I0 by auto | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1015 | with fold_image_Un_Int[OF fS fT] show ?thesis by simp | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1016 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1017 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1018 | corollary fold_Un_disjoint: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1019 |   "finite A ==> finite B ==> A Int B = {} ==>
 | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1020 | fold_image times g 1 (A Un B) = | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1021 | fold_image times g 1 A * fold_image times g 1 B" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1022 | by (simp add: fold_image_Un_Int) | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1023 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1024 | lemma fold_image_UN_disjoint: | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1025 | "\<lbrakk> finite I; ALL i:I. finite (A i); | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1026 |      ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {} \<rbrakk>
 | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1027 | \<Longrightarrow> fold_image times g 1 (UNION I A) = | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1028 | fold_image times (%i. fold_image times g 1 (A i)) 1 I" | 
| 41656 | 1029 | apply (induct rule: finite_induct) | 
| 1030 | apply simp | |
| 1031 | apply atomize | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1032 | apply (subgoal_tac "ALL i:F. x \<noteq> i") | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1033 | prefer 2 apply blast | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1034 | apply (subgoal_tac "A x Int UNION F A = {}")
 | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1035 | prefer 2 apply blast | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1036 | apply (simp add: fold_Un_disjoint) | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1037 | done | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1038 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1039 | lemma fold_image_Sigma: "finite A ==> ALL x:A. finite (B x) ==> | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1040 | fold_image times (%x. fold_image times (g x) 1 (B x)) 1 A = | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1041 | fold_image times (split g) 1 (SIGMA x:A. B x)" | 
| 15392 | 1042 | apply (subst Sigma_def) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1043 | apply (subst fold_image_UN_disjoint, assumption, simp) | 
| 15392 | 1044 | apply blast | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1045 | apply (erule fold_image_cong) | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1046 | apply (subst fold_image_UN_disjoint, simp, simp) | 
| 15392 | 1047 | apply blast | 
| 15506 | 1048 | apply simp | 
| 15392 | 1049 | done | 
| 1050 | ||
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1051 | lemma fold_image_distrib: "finite A \<Longrightarrow> | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1052 | fold_image times (%x. g x * h x) 1 A = | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1053 | fold_image times g 1 A * fold_image times h 1 A" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1054 | by (erule finite_induct) (simp_all add: mult_ac) | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1055 | |
| 30260 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1056 | lemma fold_image_related: | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1057 | assumes Re: "R e e" | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1058 | and Rop: "\<forall>x1 y1 x2 y2. R x1 x2 \<and> R y1 y2 \<longrightarrow> R (x1 * y1) (x2 * y2)" | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1059 | and fS: "finite S" and Rfg: "\<forall>x\<in>S. R (h x) (g x)" | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1060 | shows "R (fold_image (op *) h e S) (fold_image (op *) g e S)" | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1061 | using fS by (rule finite_subset_induct) (insert assms, auto) | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1062 | |
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1063 | lemma fold_image_eq_general: | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1064 | assumes fS: "finite S" | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1065 | and h: "\<forall>y\<in>S'. \<exists>!x. x\<in> S \<and> h(x) = y" | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1066 | and f12: "\<forall>x\<in>S. h x \<in> S' \<and> f2(h x) = f1 x" | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1067 | shows "fold_image (op *) f1 e S = fold_image (op *) f2 e S'" | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1068 | proof- | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1069 | from h f12 have hS: "h ` S = S'" by auto | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1070 |   {fix x y assume H: "x \<in> S" "y \<in> S" "h x = h y"
 | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1071 | from f12 h H have "x = y" by auto } | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1072 | hence hinj: "inj_on h S" unfolding inj_on_def Ex1_def by blast | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1073 | from f12 have th: "\<And>x. x \<in> S \<Longrightarrow> (f2 \<circ> h) x = f1 x" by auto | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1074 | from hS have "fold_image (op *) f2 e S' = fold_image (op *) f2 e (h ` S)" by simp | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1075 | also have "\<dots> = fold_image (op *) (f2 o h) e S" | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1076 | using fold_image_reindex[OF fS hinj, of f2 e] . | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1077 | also have "\<dots> = fold_image (op *) f1 e S " using th fold_image_cong[OF fS, of "f2 o h" f1 e] | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1078 | by blast | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1079 | finally show ?thesis .. | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1080 | qed | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1081 | |
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1082 | lemma fold_image_eq_general_inverses: | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1083 | assumes fS: "finite S" | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1084 | and kh: "\<And>y. y \<in> T \<Longrightarrow> k y \<in> S \<and> h (k y) = y" | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1085 | and hk: "\<And>x. x \<in> S \<Longrightarrow> h x \<in> T \<and> k (h x) = x \<and> g (h x) = f x" | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1086 | shows "fold_image (op *) f e S = fold_image (op *) g e T" | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1087 | (* metis solves it, but not yet available here *) | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1088 | apply (rule fold_image_eq_general[OF fS, of T h g f e]) | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1089 | apply (rule ballI) | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1090 | apply (frule kh) | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1091 | apply (rule ex1I[]) | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1092 | apply blast | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1093 | apply clarsimp | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1094 | apply (drule hk) apply simp | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1095 | apply (rule sym) | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1096 | apply (erule conjunct1[OF conjunct2[OF hk]]) | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1097 | apply (rule ballI) | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1098 | apply (drule hk) | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1099 | apply blast | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1100 | done | 
| 
be39acd3ac85
Added general theorems for fold_image, setsum and set_prod
 chaieb parents: 
29966diff
changeset | 1101 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1102 | end | 
| 22917 | 1103 | |
| 25162 | 1104 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1105 | subsection {* A fold functional for non-empty sets *}
 | 
| 15392 | 1106 | |
| 1107 | text{* Does not require start value. *}
 | |
| 12396 | 1108 | |
| 23736 | 1109 | inductive | 
| 22262 | 1110 |   fold1Set :: "('a => 'a => 'a) => 'a set => 'a => bool"
 | 
| 1111 | for f :: "'a => 'a => 'a" | |
| 1112 | where | |
| 15506 | 1113 | fold1Set_insertI [intro]: | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1114 | "\<lbrakk> fold_graph f a A x; a \<notin> A \<rbrakk> \<Longrightarrow> fold1Set f (insert a A) x" | 
| 12396 | 1115 | |
| 35416 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
35267diff
changeset | 1116 | definition fold1 :: "('a => 'a => 'a) => 'a set => 'a" where
 | 
| 22262 | 1117 | "fold1 f A == THE x. fold1Set f A x" | 
| 15506 | 1118 | |
| 1119 | lemma fold1Set_nonempty: | |
| 22917 | 1120 |   "fold1Set f A x \<Longrightarrow> A \<noteq> {}"
 | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1121 | by(erule fold1Set.cases, simp_all) | 
| 15392 | 1122 | |
| 23736 | 1123 | inductive_cases empty_fold1SetE [elim!]: "fold1Set f {} x"
 | 
| 1124 | ||
| 1125 | inductive_cases insert_fold1SetE [elim!]: "fold1Set f (insert a X) x" | |
| 22262 | 1126 | |
| 1127 | ||
| 1128 | lemma fold1Set_sing [iff]: "(fold1Set f {a} b) = (a = b)"
 | |
| 35216 | 1129 | by (blast elim: fold_graph.cases) | 
| 15392 | 1130 | |
| 22917 | 1131 | lemma fold1_singleton [simp]: "fold1 f {a} = a"
 | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1132 | by (unfold fold1_def) blast | 
| 12396 | 1133 | |
| 15508 | 1134 | lemma finite_nonempty_imp_fold1Set: | 
| 22262 | 1135 |   "\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> EX x. fold1Set f A x"
 | 
| 15508 | 1136 | apply (induct A rule: finite_induct) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1137 | apply (auto dest: finite_imp_fold_graph [of _ f]) | 
| 15508 | 1138 | done | 
| 15506 | 1139 | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1140 | text{*First, some lemmas about @{const fold_graph}.*}
 | 
| 15392 | 1141 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1142 | context ab_semigroup_mult | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1143 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1144 | |
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1145 | lemma comp_fun_commute: "comp_fun_commute (op *)" | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1146 | by default (simp add: fun_eq_iff mult_ac) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1147 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1148 | lemma fold_graph_insert_swap: | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1149 | assumes fold: "fold_graph times (b::'a) A y" and "b \<notin> A" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1150 | shows "fold_graph times z (insert b A) (z * y)" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1151 | proof - | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1152 | interpret comp_fun_commute "op *::'a \<Rightarrow> 'a \<Rightarrow> 'a" by (rule comp_fun_commute) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1153 | from assms show ?thesis | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1154 | proof (induct rule: fold_graph.induct) | 
| 36045 | 1155 | case emptyI show ?case by (subst mult_commute [of z b], fast) | 
| 15508 | 1156 | next | 
| 22262 | 1157 | case (insertI x A y) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1158 | have "fold_graph times z (insert x (insert b A)) (x * (z * y))" | 
| 15521 | 1159 |       using insertI by force  --{*how does @{term id} get unfolded?*}
 | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1160 | thus ?case by (simp add: insert_commute mult_ac) | 
| 15508 | 1161 | qed | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1162 | qed | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1163 | |
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1164 | lemma fold_graph_permute_diff: | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1165 | assumes fold: "fold_graph times b A x" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1166 | shows "!!a. \<lbrakk>a \<in> A; b \<notin> A\<rbrakk> \<Longrightarrow> fold_graph times a (insert b (A-{a})) x"
 | 
| 15508 | 1167 | using fold | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1168 | proof (induct rule: fold_graph.induct) | 
| 15508 | 1169 | case emptyI thus ?case by simp | 
| 1170 | next | |
| 22262 | 1171 | case (insertI x A y) | 
| 15521 | 1172 | have "a = x \<or> a \<in> A" using insertI by simp | 
| 1173 | thus ?case | |
| 1174 | proof | |
| 1175 | assume "a = x" | |
| 1176 | with insertI show ?thesis | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1177 | by (simp add: id_def [symmetric], blast intro: fold_graph_insert_swap) | 
| 15521 | 1178 | next | 
| 1179 | assume ainA: "a \<in> A" | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1180 |     hence "fold_graph times a (insert x (insert b (A - {a}))) (x * y)"
 | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1181 | using insertI by force | 
| 15521 | 1182 | moreover | 
| 1183 |     have "insert x (insert b (A - {a})) = insert b (insert x A - {a})"
 | |
| 1184 | using ainA insertI by blast | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1185 | ultimately show ?thesis by simp | 
| 15508 | 1186 | qed | 
| 1187 | qed | |
| 1188 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1189 | lemma fold1_eq_fold: | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1190 | assumes "finite A" "a \<notin> A" shows "fold1 times (insert a A) = fold times a A" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1191 | proof - | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1192 | interpret comp_fun_commute "op *::'a \<Rightarrow> 'a \<Rightarrow> 'a" by (rule comp_fun_commute) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1193 | from assms show ?thesis | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1194 | apply (simp add: fold1_def fold_def) | 
| 15508 | 1195 | apply (rule the_equality) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1196 | apply (best intro: fold_graph_determ theI dest: finite_imp_fold_graph [of _ times]) | 
| 15508 | 1197 | apply (rule sym, clarify) | 
| 1198 | apply (case_tac "Aa=A") | |
| 35216 | 1199 | apply (best intro: fold_graph_determ) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1200 | apply (subgoal_tac "fold_graph times a A x") | 
| 35216 | 1201 | apply (best intro: fold_graph_determ) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1202 | apply (subgoal_tac "insert aa (Aa - {a}) = A")
 | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1203 | prefer 2 apply (blast elim: equalityE) | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1204 | apply (auto dest: fold_graph_permute_diff [where a=a]) | 
| 15508 | 1205 | done | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1206 | qed | 
| 15508 | 1207 | |
| 15521 | 1208 | lemma nonempty_iff: "(A \<noteq> {}) = (\<exists>x B. A = insert x B & x \<notin> B)"
 | 
| 1209 | apply safe | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1210 | apply simp | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1211 | apply (drule_tac x=x in spec) | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1212 |  apply (drule_tac x="A-{x}" in spec, auto)
 | 
| 15508 | 1213 | done | 
| 1214 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1215 | lemma fold1_insert: | 
| 15521 | 1216 |   assumes nonempty: "A \<noteq> {}" and A: "finite A" "x \<notin> A"
 | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1217 | shows "fold1 times (insert x A) = x * fold1 times A" | 
| 15521 | 1218 | proof - | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1219 | interpret comp_fun_commute "op *::'a \<Rightarrow> 'a \<Rightarrow> 'a" by (rule comp_fun_commute) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1220 | from nonempty obtain a A' where "A = insert a A' & a ~: A'" | 
| 15521 | 1221 | by (auto simp add: nonempty_iff) | 
| 1222 | with A show ?thesis | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1223 | by (simp add: insert_commute [of x] fold1_eq_fold eq_commute) | 
| 15521 | 1224 | qed | 
| 1225 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1226 | end | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1227 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1228 | context ab_semigroup_idem_mult | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1229 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1230 | |
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1231 | lemma comp_fun_idem: "comp_fun_idem (op *)" | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1232 | by default (simp_all add: fun_eq_iff mult_left_commute) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1233 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1234 | lemma fold1_insert_idem [simp]: | 
| 15521 | 1235 |   assumes nonempty: "A \<noteq> {}" and A: "finite A" 
 | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1236 | shows "fold1 times (insert x A) = x * fold1 times A" | 
| 15521 | 1237 | proof - | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1238 | interpret comp_fun_idem "op *::'a \<Rightarrow> 'a \<Rightarrow> 'a" | 
| 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1239 | by (rule comp_fun_idem) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1240 | from nonempty obtain a A' where A': "A = insert a A' & a ~: A'" | 
| 15521 | 1241 | by (auto simp add: nonempty_iff) | 
| 1242 | show ?thesis | |
| 1243 | proof cases | |
| 41550 | 1244 | assume a: "a = x" | 
| 1245 | show ?thesis | |
| 15521 | 1246 | proof cases | 
| 1247 |       assume "A' = {}"
 | |
| 41550 | 1248 | with A' a show ?thesis by simp | 
| 15521 | 1249 | next | 
| 1250 |       assume "A' \<noteq> {}"
 | |
| 41550 | 1251 | with A A' a show ?thesis | 
| 35216 | 1252 | by (simp add: fold1_insert mult_assoc [symmetric]) | 
| 15521 | 1253 | qed | 
| 1254 | next | |
| 1255 | assume "a \<noteq> x" | |
| 41550 | 1256 | with A A' show ?thesis | 
| 35216 | 1257 | by (simp add: insert_commute fold1_eq_fold) | 
| 15521 | 1258 | qed | 
| 1259 | qed | |
| 15506 | 1260 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1261 | lemma hom_fold1_commute: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1262 | assumes hom: "!!x y. h (x * y) = h x * h y" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1263 | and N: "finite N" "N \<noteq> {}" shows "h (fold1 times N) = fold1 times (h ` N)"
 | 
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1264 | using N | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1265 | proof (induct rule: finite_ne_induct) | 
| 22917 | 1266 | case singleton thus ?case by simp | 
| 1267 | next | |
| 1268 | case (insert n N) | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1269 | then have "h (fold1 times (insert n N)) = h (n * fold1 times N)" by simp | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1270 | also have "\<dots> = h n * h (fold1 times N)" by(rule hom) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1271 | also have "h (fold1 times N) = fold1 times (h ` N)" by(rule insert) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1272 | also have "times (h n) \<dots> = fold1 times (insert (h n) (h ` N))" | 
| 22917 | 1273 | using insert by(simp) | 
| 1274 | also have "insert (h n) (h ` N) = h ` insert n N" by simp | |
| 1275 | finally show ?case . | |
| 1276 | qed | |
| 1277 | ||
| 32679 | 1278 | lemma fold1_eq_fold_idem: | 
| 1279 | assumes "finite A" | |
| 1280 | shows "fold1 times (insert a A) = fold times a A" | |
| 1281 | proof (cases "a \<in> A") | |
| 1282 | case False | |
| 1283 | with assms show ?thesis by (simp add: fold1_eq_fold) | |
| 1284 | next | |
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1285 | interpret comp_fun_idem times by (fact comp_fun_idem) | 
| 32679 | 1286 | case True then obtain b B | 
| 1287 | where A: "A = insert a B" and "a \<notin> B" by (rule set_insert) | |
| 1288 | with assms have "finite B" by auto | |
| 1289 | then have "fold times a (insert a B) = fold times (a * a) B" | |
| 1290 | using `a \<notin> B` by (rule fold_insert2) | |
| 1291 | then show ?thesis | |
| 1292 | using `a \<notin> B` `finite B` by (simp add: fold1_eq_fold A) | |
| 1293 | qed | |
| 1294 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1295 | end | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1296 | |
| 15506 | 1297 | |
| 15508 | 1298 | text{* Now the recursion rules for definitions: *}
 | 
| 1299 | ||
| 22917 | 1300 | lemma fold1_singleton_def: "g = fold1 f \<Longrightarrow> g {a} = a"
 | 
| 35216 | 1301 | by simp | 
| 15508 | 1302 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1303 | lemma (in ab_semigroup_mult) fold1_insert_def: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1304 |   "\<lbrakk> g = fold1 times; finite A; x \<notin> A; A \<noteq> {} \<rbrakk> \<Longrightarrow> g (insert x A) = x * g A"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1305 | by (simp add:fold1_insert) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1306 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1307 | lemma (in ab_semigroup_idem_mult) fold1_insert_idem_def: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1308 |   "\<lbrakk> g = fold1 times; finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> g (insert x A) = x * g A"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1309 | by simp | 
| 15508 | 1310 | |
| 1311 | subsubsection{* Determinacy for @{term fold1Set} *}
 | |
| 1312 | ||
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1313 | (*Not actually used!!*) | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1314 | (* | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1315 | context ab_semigroup_mult | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1316 | begin | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1317 | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1318 | lemma fold_graph_permute: | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1319 | "[|fold_graph times id b (insert a A) x; a \<notin> A; b \<notin> A|] | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1320 | ==> fold_graph times id a (insert b A) x" | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1321 | apply (cases "a=b") | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1322 | apply (auto dest: fold_graph_permute_diff) | 
| 15506 | 1323 | done | 
| 15376 | 1324 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1325 | lemma fold1Set_determ: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1326 | "fold1Set times A x ==> fold1Set times A y ==> y = x" | 
| 15506 | 1327 | proof (clarify elim!: fold1Set.cases) | 
| 1328 | fix A x B y a b | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1329 | assume Ax: "fold_graph times id a A x" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1330 | assume By: "fold_graph times id b B y" | 
| 15506 | 1331 | assume anotA: "a \<notin> A" | 
| 1332 | assume bnotB: "b \<notin> B" | |
| 1333 | assume eq: "insert a A = insert b B" | |
| 1334 | show "y=x" | |
| 1335 | proof cases | |
| 1336 | assume same: "a=b" | |
| 1337 | hence "A=B" using anotA bnotB eq by (blast elim!: equalityE) | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1338 | thus ?thesis using Ax By same by (blast intro: fold_graph_determ) | 
| 15392 | 1339 | next | 
| 15506 | 1340 | assume diff: "a\<noteq>b" | 
| 1341 |     let ?D = "B - {a}"
 | |
| 1342 | have B: "B = insert a ?D" and A: "A = insert b ?D" | |
| 1343 | and aB: "a \<in> B" and bA: "b \<in> A" | |
| 1344 | using eq anotA bnotB diff by (blast elim!:equalityE)+ | |
| 1345 | with aB bnotB By | |
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1346 | have "fold_graph times id a (insert b ?D) y" | 
| 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1347 | by (auto intro: fold_graph_permute simp add: insert_absorb) | 
| 15506 | 1348 | moreover | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1349 | have "fold_graph times id a (insert b ?D) x" | 
| 15506 | 1350 | by (simp add: A [symmetric] Ax) | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1351 | ultimately show ?thesis by (blast intro: fold_graph_determ) | 
| 15392 | 1352 | qed | 
| 12396 | 1353 | qed | 
| 1354 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1355 | lemma fold1Set_equality: "fold1Set times A y ==> fold1 times A = y" | 
| 15506 | 1356 | by (unfold fold1_def) (blast intro: fold1Set_determ) | 
| 1357 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1358 | end | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1359 | *) | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1360 | |
| 15506 | 1361 | declare | 
| 28853 
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
 nipkow parents: 
28823diff
changeset | 1362 | empty_fold_graphE [rule del] fold_graph.intros [rule del] | 
| 15506 | 1363 | empty_fold1SetE [rule del] insert_fold1SetE [rule del] | 
| 19931 
fb32b43e7f80
Restructured locales with predicates: import is now an interpretation.
 ballarin parents: 
19870diff
changeset | 1364 |   -- {* No more proofs involve these relations. *}
 | 
| 15376 | 1365 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1366 | subsubsection {* Lemmas about @{text fold1} *}
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1367 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1368 | context ab_semigroup_mult | 
| 22917 | 1369 | begin | 
| 1370 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1371 | lemma fold1_Un: | 
| 15484 | 1372 | assumes A: "finite A" "A \<noteq> {}"
 | 
| 1373 | shows "finite B \<Longrightarrow> B \<noteq> {} \<Longrightarrow> A Int B = {} \<Longrightarrow>
 | |
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1374 | fold1 times (A Un B) = fold1 times A * fold1 times B" | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1375 | using A by (induct rule: finite_ne_induct) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1376 | (simp_all add: fold1_insert mult_assoc) | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1377 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1378 | lemma fold1_in: | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1379 |   assumes A: "finite (A)" "A \<noteq> {}" and elem: "\<And>x y. x * y \<in> {x,y}"
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1380 | shows "fold1 times A \<in> A" | 
| 15484 | 1381 | using A | 
| 1382 | proof (induct rule:finite_ne_induct) | |
| 15506 | 1383 | case singleton thus ?case by simp | 
| 15484 | 1384 | next | 
| 1385 | case insert thus ?case using elem by (force simp add:fold1_insert) | |
| 1386 | qed | |
| 1387 | ||
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1388 | end | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1389 | |
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1390 | lemma (in ab_semigroup_idem_mult) fold1_Un2: | 
| 15497 
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
 nipkow parents: 
15487diff
changeset | 1391 | assumes A: "finite A" "A \<noteq> {}"
 | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1392 | shows "finite B \<Longrightarrow> B \<noteq> {} \<Longrightarrow>
 | 
| 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1393 | fold1 times (A Un B) = fold1 times A * fold1 times B" | 
| 15497 
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
 nipkow parents: 
15487diff
changeset | 1394 | using A | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1395 | proof(induct rule:finite_ne_induct) | 
| 15497 
53bca254719a
Added semi-lattice locales and reorganized fold1 lemmas
 nipkow parents: 
15487diff
changeset | 1396 | case singleton thus ?case by simp | 
| 15484 | 1397 | next | 
| 26041 
c2e15e65165f
locales ACf, ACIf, ACIfSL and ACIfSLlin have been abandoned in favour of the existing algebraic classes ab_semigroup_mult, ab_semigroup_idem_mult, lower_semilattice (resp. uper_semilattice) and linorder
 haftmann parents: 
25571diff
changeset | 1398 | case insert thus ?case by (simp add: mult_assoc) | 
| 18423 | 1399 | qed | 
| 1400 | ||
| 1401 | ||
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1402 | subsection {* Locales as mini-packages for fold operations *}
 | 
| 34007 
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
 haftmann parents: 
33960diff
changeset | 1403 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1404 | subsubsection {* The natural case *}
 | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1405 | |
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1406 | locale folding = | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1407 | fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'b" | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1408 | fixes F :: "'a set \<Rightarrow> 'b \<Rightarrow> 'b" | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1409 | assumes comp_fun_commute: "f y \<circ> f x = f x \<circ> f y" | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1410 | assumes eq_fold: "finite A \<Longrightarrow> F A s = fold f s A" | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1411 | begin | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1412 | |
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1413 | lemma empty [simp]: | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1414 |   "F {} = id"
 | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 1415 | by (simp add: eq_fold fun_eq_iff) | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1416 | |
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1417 | lemma insert [simp]: | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1418 | assumes "finite A" and "x \<notin> A" | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1419 | shows "F (insert x A) = F A \<circ> f x" | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1420 | proof - | 
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1421 | interpret comp_fun_commute f | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1422 | by default (insert comp_fun_commute, simp add: fun_eq_iff) | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1423 | from fold_insert2 assms | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1424 | have "\<And>s. fold f s (insert x A) = fold f (f x s) A" . | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 1425 | with `finite A` show ?thesis by (simp add: eq_fold fun_eq_iff) | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1426 | qed | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1427 | |
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1428 | lemma remove: | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1429 | assumes "finite A" and "x \<in> A" | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1430 |   shows "F A = F (A - {x}) \<circ> f x"
 | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1431 | proof - | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1432 | from `x \<in> A` obtain B where A: "A = insert x B" and "x \<notin> B" | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1433 | by (auto dest: mk_disjoint_insert) | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1434 | moreover from `finite A` this have "finite B" by simp | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1435 | ultimately show ?thesis by simp | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1436 | qed | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1437 | |
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1438 | lemma insert_remove: | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1439 | assumes "finite A" | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1440 |   shows "F (insert x A) = F (A - {x}) \<circ> f x"
 | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1441 | using assms by (cases "x \<in> A") (simp_all add: remove insert_absorb) | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1442 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1443 | lemma commute_left_comp: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1444 | "f y \<circ> (f x \<circ> g) = f x \<circ> (f y \<circ> g)" | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1445 | by (simp add: o_assoc comp_fun_commute) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1446 | |
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1447 | lemma comp_fun_commute': | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1448 | assumes "finite A" | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1449 | shows "f x \<circ> F A = F A \<circ> f x" | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1450 | using assms by (induct A) | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1451 | (simp, simp del: o_apply add: o_assoc, simp del: o_apply add: o_assoc [symmetric] comp_fun_commute) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1452 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1453 | lemma commute_left_comp': | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1454 | assumes "finite A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1455 | shows "f x \<circ> (F A \<circ> g) = F A \<circ> (f x \<circ> g)" | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1456 | using assms by (simp add: o_assoc comp_fun_commute') | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1457 | |
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1458 | lemma comp_fun_commute'': | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1459 | assumes "finite A" and "finite B" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1460 | shows "F B \<circ> F A = F A \<circ> F B" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1461 | using assms by (induct A) | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1462 | (simp_all add: o_assoc, simp add: o_assoc [symmetric] comp_fun_commute') | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1463 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1464 | lemma commute_left_comp'': | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1465 | assumes "finite A" and "finite B" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1466 | shows "F B \<circ> (F A \<circ> g) = F A \<circ> (F B \<circ> g)" | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1467 | using assms by (simp add: o_assoc comp_fun_commute'') | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1468 | |
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1469 | lemmas comp_fun_commutes = o_assoc [symmetric] comp_fun_commute commute_left_comp | 
| 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1470 | comp_fun_commute' commute_left_comp' comp_fun_commute'' commute_left_comp'' | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1471 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1472 | lemma union_inter: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1473 | assumes "finite A" and "finite B" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1474 | shows "F (A \<union> B) \<circ> F (A \<inter> B) = F A \<circ> F B" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1475 | using assms by (induct A) | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1476 | (simp_all del: o_apply add: insert_absorb Int_insert_left comp_fun_commutes, | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1477 | simp add: o_assoc) | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1478 | |
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1479 | lemma union: | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1480 | assumes "finite A" and "finite B" | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1481 |   and "A \<inter> B = {}"
 | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1482 | shows "F (A \<union> B) = F A \<circ> F B" | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1483 | proof - | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1484 | from union_inter `finite A` `finite B` have "F (A \<union> B) \<circ> F (A \<inter> B) = F A \<circ> F B" . | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1485 |   with `A \<inter> B = {}` show ?thesis by simp
 | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1486 | qed | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1487 | |
| 34007 
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
 haftmann parents: 
33960diff
changeset | 1488 | end | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1489 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1490 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1491 | subsubsection {* The natural case with idempotency *}
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1492 | |
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1493 | locale folding_idem = folding + | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1494 | assumes idem_comp: "f x \<circ> f x = f x" | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1495 | begin | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1496 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1497 | lemma idem_left_comp: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1498 | "f x \<circ> (f x \<circ> g) = f x \<circ> g" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1499 | by (simp add: o_assoc idem_comp) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1500 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1501 | lemma in_comp_idem: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1502 | assumes "finite A" and "x \<in> A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1503 | shows "F A \<circ> f x = F A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1504 | using assms by (induct A) | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1505 | (auto simp add: comp_fun_commutes idem_comp, simp add: commute_left_comp' [symmetric] comp_fun_commute') | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1506 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1507 | lemma subset_comp_idem: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1508 | assumes "finite A" and "B \<subseteq> A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1509 | shows "F A \<circ> F B = F A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1510 | proof - | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1511 | from assms have "finite B" by (blast dest: finite_subset) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1512 | then show ?thesis using `B \<subseteq> A` by (induct B) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1513 | (simp_all add: o_assoc in_comp_idem `finite A`) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1514 | qed | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1515 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1516 | declare insert [simp del] | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1517 | |
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1518 | lemma insert_idem [simp]: | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1519 | assumes "finite A" | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1520 | shows "F (insert x A) = F A \<circ> f x" | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1521 | using assms by (cases "x \<in> A") (simp_all add: insert in_comp_idem insert_absorb) | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1522 | |
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1523 | lemma union_idem: | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1524 | assumes "finite A" and "finite B" | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1525 | shows "F (A \<union> B) = F A \<circ> F B" | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1526 | proof - | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1527 | from assms have "finite (A \<union> B)" and "A \<inter> B \<subseteq> A \<union> B" by auto | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1528 | then have "F (A \<union> B) \<circ> F (A \<inter> B) = F (A \<union> B)" by (rule subset_comp_idem) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1529 | with assms show ?thesis by (simp add: union_inter) | 
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1530 | qed | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1531 | |
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1532 | end | 
| 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1533 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1534 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1535 | subsubsection {* The image case with fixed function *}
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1536 | |
| 35796 | 1537 | no_notation times (infixl "*" 70) | 
| 1538 | no_notation Groups.one ("1")
 | |
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1539 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1540 | locale folding_image_simple = comm_monoid + | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1541 |   fixes g :: "('b \<Rightarrow> 'a)"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1542 | fixes F :: "'b set \<Rightarrow> 'a" | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1543 | assumes eq_fold_g: "finite A \<Longrightarrow> F A = fold_image f g 1 A" | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1544 | begin | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1545 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1546 | lemma empty [simp]: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1547 |   "F {} = 1"
 | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1548 | by (simp add: eq_fold_g) | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1549 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1550 | lemma insert [simp]: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1551 | assumes "finite A" and "x \<notin> A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1552 | shows "F (insert x A) = g x * F A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1553 | proof - | 
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1554 | interpret comp_fun_commute "%x y. (g x) * y" | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1555 | by default (simp add: ac_simps fun_eq_iff) | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1556 | from assms have "fold_image (op *) g 1 (insert x A) = g x * fold_image (op *) g 1 A" | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1557 | by (simp add: fold_image_def) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1558 | with `finite A` show ?thesis by (simp add: eq_fold_g) | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1559 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1560 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1561 | lemma remove: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1562 | assumes "finite A" and "x \<in> A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1563 |   shows "F A = g x * F (A - {x})"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1564 | proof - | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1565 | from `x \<in> A` obtain B where A: "A = insert x B" and "x \<notin> B" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1566 | by (auto dest: mk_disjoint_insert) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1567 | moreover from `finite A` this have "finite B" by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1568 | ultimately show ?thesis by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1569 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1570 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1571 | lemma insert_remove: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1572 | assumes "finite A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1573 |   shows "F (insert x A) = g x * F (A - {x})"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1574 | using assms by (cases "x \<in> A") (simp_all add: remove insert_absorb) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1575 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1576 | lemma neutral: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1577 | assumes "finite A" and "\<forall>x\<in>A. g x = 1" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1578 | shows "F A = 1" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1579 | using assms by (induct A) simp_all | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1580 | |
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1581 | lemma union_inter: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1582 | assumes "finite A" and "finite B" | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1583 | shows "F (A \<union> B) * F (A \<inter> B) = F A * F B" | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1584 | using assms proof (induct A) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1585 | case empty then show ?case by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1586 | next | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1587 | case (insert x A) then show ?case | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1588 | by (auto simp add: insert_absorb Int_insert_left commute [of _ "g x"] assoc left_commute) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1589 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1590 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1591 | corollary union_inter_neutral: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1592 | assumes "finite A" and "finite B" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1593 | and I0: "\<forall>x \<in> A\<inter>B. g x = 1" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1594 | shows "F (A \<union> B) = F A * F B" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1595 | using assms by (simp add: union_inter [symmetric] neutral) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1596 | |
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1597 | corollary union_disjoint: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1598 | assumes "finite A" and "finite B" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1599 |   assumes "A \<inter> B = {}"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1600 | shows "F (A \<union> B) = F A * F B" | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1601 | using assms by (simp add: union_inter_neutral) | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1602 | |
| 35719 
99b6152aedf5
split off theory Big_Operators from theory Finite_Set
 haftmann parents: 
35577diff
changeset | 1603 | end | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1604 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1605 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1606 | subsubsection {* The image case with flexible function *}
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1607 | |
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1608 | locale folding_image = comm_monoid + | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1609 |   fixes F :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b set \<Rightarrow> 'a"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1610 | assumes eq_fold: "\<And>g. finite A \<Longrightarrow> F g A = fold_image f g 1 A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1611 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1612 | sublocale folding_image < folding_image_simple "op *" 1 g "F g" proof | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1613 | qed (fact eq_fold) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1614 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1615 | context folding_image | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1616 | begin | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1617 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1618 | lemma reindex: (* FIXME polymorhism *) | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1619 | assumes "finite A" and "inj_on h A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1620 | shows "F g (h ` A) = F (g \<circ> h) A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1621 | using assms by (induct A) auto | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1622 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1623 | lemma cong: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1624 | assumes "finite A" and "\<And>x. x \<in> A \<Longrightarrow> g x = h x" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1625 | shows "F g A = F h A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1626 | proof - | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1627 | from assms have "ALL C. C <= A --> (ALL x:C. g x = h x) --> F g C = F h C" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1628 | apply - apply (erule finite_induct) apply simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1629 | apply (simp add: subset_insert_iff, clarify) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1630 | apply (subgoal_tac "finite C") | 
| 48125 
602dc0215954
tuned proofs -- prefer direct "rotated" instead of old-style COMP;
 wenzelm parents: 
48124diff
changeset | 1631 | prefer 2 apply (blast dest: finite_subset [rotated]) | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1632 |   apply (subgoal_tac "C = insert x (C - {x})")
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1633 | prefer 2 apply blast | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1634 | apply (erule ssubst) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1635 | apply (drule spec) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1636 | apply (erule (1) notE impE) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1637 | apply (simp add: Ball_def del: insert_Diff_single) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1638 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1639 | with assms show ?thesis by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1640 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1641 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1642 | lemma UNION_disjoint: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1643 | assumes "finite I" and "\<forall>i\<in>I. finite (A i)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1644 |   and "\<forall>i\<in>I. \<forall>j\<in>I. i \<noteq> j \<longrightarrow> A i \<inter> A j = {}"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1645 | shows "F g (UNION I A) = F (F g \<circ> A) I" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1646 | apply (insert assms) | 
| 41656 | 1647 | apply (induct rule: finite_induct) | 
| 1648 | apply simp | |
| 1649 | apply atomize | |
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1650 | apply (subgoal_tac "\<forall>i\<in>Fa. x \<noteq> i") | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1651 | prefer 2 apply blast | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1652 | apply (subgoal_tac "A x Int UNION Fa A = {}")
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1653 | prefer 2 apply blast | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1654 | apply (simp add: union_disjoint) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1655 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1656 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1657 | lemma distrib: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1658 | assumes "finite A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1659 | shows "F (\<lambda>x. g x * h x) A = F g A * F h A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1660 | using assms by (rule finite_induct) (simp_all add: assoc commute left_commute) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1661 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1662 | lemma related: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1663 | assumes Re: "R 1 1" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1664 | and Rop: "\<forall>x1 y1 x2 y2. R x1 x2 \<and> R y1 y2 \<longrightarrow> R (x1 * y1) (x2 * y2)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1665 | and fS: "finite S" and Rfg: "\<forall>x\<in>S. R (h x) (g x)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1666 | shows "R (F h S) (F g S)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1667 | using fS by (rule finite_subset_induct) (insert assms, auto) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1668 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1669 | lemma eq_general: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1670 | assumes fS: "finite S" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1671 | and h: "\<forall>y\<in>S'. \<exists>!x. x \<in> S \<and> h x = y" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1672 | and f12: "\<forall>x\<in>S. h x \<in> S' \<and> f2 (h x) = f1 x" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1673 | shows "F f1 S = F f2 S'" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1674 | proof- | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1675 | from h f12 have hS: "h ` S = S'" by blast | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1676 |   {fix x y assume H: "x \<in> S" "y \<in> S" "h x = h y"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1677 | from f12 h H have "x = y" by auto } | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1678 | hence hinj: "inj_on h S" unfolding inj_on_def Ex1_def by blast | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1679 | from f12 have th: "\<And>x. x \<in> S \<Longrightarrow> (f2 \<circ> h) x = f1 x" by auto | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1680 | from hS have "F f2 S' = F f2 (h ` S)" by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1681 | also have "\<dots> = F (f2 o h) S" using reindex [OF fS hinj, of f2] . | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1682 | also have "\<dots> = F f1 S " using th cong [OF fS, of "f2 o h" f1] | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1683 | by blast | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1684 | finally show ?thesis .. | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1685 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1686 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1687 | lemma eq_general_inverses: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1688 | assumes fS: "finite S" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1689 | and kh: "\<And>y. y \<in> T \<Longrightarrow> k y \<in> S \<and> h (k y) = y" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1690 | and hk: "\<And>x. x \<in> S \<Longrightarrow> h x \<in> T \<and> k (h x) = x \<and> g (h x) = j x" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1691 | shows "F j S = F g T" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1692 | (* metis solves it, but not yet available here *) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1693 | apply (rule eq_general [OF fS, of T h g j]) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1694 | apply (rule ballI) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1695 | apply (frule kh) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1696 | apply (rule ex1I[]) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1697 | apply blast | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1698 | apply clarsimp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1699 | apply (drule hk) apply simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1700 | apply (rule sym) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1701 | apply (erule conjunct1[OF conjunct2[OF hk]]) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1702 | apply (rule ballI) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1703 | apply (drule hk) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1704 | apply blast | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1705 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1706 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1707 | end | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1708 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1709 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1710 | subsubsection {* The image case with fixed function and idempotency *}
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1711 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1712 | locale folding_image_simple_idem = folding_image_simple + | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1713 | assumes idem: "x * x = x" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1714 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1715 | sublocale folding_image_simple_idem < semilattice proof | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1716 | qed (fact idem) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1717 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1718 | context folding_image_simple_idem | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1719 | begin | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1720 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1721 | lemma in_idem: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1722 | assumes "finite A" and "x \<in> A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1723 | shows "g x * F A = F A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1724 | using assms by (induct A) (auto simp add: left_commute) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1725 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1726 | lemma subset_idem: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1727 | assumes "finite A" and "B \<subseteq> A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1728 | shows "F B * F A = F A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1729 | proof - | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1730 | from assms have "finite B" by (blast dest: finite_subset) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1731 | then show ?thesis using `B \<subseteq> A` by (induct B) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1732 | (auto simp add: assoc in_idem `finite A`) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1733 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1734 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1735 | declare insert [simp del] | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1736 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1737 | lemma insert_idem [simp]: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1738 | assumes "finite A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1739 | shows "F (insert x A) = g x * F A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1740 | using assms by (cases "x \<in> A") (simp_all add: insert in_idem insert_absorb) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1741 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1742 | lemma union_idem: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1743 | assumes "finite A" and "finite B" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1744 | shows "F (A \<union> B) = F A * F B" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1745 | proof - | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1746 | from assms have "finite (A \<union> B)" and "A \<inter> B \<subseteq> A \<union> B" by auto | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1747 | then have "F (A \<inter> B) * F (A \<union> B) = F (A \<union> B)" by (rule subset_idem) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1748 | with assms show ?thesis by (simp add: union_inter [of A B, symmetric] commute) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1749 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1750 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1751 | end | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1752 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1753 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1754 | subsubsection {* The image case with flexible function and idempotency *}
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1755 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1756 | locale folding_image_idem = folding_image + | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1757 | assumes idem: "x * x = x" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1758 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1759 | sublocale folding_image_idem < folding_image_simple_idem "op *" 1 g "F g" proof | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1760 | qed (fact idem) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1761 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1762 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1763 | subsubsection {* The neutral-less case *}
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1764 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1765 | locale folding_one = abel_semigroup + | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1766 | fixes F :: "'a set \<Rightarrow> 'a" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1767 | assumes eq_fold: "finite A \<Longrightarrow> F A = fold1 f A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1768 | begin | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1769 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1770 | lemma singleton [simp]: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1771 |   "F {x} = x"
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1772 | by (simp add: eq_fold) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1773 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1774 | lemma eq_fold': | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1775 | assumes "finite A" and "x \<notin> A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1776 | shows "F (insert x A) = fold (op *) x A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1777 | proof - | 
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1778 | interpret ab_semigroup_mult "op *" by default (simp_all add: ac_simps) | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1779 | from assms show ?thesis by (simp add: eq_fold fold1_eq_fold) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1780 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1781 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1782 | lemma insert [simp]: | 
| 36637 | 1783 |   assumes "finite A" and "x \<notin> A" and "A \<noteq> {}"
 | 
| 1784 | shows "F (insert x A) = x * F A" | |
| 1785 | proof - | |
| 1786 |   from `A \<noteq> {}` obtain b where "b \<in> A" by blast
 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1787 | then obtain B where *: "A = insert b B" "b \<notin> B" by (blast dest: mk_disjoint_insert) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1788 | with `finite A` have "finite B" by simp | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1789 | interpret fold: folding "op *" "\<lambda>a b. fold (op *) b a" proof | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 1790 | qed (simp_all add: fun_eq_iff ac_simps) | 
| 42871 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 haftmann parents: 
42869diff
changeset | 1791 | from `finite B` fold.comp_fun_commute' [of B x] | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1792 | have "op * x \<circ> (\<lambda>b. fold op * b B) = (\<lambda>b. fold op * b B) \<circ> op * x" by simp | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 1793 | then have A: "x * fold op * b B = fold op * (b * x) B" by (simp add: fun_eq_iff commute) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1794 | from `finite B` * fold.insert [of B b] | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1795 | have "(\<lambda>x. fold op * x (insert b B)) = (\<lambda>x. fold op * x B) \<circ> op * b" by simp | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 1796 | then have B: "fold op * x (insert b B) = fold op * (b * x) B" by (simp add: fun_eq_iff) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1797 | from A B assms * show ?thesis by (simp add: eq_fold' del: fold.insert) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1798 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1799 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1800 | lemma remove: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1801 | assumes "finite A" and "x \<in> A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1802 |   shows "F A = (if A - {x} = {} then x else x * F (A - {x}))"
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1803 | proof - | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1804 | from assms obtain B where "A = insert x B" and "x \<notin> B" by (blast dest: mk_disjoint_insert) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1805 | with assms show ?thesis by simp | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1806 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1807 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1808 | lemma insert_remove: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1809 | assumes "finite A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1810 |   shows "F (insert x A) = (if A - {x} = {} then x else x * F (A - {x}))"
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1811 | using assms by (cases "x \<in> A") (simp_all add: insert_absorb remove) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1812 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1813 | lemma union_disjoint: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1814 |   assumes "finite A" "A \<noteq> {}" and "finite B" "B \<noteq> {}" and "A \<inter> B = {}"
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1815 | shows "F (A \<union> B) = F A * F B" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1816 | using assms by (induct A rule: finite_ne_induct) (simp_all add: ac_simps) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1817 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1818 | lemma union_inter: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1819 |   assumes "finite A" and "finite B" and "A \<inter> B \<noteq> {}"
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1820 | shows "F (A \<union> B) * F (A \<inter> B) = F A * F B" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1821 | proof - | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1822 |   from assms have "A \<noteq> {}" and "B \<noteq> {}" by auto
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1823 |   from `finite A` `A \<noteq> {}` `A \<inter> B \<noteq> {}` show ?thesis proof (induct A rule: finite_ne_induct)
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1824 | case (singleton x) then show ?case by (simp add: insert_absorb ac_simps) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1825 | next | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1826 | case (insert x A) show ?case proof (cases "x \<in> B") | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1827 |       case True then have "B \<noteq> {}" by auto
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1828 |       with insert True `finite B` show ?thesis by (cases "A \<inter> B = {}")
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1829 | (simp_all add: insert_absorb ac_simps union_disjoint) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1830 | next | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1831 | case False with insert have "F (A \<union> B) * F (A \<inter> B) = F A * F B" by simp | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1832 |       moreover from False `finite B` insert have "finite (A \<union> B)" "x \<notin> A \<union> B" "A \<union> B \<noteq> {}"
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1833 | by auto | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1834 |       ultimately show ?thesis using False `finite A` `x \<notin> A` `A \<noteq> {}` by (simp add: assoc)
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1835 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1836 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1837 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1838 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1839 | lemma closed: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1840 |   assumes "finite A" "A \<noteq> {}" and elem: "\<And>x y. x * y \<in> {x, y}"
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1841 | shows "F A \<in> A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1842 | using `finite A` `A \<noteq> {}` proof (induct rule: finite_ne_induct)
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1843 | case singleton then show ?case by simp | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1844 | next | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1845 | case insert with elem show ?case by force | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1846 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1847 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1848 | end | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1849 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1850 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1851 | subsubsection {* The neutral-less case with idempotency *}
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1852 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1853 | locale folding_one_idem = folding_one + | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1854 | assumes idem: "x * x = x" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1855 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1856 | sublocale folding_one_idem < semilattice proof | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1857 | qed (fact idem) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1858 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1859 | context folding_one_idem | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1860 | begin | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1861 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1862 | lemma in_idem: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1863 | assumes "finite A" and "x \<in> A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1864 | shows "x * F A = F A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1865 | proof - | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1866 |   from assms have "A \<noteq> {}" by auto
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1867 | with `finite A` show ?thesis using `x \<in> A` by (induct A rule: finite_ne_induct) (auto simp add: ac_simps) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1868 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1869 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1870 | lemma subset_idem: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1871 |   assumes "finite A" "B \<noteq> {}" and "B \<subseteq> A"
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1872 | shows "F B * F A = F A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1873 | proof - | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1874 | from assms have "finite B" by (blast dest: finite_subset) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1875 |   then show ?thesis using `B \<noteq> {}` `B \<subseteq> A` by (induct B rule: finite_ne_induct)
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1876 | (simp_all add: assoc in_idem `finite A`) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1877 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1878 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1879 | lemma eq_fold_idem': | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1880 | assumes "finite A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1881 | shows "F (insert a A) = fold (op *) a A" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1882 | proof - | 
| 46898 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1883 | interpret ab_semigroup_idem_mult "op *" by default (simp_all add: ac_simps) | 
| 
1570b30ee040
tuned proofs -- eliminated pointless chaining of facts after 'interpret';
 wenzelm parents: 
46146diff
changeset | 1884 | from assms show ?thesis by (simp add: eq_fold fold1_eq_fold_idem) | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1885 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1886 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1887 | lemma insert_idem [simp]: | 
| 36637 | 1888 |   assumes "finite A" and "A \<noteq> {}"
 | 
| 1889 | shows "F (insert x A) = x * F A" | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1890 | proof (cases "x \<in> A") | 
| 36637 | 1891 |   case False from `finite A` `x \<notin> A` `A \<noteq> {}` show ?thesis by (rule insert)
 | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1892 | next | 
| 36637 | 1893 | case True | 
| 1894 |   from `finite A` `A \<noteq> {}` show ?thesis by (simp add: in_idem insert_absorb True)
 | |
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1895 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1896 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1897 | lemma union_idem: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1898 |   assumes "finite A" "A \<noteq> {}" and "finite B" "B \<noteq> {}"
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1899 | shows "F (A \<union> B) = F A * F B" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1900 | proof (cases "A \<inter> B = {}")
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1901 | case True with assms show ?thesis by (simp add: union_disjoint) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1902 | next | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1903 | case False | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1904 | from assms have "finite (A \<union> B)" and "A \<inter> B \<subseteq> A \<union> B" by auto | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1905 | with False have "F (A \<inter> B) * F (A \<union> B) = F (A \<union> B)" by (auto intro: subset_idem) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1906 | with assms False show ?thesis by (simp add: union_inter [of A B, symmetric] commute) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1907 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1908 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1909 | lemma hom_commute: | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1910 | assumes hom: "\<And>x y. h (x * y) = h x * h y" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1911 |   and N: "finite N" "N \<noteq> {}" shows "h (F N) = F (h ` N)"
 | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1912 | using N proof (induct rule: finite_ne_induct) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1913 | case singleton thus ?case by simp | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1914 | next | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1915 | case (insert n N) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1916 | then have "h (F (insert n N)) = h (n * F N)" by simp | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1917 | also have "\<dots> = h n * h (F N)" by (rule hom) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1918 | also have "h (F N) = F (h ` N)" by(rule insert) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1919 | also have "h n * \<dots> = F (insert (h n) (h ` N))" | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1920 | using insert by(simp) | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1921 | also have "insert (h n) (h ` N) = h ` insert n N" by simp | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1922 | finally show ?case . | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1923 | qed | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1924 | |
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1925 | end | 
| 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 1926 | |
| 35796 | 1927 | notation times (infixl "*" 70) | 
| 1928 | notation Groups.one ("1")
 | |
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1929 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1930 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1931 | subsection {* Finite cardinality *}
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1932 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1933 | text {* This definition, although traditional, is ugly to work with:
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1934 | @{text "card A == LEAST n. EX f. A = {f i | i. i < n}"}.
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1935 | But now that we have @{text fold_image} things are easy:
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1936 | *} | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1937 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1938 | definition card :: "'a set \<Rightarrow> nat" where | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1939 | "card A = (if finite A then fold_image (op +) (\<lambda>x. 1) 0 A else 0)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1940 | |
| 37770 
cddb3106adb8
avoid explicit mandatory prefix markers when prefixes are mandatory implicitly
 haftmann parents: 
37767diff
changeset | 1941 | interpretation card: folding_image_simple "op +" 0 "\<lambda>x. 1" card proof | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1942 | qed (simp add: card_def) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1943 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1944 | lemma card_infinite [simp]: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1945 | "\<not> finite A \<Longrightarrow> card A = 0" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1946 | by (simp add: card_def) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1947 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1948 | lemma card_empty: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1949 |   "card {} = 0"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1950 | by (fact card.empty) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1951 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1952 | lemma card_insert_disjoint: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1953 | "finite A ==> x \<notin> A ==> card (insert x A) = Suc (card A)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1954 | by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1955 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1956 | lemma card_insert_if: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1957 | "finite A ==> card (insert x A) = (if x \<in> A then card A else Suc (card A))" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1958 | by auto (simp add: card.insert_remove card.remove) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1959 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1960 | lemma card_ge_0_finite: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1961 | "card A > 0 \<Longrightarrow> finite A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1962 | by (rule ccontr) simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1963 | |
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35796diff
changeset | 1964 | lemma card_0_eq [simp, no_atp]: | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1965 |   "finite A \<Longrightarrow> card A = 0 \<longleftrightarrow> A = {}"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1966 | by (auto dest: mk_disjoint_insert) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1967 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1968 | lemma finite_UNIV_card_ge_0: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1969 | "finite (UNIV :: 'a set) \<Longrightarrow> card (UNIV :: 'a set) > 0" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1970 | by (rule ccontr) simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1971 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1972 | lemma card_eq_0_iff: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1973 |   "card A = 0 \<longleftrightarrow> A = {} \<or> \<not> finite A"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1974 | by auto | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1975 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1976 | lemma card_gt_0_iff: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1977 |   "0 < card A \<longleftrightarrow> A \<noteq> {} \<and> finite A"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1978 | by (simp add: neq0_conv [symmetric] card_eq_0_iff) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1979 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1980 | lemma card_Suc_Diff1: "finite A ==> x: A ==> Suc (card (A - {x})) = card A"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1981 | apply(rule_tac t = A in insert_Diff [THEN subst], assumption) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1982 | apply(simp del:insert_Diff_single) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1983 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1984 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1985 | lemma card_Diff_singleton: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1986 |   "finite A ==> x: A ==> card (A - {x}) = card A - 1"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1987 | by (simp add: card_Suc_Diff1 [symmetric]) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1988 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1989 | lemma card_Diff_singleton_if: | 
| 45166 | 1990 |   "finite A ==> card (A - {x}) = (if x : A then card A - 1 else card A)"
 | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1991 | by (simp add: card_Diff_singleton) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1992 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1993 | lemma card_Diff_insert[simp]: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1994 | assumes "finite A" and "a:A" and "a ~: B" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1995 | shows "card(A - insert a B) = card(A - B) - 1" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1996 | proof - | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1997 |   have "A - insert a B = (A - B) - {a}" using assms by blast
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1998 | then show ?thesis using assms by(simp add:card_Diff_singleton) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 1999 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2000 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2001 | lemma card_insert: "finite A ==> card (insert x A) = Suc (card (A - {x}))"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2002 | by (simp add: card_insert_if card_Suc_Diff1 del:card_Diff_insert) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2003 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2004 | lemma card_insert_le: "finite A ==> card A <= card (insert x A)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2005 | by (simp add: card_insert_if) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2006 | |
| 41987 | 2007 | lemma card_Collect_less_nat[simp]: "card{i::nat. i < n} = n"
 | 
| 2008 | by (induct n) (simp_all add:less_Suc_eq Collect_disj_eq) | |
| 2009 | ||
| 41988 | 2010 | lemma card_Collect_le_nat[simp]: "card{i::nat. i <= n} = Suc n"
 | 
| 41987 | 2011 | using card_Collect_less_nat[of "Suc n"] by(simp add: less_Suc_eq_le) | 
| 2012 | ||
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2013 | lemma card_mono: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2014 | assumes "finite B" and "A \<subseteq> B" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2015 | shows "card A \<le> card B" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2016 | proof - | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2017 | from assms have "finite A" by (auto intro: finite_subset) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2018 | then show ?thesis using assms proof (induct A arbitrary: B) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2019 | case empty then show ?case by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2020 | next | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2021 | case (insert x A) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2022 | then have "x \<in> B" by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2023 |     from insert have "A \<subseteq> B - {x}" and "finite (B - {x})" by auto
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2024 |     with insert.hyps have "card A \<le> card (B - {x})" by auto
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2025 | with `finite A` `x \<notin> A` `finite B` `x \<in> B` show ?case by simp (simp only: card.remove) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2026 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2027 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2028 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2029 | lemma card_seteq: "finite B ==> (!!A. A <= B ==> card B <= card A ==> A = B)" | 
| 41656 | 2030 | apply (induct rule: finite_induct) | 
| 2031 | apply simp | |
| 2032 | apply clarify | |
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2033 | apply (subgoal_tac "finite A & A - {x} <= F")
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2034 | prefer 2 apply (blast intro: finite_subset, atomize) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2035 | apply (drule_tac x = "A - {x}" in spec)
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2036 | apply (simp add: card_Diff_singleton_if split add: split_if_asm) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2037 | apply (case_tac "card A", auto) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2038 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2039 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2040 | lemma psubset_card_mono: "finite B ==> A < B ==> card A < card B" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2041 | apply (simp add: psubset_eq linorder_not_le [symmetric]) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2042 | apply (blast dest: card_seteq) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2043 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2044 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2045 | lemma card_Un_Int: "finite A ==> finite B | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2046 | ==> card A + card B = card (A Un B) + card (A Int B)" | 
| 35817 
d8b8527102f5
added locales folding_one_(idem); various streamlining and tuning
 haftmann parents: 
35796diff
changeset | 2047 | by (fact card.union_inter [symmetric]) | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2048 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2049 | lemma card_Un_disjoint: "finite A ==> finite B | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2050 |     ==> A Int B = {} ==> card (A Un B) = card A + card B"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2051 | by (fact card.union_disjoint) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2052 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2053 | lemma card_Diff_subset: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2054 | assumes "finite B" and "B \<subseteq> A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2055 | shows "card (A - B) = card A - card B" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2056 | proof (cases "finite A") | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2057 | case False with assms show ?thesis by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2058 | next | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2059 | case True with assms show ?thesis by (induct B arbitrary: A) simp_all | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2060 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2061 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2062 | lemma card_Diff_subset_Int: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2063 | assumes AB: "finite (A \<inter> B)" shows "card (A - B) = card A - card (A \<inter> B)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2064 | proof - | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2065 | have "A - B = A - A \<inter> B" by auto | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2066 | thus ?thesis | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2067 | by (simp add: card_Diff_subset AB) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2068 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2069 | |
| 40716 | 2070 | lemma diff_card_le_card_Diff: | 
| 2071 | assumes "finite B" shows "card A - card B \<le> card(A - B)" | |
| 2072 | proof- | |
| 2073 | have "card A - card B \<le> card A - card (A \<inter> B)" | |
| 2074 | using card_mono[OF assms Int_lower2, of A] by arith | |
| 2075 | also have "\<dots> = card(A-B)" using assms by(simp add: card_Diff_subset_Int) | |
| 2076 | finally show ?thesis . | |
| 2077 | qed | |
| 2078 | ||
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2079 | lemma card_Diff1_less: "finite A ==> x: A ==> card (A - {x}) < card A"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2080 | apply (rule Suc_less_SucD) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2081 | apply (simp add: card_Suc_Diff1 del:card_Diff_insert) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2082 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2083 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2084 | lemma card_Diff2_less: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2085 |   "finite A ==> x: A ==> y: A ==> card (A - {x} - {y}) < card A"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2086 | apply (case_tac "x = y") | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2087 | apply (simp add: card_Diff1_less del:card_Diff_insert) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2088 | apply (rule less_trans) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2089 | prefer 2 apply (auto intro!: card_Diff1_less simp del:card_Diff_insert) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2090 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2091 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2092 | lemma card_Diff1_le: "finite A ==> card (A - {x}) <= card A"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2093 | apply (case_tac "x : A") | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2094 | apply (simp_all add: card_Diff1_less less_imp_le) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2095 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2096 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2097 | lemma card_psubset: "finite B ==> A \<subseteq> B ==> card A < card B ==> A < B" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2098 | by (erule psubsetI, blast) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2099 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2100 | lemma insert_partition: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2101 |   "\<lbrakk> x \<notin> F; \<forall>c1 \<in> insert x F. \<forall>c2 \<in> insert x F. c1 \<noteq> c2 \<longrightarrow> c1 \<inter> c2 = {} \<rbrakk>
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2102 |   \<Longrightarrow> x \<inter> \<Union> F = {}"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2103 | by auto | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2104 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2105 | lemma finite_psubset_induct[consumes 1, case_names psubset]: | 
| 36079 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2106 | assumes fin: "finite A" | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2107 | and major: "\<And>A. finite A \<Longrightarrow> (\<And>B. B \<subset> A \<Longrightarrow> P B) \<Longrightarrow> P A" | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2108 | shows "P A" | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2109 | using fin | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2110 | proof (induct A taking: card rule: measure_induct_rule) | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2111 | case (less A) | 
| 36079 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2112 | have fin: "finite A" by fact | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2113 | have ih: "\<And>B. \<lbrakk>card B < card A; finite B\<rbrakk> \<Longrightarrow> P B" by fact | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2114 |   { fix B 
 | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2115 | assume asm: "B \<subset> A" | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2116 | from asm have "card B < card A" using psubset_card_mono fin by blast | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2117 | moreover | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2118 | from asm have "B \<subseteq> A" by auto | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2119 | then have "finite B" using fin finite_subset by blast | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2120 | ultimately | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2121 | have "P B" using ih by simp | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2122 | } | 
| 
fa0e354e6a39
simplified induction case in finite_psubset_induct; tuned the proof that uses this induction principle
 Christian Urban <urbanc@in.tum.de> parents: 
36045diff
changeset | 2123 | with fin show "P A" using major by blast | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2124 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2125 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2126 | text{* main cardinality theorem *}
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2127 | lemma card_partition [rule_format]: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2128 | "finite C ==> | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2129 | finite (\<Union> C) --> | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2130 | (\<forall>c\<in>C. card c = k) --> | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2131 |      (\<forall>c1 \<in> C. \<forall>c2 \<in> C. c1 \<noteq> c2 --> c1 \<inter> c2 = {}) -->
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2132 | k * card(C) = card (\<Union> C)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2133 | apply (erule finite_induct, simp) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2134 | apply (simp add: card_Un_disjoint insert_partition | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2135 | finite_subset [of _ "\<Union> (insert x F)"]) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2136 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2137 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2138 | lemma card_eq_UNIV_imp_eq_UNIV: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2139 | assumes fin: "finite (UNIV :: 'a set)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2140 | and card: "card A = card (UNIV :: 'a set)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2141 | shows "A = (UNIV :: 'a set)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2142 | proof | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2143 | show "A \<subseteq> UNIV" by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2144 | show "UNIV \<subseteq> A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2145 | proof | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2146 | fix x | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2147 | show "x \<in> A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2148 | proof (rule ccontr) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2149 | assume "x \<notin> A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2150 | then have "A \<subset> UNIV" by auto | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2151 | with fin have "card A < card (UNIV :: 'a set)" by (fact psubset_card_mono) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2152 | with card show False by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2153 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2154 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2155 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2156 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2157 | text{*The form of a finite set of given cardinality*}
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2158 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2159 | lemma card_eq_SucD: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2160 | assumes "card A = Suc k" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2161 | shows "\<exists>b B. A = insert b B & b \<notin> B & card B = k & (k=0 \<longrightarrow> B={})"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2162 | proof - | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2163 | have fin: "finite A" using assms by (auto intro: ccontr) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2164 | moreover have "card A \<noteq> 0" using assms by auto | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2165 | ultimately obtain b where b: "b \<in> A" by auto | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2166 | show ?thesis | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2167 | proof (intro exI conjI) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2168 |     show "A = insert b (A-{b})" using b by blast
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2169 |     show "b \<notin> A - {b}" by blast
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2170 |     show "card (A - {b}) = k" and "k = 0 \<longrightarrow> A - {b} = {}"
 | 
| 44890 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 nipkow parents: 
44835diff
changeset | 2171 | using assms b fin by(fastforce dest:mk_disjoint_insert)+ | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2172 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2173 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2174 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2175 | lemma card_Suc_eq: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2176 | "(card A = Suc k) = | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2177 |    (\<exists>b B. A = insert b B & b \<notin> B & card B = k & (k=0 \<longrightarrow> B={}))"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2178 | apply(rule iffI) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2179 | apply(erule card_eq_SucD) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2180 | apply(auto) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2181 | apply(subst card_insert) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2182 | apply(auto intro:ccontr) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2183 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2184 | |
| 44744 | 2185 | lemma card_le_Suc_iff: "finite A \<Longrightarrow> | 
| 2186 | Suc n \<le> card A = (\<exists>a B. A = insert a B \<and> a \<notin> B \<and> n \<le> card B \<and> finite B)" | |
| 44890 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 nipkow parents: 
44835diff
changeset | 2187 | by (fastforce simp: card_Suc_eq less_eq_nat.simps(2) insert_eq_iff | 
| 44744 | 2188 | dest: subset_singletonD split: nat.splits if_splits) | 
| 2189 | ||
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2190 | lemma finite_fun_UNIVD2: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2191 |   assumes fin: "finite (UNIV :: ('a \<Rightarrow> 'b) set)"
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2192 | shows "finite (UNIV :: 'b set)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2193 | proof - | 
| 46146 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 2194 | from fin have "\<And>arbitrary. finite (range (\<lambda>f :: 'a \<Rightarrow> 'b. f arbitrary))" | 
| 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 2195 | by (rule finite_imageI) | 
| 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 2196 | moreover have "\<And>arbitrary. UNIV = range (\<lambda>f :: 'a \<Rightarrow> 'b. f arbitrary)" | 
| 
6baea4fca6bd
incorporated various theorems from theory More_Set into corpus
 haftmann parents: 
46033diff
changeset | 2197 | by (rule UNIV_eq_I) auto | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2198 | ultimately show "finite (UNIV :: 'b set)" by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2199 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2200 | |
| 48063 
f02b4302d5dd
remove duplicate lemma card_unit in favor of Finite_Set.card_UNIV_unit
 huffman parents: 
47221diff
changeset | 2201 | lemma card_UNIV_unit [simp]: "card (UNIV :: unit set) = 1" | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2202 | unfolding UNIV_unit by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2203 | |
| 47210 
b1dd32b2a505
move lemma card_UNIV_bool from Nat_Numeral.thy to Finite_Set.thy
 huffman parents: 
46898diff
changeset | 2204 | lemma card_UNIV_bool [simp]: "card (UNIV :: bool set) = 2" | 
| 
b1dd32b2a505
move lemma card_UNIV_bool from Nat_Numeral.thy to Finite_Set.thy
 huffman parents: 
46898diff
changeset | 2205 | unfolding UNIV_bool by simp | 
| 
b1dd32b2a505
move lemma card_UNIV_bool from Nat_Numeral.thy to Finite_Set.thy
 huffman parents: 
46898diff
changeset | 2206 | |
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2207 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2208 | subsubsection {* Cardinality of image *}
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2209 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2210 | lemma card_image_le: "finite A ==> card (f ` A) <= card A" | 
| 41656 | 2211 | apply (induct rule: finite_induct) | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2212 | apply simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2213 | apply (simp add: le_SucI card_insert_if) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2214 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2215 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2216 | lemma card_image: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2217 | assumes "inj_on f A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2218 | shows "card (f ` A) = card A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2219 | proof (cases "finite A") | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2220 | case True then show ?thesis using assms by (induct A) simp_all | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2221 | next | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2222 | case False then have "\<not> finite (f ` A)" using assms by (auto dest: finite_imageD) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2223 | with False show ?thesis by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2224 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2225 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2226 | lemma bij_betw_same_card: "bij_betw f A B \<Longrightarrow> card A = card B" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2227 | by(auto simp: card_image bij_betw_def) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2228 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2229 | lemma endo_inj_surj: "finite A ==> f ` A \<subseteq> A ==> inj_on f A ==> f ` A = A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2230 | by (simp add: card_seteq card_image) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2231 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2232 | lemma eq_card_imp_inj_on: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2233 | "[| finite A; card(f ` A) = card A |] ==> inj_on f A" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2234 | apply (induct rule:finite_induct) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2235 | apply simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2236 | apply(frule card_image_le[where f = f]) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2237 | apply(simp add:card_insert_if split:if_splits) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2238 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2239 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2240 | lemma inj_on_iff_eq_card: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2241 | "finite A ==> inj_on f A = (card(f ` A) = card A)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2242 | by(blast intro: card_image eq_card_imp_inj_on) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2243 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2244 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2245 | lemma card_inj_on_le: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2246 | "[|inj_on f A; f ` A \<subseteq> B; finite B |] ==> card A \<le> card B" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2247 | apply (subgoal_tac "finite A") | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2248 | apply (force intro: card_mono simp add: card_image [symmetric]) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2249 | apply (blast intro: finite_imageD dest: finite_subset) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2250 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2251 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2252 | lemma card_bij_eq: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2253 | "[|inj_on f A; f ` A \<subseteq> B; inj_on g B; g ` B \<subseteq> A; | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2254 | finite A; finite B |] ==> card A = card B" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2255 | by (auto intro: le_antisym card_inj_on_le) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2256 | |
| 40703 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 2257 | lemma bij_betw_finite: | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 2258 | assumes "bij_betw f A B" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 2259 | shows "finite A \<longleftrightarrow> finite B" | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 2260 | using assms unfolding bij_betw_def | 
| 
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
 hoelzl parents: 
40702diff
changeset | 2261 | using finite_imageD[of f A] by auto | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2262 | |
| 41656 | 2263 | |
| 37466 | 2264 | subsubsection {* Pigeonhole Principles *}
 | 
| 2265 | ||
| 40311 | 2266 | lemma pigeonhole: "card A > card(f ` A) \<Longrightarrow> ~ inj_on f A " | 
| 37466 | 2267 | by (auto dest: card_image less_irrefl_nat) | 
| 2268 | ||
| 2269 | lemma pigeonhole_infinite: | |
| 2270 | assumes "~ finite A" and "finite(f`A)" | |
| 2271 | shows "EX a0:A. ~finite{a:A. f a = f a0}"
 | |
| 2272 | proof - | |
| 2273 |   have "finite(f`A) \<Longrightarrow> ~ finite A \<Longrightarrow> EX a0:A. ~finite{a:A. f a = f a0}"
 | |
| 2274 | proof(induct "f`A" arbitrary: A rule: finite_induct) | |
| 2275 | case empty thus ?case by simp | |
| 2276 | next | |
| 2277 | case (insert b F) | |
| 2278 | show ?case | |
| 2279 | proof cases | |
| 2280 |       assume "finite{a:A. f a = b}"
 | |
| 2281 |       hence "~ finite(A - {a:A. f a = b})" using `\<not> finite A` by simp
 | |
| 2282 |       also have "A - {a:A. f a = b} = {a:A. f a \<noteq> b}" by blast
 | |
| 2283 |       finally have "~ finite({a:A. f a \<noteq> b})" .
 | |
| 2284 | from insert(3)[OF _ this] | |
| 2285 | show ?thesis using insert(2,4) by simp (blast intro: rev_finite_subset) | |
| 2286 | next | |
| 2287 |       assume 1: "~finite{a:A. f a = b}"
 | |
| 2288 |       hence "{a \<in> A. f a = b} \<noteq> {}" by force
 | |
| 2289 | thus ?thesis using 1 by blast | |
| 2290 | qed | |
| 2291 | qed | |
| 2292 | from this[OF assms(2,1)] show ?thesis . | |
| 2293 | qed | |
| 2294 | ||
| 2295 | lemma pigeonhole_infinite_rel: | |
| 2296 | assumes "~finite A" and "finite B" and "ALL a:A. EX b:B. R a b" | |
| 2297 | shows "EX b:B. ~finite{a:A. R a b}"
 | |
| 2298 | proof - | |
| 2299 |    let ?F = "%a. {b:B. R a b}"
 | |
| 2300 | from finite_Pow_iff[THEN iffD2, OF `finite B`] | |
| 2301 | have "finite(?F ` A)" by(blast intro: rev_finite_subset) | |
| 2302 | from pigeonhole_infinite[where f = ?F, OF assms(1) this] | |
| 2303 |    obtain a0 where "a0\<in>A" and 1: "\<not> finite {a\<in>A. ?F a = ?F a0}" ..
 | |
| 2304 | obtain b0 where "b0 : B" and "R a0 b0" using `a0:A` assms(3) by blast | |
| 2305 |    { assume "finite{a:A. R a b0}"
 | |
| 2306 |      then have "finite {a\<in>A. ?F a = ?F a0}"
 | |
| 2307 | using `b0 : B` `R a0 b0` by(blast intro: rev_finite_subset) | |
| 2308 | } | |
| 2309 | with 1 `b0 : B` show ?thesis by blast | |
| 2310 | qed | |
| 2311 | ||
| 2312 | ||
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2313 | subsubsection {* Cardinality of sums *}
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2314 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2315 | lemma card_Plus: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2316 | assumes "finite A" and "finite B" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2317 | shows "card (A <+> B) = card A + card B" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2318 | proof - | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2319 |   have "Inl`A \<inter> Inr`B = {}" by fast
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2320 | with assms show ?thesis | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2321 | unfolding Plus_def | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2322 | by (simp add: card_Un_disjoint card_image) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2323 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2324 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2325 | lemma card_Plus_conv_if: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2326 | "card (A <+> B) = (if finite A \<and> finite B then card A + card B else 0)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2327 | by (auto simp add: card_Plus) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2328 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2329 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2330 | subsubsection {* Cardinality of the Powerset *}
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2331 | |
| 47221 
7205eb4a0a05
rephrase lemma card_Pow using '2' instead of 'Suc (Suc 0)'
 huffman parents: 
47210diff
changeset | 2332 | lemma card_Pow: "finite A ==> card (Pow A) = 2 ^ card A" | 
| 41656 | 2333 | apply (induct rule: finite_induct) | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2334 | apply (simp_all add: Pow_insert) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2335 | apply (subst card_Un_disjoint, blast) | 
| 40786 
0a54cfc9add3
gave more standard finite set rules simp and intro attribute
 nipkow parents: 
40716diff
changeset | 2336 | apply (blast, blast) | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2337 | apply (subgoal_tac "inj_on (insert x) (Pow F)") | 
| 47221 
7205eb4a0a05
rephrase lemma card_Pow using '2' instead of 'Suc (Suc 0)'
 huffman parents: 
47210diff
changeset | 2338 | apply (subst mult_2) | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2339 | apply (simp add: card_image Pow_insert) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2340 | apply (unfold inj_on_def) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2341 | apply (blast elim!: equalityE) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2342 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2343 | |
| 41987 | 2344 | text {* Relates to equivalence classes.  Based on a theorem of F. Kamm\"uller.  *}
 | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2345 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2346 | lemma dvd_partition: | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2347 | "finite (Union C) ==> | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2348 | ALL c : C. k dvd card c ==> | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2349 |     (ALL c1: C. ALL c2: C. c1 \<noteq> c2 --> c1 Int c2 = {}) ==>
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2350 | k dvd card (Union C)" | 
| 41656 | 2351 | apply (frule finite_UnionD) | 
| 2352 | apply (rotate_tac -1) | |
| 2353 | apply (induct rule: finite_induct) | |
| 2354 | apply simp_all | |
| 2355 | apply clarify | |
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2356 | apply (subst card_Un_disjoint) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2357 | apply (auto simp add: disjoint_eq_subset_Compl) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2358 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2359 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2360 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2361 | subsubsection {* Relating injectivity and surjectivity *}
 | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2362 | |
| 41656 | 2363 | lemma finite_surj_inj: "finite A \<Longrightarrow> A \<subseteq> f ` A \<Longrightarrow> inj_on f A" | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2364 | apply(rule eq_card_imp_inj_on, assumption) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2365 | apply(frule finite_imageI) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2366 | apply(drule (1) card_seteq) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2367 | apply(erule card_image_le) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2368 | apply simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2369 | done | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2370 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2371 | lemma finite_UNIV_surj_inj: fixes f :: "'a \<Rightarrow> 'a" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2372 | shows "finite(UNIV:: 'a set) \<Longrightarrow> surj f \<Longrightarrow> inj f" | 
| 40702 | 2373 | by (blast intro: finite_surj_inj subset_UNIV) | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2374 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2375 | lemma finite_UNIV_inj_surj: fixes f :: "'a \<Rightarrow> 'a" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2376 | shows "finite(UNIV:: 'a set) \<Longrightarrow> inj f \<Longrightarrow> surj f" | 
| 44890 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 nipkow parents: 
44835diff
changeset | 2377 | by(fastforce simp:surj_def dest!: endo_inj_surj) | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2378 | |
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2379 | corollary infinite_UNIV_nat[iff]: "~finite(UNIV::nat set)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2380 | proof | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2381 | assume "finite(UNIV::nat set)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2382 | with finite_UNIV_inj_surj[of Suc] | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2383 | show False by simp (blast dest: Suc_neq_Zero surjD) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2384 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2385 | |
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35796diff
changeset | 2386 | (* Often leads to bogus ATP proofs because of reduced type information, hence no_atp *) | 
| 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35796diff
changeset | 2387 | lemma infinite_UNIV_char_0[no_atp]: | 
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2388 | "\<not> finite (UNIV::'a::semiring_char_0 set)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2389 | proof | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2390 | assume "finite (UNIV::'a set)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2391 | with subset_UNIV have "finite (range of_nat::'a set)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2392 | by (rule finite_subset) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2393 | moreover have "inj (of_nat::nat \<Rightarrow> 'a)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2394 | by (simp add: inj_on_def) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2395 | ultimately have "finite (UNIV::nat set)" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2396 | by (rule finite_imageD) | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2397 | then show "False" | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2398 | by simp | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2399 | qed | 
| 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2400 | |
| 48619 | 2401 | hide_const (open) Finite_Set.fold Finite_Set.filter | 
| 46033 | 2402 | |
| 35722 
69419a09a7ff
moved cardinality to Finite_Set as far as appropriate; added locales for fold_image
 haftmann parents: 
35719diff
changeset | 2403 | end |