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