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