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