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