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