src/HOL/Finite_Set.thy
author nipkow
Tue, 08 Feb 2005 09:46:00 +0100
changeset 15505 c929e1cbef88
parent 15504 5bc81e50f2c5
child 15506 864238c95b56
permissions -rw-r--r--
Fixed lattice defns
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/Finite_Set.thy
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
     3
    Author:     Tobias Nipkow, Lawrence C Paulson and Markus Wenzel
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
     4
                Additions by Jeremy Avigad in Feb 2004
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
     5
*)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
     6
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
     7
header {* Finite sets *}
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
     8
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15124
diff changeset
     9
theory Finite_Set
15140
322485b816ac import -> imports
nipkow
parents: 15131
diff changeset
    10
imports Divides Power Inductive
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15124
diff changeset
    11
begin
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    12
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
    13
subsection {* Definition and basic properties *}
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    14
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    15
consts Finites :: "'a set set"
13737
e564c3d2d174 added a few lemmas
nipkow
parents: 13735
diff changeset
    16
syntax
e564c3d2d174 added a few lemmas
nipkow
parents: 13735
diff changeset
    17
  finite :: "'a set => bool"
e564c3d2d174 added a few lemmas
nipkow
parents: 13735
diff changeset
    18
translations
e564c3d2d174 added a few lemmas
nipkow
parents: 13735
diff changeset
    19
  "finite A" == "A : Finites"
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    20
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    21
inductive Finites
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    22
  intros
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    23
    emptyI [simp, intro!]: "{} : Finites"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    24
    insertI [simp, intro!]: "A : Finites ==> insert a A : Finites"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    25
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    26
axclass finite \<subseteq> type
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    27
  finite: "finite UNIV"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    28
13737
e564c3d2d174 added a few lemmas
nipkow
parents: 13735
diff changeset
    29
lemma ex_new_if_finite: -- "does not depend on def of finite at all"
14661
9ead82084de8 tuned notation;
wenzelm
parents: 14565
diff changeset
    30
  assumes "\<not> finite (UNIV :: 'a set)" and "finite A"
9ead82084de8 tuned notation;
wenzelm
parents: 14565
diff changeset
    31
  shows "\<exists>a::'a. a \<notin> A"
9ead82084de8 tuned notation;
wenzelm
parents: 14565
diff changeset
    32
proof -
9ead82084de8 tuned notation;
wenzelm
parents: 14565
diff changeset
    33
  from prems have "A \<noteq> UNIV" by blast
9ead82084de8 tuned notation;
wenzelm
parents: 14565
diff changeset
    34
  thus ?thesis by blast
9ead82084de8 tuned notation;
wenzelm
parents: 14565
diff changeset
    35
qed
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    36
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    37
lemma finite_induct [case_names empty insert, induct set: Finites]:
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    38
  "finite F ==>
15327
0230a10582d3 changed the order of !!-quantifiers in finite set induction.
nipkow
parents: 15318
diff changeset
    39
    P {} ==> (!!x F. finite F ==> x \<notin> F ==> P F ==> P (insert x F)) ==> P F"
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    40
  -- {* Discharging @{text "x \<notin> F"} entails extra work. *}
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    41
proof -
13421
8fcdf4a26468 simplified locale predicates;
wenzelm
parents: 13400
diff changeset
    42
  assume "P {}" and
15327
0230a10582d3 changed the order of !!-quantifiers in finite set induction.
nipkow
parents: 15318
diff changeset
    43
    insert: "!!x F. finite F ==> x \<notin> F ==> P F ==> P (insert x F)"
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    44
  assume "finite F"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    45
  thus "P F"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    46
  proof induct
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    47
    show "P {}" .
15327
0230a10582d3 changed the order of !!-quantifiers in finite set induction.
nipkow
parents: 15318
diff changeset
    48
    fix x F assume F: "finite F" and P: "P F"
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    49
    show "P (insert x F)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    50
    proof cases
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    51
      assume "x \<in> F"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    52
      hence "insert x F = F" by (rule insert_absorb)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    53
      with P show ?thesis by (simp only:)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    54
    next
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    55
      assume "x \<notin> F"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    56
      from F this P show ?thesis by (rule insert)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    57
    qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    58
  qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    59
qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    60
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    61
lemma finite_ne_induct[case_names singleton insert, consumes 2]:
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    62
assumes fin: "finite F" shows "F \<noteq> {} \<Longrightarrow>
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    63
 \<lbrakk> \<And>x. P{x};
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    64
   \<And>x F. \<lbrakk> finite F; F \<noteq> {}; x \<notin> F; P F \<rbrakk> \<Longrightarrow> P (insert x F) \<rbrakk>
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    65
 \<Longrightarrow> P F"
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    66
using fin
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    67
proof induct
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    68
  case empty thus ?case by simp
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    69
next
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    70
  case (insert x F)
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    71
  show ?case
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    72
  proof cases
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    73
    assume "F = {}" thus ?thesis using insert(4) by simp
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    74
  next
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    75
    assume "F \<noteq> {}" thus ?thesis using insert by blast
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    76
  qed
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    77
qed
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
    78
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    79
lemma finite_subset_induct [consumes 2, case_names empty insert]:
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    80
  "finite F ==> F \<subseteq> A ==>
15327
0230a10582d3 changed the order of !!-quantifiers in finite set induction.
nipkow
parents: 15318
diff changeset
    81
    P {} ==> (!!a F. finite F ==> a \<in> A ==> a \<notin> F ==> P F ==> P (insert a F)) ==>
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    82
    P F"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    83
proof -
13421
8fcdf4a26468 simplified locale predicates;
wenzelm
parents: 13400
diff changeset
    84
  assume "P {}" and insert:
15327
0230a10582d3 changed the order of !!-quantifiers in finite set induction.
nipkow
parents: 15318
diff changeset
    85
    "!!a F. finite F ==> a \<in> A ==> a \<notin> F ==> P F ==> P (insert a F)"
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    86
  assume "finite F"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    87
  thus "F \<subseteq> A ==> P F"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    88
  proof induct
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    89
    show "P {}" .
15327
0230a10582d3 changed the order of !!-quantifiers in finite set induction.
nipkow
parents: 15318
diff changeset
    90
    fix x F assume "finite F" and "x \<notin> F"
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    91
      and P: "F \<subseteq> A ==> P F" and i: "insert x F \<subseteq> A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    92
    show "P (insert x F)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    93
    proof (rule insert)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    94
      from i show "x \<in> A" by blast
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    95
      from i have "F \<subseteq> A" by blast
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    96
      with P show "P F" .
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    97
    qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    98
  qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
    99
qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   100
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   101
text{* Finite sets are the images of initial segments of natural numbers: *}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   102
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   103
lemma finite_imp_nat_seg_image:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   104
assumes fin: "finite A" shows "\<exists> (n::nat) f. A = f ` {i::nat. i<n}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   105
using fin
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   106
proof induct
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   107
  case empty
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   108
  show ?case
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   109
  proof show "\<exists>f. {} = f ` {i::nat. i < 0}" by(simp add:image_def) qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   110
next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   111
  case (insert a A)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   112
  from insert.hyps obtain n f where "A = f ` {i::nat. i < n}" by blast
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   113
  hence "insert a A = (%i. if i<n then f i else a) ` {i. i < n+1}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   114
    by (auto simp add:image_def Ball_def)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   115
  thus ?case by blast
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   116
qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   117
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   118
lemma nat_seg_image_imp_finite:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   119
  "!!f A. A = f ` {i::nat. i<n} \<Longrightarrow> finite A"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   120
proof (induct n)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   121
  case 0 thus ?case by simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   122
next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   123
  case (Suc n)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   124
  let ?B = "f ` {i. i < n}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   125
  have finB: "finite ?B" by(rule Suc.hyps[OF refl])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   126
  show ?case
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   127
  proof cases
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   128
    assume "\<exists>k<n. f n = f k"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   129
    hence "A = ?B" using Suc.prems by(auto simp:less_Suc_eq)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   130
    thus ?thesis using finB by simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   131
  next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   132
    assume "\<not>(\<exists> k<n. f n = f k)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   133
    hence "A = insert (f n) ?B" using Suc.prems by(auto simp:less_Suc_eq)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   134
    thus ?thesis using finB by simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   135
  qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   136
qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   137
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   138
lemma finite_conv_nat_seg_image:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   139
  "finite A = (\<exists> (n::nat) f. A = f ` {i::nat. i<n})"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   140
by(blast intro: finite_imp_nat_seg_image nat_seg_image_imp_finite)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   141
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   142
subsubsection{* Finiteness and set theoretic constructions *}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   143
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   144
lemma finite_UnI: "finite F ==> finite G ==> finite (F Un G)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   145
  -- {* The union of two finite sets is finite. *}
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   146
  by (induct set: Finites) simp_all
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   147
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   148
lemma finite_subset: "A \<subseteq> B ==> finite B ==> finite A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   149
  -- {* Every subset of a finite set is finite. *}
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   150
proof -
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   151
  assume "finite B"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   152
  thus "!!A. A \<subseteq> B ==> finite A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   153
  proof induct
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   154
    case empty
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   155
    thus ?case by simp
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   156
  next
15327
0230a10582d3 changed the order of !!-quantifiers in finite set induction.
nipkow
parents: 15318
diff changeset
   157
    case (insert x F A)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   158
    have A: "A \<subseteq> insert x F" and r: "A - {x} \<subseteq> F ==> finite (A - {x})" .
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   159
    show "finite A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   160
    proof cases
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   161
      assume x: "x \<in> A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   162
      with A have "A - {x} \<subseteq> F" by (simp add: subset_insert_iff)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   163
      with r have "finite (A - {x})" .
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   164
      hence "finite (insert x (A - {x}))" ..
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   165
      also have "insert x (A - {x}) = A" by (rule insert_Diff)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   166
      finally show ?thesis .
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   167
    next
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   168
      show "A \<subseteq> F ==> ?thesis" .
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   169
      assume "x \<notin> A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   170
      with A show "A \<subseteq> F" by (simp add: subset_insert_iff)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   171
    qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   172
  qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   173
qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   174
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   175
lemma finite_Un [iff]: "finite (F Un G) = (finite F & finite G)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   176
  by (blast intro: finite_subset [of _ "X Un Y", standard] finite_UnI)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   177
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   178
lemma finite_Int [simp, intro]: "finite F | finite G ==> finite (F Int G)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   179
  -- {* The converse obviously fails. *}
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   180
  by (blast intro: finite_subset)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   181
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   182
lemma finite_insert [simp]: "finite (insert a A) = finite A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   183
  apply (subst insert_is_Un)
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
   184
  apply (simp only: finite_Un, blast)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   185
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   186
15281
bd4611956c7b More lemmas
nipkow
parents: 15234
diff changeset
   187
lemma finite_Union[simp, intro]:
bd4611956c7b More lemmas
nipkow
parents: 15234
diff changeset
   188
 "\<lbrakk> finite A; !!M. M \<in> A \<Longrightarrow> finite M \<rbrakk> \<Longrightarrow> finite(\<Union>A)"
bd4611956c7b More lemmas
nipkow
parents: 15234
diff changeset
   189
by (induct rule:finite_induct) simp_all
bd4611956c7b More lemmas
nipkow
parents: 15234
diff changeset
   190
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   191
lemma finite_empty_induct:
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   192
  "finite A ==>
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   193
  P A ==> (!!a A. finite A ==> a:A ==> P A ==> P (A - {a})) ==> P {}"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   194
proof -
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   195
  assume "finite A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   196
    and "P A" and "!!a A. finite A ==> a:A ==> P A ==> P (A - {a})"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   197
  have "P (A - A)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   198
  proof -
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   199
    fix c b :: "'a set"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   200
    presume c: "finite c" and b: "finite b"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   201
      and P1: "P b" and P2: "!!x y. finite y ==> x \<in> y ==> P y ==> P (y - {x})"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   202
    from c show "c \<subseteq> b ==> P (b - c)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   203
    proof induct
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   204
      case empty
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   205
      from P1 show ?case by simp
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   206
    next
15327
0230a10582d3 changed the order of !!-quantifiers in finite set induction.
nipkow
parents: 15318
diff changeset
   207
      case (insert x F)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   208
      have "P (b - F - {x})"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   209
      proof (rule P2)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   210
        from _ b show "finite (b - F)" by (rule finite_subset) blast
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   211
        from insert show "x \<in> b - F" by simp
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   212
        from insert show "P (b - F)" by simp
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   213
      qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   214
      also have "b - F - {x} = b - insert x F" by (rule Diff_insert [symmetric])
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   215
      finally show ?case .
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   216
    qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   217
  next
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   218
    show "A \<subseteq> A" ..
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   219
  qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   220
  thus "P {}" by simp
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   221
qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   222
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   223
lemma finite_Diff [simp]: "finite B ==> finite (B - Ba)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   224
  by (rule Diff_subset [THEN finite_subset])
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   225
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   226
lemma finite_Diff_insert [iff]: "finite (A - insert a B) = finite (A - B)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   227
  apply (subst Diff_insert)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   228
  apply (case_tac "a : A - B")
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   229
   apply (rule finite_insert [symmetric, THEN trans])
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
   230
   apply (subst insert_Diff, simp_all)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   231
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   232
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   233
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   234
text {* Image and Inverse Image over Finite Sets *}
13825
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   235
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   236
lemma finite_imageI[simp]: "finite F ==> finite (h ` F)"
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   237
  -- {* The image of a finite set is finite. *}
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   238
  by (induct set: Finites) simp_all
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   239
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
   240
lemma finite_surj: "finite A ==> B <= f ` A ==> finite B"
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
   241
  apply (frule finite_imageI)
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
   242
  apply (erule finite_subset, assumption)
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
   243
  done
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
   244
13825
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   245
lemma finite_range_imageI:
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   246
    "finite (range g) ==> finite (range (%x. f (g x)))"
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
   247
  apply (drule finite_imageI, simp)
13825
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   248
  done
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   249
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   250
lemma finite_imageD: "finite (f`A) ==> inj_on f A ==> finite A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   251
proof -
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   252
  have aux: "!!A. finite (A - {}) = finite A" by simp
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   253
  fix B :: "'a set"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   254
  assume "finite B"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   255
  thus "!!A. f`A = B ==> inj_on f A ==> finite A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   256
    apply induct
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   257
     apply simp
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   258
    apply (subgoal_tac "EX y:A. f y = x & F = f ` (A - {y})")
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   259
     apply clarify
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   260
     apply (simp (no_asm_use) add: inj_on_def)
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
   261
     apply (blast dest!: aux [THEN iffD1], atomize)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   262
    apply (erule_tac V = "ALL A. ?PP (A)" in thin_rl)
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
   263
    apply (frule subsetD [OF equalityD2 insertI1], clarify)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   264
    apply (rule_tac x = xa in bexI)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   265
     apply (simp_all add: inj_on_image_set_diff)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   266
    done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   267
qed (rule refl)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   268
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   269
13825
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   270
lemma inj_vimage_singleton: "inj f ==> f-`{a} \<subseteq> {THE x. f x = a}"
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   271
  -- {* The inverse image of a singleton under an injective function
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   272
         is included in a singleton. *}
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
   273
  apply (auto simp add: inj_on_def)
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
   274
  apply (blast intro: the_equality [symmetric])
13825
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   275
  done
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   276
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   277
lemma finite_vimageI: "[|finite F; inj h|] ==> finite (h -` F)"
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   278
  -- {* The inverse image of a finite set under an injective function
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   279
         is finite. *}
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
   280
  apply (induct set: Finites, simp_all)
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
   281
  apply (subst vimage_insert)
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
   282
  apply (simp add: finite_Un finite_subset [OF inj_vimage_singleton])
13825
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   283
  done
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   284
ef4c41e7956a new inverse image lemmas
paulson
parents: 13737
diff changeset
   285
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   286
text {* The finite UNION of finite sets *}
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   287
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   288
lemma finite_UN_I: "finite A ==> (!!a. a:A ==> finite (B a)) ==> finite (UN a:A. B a)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   289
  by (induct set: Finites) simp_all
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   290
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   291
text {*
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   292
  Strengthen RHS to
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
   293
  @{prop "((ALL x:A. finite (B x)) & finite {x. x:A & B x \<noteq> {}})"}?
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   294
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   295
  We'd need to prove
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
   296
  @{prop "finite C ==> ALL A B. (UNION A B) <= C --> finite {x. x:A & B x \<noteq> {}}"}
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   297
  by induction. *}
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   298
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   299
lemma finite_UN [simp]: "finite A ==> finite (UNION A B) = (ALL x:A. finite (B x))"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   300
  by (blast intro: finite_UN_I finite_subset)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   301
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   302
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   303
text {* Sigma of finite sets *}
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   304
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   305
lemma finite_SigmaI [simp]:
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   306
    "finite A ==> (!!a. a:A ==> finite (B a)) ==> finite (SIGMA a:A. B a)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   307
  by (unfold Sigma_def) (blast intro!: finite_UN_I)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   308
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   309
lemma finite_cartesian_product: "[| finite A; finite B |] ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   310
    finite (A <*> B)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   311
  by (rule finite_SigmaI)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   312
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   313
lemma finite_Prod_UNIV:
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   314
    "finite (UNIV::'a set) ==> finite (UNIV::'b set) ==> finite (UNIV::('a * 'b) set)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   315
  apply (subgoal_tac "(UNIV:: ('a * 'b) set) = Sigma UNIV (%x. UNIV)")
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   316
   apply (erule ssubst)
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
   317
   apply (erule finite_SigmaI, auto)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   318
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   319
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   320
lemma finite_cartesian_productD1:
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   321
     "[| finite (A <*> B); B \<noteq> {} |] ==> finite A"
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   322
apply (auto simp add: finite_conv_nat_seg_image) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   323
apply (drule_tac x=n in spec) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   324
apply (drule_tac x="fst o f" in spec) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   325
apply (auto simp add: o_def) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   326
 prefer 2 apply (force dest!: equalityD2) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   327
apply (drule equalityD1) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   328
apply (rename_tac y x)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   329
apply (subgoal_tac "\<exists>k. k<n & f k = (x,y)") 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   330
 prefer 2 apply force
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   331
apply clarify
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   332
apply (rule_tac x=k in image_eqI, auto)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   333
done
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   334
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   335
lemma finite_cartesian_productD2:
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   336
     "[| finite (A <*> B); A \<noteq> {} |] ==> finite B"
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   337
apply (auto simp add: finite_conv_nat_seg_image) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   338
apply (drule_tac x=n in spec) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   339
apply (drule_tac x="snd o f" in spec) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   340
apply (auto simp add: o_def) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   341
 prefer 2 apply (force dest!: equalityD2) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   342
apply (drule equalityD1)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   343
apply (rename_tac x y)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   344
apply (subgoal_tac "\<exists>k. k<n & f k = (x,y)") 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   345
 prefer 2 apply force
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   346
apply clarify
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   347
apply (rule_tac x=k in image_eqI, auto)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   348
done
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   349
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   350
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   351
instance unit :: finite
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   352
proof
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   353
  have "finite {()}" by simp
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   354
  also have "{()} = UNIV" by auto
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   355
  finally show "finite (UNIV :: unit set)" .
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   356
qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   357
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   358
instance * :: (finite, finite) finite
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   359
proof
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   360
  show "finite (UNIV :: ('a \<times> 'b) set)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   361
  proof (rule finite_Prod_UNIV)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   362
    show "finite (UNIV :: 'a set)" by (rule finite)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   363
    show "finite (UNIV :: 'b set)" by (rule finite)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   364
  qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   365
qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   366
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   367
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   368
text {* The powerset of a finite set *}
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   369
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   370
lemma finite_Pow_iff [iff]: "finite (Pow A) = finite A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   371
proof
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   372
  assume "finite (Pow A)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   373
  with _ have "finite ((%x. {x}) ` A)" by (rule finite_subset) blast
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   374
  thus "finite A" by (rule finite_imageD [unfolded inj_on_def]) simp
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   375
next
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   376
  assume "finite A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   377
  thus "finite (Pow A)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   378
    by induct (simp_all add: finite_UnI finite_imageI Pow_insert)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   379
qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   380
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   381
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   382
lemma finite_UnionD: "finite(\<Union>A) \<Longrightarrow> finite A"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   383
by(blast intro: finite_subset[OF subset_Pow_Union])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   384
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   385
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   386
lemma finite_converse [iff]: "finite (r^-1) = finite r"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   387
  apply (subgoal_tac "r^-1 = (%(x,y). (y,x))`r")
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   388
   apply simp
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   389
   apply (rule iffI)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   390
    apply (erule finite_imageD [unfolded inj_on_def])
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   391
    apply (simp split add: split_split)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   392
   apply (erule finite_imageI)
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
   393
  apply (simp add: converse_def image_def, auto)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   394
  apply (rule bexI)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   395
   prefer 2 apply assumption
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   396
  apply simp
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   397
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   398
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
   399
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   400
text {* \paragraph{Finiteness of transitive closure} (Thanks to Sidi
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   401
Ehmety) *}
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   402
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   403
lemma finite_Field: "finite r ==> finite (Field r)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   404
  -- {* A finite relation has a finite field (@{text "= domain \<union> range"}. *}
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   405
  apply (induct set: Finites)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   406
   apply (auto simp add: Field_def Domain_insert Range_insert)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   407
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   408
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   409
lemma trancl_subset_Field2: "r^+ <= Field r \<times> Field r"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   410
  apply clarify
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   411
  apply (erule trancl_induct)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   412
   apply (auto simp add: Field_def)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   413
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   414
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   415
lemma finite_trancl: "finite (r^+) = finite r"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   416
  apply auto
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   417
   prefer 2
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   418
   apply (rule trancl_subset_Field2 [THEN finite_subset])
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   419
   apply (rule finite_SigmaI)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   420
    prefer 3
13704
854501b1e957 Transitive closure is now defined inductively as well.
berghofe
parents: 13595
diff changeset
   421
    apply (blast intro: r_into_trancl' finite_subset)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   422
   apply (auto simp add: finite_Field)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   423
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   424
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
   425
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   426
subsection {* A fold functional for finite sets *}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   427
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   428
text {* The intended behaviour is
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   429
@{text "fold f g z {x\<^isub>1, ..., x\<^isub>n} = f (g x\<^isub>1) (\<dots> (f (g x\<^isub>n) z)\<dots>)"}
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   430
if @{text f} is associative-commutative. For an application of @{text fold}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   431
se the definitions of sums and products over finite sets.
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   432
*}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   433
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   434
consts
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   435
  foldSet :: "('a => 'a => 'a) => ('b => 'a) => 'a => ('b set \<times> 'a) set"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   436
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   437
inductive "foldSet f g z"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   438
intros
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   439
emptyI [intro]: "({}, z) : foldSet f g z"
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   440
insertI [intro]: "\<lbrakk> x \<notin> A; (A, y) : foldSet f g z \<rbrakk>
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   441
 \<Longrightarrow> (insert x A, f (g x) y) : foldSet f g z"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   442
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   443
inductive_cases empty_foldSetE [elim!]: "({}, x) : foldSet f g z"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   444
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   445
constdefs
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   446
  fold :: "('a => 'a => 'a) => ('b => 'a) => 'a => 'b set => 'a"
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   447
  "fold f g z A == THE x. (A, x) : foldSet f g z"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   448
15498
3988e90613d4 comment
paulson
parents: 15497
diff changeset
   449
text{*A tempting alternative for the definiens is
3988e90613d4 comment
paulson
parents: 15497
diff changeset
   450
@{term "if finite A then THE x. (A, x) : foldSet f g e else e"}.
3988e90613d4 comment
paulson
parents: 15497
diff changeset
   451
It allows the removal of finiteness assumptions from the theorems
3988e90613d4 comment
paulson
parents: 15497
diff changeset
   452
@{text fold_commute}, @{text fold_reindex} and @{text fold_distrib}.
3988e90613d4 comment
paulson
parents: 15497
diff changeset
   453
The proofs become ugly, with @{text rule_format}. It is not worth the effort.*}
3988e90613d4 comment
paulson
parents: 15497
diff changeset
   454
3988e90613d4 comment
paulson
parents: 15497
diff changeset
   455
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   456
lemma Diff1_foldSet:
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   457
  "(A - {x}, y) : foldSet f g z ==> x: A ==> (A, f (g x) y) : foldSet f g z"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   458
by (erule insert_Diff [THEN subst], rule foldSet.intros, auto)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   459
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   460
lemma foldSet_imp_finite: "(A, x) : foldSet f g z ==> finite A"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   461
  by (induct set: foldSet) auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   462
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   463
lemma finite_imp_foldSet: "finite A ==> EX x. (A, x) : foldSet f g z"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   464
  by (induct set: Finites) auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   465
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   466
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   467
subsubsection {* Commutative monoids *}
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   468
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   469
locale ACf =
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   470
  fixes f :: "'a => 'a => 'a"    (infixl "\<cdot>" 70)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   471
  assumes commute: "x \<cdot> y = y \<cdot> x"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   472
    and assoc: "(x \<cdot> y) \<cdot> z = x \<cdot> (y \<cdot> z)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   473
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   474
locale ACe = ACf +
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   475
  fixes e :: 'a
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   476
  assumes ident [simp]: "x \<cdot> e = x"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   477
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   478
locale ACIf = ACf +
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   479
  assumes idem: "x \<cdot> x = x"
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   480
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   481
lemma (in ACf) left_commute: "x \<cdot> (y \<cdot> z) = y \<cdot> (x \<cdot> z)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   482
proof -
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   483
  have "x \<cdot> (y \<cdot> z) = (y \<cdot> z) \<cdot> x" by (simp only: commute)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   484
  also have "... = y \<cdot> (z \<cdot> x)" by (simp only: assoc)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   485
  also have "z \<cdot> x = x \<cdot> z" by (simp only: commute)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   486
  finally show ?thesis .
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   487
qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   488
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   489
lemmas (in ACf) AC = assoc commute left_commute
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   490
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   491
lemma (in ACe) left_ident [simp]: "e \<cdot> x = x"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   492
proof -
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   493
  have "x \<cdot> e = x" by (rule ident)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   494
  thus ?thesis by (subst commute)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   495
qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   496
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
   497
lemma (in ACIf) idem2: "x \<cdot> (x \<cdot> y) = x \<cdot> y"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
   498
proof -
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
   499
  have "x \<cdot> (x \<cdot> y) = (x \<cdot> x) \<cdot> y" by(simp add:assoc)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
   500
  also have "\<dots> = x \<cdot> y" by(simp add:idem)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
   501
  finally show ?thesis .
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
   502
qed
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
   503
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
   504
lemmas (in ACIf) ACI = AC idem idem2
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
   505
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   506
text{* Instantiation of locales: *}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   507
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   508
lemma ACf_add: "ACf (op + :: 'a::comm_monoid_add \<Rightarrow> 'a \<Rightarrow> 'a)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   509
by(fastsimp intro: ACf.intro add_assoc add_commute)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   510
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   511
lemma ACe_add: "ACe (op +) (0::'a::comm_monoid_add)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   512
by(fastsimp intro: ACe.intro ACe_axioms.intro ACf_add)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   513
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   514
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   515
lemma ACf_mult: "ACf (op * :: 'a::comm_monoid_mult \<Rightarrow> 'a \<Rightarrow> 'a)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   516
by(fast intro: ACf.intro mult_assoc ab_semigroup_mult.mult_commute)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   517
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   518
lemma ACe_mult: "ACe (op *) (1::'a::comm_monoid_mult)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   519
by(fastsimp intro: ACe.intro ACe_axioms.intro ACf_mult)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   520
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   521
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   522
subsubsection{*From @{term foldSet} to @{term fold}*}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   523
15479
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   524
(* only used in the next lemma, but in there twice *)
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   525
lemma card_lemma: assumes A1: "A = insert b B" and notinB: "b \<notin> B" and
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   526
  card: "A = h`{i. i<Suc n}" and new: "\<not>(EX k<n. h n = h k)"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   527
shows "EX h. B = h`{i. i<n}" (is "EX h. ?P h")
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   528
proof
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   529
  let ?h = "%i. if h i = b then h n else h i"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   530
  show "B = ?h`{i. i<n}" (is "_ = ?r")
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   531
  proof
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   532
    show "B \<subseteq> ?r"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   533
    proof
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   534
      fix u assume "u \<in> B"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   535
      hence uinA: "u \<in> A" and unotb: "u \<noteq> b" using A1 notinB by blast+
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   536
      then obtain i\<^isub>u where below: "i\<^isub>u < Suc n" and [simp]: "u = h i\<^isub>u"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   537
	using card by(auto simp:image_def)
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   538
      show "u \<in> ?r"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   539
      proof cases
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   540
	assume "i\<^isub>u < n"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   541
	thus ?thesis using unotb by(fastsimp)
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   542
      next
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   543
	assume "\<not> i\<^isub>u < n"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   544
	with below have [simp]: "i\<^isub>u = n" by arith
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   545
	obtain i\<^isub>k where i\<^isub>k: "i\<^isub>k < Suc n" and [simp]: "b = h i\<^isub>k"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   546
	  using A1 card by blast
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   547
	have "i\<^isub>k < n"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   548
	proof (rule ccontr)
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   549
	  assume "\<not> i\<^isub>k < n"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   550
	  hence "i\<^isub>k = n" using i\<^isub>k by arith
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   551
	  thus False using unotb by simp
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   552
	qed
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   553
	thus ?thesis by(auto simp add:image_def)
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   554
      qed
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   555
    qed
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   556
  next
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   557
    show "?r \<subseteq> B"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   558
    proof
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   559
      fix u assume "u \<in> ?r"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   560
      then obtain i\<^isub>u where below: "i\<^isub>u < n" and
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   561
        or: "b = h i\<^isub>u \<and> u = h n \<or> h i\<^isub>u \<noteq> b \<and> h i\<^isub>u = u"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   562
	by(auto simp:image_def)
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   563
      from or show "u \<in> B"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   564
      proof
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   565
	assume [simp]: "b = h i\<^isub>u \<and> u = h n"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   566
	have "u \<in> A" using card by auto
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   567
        moreover have "u \<noteq> b" using new below by auto
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   568
	ultimately show "u \<in> B" using A1 by blast
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   569
      next
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   570
	assume "h i\<^isub>u \<noteq> b \<and> h i\<^isub>u = u"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   571
	moreover hence "u \<in> A" using card below by auto
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   572
	ultimately show "u \<in> B" using A1 by blast
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   573
      qed
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   574
    qed
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   575
  qed
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   576
qed
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   577
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   578
lemma (in ACf) foldSet_determ_aux:
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   579
  "!!A x x' h. \<lbrakk> A = h`{i::nat. i<n}; (A,x) : foldSet f g z; (A,x') : foldSet f g z \<rbrakk>
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   580
   \<Longrightarrow> x' = x"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   581
proof (induct n)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   582
  case 0 thus ?case by auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   583
next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   584
  case (Suc n)
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   585
  have IH: "!!A x x' h. \<lbrakk>A = h`{i::nat. i<n}; (A,x) \<in> foldSet f g z; (A,x') \<in> foldSet f g z\<rbrakk>
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   586
           \<Longrightarrow> x' = x" and card: "A = h`{i. i<Suc n}"
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   587
  and Afoldx: "(A, x) \<in> foldSet f g z" and Afoldy: "(A,x') \<in> foldSet f g z" .
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   588
  show ?case
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   589
  proof cases
15487
55497029b255 generalization and tidying
paulson
parents: 15484
diff changeset
   590
    assume "EX k<n. h n = h k" 
55497029b255 generalization and tidying
paulson
parents: 15484
diff changeset
   591
      --{*@{term h} is not injective, so the cardinality has not increased*}
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   592
    hence card': "A = h ` {i. i < n}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   593
      using card by (auto simp:image_def less_Suc_eq)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   594
    show ?thesis by(rule IH[OF card' Afoldx Afoldy])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   595
  next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   596
    assume new: "\<not>(EX k<n. h n = h k)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   597
    show ?thesis
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   598
    proof (rule foldSet.cases[OF Afoldx])
15487
55497029b255 generalization and tidying
paulson
parents: 15484
diff changeset
   599
      assume "(A, x) = ({}, z)"  --{*fold of a singleton set*}
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   600
      thus "x' = x" using Afoldy by (auto)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   601
    next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   602
      fix B b y
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   603
      assume eq1: "(A, x) = (insert b B, g b \<cdot> y)"
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   604
	and y: "(B,y) \<in> foldSet f g z" and notinB: "b \<notin> B"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   605
      hence A1: "A = insert b B" and x: "x = g b \<cdot> y" by auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   606
      show ?thesis
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   607
      proof (rule foldSet.cases[OF Afoldy])
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   608
	assume "(A,x') = ({}, z)"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   609
	thus ?thesis using A1 by auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   610
      next
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   611
	fix C c r
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   612
	assume eq2: "(A,x') = (insert c C, g c \<cdot> r)"
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   613
	  and r: "(C,r) \<in> foldSet f g z" and notinC: "c \<notin> C"
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   614
	hence A2: "A = insert c C" and x': "x' = g c \<cdot> r" by auto
15479
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   615
	obtain hB where lessB: "B = hB ` {i. i<n}"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   616
	  using card_lemma[OF A1 notinB card new] by auto
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   617
	obtain hC where lessC: "C = hC ` {i. i<n}"
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   618
	  using card_lemma[OF A2 notinC card new] by auto
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   619
	show ?thesis
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   620
	proof cases
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   621
	  assume "b = c"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   622
	  then moreover have "B = C" using A1 A2 notinB notinC by auto
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   623
	  ultimately show ?thesis using IH[OF lessB] y r x x' by auto
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   624
	next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   625
	  assume diff: "b \<noteq> c"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   626
	  let ?D = "B - {c}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   627
	  have B: "B = insert c ?D" and C: "C = insert b ?D"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   628
	    using A1 A2 notinB notinC diff by(blast elim!:equalityE)+
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   629
	  have "finite A" by(rule foldSet_imp_finite[OF Afoldx])
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   630
	  with A1 have "finite ?D" by simp
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   631
	  then obtain d where Dfoldd: "(?D,d) \<in> foldSet f g z"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   632
	    using finite_imp_foldSet by rules
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   633
	  moreover have cinB: "c \<in> B" using B by(auto)
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   634
	  ultimately have "(B,g c \<cdot> d) \<in> foldSet f g z"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   635
	    by(rule Diff1_foldSet)
15479
fbc473ea9d3c proof simpification
nipkow
parents: 15447
diff changeset
   636
	  hence "g c \<cdot> d = y" by(rule IH[OF lessB y])
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   637
          moreover have "g b \<cdot> d = r"
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   638
	  proof (rule IH[OF lessC r])
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   639
	    show "(C,g b \<cdot> d) \<in> foldSet f g z" using C notinB Dfoldd
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   640
	      by fastsimp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   641
	  qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   642
	  ultimately show ?thesis using x x' by(auto simp:AC)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   643
	qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   644
      qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   645
    qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   646
  qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   647
qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   648
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   649
(* The same proof, but using card 
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   650
lemma (in ACf) foldSet_determ_aux:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   651
  "!!A x x'. \<lbrakk> card A < n; (A,x) : foldSet f g e; (A,x') : foldSet f g e \<rbrakk>
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   652
   \<Longrightarrow> x' = x"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   653
proof (induct n)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   654
  case 0 thus ?case by simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   655
next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   656
  case (Suc n)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   657
  have IH: "!!A x x'. \<lbrakk>card A < n; (A,x) \<in> foldSet f g e; (A,x') \<in> foldSet f g e\<rbrakk>
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   658
           \<Longrightarrow> x' = x" and card: "card A < Suc n"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   659
  and Afoldx: "(A, x) \<in> foldSet f g e" and Afoldy: "(A,x') \<in> foldSet f g e" .
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   660
  from card have "card A < n \<or> card A = n" by arith
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   661
  thus ?case
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   662
  proof
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   663
    assume less: "card A < n"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   664
    show ?thesis by(rule IH[OF less Afoldx Afoldy])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   665
  next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   666
    assume cardA: "card A = n"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   667
    show ?thesis
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   668
    proof (rule foldSet.cases[OF Afoldx])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   669
      assume "(A, x) = ({}, e)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   670
      thus "x' = x" using Afoldy by (auto)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   671
    next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   672
      fix B b y
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   673
      assume eq1: "(A, x) = (insert b B, g b \<cdot> y)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   674
	and y: "(B,y) \<in> foldSet f g e" and notinB: "b \<notin> B"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   675
      hence A1: "A = insert b B" and x: "x = g b \<cdot> y" by auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   676
      show ?thesis
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   677
      proof (rule foldSet.cases[OF Afoldy])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   678
	assume "(A,x') = ({}, e)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   679
	thus ?thesis using A1 by auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   680
      next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   681
	fix C c z
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   682
	assume eq2: "(A,x') = (insert c C, g c \<cdot> z)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   683
	  and z: "(C,z) \<in> foldSet f g e" and notinC: "c \<notin> C"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   684
	hence A2: "A = insert c C" and x': "x' = g c \<cdot> z" by auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   685
	have finA: "finite A" by(rule foldSet_imp_finite[OF Afoldx])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   686
	with cardA A1 notinB have less: "card B < n" by simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   687
	show ?thesis
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   688
	proof cases
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   689
	  assume "b = c"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   690
	  then moreover have "B = C" using A1 A2 notinB notinC by auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   691
	  ultimately show ?thesis using IH[OF less] y z x x' by auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   692
	next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   693
	  assume diff: "b \<noteq> c"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   694
	  let ?D = "B - {c}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   695
	  have B: "B = insert c ?D" and C: "C = insert b ?D"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   696
	    using A1 A2 notinB notinC diff by(blast elim!:equalityE)+
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   697
	  have "finite ?D" using finA A1 by simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   698
	  then obtain d where Dfoldd: "(?D,d) \<in> foldSet f g e"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   699
	    using finite_imp_foldSet by rules
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   700
	  moreover have cinB: "c \<in> B" using B by(auto)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   701
	  ultimately have "(B,g c \<cdot> d) \<in> foldSet f g e"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   702
	    by(rule Diff1_foldSet)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   703
	  hence "g c \<cdot> d = y" by(rule IH[OF less y])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   704
          moreover have "g b \<cdot> d = z"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   705
	  proof (rule IH[OF _ z])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   706
	    show "card C < n" using C cardA A1 notinB finA cinB
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   707
	      by(auto simp:card_Diff1_less)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   708
	  next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   709
	    show "(C,g b \<cdot> d) \<in> foldSet f g e" using C notinB Dfoldd
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   710
	      by fastsimp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   711
	  qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   712
	  ultimately show ?thesis using x x' by(auto simp:AC)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   713
	qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   714
      qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   715
    qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   716
  qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   717
qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   718
*)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   719
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   720
lemma (in ACf) foldSet_determ:
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   721
  "(A, x) : foldSet f g z ==> (A, y) : foldSet f g z ==> y = x"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   722
apply(frule foldSet_imp_finite)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   723
apply(simp add:finite_conv_nat_seg_image)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   724
apply(blast intro: foldSet_determ_aux [rule_format])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   725
done
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   726
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   727
lemma (in ACf) fold_equality: "(A, y) : foldSet f g z ==> fold f g z A = y"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   728
  by (unfold fold_def) (blast intro: foldSet_determ)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   729
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   730
text{* The base case for @{text fold}: *}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   731
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   732
lemma fold_empty [simp]: "fold f g z {} = z"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   733
  by (unfold fold_def) blast
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   734
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   735
lemma (in ACf) fold_insert_aux: "x \<notin> A ==>
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   736
    ((insert x A, v) : foldSet f g z) =
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   737
    (EX y. (A, y) : foldSet f g z & v = f (g x) y)"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   738
  apply auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   739
  apply (rule_tac A1 = A and f1 = f in finite_imp_foldSet [THEN exE])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   740
   apply (fastsimp dest: foldSet_imp_finite)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   741
  apply (blast intro: foldSet_determ)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   742
  done
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   743
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   744
text{* The recursion equation for @{text fold}: *}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   745
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   746
lemma (in ACf) fold_insert[simp]:
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   747
    "finite A ==> x \<notin> A ==> fold f g z (insert x A) = f (g x) (fold f g z A)"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   748
  apply (unfold fold_def)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   749
  apply (simp add: fold_insert_aux)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   750
  apply (rule the_equality)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   751
  apply (auto intro: finite_imp_foldSet
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   752
    cong add: conj_cong simp add: fold_def [symmetric] fold_equality)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   753
  done
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   754
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   755
declare
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   756
  empty_foldSetE [rule del]  foldSet.intros [rule del]
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   757
  -- {* Delete rules to do with @{text foldSet} relation. *}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   758
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   759
text{* A simplified version for idempotent functions: *}
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   760
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   761
lemma (in ACIf) fold_insert2:
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   762
assumes finA: "finite A"
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   763
shows "fold (op \<cdot>) g z (insert a A) = g a \<cdot> fold f g z A"
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   764
proof cases
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   765
  assume "a \<in> A"
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   766
  then obtain B where A: "A = insert a B" and disj: "a \<notin> B"
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   767
    by(blast dest: mk_disjoint_insert)
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   768
  show ?thesis
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   769
  proof -
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   770
    from finA A have finB: "finite B" by(blast intro: finite_subset)
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   771
    have "fold f g z (insert a A) = fold f g z (insert a B)" using A by simp
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   772
    also have "\<dots> = (g a) \<cdot> (fold f g z B)"
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   773
      using finB disj by(simp)
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   774
    also have "\<dots> = g a \<cdot> fold f g z A"
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   775
      using A finB disj by(simp add:idem assoc[symmetric])
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   776
    finally show ?thesis .
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   777
  qed
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   778
next
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   779
  assume "a \<notin> A"
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   780
  with finA show ?thesis by simp
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   781
qed
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   782
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
   783
lemma (in ACIf) foldI_conv_id:
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
   784
  "finite A \<Longrightarrow> fold f g z A = fold f id z (g ` A)"
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
   785
by(erule finite_induct)(simp_all add: fold_insert2 del: fold_insert)
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
   786
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   787
subsubsection{*Lemmas about @{text fold}*}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   788
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   789
lemma (in ACf) fold_commute:
15487
55497029b255 generalization and tidying
paulson
parents: 15484
diff changeset
   790
  "finite A ==> (!!z. f x (fold f g z A) = fold f g (f x z) A)"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   791
  apply (induct set: Finites, simp)
15487
55497029b255 generalization and tidying
paulson
parents: 15484
diff changeset
   792
  apply (simp add: left_commute [of x])
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   793
  done
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   794
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   795
lemma (in ACf) fold_nest_Un_Int:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   796
  "finite A ==> finite B
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   797
    ==> fold f g (fold f g z B) A = fold f g (fold f g z (A Int B)) (A Un B)"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   798
  apply (induct set: Finites, simp)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   799
  apply (simp add: fold_commute Int_insert_left insert_absorb)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   800
  done
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   801
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   802
lemma (in ACf) fold_nest_Un_disjoint:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   803
  "finite A ==> finite B ==> A Int B = {}
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   804
    ==> fold f g z (A Un B) = fold f g (fold f g z B) A"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   805
  by (simp add: fold_nest_Un_Int)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   806
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   807
lemma (in ACf) fold_reindex:
15487
55497029b255 generalization and tidying
paulson
parents: 15484
diff changeset
   808
assumes fin: "finite A"
55497029b255 generalization and tidying
paulson
parents: 15484
diff changeset
   809
shows "inj_on h A \<Longrightarrow> fold f g z (h ` A) = fold f (g \<circ> h) z A"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   810
using fin apply (induct)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   811
 apply simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   812
apply simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   813
done
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   814
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   815
lemma (in ACe) fold_Un_Int:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   816
  "finite A ==> finite B ==>
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   817
    fold f g e A \<cdot> fold f g e B =
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   818
    fold f g e (A Un B) \<cdot> fold f g e (A Int B)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   819
  apply (induct set: Finites, simp)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   820
  apply (simp add: AC insert_absorb Int_insert_left)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   821
  done
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   822
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   823
corollary (in ACe) fold_Un_disjoint:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   824
  "finite A ==> finite B ==> A Int B = {} ==>
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   825
    fold f g e (A Un B) = fold f g e A \<cdot> fold f g e B"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   826
  by (simp add: fold_Un_Int)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   827
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   828
lemma (in ACe) fold_UN_disjoint:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   829
  "\<lbrakk> finite I; ALL i:I. finite (A i);
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   830
     ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {} \<rbrakk>
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   831
   \<Longrightarrow> fold f g e (UNION I A) =
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   832
       fold f (%i. fold f g e (A i)) e I"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   833
  apply (induct set: Finites, simp, atomize)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   834
  apply (subgoal_tac "ALL i:F. x \<noteq> i")
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   835
   prefer 2 apply blast
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   836
  apply (subgoal_tac "A x Int UNION F A = {}")
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   837
   prefer 2 apply blast
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   838
  apply (simp add: fold_Un_disjoint)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   839
  done
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   840
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   841
lemma (in ACf) fold_cong:
15480
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   842
  "finite A \<Longrightarrow> (!!x. x:A ==> g x = h x) ==> fold f g z A = fold f h z A"
cb3612cc41a3 renamed a few vars, added a lemma
nipkow
parents: 15479
diff changeset
   843
  apply (subgoal_tac "ALL C. C <= A --> (ALL x:C. g x = h x) --> fold f g z C = fold f h z C")
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   844
   apply simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   845
  apply (erule finite_induct, simp)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   846
  apply (simp add: subset_insert_iff, clarify)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   847
  apply (subgoal_tac "finite C")
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   848
   prefer 2 apply (blast dest: finite_subset [COMP swap_prems_rl])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   849
  apply (subgoal_tac "C = insert x (C - {x})")
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   850
   prefer 2 apply blast
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   851
  apply (erule ssubst)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   852
  apply (drule spec)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   853
  apply (erule (1) notE impE)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   854
  apply (simp add: Ball_def del: insert_Diff_single)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   855
  done
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   856
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   857
lemma (in ACe) fold_Sigma: "finite A ==> ALL x:A. finite (B x) ==>
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   858
  fold f (%x. fold f (g x) e (B x)) e A =
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   859
  fold f (split g) e (SIGMA x:A. B x)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   860
apply (subst Sigma_def)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   861
apply (subst fold_UN_disjoint)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   862
   apply assumption
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   863
  apply simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   864
 apply blast
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   865
apply (erule fold_cong)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   866
apply (subst fold_UN_disjoint)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   867
   apply simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   868
  apply simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   869
 apply blast
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   870
apply (simp)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   871
done
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   872
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   873
lemma (in ACe) fold_distrib: "finite A \<Longrightarrow>
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   874
   fold f (%x. f (g x) (h x)) e A = f (fold f g e A) (fold f h e A)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   875
apply (erule finite_induct)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   876
 apply simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   877
apply (simp add:AC)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   878
done
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   879
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
   880
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   881
subsection {* Generalized summation over a set *}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   882
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   883
constdefs
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   884
  setsum :: "('a => 'b) => 'a set => 'b::comm_monoid_add"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   885
  "setsum f A == if finite A then fold (op +) f 0 A else 0"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   886
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   887
text{* Now: lot's of fancy syntax. First, @{term "setsum (%x. e) A"} is
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   888
written @{text"\<Sum>x\<in>A. e"}. *}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   889
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   890
syntax
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   891
  "_setsum" :: "idt => 'a set => 'b => 'b::comm_monoid_add"    ("(3SUM _:_. _)" [0, 51, 10] 10)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   892
syntax (xsymbols)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   893
  "_setsum" :: "idt => 'a set => 'b => 'b::comm_monoid_add"    ("(3\<Sum>_\<in>_. _)" [0, 51, 10] 10)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   894
syntax (HTML output)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   895
  "_setsum" :: "idt => 'a set => 'b => 'b::comm_monoid_add"    ("(3\<Sum>_\<in>_. _)" [0, 51, 10] 10)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   896
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   897
translations -- {* Beware of argument permutation! *}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   898
  "SUM i:A. b" == "setsum (%i. b) A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   899
  "\<Sum>i\<in>A. b" == "setsum (%i. b) A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   900
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   901
text{* Instead of @{term"\<Sum>x\<in>{x. P}. e"} we introduce the shorter
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   902
 @{text"\<Sum>x|P. e"}. *}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   903
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   904
syntax
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   905
  "_qsetsum" :: "idt \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3SUM _ |/ _./ _)" [0,0,10] 10)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   906
syntax (xsymbols)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   907
  "_qsetsum" :: "idt \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3\<Sum>_ | (_)./ _)" [0,0,10] 10)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   908
syntax (HTML output)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   909
  "_qsetsum" :: "idt \<Rightarrow> bool \<Rightarrow> 'a \<Rightarrow> 'a" ("(3\<Sum>_ | (_)./ _)" [0,0,10] 10)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   910
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   911
translations
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   912
  "SUM x|P. t" => "setsum (%x. t) {x. P}"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   913
  "\<Sum>x|P. t" => "setsum (%x. t) {x. P}"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   914
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   915
text{* Finally we abbreviate @{term"\<Sum>x\<in>A. x"} by @{text"\<Sum>A"}. *}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   916
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   917
syntax
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   918
  "_Setsum" :: "'a set => 'a::comm_monoid_mult"  ("\<Sum>_" [1000] 999)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   919
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   920
parse_translation {*
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   921
  let
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   922
    fun Setsum_tr [A] = Syntax.const "setsum" $ Abs ("", dummyT, Bound 0) $ A
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   923
  in [("_Setsum", Setsum_tr)] end;
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   924
*}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   925
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   926
print_translation {*
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   927
let
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   928
  fun setsum_tr' [Abs(_,_,Bound 0), A] = Syntax.const "_Setsum" $ A
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   929
    | setsum_tr' [Abs(x,Tx,t), Const ("Collect",_) $ Abs(y,Ty,P)] = 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   930
       if x<>y then raise Match
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   931
       else let val x' = Syntax.mark_bound x
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   932
                val t' = subst_bound(x',t)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   933
                val P' = subst_bound(x',P)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   934
            in Syntax.const "_qsetsum" $ Syntax.mark_bound x $ P' $ t' end
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   935
in
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   936
[("setsum", setsum_tr')]
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   937
end
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   938
*}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   939
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   940
lemma setsum_empty [simp]: "setsum f {} = 0"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   941
  by (simp add: setsum_def)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   942
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   943
lemma setsum_insert [simp]:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   944
    "finite F ==> a \<notin> F ==> setsum f (insert a F) = f a + setsum f F"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   945
  by (simp add: setsum_def ACf.fold_insert [OF ACf_add])
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   946
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   947
lemma setsum_infinite [simp]: "~ finite A ==> setsum f A = 0"
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   948
  by (simp add: setsum_def)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   949
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   950
lemma setsum_reindex:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   951
     "inj_on f B ==> setsum h (f ` B) = setsum (h \<circ> f) B"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   952
by(auto simp add: setsum_def ACf.fold_reindex[OF ACf_add] dest!:finite_imageD)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   953
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   954
lemma setsum_reindex_id:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   955
     "inj_on f B ==> setsum f B = setsum id (f ` B)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   956
by (auto simp add: setsum_reindex)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   957
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   958
lemma setsum_cong:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   959
  "A = B ==> (!!x. x:B ==> f x = g x) ==> setsum f A = setsum g B"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   960
by(fastsimp simp: setsum_def intro: ACf.fold_cong[OF ACf_add])
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   961
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   962
lemma setsum_reindex_cong:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   963
     "[|inj_on f A; B = f ` A; !!a. g a = h (f a)|] 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   964
      ==> setsum h B = setsum g A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   965
  by (simp add: setsum_reindex cong: setsum_cong)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   966
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   967
lemma setsum_0: "setsum (%i. 0) A = 0"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   968
apply (clarsimp simp: setsum_def)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   969
apply (erule finite_induct, auto simp:ACf.fold_insert [OF ACf_add])
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   970
done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   971
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   972
lemma setsum_0': "ALL a:F. f a = 0 ==> setsum f F = 0"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   973
  apply (subgoal_tac "setsum f F = setsum (%x. 0) F")
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   974
  apply (erule ssubst, rule setsum_0)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   975
  apply (rule setsum_cong, auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   976
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   977
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   978
lemma setsum_Un_Int: "finite A ==> finite B ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   979
  setsum g (A Un B) + setsum g (A Int B) = setsum g A + setsum g B"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   980
  -- {* The reversed orientation looks more natural, but LOOPS as a simprule! *}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   981
by(simp add: setsum_def ACe.fold_Un_Int[OF ACe_add,symmetric])
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   982
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   983
lemma setsum_Un_disjoint: "finite A ==> finite B
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   984
  ==> A Int B = {} ==> setsum g (A Un B) = setsum g A + setsum g B"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   985
by (subst setsum_Un_Int [symmetric], auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   986
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   987
(*But we can't get rid of finite I. If infinite, although the rhs is 0, 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   988
  the lhs need not be, since UNION I A could still be finite.*)
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   989
lemma setsum_UN_disjoint:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   990
    "finite I ==> (ALL i:I. finite (A i)) ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   991
        (ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {}) ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   992
      setsum f (UNION I A) = (\<Sum>i\<in>I. setsum f (A i))"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   993
by(simp add: setsum_def ACe.fold_UN_disjoint[OF ACe_add] cong: setsum_cong)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   994
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   995
text{*No need to assume that @{term C} is finite.  If infinite, the rhs is
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   996
directly 0, and @{term "Union C"} is also infinite, hence the lhs is also 0.*}
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
   997
lemma setsum_Union_disjoint:
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   998
  "[| (ALL A:C. finite A);
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
   999
      (ALL A:C. ALL B:C. A \<noteq> B --> A Int B = {}) |]
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1000
   ==> setsum f (Union C) = setsum (setsum f) C"
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1001
apply (cases "finite C") 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1002
 prefer 2 apply (force dest: finite_UnionD simp add: setsum_def)
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1003
  apply (frule setsum_UN_disjoint [of C id f])
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1004
 apply (unfold Union_def id_def, assumption+)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1005
done
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1006
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1007
(*But we can't get rid of finite A. If infinite, although the lhs is 0, 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1008
  the rhs need not be, since SIGMA A B could still be finite.*)
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1009
lemma setsum_Sigma: "finite A ==> ALL x:A. finite (B x) ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1010
    (\<Sum>x\<in>A. (\<Sum>y\<in>B x. f x y)) =
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1011
    (\<Sum>z\<in>(SIGMA x:A. B x). f (fst z) (snd z))"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1012
by(simp add:setsum_def ACe.fold_Sigma[OF ACe_add] split_def cong:setsum_cong)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1013
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1014
text{*Here we can eliminate the finiteness assumptions, by cases.*}
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1015
lemma setsum_cartesian_product: 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1016
   "(\<Sum>x\<in>A. (\<Sum>y\<in>B. f x y)) = (\<Sum>z\<in>A <*> B. f (fst z) (snd z))"
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1017
apply (cases "finite A") 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1018
 apply (cases "finite B") 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1019
  apply (simp add: setsum_Sigma)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1020
 apply (cases "A={}", simp)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1021
 apply (simp add: setsum_0) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1022
apply (auto simp add: setsum_def
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1023
            dest: finite_cartesian_productD1 finite_cartesian_productD2) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1024
done
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1025
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1026
lemma setsum_addf: "setsum (%x. f x + g x) A = (setsum f A + setsum g A)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1027
by(simp add:setsum_def ACe.fold_distrib[OF ACe_add])
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1028
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1029
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1030
subsubsection {* Properties in more restricted classes of structures *}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1031
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1032
lemma setsum_SucD: "setsum f A = Suc n ==> EX a:A. 0 < f a"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1033
  apply (case_tac "finite A")
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1034
   prefer 2 apply (simp add: setsum_def)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1035
  apply (erule rev_mp)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1036
  apply (erule finite_induct, auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1037
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1038
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1039
lemma setsum_eq_0_iff [simp]:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1040
    "finite F ==> (setsum f F = 0) = (ALL a:F. f a = (0::nat))"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1041
  by (induct set: Finites) auto
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1042
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1043
lemma setsum_Un_nat: "finite A ==> finite B ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1044
    (setsum f (A Un B) :: nat) = setsum f A + setsum f B - setsum f (A Int B)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1045
  -- {* For the natural numbers, we have subtraction. *}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1046
  by (subst setsum_Un_Int [symmetric], auto simp add: ring_eq_simps)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1047
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1048
lemma setsum_Un: "finite A ==> finite B ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1049
    (setsum f (A Un B) :: 'a :: ab_group_add) =
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1050
      setsum f A + setsum f B - setsum f (A Int B)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1051
  by (subst setsum_Un_Int [symmetric], auto simp add: ring_eq_simps)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1052
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1053
lemma setsum_diff1_nat: "(setsum f (A - {a}) :: nat) =
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1054
    (if a:A then setsum f A - f a else setsum f A)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1055
  apply (case_tac "finite A")
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1056
   prefer 2 apply (simp add: setsum_def)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1057
  apply (erule finite_induct)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1058
   apply (auto simp add: insert_Diff_if)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1059
  apply (drule_tac a = a in mk_disjoint_insert, auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1060
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1061
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1062
lemma setsum_diff1: "finite A \<Longrightarrow>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1063
  (setsum f (A - {a}) :: ('a::ab_group_add)) =
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1064
  (if a:A then setsum f A - f a else setsum f A)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1065
  by (erule finite_induct) (auto simp add: insert_Diff_if)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1066
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1067
(* By Jeremy Siek: *)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1068
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1069
lemma setsum_diff_nat: 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1070
  assumes finB: "finite B"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1071
  shows "B \<subseteq> A \<Longrightarrow> (setsum f (A - B) :: nat) = (setsum f A) - (setsum f B)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1072
using finB
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1073
proof (induct)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1074
  show "setsum f (A - {}) = (setsum f A) - (setsum f {})" by simp
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1075
next
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1076
  fix F x assume finF: "finite F" and xnotinF: "x \<notin> F"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1077
    and xFinA: "insert x F \<subseteq> A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1078
    and IH: "F \<subseteq> A \<Longrightarrow> setsum f (A - F) = setsum f A - setsum f F"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1079
  from xnotinF xFinA have xinAF: "x \<in> (A - F)" by simp
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1080
  from xinAF have A: "setsum f ((A - F) - {x}) = setsum f (A - F) - f x"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1081
    by (simp add: setsum_diff1_nat)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1082
  from xFinA have "F \<subseteq> A" by simp
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1083
  with IH have "setsum f (A - F) = setsum f A - setsum f F" by simp
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1084
  with A have B: "setsum f ((A - F) - {x}) = setsum f A - setsum f F - f x"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1085
    by simp
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1086
  from xnotinF have "A - insert x F = (A - F) - {x}" by auto
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1087
  with B have C: "setsum f (A - insert x F) = setsum f A - setsum f F - f x"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1088
    by simp
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1089
  from finF xnotinF have "setsum f (insert x F) = setsum f F + f x" by simp
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1090
  with C have "setsum f (A - insert x F) = setsum f A - setsum f (insert x F)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1091
    by simp
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1092
  thus "setsum f (A - insert x F) = setsum f A - setsum f (insert x F)" by simp
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1093
qed
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1094
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1095
lemma setsum_diff:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1096
  assumes le: "finite A" "B \<subseteq> A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1097
  shows "setsum f (A - B) = setsum f A - ((setsum f B)::('a::ab_group_add))"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1098
proof -
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1099
  from le have finiteB: "finite B" using finite_subset by auto
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1100
  show ?thesis using finiteB le
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1101
    proof (induct)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1102
      case empty
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1103
      thus ?case by auto
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1104
    next
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1105
      case (insert x F)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1106
      thus ?case using le finiteB 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1107
	by (simp add: Diff_insert[where a=x and B=F] setsum_diff1 insert_absorb)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1108
    qed
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1109
  qed
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1110
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1111
lemma setsum_mono:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1112
  assumes le: "\<And>i. i\<in>K \<Longrightarrow> f (i::'a) \<le> ((g i)::('b::{comm_monoid_add, pordered_ab_semigroup_add}))"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1113
  shows "(\<Sum>i\<in>K. f i) \<le> (\<Sum>i\<in>K. g i)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1114
proof (cases "finite K")
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1115
  case True
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1116
  thus ?thesis using le
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1117
  proof (induct)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1118
    case empty
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1119
    thus ?case by simp
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1120
  next
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1121
    case insert
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1122
    thus ?case using add_mono 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1123
      by force
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1124
  qed
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1125
next
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1126
  case False
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1127
  thus ?thesis
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1128
    by (simp add: setsum_def)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1129
qed
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1130
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1131
lemma setsum_mono2_nat:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1132
  assumes fin: "finite B" and sub: "A \<subseteq> B"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1133
shows "setsum f A \<le> (setsum f B :: nat)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1134
proof -
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1135
  have "setsum f A \<le> setsum f A + setsum f (B-A)" by arith
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1136
  also have "\<dots> = setsum f (A \<union> (B-A))" using fin finite_subset[OF sub fin]
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1137
    by (simp add:setsum_Un_disjoint del:Un_Diff_cancel)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1138
  also have "A \<union> (B-A) = B" using sub by blast
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1139
  finally show ?thesis .
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1140
qed
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1141
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1142
lemma setsum_negf: "finite A ==> setsum (%x. - (f x)::'a::ab_group_add) A =
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1143
  - setsum f A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1144
  by (induct set: Finites, auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1145
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1146
lemma setsum_subtractf: "finite A ==> setsum (%x. ((f x)::'a::ab_group_add) - g x) A =
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1147
  setsum f A - setsum g A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1148
  by (simp add: diff_minus setsum_addf setsum_negf)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1149
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1150
lemma setsum_nonneg: "[| finite A;
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1151
    \<forall>x \<in> A. (0::'a::{pordered_ab_semigroup_add, comm_monoid_add}) \<le> f x |] ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1152
    0 \<le> setsum f A";
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1153
  apply (induct set: Finites, auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1154
  apply (subgoal_tac "0 + 0 \<le> f x + setsum f F", simp)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1155
  apply (blast intro: add_mono)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1156
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1157
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1158
lemma setsum_nonpos: "[| finite A;
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1159
    \<forall>x \<in> A. f x \<le> (0::'a::{pordered_ab_semigroup_add, comm_monoid_add}) |] ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1160
    setsum f A \<le> 0";
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1161
  apply (induct set: Finites, auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1162
  apply (subgoal_tac "f x + setsum f F \<le> 0 + 0", simp)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1163
  apply (blast intro: add_mono)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1164
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1165
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1166
lemma setsum_mult: 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1167
  fixes f :: "'a => ('b::semiring_0_cancel)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1168
  shows "r * setsum f A = setsum (%n. r * f n) A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1169
proof (cases "finite A")
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1170
  case True
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1171
  thus ?thesis
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1172
  proof (induct)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1173
    case empty thus ?case by simp
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1174
  next
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1175
    case (insert x A) thus ?case by (simp add: right_distrib)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1176
  qed
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1177
next
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1178
  case False thus ?thesis by (simp add: setsum_def)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1179
qed
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1180
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1181
lemma setsum_abs: 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1182
  fixes f :: "'a => ('b::lordered_ab_group_abs)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1183
  assumes fin: "finite A" 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1184
  shows "abs (setsum f A) \<le> setsum (%i. abs(f i)) A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1185
using fin 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1186
proof (induct) 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1187
  case empty thus ?case by simp
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1188
next
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1189
  case (insert x A)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1190
  thus ?case by (auto intro: abs_triangle_ineq order_trans)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1191
qed
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1192
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1193
lemma setsum_abs_ge_zero: 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1194
  fixes f :: "'a => ('b::lordered_ab_group_abs)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1195
  assumes fin: "finite A" 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1196
  shows "0 \<le> setsum (%i. abs(f i)) A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1197
using fin 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1198
proof (induct) 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1199
  case empty thus ?case by simp
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1200
next
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1201
  case (insert x A) thus ?case by (auto intro: order_trans)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1202
qed
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1203
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1204
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1205
subsection {* Generalized product over a set *}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1206
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1207
constdefs
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1208
  setprod :: "('a => 'b) => 'a set => 'b::comm_monoid_mult"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1209
  "setprod f A == if finite A then fold (op *) f 1 A else 1"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1210
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1211
syntax
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1212
  "_setprod" :: "idt => 'a set => 'b => 'b::comm_monoid_mult"  ("(3\<Prod>_:_. _)" [0, 51, 10] 10)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1213
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1214
syntax (xsymbols)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1215
  "_setprod" :: "idt => 'a set => 'b => 'b::comm_monoid_mult"  ("(3\<Prod>_\<in>_. _)" [0, 51, 10] 10)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1216
syntax (HTML output)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1217
  "_setprod" :: "idt => 'a set => 'b => 'b::comm_monoid_mult"  ("(3\<Prod>_\<in>_. _)" [0, 51, 10] 10)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1218
translations
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1219
  "\<Prod>i:A. b" == "setprod (%i. b) A"  -- {* Beware of argument permutation! *}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1220
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1221
syntax
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1222
  "_Setprod" :: "'a set => 'a::comm_monoid_mult"  ("\<Prod>_" [1000] 999)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1223
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1224
parse_translation {*
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1225
  let
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1226
    fun Setprod_tr [A] = Syntax.const "setprod" $ Abs ("", dummyT, Bound 0) $ A
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1227
  in [("_Setprod", Setprod_tr)] end;
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1228
*}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1229
print_translation {*
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1230
let fun setprod_tr' [Abs(x,Tx,t), A] =
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1231
    if t = Bound 0 then Syntax.const "_Setprod" $ A else raise Match
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1232
in
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1233
[("setprod", setprod_tr')]
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1234
end
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1235
*}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1236
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1237
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1238
lemma setprod_empty [simp]: "setprod f {} = 1"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1239
  by (auto simp add: setprod_def)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1240
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1241
lemma setprod_insert [simp]: "[| finite A; a \<notin> A |] ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1242
    setprod f (insert a A) = f a * setprod f A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1243
by (simp add: setprod_def ACf.fold_insert [OF ACf_mult])
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1244
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1245
lemma setprod_infinite [simp]: "~ finite A ==> setprod f A = 1"
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1246
  by (simp add: setprod_def)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1247
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1248
lemma setprod_reindex:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1249
     "inj_on f B ==> setprod h (f ` B) = setprod (h \<circ> f) B"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1250
by(auto simp: setprod_def ACf.fold_reindex[OF ACf_mult] dest!:finite_imageD)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1251
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1252
lemma setprod_reindex_id: "inj_on f B ==> setprod f B = setprod id (f ` B)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1253
by (auto simp add: setprod_reindex)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1254
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1255
lemma setprod_cong:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1256
  "A = B ==> (!!x. x:B ==> f x = g x) ==> setprod f A = setprod g B"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1257
by(fastsimp simp: setprod_def intro: ACf.fold_cong[OF ACf_mult])
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1258
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1259
lemma setprod_reindex_cong: "inj_on f A ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1260
    B = f ` A ==> g = h \<circ> f ==> setprod h B = setprod g A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1261
  by (frule setprod_reindex, simp)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1262
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1263
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1264
lemma setprod_1: "setprod (%i. 1) A = 1"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1265
  apply (case_tac "finite A")
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1266
  apply (erule finite_induct, auto simp add: mult_ac)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1267
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1268
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1269
lemma setprod_1': "ALL a:F. f a = 1 ==> setprod f F = 1"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1270
  apply (subgoal_tac "setprod f F = setprod (%x. 1) F")
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1271
  apply (erule ssubst, rule setprod_1)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1272
  apply (rule setprod_cong, auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1273
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1274
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1275
lemma setprod_Un_Int: "finite A ==> finite B
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1276
    ==> setprod g (A Un B) * setprod g (A Int B) = setprod g A * setprod g B"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1277
by(simp add: setprod_def ACe.fold_Un_Int[OF ACe_mult,symmetric])
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1278
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1279
lemma setprod_Un_disjoint: "finite A ==> finite B
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1280
  ==> A Int B = {} ==> setprod g (A Un B) = setprod g A * setprod g B"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1281
by (subst setprod_Un_Int [symmetric], auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1282
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1283
lemma setprod_UN_disjoint:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1284
    "finite I ==> (ALL i:I. finite (A i)) ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1285
        (ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {}) ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1286
      setprod f (UNION I A) = setprod (%i. setprod f (A i)) I"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1287
by(simp add: setprod_def ACe.fold_UN_disjoint[OF ACe_mult] cong: setprod_cong)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1288
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1289
lemma setprod_Union_disjoint:
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1290
  "[| (ALL A:C. finite A);
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1291
      (ALL A:C. ALL B:C. A \<noteq> B --> A Int B = {}) |] 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1292
   ==> setprod f (Union C) = setprod (setprod f) C"
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1293
apply (cases "finite C") 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1294
 prefer 2 apply (force dest: finite_UnionD simp add: setprod_def)
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1295
  apply (frule setprod_UN_disjoint [of C id f])
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1296
 apply (unfold Union_def id_def, assumption+)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1297
done
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1298
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1299
lemma setprod_Sigma: "finite A ==> ALL x:A. finite (B x) ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1300
    (\<Prod>x:A. (\<Prod>y: B x. f x y)) =
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1301
    (\<Prod>z:(SIGMA x:A. B x). f (fst z) (snd z))"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1302
by(simp add:setprod_def ACe.fold_Sigma[OF ACe_mult] split_def cong:setprod_cong)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1303
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1304
text{*Here we can eliminate the finiteness assumptions, by cases.*}
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1305
lemma setprod_cartesian_product: 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1306
     "(\<Prod>x:A. (\<Prod>y: B. f x y)) = (\<Prod>z:(A <*> B). f (fst z) (snd z))"
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1307
apply (cases "finite A") 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1308
 apply (cases "finite B") 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1309
  apply (simp add: setprod_Sigma)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1310
 apply (cases "A={}", simp)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1311
 apply (simp add: setprod_1) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1312
apply (auto simp add: setprod_def
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1313
            dest: finite_cartesian_productD1 finite_cartesian_productD2) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1314
done
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1315
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1316
lemma setprod_timesf:
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1317
     "setprod (%x. f x * g x) A = (setprod f A * setprod g A)"
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1318
by(simp add:setprod_def ACe.fold_distrib[OF ACe_mult])
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1319
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1320
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1321
subsubsection {* Properties in more restricted classes of structures *}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1322
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1323
lemma setprod_eq_1_iff [simp]:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1324
    "finite F ==> (setprod f F = 1) = (ALL a:F. f a = (1::nat))"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1325
  by (induct set: Finites) auto
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1326
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1327
lemma setprod_zero:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1328
     "finite A ==> EX x: A. f x = (0::'a::comm_semiring_1_cancel) ==> setprod f A = 0"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1329
  apply (induct set: Finites, force, clarsimp)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1330
  apply (erule disjE, auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1331
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1332
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1333
lemma setprod_nonneg [rule_format]:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1334
     "(ALL x: A. (0::'a::ordered_idom) \<le> f x) --> 0 \<le> setprod f A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1335
  apply (case_tac "finite A")
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1336
  apply (induct set: Finites, force, clarsimp)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1337
  apply (subgoal_tac "0 * 0 \<le> f x * setprod f F", force)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1338
  apply (rule mult_mono, assumption+)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1339
  apply (auto simp add: setprod_def)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1340
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1341
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1342
lemma setprod_pos [rule_format]: "(ALL x: A. (0::'a::ordered_idom) < f x)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1343
     --> 0 < setprod f A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1344
  apply (case_tac "finite A")
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1345
  apply (induct set: Finites, force, clarsimp)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1346
  apply (subgoal_tac "0 * 0 < f x * setprod f F", force)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1347
  apply (rule mult_strict_mono, assumption+)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1348
  apply (auto simp add: setprod_def)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1349
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1350
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1351
lemma setprod_nonzero [rule_format]:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1352
    "(ALL x y. (x::'a::comm_semiring_1_cancel) * y = 0 --> x = 0 | y = 0) ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1353
      finite A ==> (ALL x: A. f x \<noteq> (0::'a)) --> setprod f A \<noteq> 0"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1354
  apply (erule finite_induct, auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1355
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1356
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1357
lemma setprod_zero_eq:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1358
    "(ALL x y. (x::'a::comm_semiring_1_cancel) * y = 0 --> x = 0 | y = 0) ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1359
     finite A ==> (setprod f A = (0::'a)) = (EX x: A. f x = 0)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1360
  apply (insert setprod_zero [of A f] setprod_nonzero [of A f], blast)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1361
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1362
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1363
lemma setprod_nonzero_field:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1364
    "finite A ==> (ALL x: A. f x \<noteq> (0::'a::field)) ==> setprod f A \<noteq> 0"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1365
  apply (rule setprod_nonzero, auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1366
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1367
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1368
lemma setprod_zero_eq_field:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1369
    "finite A ==> (setprod f A = (0::'a::field)) = (EX x: A. f x = 0)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1370
  apply (rule setprod_zero_eq, auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1371
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1372
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1373
lemma setprod_Un: "finite A ==> finite B ==> (ALL x: A Int B. f x \<noteq> 0) ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1374
    (setprod f (A Un B) :: 'a ::{field})
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1375
      = setprod f A * setprod f B / setprod f (A Int B)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1376
  apply (subst setprod_Un_Int [symmetric], auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1377
  apply (subgoal_tac "finite (A Int B)")
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1378
  apply (frule setprod_nonzero_field [of "A Int B" f], assumption)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1379
  apply (subst times_divide_eq_right [THEN sym], auto simp add: divide_self)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1380
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1381
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1382
lemma setprod_diff1: "finite A ==> f a \<noteq> 0 ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1383
    (setprod f (A - {a}) :: 'a :: {field}) =
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1384
      (if a:A then setprod f A / f a else setprod f A)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1385
  apply (erule finite_induct)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1386
   apply (auto simp add: insert_Diff_if)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1387
  apply (subgoal_tac "f a * setprod f F / f a = setprod f F * f a / f a")
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1388
  apply (erule ssubst)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1389
  apply (subst times_divide_eq_right [THEN sym])
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1390
  apply (auto simp add: mult_ac times_divide_eq_right divide_self)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1391
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1392
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1393
lemma setprod_inversef: "finite A ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1394
    ALL x: A. f x \<noteq> (0::'a::{field,division_by_zero}) ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1395
      setprod (inverse \<circ> f) A = inverse (setprod f A)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1396
  apply (erule finite_induct)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1397
  apply (simp, simp)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1398
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1399
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1400
lemma setprod_dividef:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1401
     "[|finite A;
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1402
        \<forall>x \<in> A. g x \<noteq> (0::'a::{field,division_by_zero})|]
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1403
      ==> setprod (%x. f x / g x) A = setprod f A / setprod g A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1404
  apply (subgoal_tac
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1405
         "setprod (%x. f x / g x) A = setprod (%x. f x * (inverse \<circ> g) x) A")
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1406
  apply (erule ssubst)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1407
  apply (subst divide_inverse)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1408
  apply (subst setprod_timesf)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1409
  apply (subst setprod_inversef, assumption+, rule refl)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1410
  apply (rule setprod_cong, rule refl)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1411
  apply (subst divide_inverse, auto)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1412
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1413
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1414
subsection {* Finite cardinality *}
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1415
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1416
text {* This definition, although traditional, is ugly to work with:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1417
@{text "card A == LEAST n. EX f. A = {f i | i. i < n}"}.
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1418
But now that we have @{text setsum} things are easy:
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1419
*}
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1420
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1421
constdefs
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1422
  card :: "'a set => nat"
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1423
  "card A == setsum (%x. 1::nat) A"
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1424
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1425
lemma card_empty [simp]: "card {} = 0"
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1426
  by (simp add: card_def)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1427
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1428
lemma card_infinite [simp]: "~ finite A ==> card A = 0"
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1429
  by (simp add: card_def)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1430
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1431
lemma card_eq_setsum: "card A = setsum (%x. 1) A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1432
by (simp add: card_def)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1433
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1434
lemma card_insert_disjoint [simp]:
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1435
  "finite A ==> x \<notin> A ==> card (insert x A) = Suc(card A)"
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1436
by(simp add: card_def ACf.fold_insert[OF ACf_add])
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1437
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1438
lemma card_insert_if:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1439
    "finite A ==> card (insert x A) = (if x:A then card A else Suc(card(A)))"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1440
  by (simp add: insert_absorb)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1441
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1442
lemma card_0_eq [simp]: "finite A ==> (card A = 0) = (A = {})"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1443
  apply auto
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
  1444
  apply (drule_tac a = x in mk_disjoint_insert, clarify)
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1445
  apply (auto)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1446
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1447
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1448
lemma card_eq_0_iff: "(card A = 0) = (A = {} | ~ finite A)"
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1449
by auto
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1450
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1451
lemma card_Suc_Diff1: "finite A ==> x: A ==> Suc (card (A - {x})) = card A"
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14208
diff changeset
  1452
apply(rule_tac t = A in insert_Diff [THEN subst], assumption)
6c24235e8d5d *** empty log message ***
nipkow
parents: 14208
diff changeset
  1453
apply(simp del:insert_Diff_single)
6c24235e8d5d *** empty log message ***
nipkow
parents: 14208
diff changeset
  1454
done
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1455
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1456
lemma card_Diff_singleton:
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1457
    "finite A ==> x: A ==> card (A - {x}) = card A - 1"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1458
  by (simp add: card_Suc_Diff1 [symmetric])
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1459
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1460
lemma card_Diff_singleton_if:
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1461
    "finite A ==> card (A-{x}) = (if x : A then card A - 1 else card A)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1462
  by (simp add: card_Diff_singleton)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1463
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1464
lemma card_insert: "finite A ==> card (insert x A) = Suc (card (A - {x}))"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1465
  by (simp add: card_insert_if card_Suc_Diff1)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1466
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1467
lemma card_insert_le: "finite A ==> card A <= card (insert x A)"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1468
  by (simp add: card_insert_if)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1469
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1470
lemma card_mono: "\<lbrakk> finite B; A \<subseteq> B \<rbrakk> \<Longrightarrow> card A \<le> card B"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1471
by (simp add: card_def setsum_mono2_nat)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1472
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1473
lemma card_seteq: "finite B ==> (!!A. A <= B ==> card B <= card A ==> A = B)"
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
  1474
  apply (induct set: Finites, simp, clarify)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1475
  apply (subgoal_tac "finite A & A - {x} <= F")
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
  1476
   prefer 2 apply (blast intro: finite_subset, atomize)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1477
  apply (drule_tac x = "A - {x}" in spec)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1478
  apply (simp add: card_Diff_singleton_if split add: split_if_asm)
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
  1479
  apply (case_tac "card A", auto)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1480
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1481
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1482
lemma psubset_card_mono: "finite B ==> A < B ==> card A < card B"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1483
  apply (simp add: psubset_def linorder_not_le [symmetric])
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1484
  apply (blast dest: card_seteq)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1485
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1486
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1487
lemma card_Un_Int: "finite A ==> finite B
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1488
    ==> card A + card B = card (A Un B) + card (A Int B)"
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1489
by(simp add:card_def setsum_Un_Int)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1490
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1491
lemma card_Un_disjoint: "finite A ==> finite B
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1492
    ==> A Int B = {} ==> card (A Un B) = card A + card B"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1493
  by (simp add: card_Un_Int)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1494
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1495
lemma card_Diff_subset:
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1496
  "finite B ==> B <= A ==> card (A - B) = card A - card B"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1497
by(simp add:card_def setsum_diff_nat)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1498
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1499
lemma card_Diff1_less: "finite A ==> x: A ==> card (A - {x}) < card A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1500
  apply (rule Suc_less_SucD)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1501
  apply (simp add: card_Suc_Diff1)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1502
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1503
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1504
lemma card_Diff2_less:
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1505
    "finite A ==> x: A ==> y: A ==> card (A - {x} - {y}) < card A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1506
  apply (case_tac "x = y")
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1507
   apply (simp add: card_Diff1_less)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1508
  apply (rule less_trans)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1509
   prefer 2 apply (auto intro!: card_Diff1_less)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1510
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1511
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1512
lemma card_Diff1_le: "finite A ==> card (A - {x}) <= card A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1513
  apply (case_tac "x : A")
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1514
   apply (simp_all add: card_Diff1_less less_imp_le)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1515
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1516
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1517
lemma card_psubset: "finite B ==> A \<subseteq> B ==> card A < card B ==> A < B"
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
  1518
by (erule psubsetI, blast)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1519
14889
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1520
lemma insert_partition:
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1521
  "\<lbrakk> x \<notin> F; \<forall>c1 \<in> insert x F. \<forall>c2 \<in> insert x F. c1 \<noteq> c2 \<longrightarrow> c1 \<inter> c2 = {} \<rbrakk>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1522
  \<Longrightarrow> x \<inter> \<Union> F = {}"
14889
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1523
by auto
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1524
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1525
(* main cardinality theorem *)
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1526
lemma card_partition [rule_format]:
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1527
     "finite C ==>  
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1528
        finite (\<Union> C) -->  
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1529
        (\<forall>c\<in>C. card c = k) -->   
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1530
        (\<forall>c1 \<in> C. \<forall>c2 \<in> C. c1 \<noteq> c2 --> c1 \<inter> c2 = {}) -->  
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1531
        k * card(C) = card (\<Union> C)"
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1532
apply (erule finite_induct, simp)
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1533
apply (simp add: card_insert_disjoint card_Un_disjoint insert_partition 
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1534
       finite_subset [of _ "\<Union> (insert x F)"])
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1535
done
d7711d6b9014 moved some cardinality results into main HOL
paulson
parents: 14748
diff changeset
  1536
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1537
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1538
lemma setsum_constant_nat: "(\<Sum>x\<in>A. y) = (card A) * y"
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1539
  -- {* Generalized to any @{text comm_semiring_1_cancel} in
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1540
        @{text IntDef} as @{text setsum_constant}. *}
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1541
apply (cases "finite A") 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1542
apply (erule finite_induct, auto)
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1543
done
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1544
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1545
lemma setprod_constant: "finite A ==> (\<Prod>x: A. (y::'a::recpower)) = y^(card A)"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1546
  apply (erule finite_induct)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1547
  apply (auto simp add: power_Suc)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1548
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1549
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1550
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1551
subsubsection {* Cardinality of unions *}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1552
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1553
lemma card_UN_disjoint:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1554
    "finite I ==> (ALL i:I. finite (A i)) ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1555
        (ALL i:I. ALL j:I. i \<noteq> j --> A i Int A j = {}) ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1556
      card (UNION I A) = (\<Sum>i\<in>I. card(A i))"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1557
  apply (simp add: card_def)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1558
  apply (subgoal_tac
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1559
           "setsum (%i. card (A i)) I = setsum (%i. (setsum (%x. 1) (A i))) I")
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1560
  apply (simp add: setsum_UN_disjoint)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1561
  apply (simp add: setsum_constant_nat cong: setsum_cong)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1562
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1563
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1564
lemma card_Union_disjoint:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1565
  "finite C ==> (ALL A:C. finite A) ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1566
        (ALL A:C. ALL B:C. A \<noteq> B --> A Int B = {}) ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1567
      card (Union C) = setsum card C"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1568
  apply (frule card_UN_disjoint [of C id])
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1569
  apply (unfold Union_def id_def, assumption+)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1570
  done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1571
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1572
subsubsection {* Cardinality of image *}
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1573
15447
177ffdbabf80 new theorem image_eq_fold
paulson
parents: 15409
diff changeset
  1574
text{*The image of a finite set can be expressed using @{term fold}.*}
177ffdbabf80 new theorem image_eq_fold
paulson
parents: 15409
diff changeset
  1575
lemma image_eq_fold: "finite A ==> f ` A = fold (op Un) (%x. {f x}) {} A"
177ffdbabf80 new theorem image_eq_fold
paulson
parents: 15409
diff changeset
  1576
  apply (erule finite_induct, simp)
177ffdbabf80 new theorem image_eq_fold
paulson
parents: 15409
diff changeset
  1577
  apply (subst ACf.fold_insert) 
177ffdbabf80 new theorem image_eq_fold
paulson
parents: 15409
diff changeset
  1578
  apply (auto simp add: ACf_def) 
177ffdbabf80 new theorem image_eq_fold
paulson
parents: 15409
diff changeset
  1579
  done
177ffdbabf80 new theorem image_eq_fold
paulson
parents: 15409
diff changeset
  1580
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1581
lemma card_image_le: "finite A ==> card (f ` A) <= card A"
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
  1582
  apply (induct set: Finites, simp)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1583
  apply (simp add: le_SucI finite_imageI card_insert_if)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1584
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1585
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1586
lemma card_image: "inj_on f A ==> card (f ` A) = card A"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1587
by(simp add:card_def setsum_reindex o_def)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1588
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1589
lemma endo_inj_surj: "finite A ==> f ` A \<subseteq> A ==> inj_on f A ==> f ` A = A"
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1590
  by (simp add: card_seteq card_image)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1591
15111
c108189645f8 added some inj_on thms
nipkow
parents: 15074
diff changeset
  1592
lemma eq_card_imp_inj_on:
c108189645f8 added some inj_on thms
nipkow
parents: 15074
diff changeset
  1593
  "[| finite A; card(f ` A) = card A |] ==> inj_on f A"
c108189645f8 added some inj_on thms
nipkow
parents: 15074
diff changeset
  1594
apply(induct rule:finite_induct)
c108189645f8 added some inj_on thms
nipkow
parents: 15074
diff changeset
  1595
 apply simp
c108189645f8 added some inj_on thms
nipkow
parents: 15074
diff changeset
  1596
apply(frule card_image_le[where f = f])
c108189645f8 added some inj_on thms
nipkow
parents: 15074
diff changeset
  1597
apply(simp add:card_insert_if split:if_splits)
c108189645f8 added some inj_on thms
nipkow
parents: 15074
diff changeset
  1598
done
c108189645f8 added some inj_on thms
nipkow
parents: 15074
diff changeset
  1599
c108189645f8 added some inj_on thms
nipkow
parents: 15074
diff changeset
  1600
lemma inj_on_iff_eq_card:
c108189645f8 added some inj_on thms
nipkow
parents: 15074
diff changeset
  1601
  "finite A ==> inj_on f A = (card(f ` A) = card A)"
c108189645f8 added some inj_on thms
nipkow
parents: 15074
diff changeset
  1602
by(blast intro: card_image eq_card_imp_inj_on)
c108189645f8 added some inj_on thms
nipkow
parents: 15074
diff changeset
  1603
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1604
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1605
lemma card_inj_on_le:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1606
    "[|inj_on f A; f ` A \<subseteq> B; finite B |] ==> card A \<le> card B"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1607
apply (subgoal_tac "finite A") 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1608
 apply (force intro: card_mono simp add: card_image [symmetric])
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1609
apply (blast intro: finite_imageD dest: finite_subset) 
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1610
done
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1611
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1612
lemma card_bij_eq:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1613
    "[|inj_on f A; f ` A \<subseteq> B; inj_on g B; g ` B \<subseteq> A;
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1614
       finite A; finite B |] ==> card A = card B"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1615
  by (auto intro: le_anti_sym card_inj_on_le)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1616
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1617
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1618
subsubsection {* Cardinality of products *}
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1619
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1620
(*
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1621
lemma SigmaI_insert: "y \<notin> A ==>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1622
  (SIGMA x:(insert y A). B x) = (({y} <*> (B y)) \<union> (SIGMA x: A. B x))"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1623
  by auto
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1624
*)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1625
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1626
lemma card_SigmaI [simp]:
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1627
  "\<lbrakk> finite A; ALL a:A. finite (B a) \<rbrakk>
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1628
  \<Longrightarrow> card (SIGMA x: A. B x) = (\<Sum>a\<in>A. card (B a))"
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1629
by(simp add:card_def setsum_Sigma)
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1630
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1631
lemma card_cartesian_product: "card (A <*> B) = card(A) * card(B)"
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1632
apply (cases "finite A") 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1633
apply (cases "finite B") 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1634
  apply (simp add: setsum_constant_nat) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1635
apply (auto simp add: card_eq_0_iff
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1636
            dest: finite_cartesian_productD1 finite_cartesian_productD2) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1637
done
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1638
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1639
lemma card_cartesian_product_singleton:  "card({x} <*> A) = card(A)"
15409
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1640
by (simp add: card_cartesian_product) 
a063687d24eb new and stronger lemmas and improved simplification for finite sets
paulson
parents: 15402
diff changeset
  1641
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1642
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  1643
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1644
subsubsection {* Cardinality of the Powerset *}
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1645
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1646
lemma card_Pow: "finite A ==> card (Pow A) = Suc (Suc 0) ^ card A"  (* FIXME numeral 2 (!?) *)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1647
  apply (induct set: Finites)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1648
   apply (simp_all add: Pow_insert)
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
  1649
  apply (subst card_Un_disjoint, blast)
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
  1650
    apply (blast intro: finite_imageI, blast)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1651
  apply (subgoal_tac "inj_on (insert x) (Pow F)")
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1652
   apply (simp add: card_image Pow_insert)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1653
  apply (unfold inj_on_def)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1654
  apply (blast elim!: equalityE)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1655
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1656
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1657
text {* Relates to equivalence classes.  Based on a theorem of
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1658
F. Kammüller's.  *}
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1659
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1660
lemma dvd_partition:
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1661
  "finite (Union C) ==>
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1662
    ALL c : C. k dvd card c ==>
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14331
diff changeset
  1663
    (ALL c1: C. ALL c2: C. c1 \<noteq> c2 --> c1 Int c2 = {}) ==>
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1664
  k dvd card (Union C)"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1665
apply(frule finite_UnionD)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1666
apply(rotate_tac -1)
14208
144f45277d5a misc tidying
paulson
parents: 13825
diff changeset
  1667
  apply (induct set: Finites, simp_all, clarify)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1668
  apply (subst card_Un_disjoint)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1669
  apply (auto simp add: dvd_add disjoint_eq_subset_Compl)
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1670
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1671
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1672
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1673
subsubsection {* Theorems about @{text "choose"} *}
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1674
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1675
text {*
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1676
  \medskip Basic theorem about @{text "choose"}.  By Florian
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1677
  Kamm\"uller, tidied by LCP.
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1678
*}
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1679
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1680
lemma card_s_0_eq_empty:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1681
    "finite A ==> card {B. B \<subseteq> A & card B = 0} = 1"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1682
  apply (simp cong add: conj_cong add: finite_subset [THEN card_0_eq])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1683
  apply (simp cong add: rev_conj_cong)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1684
  done
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1685
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1686
lemma choose_deconstruct: "finite M ==> x \<notin> M
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1687
  ==> {s. s <= insert x M & card(s) = Suc k}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1688
       = {s. s <= M & card(s) = Suc k} Un
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1689
         {s. EX t. t <= M & card(t) = k & s = insert x t}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1690
  apply safe
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1691
   apply (auto intro: finite_subset [THEN card_insert_disjoint])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1692
  apply (drule_tac x = "xa - {x}" in spec)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1693
  apply (subgoal_tac "x \<notin> xa", auto)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1694
  apply (erule rev_mp, subst card_Diff_singleton)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1695
  apply (auto intro: finite_subset)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1696
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1697
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1698
text{*There are as many subsets of @{term A} having cardinality @{term k}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1699
 as there are sets obtained from the former by inserting a fixed element
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1700
 @{term x} into each.*}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1701
lemma constr_bij:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1702
   "[|finite A; x \<notin> A|] ==>
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1703
    card {B. EX C. C <= A & card(C) = k & B = insert x C} =
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1704
    card {B. B <= A & card(B) = k}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1705
  apply (rule_tac f = "%s. s - {x}" and g = "insert x" in card_bij_eq)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1706
       apply (auto elim!: equalityE simp add: inj_on_def)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1707
    apply (subst Diff_insert0, auto)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1708
   txt {* finiteness of the two sets *}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1709
   apply (rule_tac [2] B = "Pow (A)" in finite_subset)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1710
   apply (rule_tac B = "Pow (insert x A)" in finite_subset)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1711
   apply fast+
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1712
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1713
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1714
text {*
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1715
  Main theorem: combinatorial statement about number of subsets of a set.
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1716
*}
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1717
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1718
lemma n_sub_lemma:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1719
  "!!A. finite A ==> card {B. B <= A & card B = k} = (card A choose k)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1720
  apply (induct k)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1721
   apply (simp add: card_s_0_eq_empty, atomize)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1722
  apply (rotate_tac -1, erule finite_induct)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1723
   apply (simp_all (no_asm_simp) cong add: conj_cong
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1724
     add: card_s_0_eq_empty choose_deconstruct)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1725
  apply (subst card_Un_disjoint)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1726
     prefer 4 apply (force simp add: constr_bij)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1727
    prefer 3 apply force
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1728
   prefer 2 apply (blast intro: finite_Pow_iff [THEN iffD2]
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1729
     finite_subset [of _ "Pow (insert x F)", standard])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1730
  apply (blast intro: finite_Pow_iff [THEN iffD2, THEN [2] finite_subset])
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1731
  done
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1732
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1733
theorem n_subsets:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1734
    "finite A ==> card {B. B <= A & card B = k} = (card A choose k)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1735
  by (simp add: n_sub_lemma)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1736
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1737
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1738
subsection{* A fold functional for non-empty sets *}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1739
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1740
text{* Does not require start value. *}
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1741
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1742
consts
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1743
  foldSet1 :: "('a => 'a => 'a) => ('a set \<times> 'a) set"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1744
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1745
inductive "foldSet1 f"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1746
intros
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1747
foldSet1_singletonI [intro]: "({a}, a) : foldSet1 f"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1748
foldSet1_insertI [intro]:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1749
 "\<lbrakk> (A, x) : foldSet1 f; a \<notin> A; A \<noteq> {} \<rbrakk>
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1750
  \<Longrightarrow> (insert a A, f a x) : foldSet1 f"
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1751
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1752
constdefs
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1753
  fold1 :: "('a => 'a => 'a) => 'a set => 'a"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1754
  "fold1 f A == THE x. (A, x) : foldSet1 f"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1755
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1756
lemma foldSet1_nonempty:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1757
 "(A, x) : foldSet1 f \<Longrightarrow> A \<noteq> {}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1758
by(erule foldSet1.cases, simp_all) 
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1759
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1760
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1761
inductive_cases empty_foldSet1E [elim!]: "({}, x) : foldSet1 f"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1762
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1763
lemma foldSet1_sing[iff]: "(({a},b) : foldSet1 f) = (a = b)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1764
apply(rule iffI)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1765
 prefer 2 apply fast
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1766
apply (erule foldSet1.cases)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1767
 apply blast
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1768
apply (erule foldSet1.cases)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1769
 apply blast
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1770
apply blast
15376
302ef111b621 Started to clean up and generalize FiniteSet
nipkow
parents: 15327
diff changeset
  1771
done
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1772
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1773
lemma Diff1_foldSet1:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1774
  "(A - {x}, y) : foldSet1 f ==> x: A ==> (A, f x y) : foldSet1 f"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1775
by (erule insert_Diff [THEN subst], rule foldSet1.intros,
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1776
    auto dest!:foldSet1_nonempty)
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1777
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1778
lemma foldSet1_imp_finite: "(A, x) : foldSet1 f ==> finite A"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1779
  by (induct set: foldSet1) auto
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1780
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1781
lemma finite_nonempty_imp_foldSet1:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1782
  "\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> EX x. (A, x) : foldSet1 f"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1783
  by (induct set: Finites) auto
15376
302ef111b621 Started to clean up and generalize FiniteSet
nipkow
parents: 15327
diff changeset
  1784
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1785
lemma (in ACf) foldSet1_determ_aux:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1786
  "!!A x y. \<lbrakk> card A < n; (A, x) : foldSet1 f; (A, y) : foldSet1 f \<rbrakk> \<Longrightarrow> y = x"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1787
proof (induct n)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1788
  case 0 thus ?case by simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1789
next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1790
  case (Suc n)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1791
  have IH: "!!A x y. \<lbrakk>card A < n; (A, x) \<in> foldSet1 f; (A, y) \<in> foldSet1 f\<rbrakk>
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1792
           \<Longrightarrow> y = x" and card: "card A < Suc n"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1793
  and Afoldx: "(A, x) \<in> foldSet1 f" and Afoldy: "(A, y) \<in> foldSet1 f" .
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1794
  from card have "card A < n \<or> card A = n" by arith
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1795
  thus ?case
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1796
  proof
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1797
    assume less: "card A < n"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1798
    show ?thesis by(rule IH[OF less Afoldx Afoldy])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1799
  next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1800
    assume cardA: "card A = n"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1801
    show ?thesis
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1802
    proof (rule foldSet1.cases[OF Afoldx])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1803
      fix a assume "(A, x) = ({a}, a)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1804
      thus "y = x" using Afoldy by (simp add:foldSet1_sing)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1805
    next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1806
      fix Ax ax x'
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1807
      assume eq1: "(A, x) = (insert ax Ax, ax \<cdot> x')"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1808
	and x': "(Ax, x') \<in> foldSet1 f" and notinx: "ax \<notin> Ax"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1809
	and Axnon: "Ax \<noteq> {}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1810
      hence A1: "A = insert ax Ax" and x: "x = ax \<cdot> x'" by auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1811
      show ?thesis
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1812
      proof (rule foldSet1.cases[OF Afoldy])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1813
	fix ay assume "(A, y) = ({ay}, ay)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1814
	thus ?thesis using eq1 x' Axnon notinx
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1815
	  by (fastsimp simp:foldSet1_sing)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1816
      next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1817
	fix Ay ay y'
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1818
	assume eq2: "(A, y) = (insert ay Ay, ay \<cdot> y')"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1819
	  and y': "(Ay, y') \<in> foldSet1 f" and notiny: "ay \<notin> Ay"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1820
	  and Aynon: "Ay \<noteq> {}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1821
	hence A2: "A = insert ay Ay" and y: "y = ay \<cdot> y'" by auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1822
	have finA: "finite A" by(rule foldSet1_imp_finite[OF Afoldx])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1823
	with cardA A1 notinx have less: "card Ax < n" by simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1824
	show ?thesis
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1825
	proof cases
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1826
	  assume "ax = ay"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1827
	  then moreover have "Ax = Ay" using A1 A2 notinx notiny by auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1828
	  ultimately show ?thesis using IH[OF less x'] y' eq1 eq2 by auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1829
	next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1830
	  assume diff: "ax \<noteq> ay"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1831
	  let ?B = "Ax - {ay}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1832
	  have Ax: "Ax = insert ay ?B" and Ay: "Ay = insert ax ?B"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1833
	    using A1 A2 notinx notiny diff by(blast elim!:equalityE)+
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1834
	  show ?thesis
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1835
	  proof cases
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1836
	    assume "?B = {}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1837
	    with Ax Ay show ?thesis using x' y' x y by(simp add:commute)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1838
	  next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1839
	    assume Bnon: "?B \<noteq> {}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1840
	    moreover have "finite ?B" using finA A1 by simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1841
	    ultimately obtain b where Bfoldb: "(?B,b) \<in> foldSet1 f"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1842
	      using finite_nonempty_imp_foldSet1 by(blast)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1843
	    moreover have ayinAx: "ay \<in> Ax" using Ax by(auto)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1844
	    ultimately have "(Ax,ay\<cdot>b) \<in> foldSet1 f" by(rule Diff1_foldSet1)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1845
	    hence "ay\<cdot>b = x'" by(rule IH[OF less x'])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1846
            moreover have "ax\<cdot>b = y'"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1847
	    proof (rule IH[OF _ y'])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1848
	      show "card Ay < n" using Ay cardA A1 notinx finA ayinAx
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1849
		by(auto simp:card_Diff1_less)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1850
	    next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1851
	      show "(Ay,ax\<cdot>b) \<in> foldSet1 f" using Ay notinx Bfoldb Bnon
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1852
		by fastsimp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1853
	    qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1854
	    ultimately show ?thesis using x y by(auto simp:AC)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1855
	  qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1856
	qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1857
      qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1858
    qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1859
  qed
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1860
qed
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1861
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1862
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1863
lemma (in ACf) foldSet1_determ:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1864
  "(A, x) : foldSet1 f ==> (A, y) : foldSet1 f ==> y = x"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1865
by (blast intro: foldSet1_determ_aux [rule_format])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1866
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1867
lemma (in ACf) foldSet1_equality: "(A, y) : foldSet1 f ==> fold1 f A = y"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1868
  by (unfold fold1_def) (blast intro: foldSet1_determ)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1869
15483
704b3ce6d0f7 added [simp]
nipkow
parents: 15480
diff changeset
  1870
lemma fold1_singleton[simp]: "fold1 f {a} = a"
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1871
  by (unfold fold1_def) blast
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  1872
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1873
lemma (in ACf) foldSet1_insert_aux: "x \<notin> A ==> A \<noteq> {} \<Longrightarrow> 
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1874
    ((insert x A, v) : foldSet1 f) =
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1875
    (EX y. (A, y) : foldSet1 f & v = f x y)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1876
apply auto
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1877
apply (rule_tac A1 = A and f1 = f in finite_nonempty_imp_foldSet1 [THEN exE])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1878
  apply (fastsimp dest: foldSet1_imp_finite)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1879
 apply blast
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1880
apply (blast intro: foldSet1_determ)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1881
done
15376
302ef111b621 Started to clean up and generalize FiniteSet
nipkow
parents: 15327
diff changeset
  1882
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1883
lemma (in ACf) fold1_insert:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1884
  "finite A ==> x \<notin> A ==> A \<noteq> {} \<Longrightarrow> fold1 f (insert x A) = f x (fold1 f A)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1885
apply (unfold fold1_def)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1886
apply (simp add: foldSet1_insert_aux)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1887
apply (rule the_equality)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1888
apply (auto intro: finite_nonempty_imp_foldSet1
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1889
    cong add: conj_cong simp add: fold1_def [symmetric] foldSet1_equality)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1890
done
15376
302ef111b621 Started to clean up and generalize FiniteSet
nipkow
parents: 15327
diff changeset
  1891
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  1892
lemma (in ACIf) fold1_insert2[simp]:
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1893
assumes finA: "finite A" and nonA: "A \<noteq> {}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1894
shows "fold1 f (insert a A) = f a (fold1 f A)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1895
proof cases
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1896
  assume "a \<in> A"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1897
  then obtain B where A: "A = insert a B" and disj: "a \<notin> B"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1898
    by(blast dest: mk_disjoint_insert)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1899
  show ?thesis
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1900
  proof cases
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1901
    assume "B = {}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1902
    thus ?thesis using A by(simp add:idem fold1_singleton)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1903
  next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1904
    assume nonB: "B \<noteq> {}"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1905
    from finA A have finB: "finite B" by(blast intro: finite_subset)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1906
    have "fold1 f (insert a A) = fold1 f (insert a B)" using A by simp
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1907
    also have "\<dots> = f a (fold1 f B)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1908
      using finB nonB disj by(simp add: fold1_insert)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1909
    also have "\<dots> = f a (fold1 f A)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1910
      using A finB nonB disj by(simp add:idem fold1_insert assoc[symmetric])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1911
    finally show ?thesis .
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1912
  qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1913
next
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1914
  assume "a \<notin> A"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1915
  with finA nonA show ?thesis by(simp add:fold1_insert)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1916
qed
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1917
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1918
text{* Now the recursion rules for definitions: *}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1919
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1920
lemma fold1_singleton_def: "g \<equiv> fold1 f \<Longrightarrow> g {a} = a"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1921
by(simp add:fold1_singleton)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1922
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1923
lemma (in ACf) fold1_insert_def:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1924
  "\<lbrakk> g \<equiv> fold1 f; finite A; x \<notin> A; A \<noteq> {} \<rbrakk> \<Longrightarrow> g(insert x A) = x \<cdot> (g A)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1925
by(simp add:fold1_insert)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1926
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1927
lemma (in ACIf) fold1_insert2_def:
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1928
  "\<lbrakk> g \<equiv> fold1 f; finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> g(insert x A) = x \<cdot> (g A)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1929
by(simp add:fold1_insert2)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  1930
15376
302ef111b621 Started to clean up and generalize FiniteSet
nipkow
parents: 15327
diff changeset
  1931
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1932
subsubsection{* Semi-Lattices *}
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1933
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1934
locale ACIfSL = ACIf +
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1935
  fixes below :: "'a \<Rightarrow> 'a \<Rightarrow> bool" (infixl "\<sqsubseteq>" 50)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1936
  assumes below_def: "(x \<sqsubseteq> y) = (x\<cdot>y = x)"
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1937
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1938
locale ACIfSLlin = ACIfSL +
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1939
  assumes lin: "x\<cdot>y \<in> {x,y}"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1940
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1941
lemma (in ACIfSL) below_refl[simp]: "x \<sqsubseteq> x"
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1942
by(simp add: below_def idem)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1943
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1944
lemma (in ACIfSL) below_f_conv[simp]: "x \<sqsubseteq> y \<cdot> z = (x \<sqsubseteq> y \<and> x \<sqsubseteq> z)"
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1945
proof
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1946
  assume "x \<sqsubseteq> y \<cdot> z"
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1947
  hence xyzx: "x \<cdot> (y \<cdot> z) = x"  by(simp add: below_def)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1948
  have "x \<cdot> y = x"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1949
  proof -
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1950
    have "x \<cdot> y = (x \<cdot> (y \<cdot> z)) \<cdot> y" by(rule subst[OF xyzx], rule refl)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1951
    also have "\<dots> = x \<cdot> (y \<cdot> z)" by(simp add:ACI)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1952
    also have "\<dots> = x" by(rule xyzx)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1953
    finally show ?thesis .
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1954
  qed
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1955
  moreover have "x \<cdot> z = x"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1956
  proof -
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1957
    have "x \<cdot> z = (x \<cdot> (y \<cdot> z)) \<cdot> z" by(rule subst[OF xyzx], rule refl)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1958
    also have "\<dots> = x \<cdot> (y \<cdot> z)" by(simp add:ACI)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1959
    also have "\<dots> = x" by(rule xyzx)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1960
    finally show ?thesis .
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1961
  qed
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1962
  ultimately show "x \<sqsubseteq> y \<and> x \<sqsubseteq> z" by(simp add: below_def)
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1963
next
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1964
  assume a: "x \<sqsubseteq> y \<and> x \<sqsubseteq> z"
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1965
  hence y: "x \<cdot> y = x" and z: "x \<cdot> z = x" by(simp_all add: below_def)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1966
  have "x \<cdot> (y \<cdot> z) = (x \<cdot> y) \<cdot> z" by(simp add:assoc)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1967
  also have "x \<cdot> y = x" using a by(simp_all add: below_def)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1968
  also have "x \<cdot> z = x" using a by(simp_all add: below_def)
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1969
  finally show "x \<sqsubseteq> y \<cdot> z" by(simp_all add: below_def)
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1970
qed
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1971
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1972
lemma (in ACIfSLlin) above_f_conv:
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1973
 "x \<cdot> y \<sqsubseteq> z = (x \<sqsubseteq> z \<or> y \<sqsubseteq> z)"
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1974
proof
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1975
  assume a: "x \<cdot> y \<sqsubseteq> z"
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1976
  have "x \<cdot> y = x \<or> x \<cdot> y = y" using lin[of x y] by simp
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1977
  thus "x \<sqsubseteq> z \<or> y \<sqsubseteq> z"
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1978
  proof
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1979
    assume "x \<cdot> y = x" hence "x \<sqsubseteq> z" by(rule subst)(rule a) thus ?thesis ..
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1980
  next
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1981
    assume "x \<cdot> y = y" hence "y \<sqsubseteq> z" by(rule subst)(rule a) thus ?thesis ..
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1982
  qed
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1983
next
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1984
  assume "x \<sqsubseteq> z \<or> y \<sqsubseteq> z"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1985
  thus "x \<cdot> y \<sqsubseteq> z"
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1986
  proof
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1987
    assume a: "x \<sqsubseteq> z"
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1988
    have "(x \<cdot> y) \<cdot> z = (x \<cdot> z) \<cdot> y" by(simp add:ACI)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1989
    also have "x \<cdot> z = x" using a by(simp add:below_def)
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1990
    finally show "x \<cdot> y \<sqsubseteq> z" by(simp add:below_def)
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1991
  next
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1992
    assume a: "y \<sqsubseteq> z"
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1993
    have "(x \<cdot> y) \<cdot> z = x \<cdot> (y \<cdot> z)" by(simp add:ACI)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1994
    also have "y \<cdot> z = y" using a by(simp add:below_def)
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  1995
    finally show "x \<cdot> y \<sqsubseteq> z" by(simp add:below_def)
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1996
  qed
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1997
qed
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1998
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  1999
15502
9d012c7fadab fixed latex problems
nipkow
parents: 15500
diff changeset
  2000
subsubsection{* Lemmas about @{text fold1} *}
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2001
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2002
lemma (in ACf) fold1_Un:
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2003
assumes A: "finite A" "A \<noteq> {}"
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2004
shows "finite B \<Longrightarrow> B \<noteq> {} \<Longrightarrow> A Int B = {} \<Longrightarrow>
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2005
       fold1 f (A Un B) = f (fold1 f A) (fold1 f B)"
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2006
using A
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2007
proof(induct rule:finite_ne_induct)
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2008
  case singleton thus ?case by(simp add:fold1_insert)
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2009
next
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2010
  case insert thus ?case by (simp add:fold1_insert assoc)
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2011
qed
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2012
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2013
lemma (in ACIf) fold1_Un2:
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2014
assumes A: "finite A" "A \<noteq> {}"
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2015
shows "finite B \<Longrightarrow> B \<noteq> {} \<Longrightarrow>
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2016
       fold1 f (A Un B) = f (fold1 f A) (fold1 f B)"
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2017
using A
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2018
proof(induct rule:finite_ne_induct)
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2019
  case singleton thus ?case by(simp add:fold1_insert2)
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2020
next
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2021
  case insert thus ?case by (simp add:fold1_insert2 assoc)
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2022
qed
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2023
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2024
lemma (in ACf) fold1_in:
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2025
  assumes A: "finite (A)" "A \<noteq> {}" and elem: "\<And>x y. x\<cdot>y \<in> {x,y}"
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2026
  shows "fold1 f A \<in> A"
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2027
using A
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2028
proof (induct rule:finite_ne_induct)
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2029
  case singleton thus ?case by(simp)
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2030
next
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2031
  case insert thus ?case using elem by (force simp add:fold1_insert)
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2032
qed
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2033
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2034
lemma (in ACIfSL) below_fold1_iff:
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2035
assumes A: "finite A" "A \<noteq> {}"
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2036
shows "x \<sqsubseteq> fold1 f A = (\<forall>a\<in>A. x \<sqsubseteq> a)"
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2037
using A
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2038
by(induct rule:finite_ne_induct) simp_all
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2039
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2040
lemma (in ACIfSL) fold1_belowI:
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2041
assumes A: "finite A" "A \<noteq> {}"
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2042
shows "a \<in> A \<Longrightarrow> fold1 f A \<sqsubseteq> a"
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2043
using A
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2044
proof (induct rule:finite_ne_induct)
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2045
  case singleton thus ?case by simp
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2046
next
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2047
  case (insert x F)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2048
  from insert(4) have "a = x \<or> a \<in> F" by simp
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2049
  thus ?case
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2050
  proof
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2051
    assume "a = x" thus ?thesis using insert by(simp add:below_def ACI)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2052
  next
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2053
    assume "a \<in> F"
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2054
    hence bel: "fold1 op \<cdot> F \<sqsubseteq> a" by(rule insert)
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2055
    have "fold1 op \<cdot> (insert x F) \<cdot> a = x \<cdot> (fold1 op \<cdot> F \<cdot> a)"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2056
      using insert by(simp add:below_def ACI)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2057
    also have "fold1 op \<cdot> F \<cdot> a = fold1 op \<cdot> F"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2058
      using bel  by(simp add:below_def ACI)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2059
    also have "x \<cdot> \<dots> = fold1 op \<cdot> (insert x F)"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2060
      using insert by(simp add:below_def ACI)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2061
    finally show ?thesis  by(simp add:below_def)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2062
  qed
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2063
qed
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2064
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2065
lemma (in ACIfSLlin) fold1_below_iff:
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2066
assumes A: "finite A" "A \<noteq> {}"
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2067
shows "fold1 f A \<sqsubseteq> x = (\<exists>a\<in>A. a \<sqsubseteq> x)"
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2068
using A
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2069
by(induct rule:finite_ne_induct)(simp_all add:above_f_conv)
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2070
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2071
subsubsection{* Lattices *}
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2072
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2073
locale Lattice =
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2074
  fixes below :: "'a \<Rightarrow> 'a \<Rightarrow> bool" (infixl "\<sqsubseteq>" 50)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2075
  and inf :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "\<sqinter>" 70)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2076
  and sup :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" (infixl "\<squnion>" 65)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2077
  and Inf :: "'a set \<Rightarrow> 'a" ("\<Sqinter>_" [900] 900)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2078
  and Sup :: "'a set \<Rightarrow> 'a" ("\<Squnion>_" [900] 900)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2079
  assumes refl: "x \<sqsubseteq> x"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2080
  and trans: "x \<sqsubseteq> y \<Longrightarrow> y \<sqsubseteq> z \<Longrightarrow> x \<sqsubseteq> z"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2081
  and antisym: "x \<sqsubseteq> y \<Longrightarrow> y \<sqsubseteq> x \<Longrightarrow> x = y"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2082
  and inf_le1: "x \<sqinter> y \<sqsubseteq> x" and inf_le2: "x \<sqinter> y \<sqsubseteq> y"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2083
  and inf_least: "x \<sqsubseteq> y \<Longrightarrow> x \<sqsubseteq> z \<Longrightarrow> x \<sqsubseteq> y \<sqinter> z"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2084
  and sup_ge1: "x \<sqsubseteq> x \<squnion> y" and sup_ge2: "y \<sqsubseteq> x \<squnion> y"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2085
  and sup_greatest: "y \<sqsubseteq> x \<Longrightarrow> z \<sqsubseteq> x \<Longrightarrow> y \<squnion> z \<sqsubseteq> x"
15504
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2086
  and inf_sup_absorb: "x \<sqinter> (x \<squnion> y) = x"
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2087
  and sup_inf_absorb: "x \<squnion> (x \<sqinter> y) = x"
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2088
  defines "Inf == fold1 inf"  and "Sup == fold1 sup"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2089
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2090
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2091
lemma (in Lattice) inf_comm: "(x \<sqinter> y) = (y \<sqinter> x)"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2092
by(blast intro: antisym inf_le1 inf_le2 inf_least)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2093
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2094
lemma (in Lattice) sup_comm: "(x \<squnion> y) = (y \<squnion> x)"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2095
by(blast intro: antisym sup_ge1 sup_ge2 sup_greatest)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2096
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2097
lemma (in Lattice) inf_assoc: "(x \<sqinter> y) \<sqinter> z = x \<sqinter> (y \<sqinter> z)"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2098
by(blast intro: antisym inf_le1 inf_le2 inf_least trans)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2099
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2100
lemma (in Lattice) sup_assoc: "(x \<squnion> y) \<squnion> z = x \<squnion> (y \<squnion> z)"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2101
by(blast intro!: antisym sup_ge1 sup_ge2 intro: sup_greatest trans)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2102
15504
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2103
lemma (in Lattice) inf_idem[simp]: "x \<sqinter> x = x"
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2104
by(blast intro: antisym inf_le1 inf_le2 inf_least refl)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2105
15504
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2106
lemma (in Lattice) sup_idem[simp]: "x \<squnion> x = x"
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2107
by(blast intro: antisym sup_ge1 sup_ge2 sup_greatest refl)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2108
15504
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2109
lemma (in Lattice) sup_absorb: "x \<sqsubseteq> y \<Longrightarrow> x \<squnion> y = y"
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2110
by(blast intro: antisym sup_ge2 sup_greatest refl)
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2111
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2112
lemma (in Lattice) inf_absorb: "x \<sqsubseteq> y \<Longrightarrow> x \<sqinter> y = x"
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2113
by(blast intro: antisym inf_le1 inf_least refl)
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2114
15505
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2115
text{* Towards distributivity: if you have one of them, you have them all. *}
15504
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2116
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2117
lemma (in Lattice) distrib_imp1:
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2118
assumes D: "!!x y z. x \<sqinter> (y \<squnion> z) = (x \<sqinter> y) \<squnion> (x \<sqinter> z)"
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2119
shows "x \<squnion> (y \<sqinter> z) = (x \<squnion> y) \<sqinter> (x \<squnion> z)"
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2120
proof-
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2121
  have "x \<squnion> (y \<sqinter> z) = (x \<squnion> (x \<sqinter> z)) \<squnion> (y \<sqinter> z)" by(simp add:sup_inf_absorb)
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2122
  also have "\<dots> = x \<squnion> (z \<sqinter> (x \<squnion> y))" by(simp add:D inf_comm sup_assoc)
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2123
  also have "\<dots> = ((x \<squnion> y) \<sqinter> x) \<squnion> ((x \<squnion> y) \<sqinter> z)"
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2124
    by(simp add:inf_sup_absorb inf_comm)
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2125
  also have "\<dots> = (x \<squnion> y) \<sqinter> (x \<squnion> z)" by(simp add:D)
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2126
  finally show ?thesis .
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2127
qed
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2128
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2129
lemma (in Lattice) distrib_imp2:
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2130
assumes D: "!!x y z. x \<squnion> (y \<sqinter> z) = (x \<squnion> y) \<sqinter> (x \<squnion> z)"
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2131
shows "x \<sqinter> (y \<squnion> z) = (x \<sqinter> y) \<squnion> (x \<sqinter> z)"
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2132
proof-
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2133
  have "x \<sqinter> (y \<squnion> z) = (x \<sqinter> (x \<squnion> z)) \<sqinter> (y \<squnion> z)" by(simp add:inf_sup_absorb)
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2134
  also have "\<dots> = x \<sqinter> (z \<squnion> (x \<sqinter> y))" by(simp add:D sup_comm inf_assoc)
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2135
  also have "\<dots> = ((x \<sqinter> y) \<squnion> x) \<sqinter> ((x \<sqinter> y) \<squnion> z)"
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2136
    by(simp add:sup_inf_absorb sup_comm)
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2137
  also have "\<dots> = (x \<sqinter> y) \<squnion> (x \<sqinter> z)" by(simp add:D)
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2138
  finally show ?thesis .
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2139
qed
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2140
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2141
text{* Lattices are semilattices *}
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2142
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2143
lemma (in Lattice) ACf_inf: "ACf inf"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2144
by(blast intro: ACf.intro inf_comm inf_assoc)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2145
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2146
lemma (in Lattice) ACf_sup: "ACf sup"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2147
by(blast intro: ACf.intro sup_comm sup_assoc)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2148
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2149
lemma (in Lattice) ACIf_inf: "ACIf inf"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2150
apply(rule ACIf.intro)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2151
apply(rule ACf_inf)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2152
apply(rule ACIf_axioms.intro)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2153
apply(rule inf_idem)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2154
done
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2155
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2156
lemma (in Lattice) ACIf_sup: "ACIf sup"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2157
apply(rule ACIf.intro)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2158
apply(rule ACf_sup)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2159
apply(rule ACIf_axioms.intro)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2160
apply(rule sup_idem)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2161
done
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2162
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2163
lemma (in Lattice) ACIfSL_inf: "ACIfSL inf (op \<sqsubseteq>)"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2164
apply(rule ACIfSL.intro)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2165
apply(rule ACf_inf)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2166
apply(rule ACIf.axioms[OF ACIf_inf])
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2167
apply(rule ACIfSL_axioms.intro)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2168
apply(rule iffI)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2169
 apply(blast intro: antisym inf_le1 inf_le2 inf_least refl)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2170
apply(erule subst)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2171
apply(rule inf_le2)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2172
done
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2173
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2174
lemma (in Lattice) ACIfSL_sup: "ACIfSL sup (%x y. y \<sqsubseteq> x)"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2175
apply(rule ACIfSL.intro)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2176
apply(rule ACf_sup)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2177
apply(rule ACIf.axioms[OF ACIf_sup])
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2178
apply(rule ACIfSL_axioms.intro)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2179
apply(rule iffI)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2180
 apply(blast intro: antisym sup_ge1 sup_ge2 sup_greatest refl)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2181
apply(erule subst)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2182
apply(rule sup_ge2)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2183
done
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2184
15505
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2185
text{* A package of rewrite rules for deciding equivalence wrt ACI: *}
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2186
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2187
lemmas (in Lattice) ACI = ACIf.ACI[OF ACIf_inf] ACIf.ACI[OF ACIf_sup]
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2188
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2189
subsubsection{* Distributive lattices *}
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2190
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2191
locale DistribLattice = Lattice +
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2192
  assumes sup_inf_distrib1: "x \<squnion> (y \<sqinter> z) = (x \<squnion> y) \<sqinter> (x \<squnion> z)"
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2193
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2194
lemma (in DistribLattice) sup_inf_distrib2: "(y \<sqinter> z) \<squnion> x = (y \<squnion> x) \<sqinter> (z \<squnion> x)"
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2195
by(simp add:ACI sup_inf_distrib1)
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2196
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2197
lemma (in DistribLattice) inf_sup_distrib1: "x \<sqinter> (y \<squnion> z) = (x \<sqinter> y) \<squnion> (x \<sqinter> z)"
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2198
by(rule distrib_imp2[OF sup_inf_distrib1])
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2199
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2200
lemma (in DistribLattice) inf_sup_distrib2: "(y \<squnion> z) \<sqinter> x = (y \<sqinter> x) \<squnion> (z \<sqinter> x)"
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2201
by(simp add:ACI inf_sup_distrib1)
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2202
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2203
lemmas (in DistribLattice) distrib =
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2204
  sup_inf_distrib1 sup_inf_distrib2 inf_sup_distrib1 inf_sup_distrib2
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2205
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2206
c929e1cbef88 Fixed lattice defns
nipkow
parents: 15504
diff changeset
  2207
subsubsection{* Fold laws in lattices *}
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2208
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2209
lemma (in Lattice) Inf_le_Sup: "\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> \<Sqinter>A \<sqsubseteq> \<Squnion>A"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2210
apply(unfold Sup_def Inf_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2211
apply(subgoal_tac "EX a. a:A")
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2212
prefer 2 apply blast
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2213
apply(erule exE)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2214
apply(rule trans)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2215
apply(erule (2) ACIfSL.fold1_belowI[OF ACIfSL_inf])
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2216
apply(erule (2) ACIfSL.fold1_belowI[OF ACIfSL_sup])
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2217
done
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2218
15504
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2219
lemma (in Lattice) sup_Inf_absorb:
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2220
  "\<lbrakk> finite A; A \<noteq> {}; a \<in> A \<rbrakk> \<Longrightarrow> (a \<squnion> \<Sqinter>A) = a"
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2221
apply(subst sup_comm)
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2222
apply(simp add:Inf_def sup_absorb ACIfSL.fold1_belowI[OF ACIfSL_inf])
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2223
done
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2224
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2225
lemma (in Lattice) inf_Sup_absorb:
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2226
  "\<lbrakk> finite A; A \<noteq> {}; a \<in> A \<rbrakk> \<Longrightarrow> (a \<sqinter> \<Squnion>A) = a"
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2227
by(simp add:Sup_def inf_absorb ACIfSL.fold1_belowI[OF ACIfSL_sup])
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2228
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2229
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2230
lemma (in DistribLattice) sup_Inf1_distrib:
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2231
assumes A: "finite A" "A \<noteq> {}"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2232
shows "(x \<squnion> \<Sqinter>A) = \<Sqinter>{x \<squnion> a|a. a \<in> A}"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2233
using A
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2234
proof (induct rule: finite_ne_induct)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2235
  case singleton thus ?case by(simp add:Inf_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2236
next
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2237
  case (insert y A)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2238
  have fin: "finite {x \<squnion> a |a. a \<in> A}"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2239
    by(fast intro: finite_surj[where f = "%a. x \<squnion> a", OF insert(0)])
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2240
  have "x \<squnion> \<Sqinter> (insert y A) = x \<squnion> (y \<sqinter> \<Sqinter> A)"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2241
    using insert by(simp add:ACf.fold1_insert_def[OF ACf_inf Inf_def])
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2242
  also have "\<dots> = (x \<squnion> y) \<sqinter> (x \<squnion> \<Sqinter> A)" by(rule sup_inf_distrib1)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2243
  also have "x \<squnion> \<Sqinter> A = \<Sqinter>{x \<squnion> a|a. a \<in> A}" using insert by simp
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2244
  also have "(x \<squnion> y) \<sqinter> \<dots> = \<Sqinter> (insert (x \<squnion> y) {x \<squnion> a |a. a \<in> A})"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2245
    using insert by(simp add:ACIf.fold1_insert2_def[OF ACIf_inf Inf_def fin])
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2246
  also have "insert (x\<squnion>y) {x\<squnion>a |a. a \<in> A} = {x\<squnion>a |a. a \<in> insert y A}"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2247
    by blast
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2248
  finally show ?case .
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2249
qed
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2250
15504
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2251
lemma (in DistribLattice) sup_Inf2_distrib:
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2252
assumes A: "finite A" "A \<noteq> {}" and B: "finite B" "B \<noteq> {}"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2253
shows "(\<Sqinter>A \<squnion> \<Sqinter>B) = \<Sqinter>{a \<squnion> b|a b. a \<in> A \<and> b \<in> B}"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2254
using A
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2255
proof (induct rule: finite_ne_induct)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2256
  case singleton thus ?case
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2257
    by(simp add: sup_Inf1_distrib[OF B] fold1_singleton_def[OF Inf_def])
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2258
next
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2259
  case (insert x A)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2260
  have finB: "finite {x \<squnion> b |b. b \<in> B}"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2261
    by(fast intro: finite_surj[where f = "%b. x \<squnion> b", OF B(0)])
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2262
  have finAB: "finite {a \<squnion> b |a b. a \<in> A \<and> b \<in> B}"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2263
  proof -
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2264
    have "{a \<squnion> b |a b. a \<in> A \<and> b \<in> B} = (UN a:A. UN b:B. {a \<squnion> b})"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2265
      by blast
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2266
    thus ?thesis by(simp add: insert(0) B(0))
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2267
  qed
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2268
  have ne: "{a \<squnion> b |a b. a \<in> A \<and> b \<in> B} \<noteq> {}" using insert B by blast
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2269
  have "\<Sqinter>(insert x A) \<squnion> \<Sqinter>B = (x \<sqinter> \<Sqinter>A) \<squnion> \<Sqinter>B"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2270
    using insert by(simp add:ACIf.fold1_insert2_def[OF ACIf_inf Inf_def])
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2271
  also have "\<dots> = (x \<squnion> \<Sqinter>B) \<sqinter> (\<Sqinter>A \<squnion> \<Sqinter>B)" by(rule sup_inf_distrib2)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2272
  also have "\<dots> = \<Sqinter>{x \<squnion> b|b. b \<in> B} \<sqinter> \<Sqinter>{a \<squnion> b|a b. a \<in> A \<and> b \<in> B}"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2273
    using insert by(simp add:sup_Inf1_distrib[OF B])
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2274
  also have "\<dots> = \<Sqinter>({x\<squnion>b |b. b \<in> B} \<union> {a\<squnion>b |a b. a \<in> A \<and> b \<in> B})"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2275
    (is "_ = \<Sqinter>?M")
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2276
    using B insert
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2277
    by(simp add:Inf_def ACIf.fold1_Un2[OF ACIf_inf finB _ finAB ne])
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2278
  also have "?M = {a \<squnion> b |a b. a \<in> insert x A \<and> b \<in> B}"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2279
    by blast
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2280
  finally show ?case .
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2281
qed
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2282
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2283
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2284
subsection{*Min and Max*}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2285
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2286
text{* As an application of @{text fold1} we define the minimal and
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2287
maximal element of a (non-empty) set over a linear order. *}
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2288
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2289
constdefs
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2290
  Min :: "('a::linorder)set => 'a"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2291
  "Min  ==  fold1 min"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2292
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2293
  Max :: "('a::linorder)set => 'a"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2294
  "Max  ==  fold1 max"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2295
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2296
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2297
text{* Before we can do anything, we need to show that @{text min} and
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2298
@{text max} are ACI and the ordering is linear: *}
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2299
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2300
lemma ACf_min: "ACf(min :: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2301
apply(rule ACf.intro)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2302
apply(auto simp:min_def)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2303
done
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2304
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2305
lemma ACIf_min: "ACIf(min:: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2306
apply(rule ACIf.intro[OF ACf_min])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2307
apply(rule ACIf_axioms.intro)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2308
apply(auto simp:min_def)
15376
302ef111b621 Started to clean up and generalize FiniteSet
nipkow
parents: 15327
diff changeset
  2309
done
302ef111b621 Started to clean up and generalize FiniteSet
nipkow
parents: 15327
diff changeset
  2310
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2311
lemma ACf_max: "ACf(max :: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2312
apply(rule ACf.intro)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2313
apply(auto simp:max_def)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2314
done
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2315
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2316
lemma ACIf_max: "ACIf(max:: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a)"
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2317
apply(rule ACIf.intro[OF ACf_max])
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2318
apply(rule ACIf_axioms.intro)
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2319
apply(auto simp:max_def)
15376
302ef111b621 Started to clean up and generalize FiniteSet
nipkow
parents: 15327
diff changeset
  2320
done
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  2321
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2322
lemma ACIfSL_min: "ACIfSL(min :: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a) (op \<le>)"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2323
apply(rule ACIfSL.intro)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2324
apply(rule ACf_min)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2325
apply(rule ACIf.axioms[OF ACIf_min])
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2326
apply(rule ACIfSL_axioms.intro)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2327
apply(auto simp:min_def)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2328
done
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2329
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2330
lemma ACIfSLlin_min: "ACIfSLlin(min :: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a) (op \<le>)"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2331
apply(rule ACIfSLlin.intro)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2332
apply(rule ACf_min)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2333
apply(rule ACIf.axioms[OF ACIf_min])
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2334
apply(rule ACIfSL.axioms[OF ACIfSL_min])
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2335
apply(rule ACIfSLlin_axioms.intro)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2336
apply(auto simp:min_def)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2337
done
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2338
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2339
lemma ACIfSL_max: "ACIfSL(max :: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a) (%x y. y\<le>x)"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2340
apply(rule ACIfSL.intro)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2341
apply(rule ACf_max)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2342
apply(rule ACIf.axioms[OF ACIf_max])
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2343
apply(rule ACIfSL_axioms.intro)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2344
apply(auto simp:max_def)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2345
done
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2346
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2347
lemma ACIfSLlin_max: "ACIfSLlin(max :: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a) (%x y. y\<le>x)"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2348
apply(rule ACIfSLlin.intro)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2349
apply(rule ACf_max)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2350
apply(rule ACIf.axioms[OF ACIf_max])
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2351
apply(rule ACIfSL.axioms[OF ACIfSL_max])
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2352
apply(rule ACIfSLlin_axioms.intro)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2353
apply(auto simp:max_def)
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2354
done
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2355
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2356
lemma Lattice_min_max: "Lattice (op \<le>) (min :: 'a::linorder \<Rightarrow> 'a \<Rightarrow> 'a) max"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2357
apply(rule Lattice.intro)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2358
apply simp
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2359
apply(erule (1) order_trans)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2360
apply(erule (1) order_antisym)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2361
apply(simp add:min_def max_def linorder_not_le order_less_imp_le)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2362
apply(simp add:min_def max_def linorder_not_le order_less_imp_le)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2363
apply(simp add:min_def max_def linorder_not_le order_less_imp_le)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2364
apply(simp add:min_def max_def linorder_not_le order_less_imp_le)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2365
apply(simp add:min_def max_def linorder_not_le order_less_imp_le)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2366
apply(simp add:min_def max_def linorder_not_le order_less_imp_le)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2367
apply(rule_tac x=x and y=y in linorder_le_cases)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2368
apply(rule_tac x=x and y=z in linorder_le_cases)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2369
apply(rule_tac x=y and y=z in linorder_le_cases)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2370
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2371
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2372
apply(rule_tac x=y and y=z in linorder_le_cases)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2373
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2374
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2375
apply(rule_tac x=x and y=z in linorder_le_cases)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2376
apply(rule_tac x=y and y=z in linorder_le_cases)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2377
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2378
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2379
apply(rule_tac x=y and y=z in linorder_le_cases)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2380
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2381
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2382
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2383
apply(rule_tac x=x and y=y in linorder_le_cases)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2384
apply(rule_tac x=x and y=z in linorder_le_cases)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2385
apply(rule_tac x=y and y=z in linorder_le_cases)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2386
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2387
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2388
apply(rule_tac x=y and y=z in linorder_le_cases)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2389
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2390
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2391
apply(rule_tac x=x and y=z in linorder_le_cases)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2392
apply(rule_tac x=y and y=z in linorder_le_cases)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2393
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2394
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2395
apply(rule_tac x=y and y=z in linorder_le_cases)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2396
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2397
apply(simp add:min_def max_def)
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2398
done
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2399
15402
97204f3b4705 REorganized Finite_Set
nipkow
parents: 15392
diff changeset
  2400
text{* Now we instantiate the recursion equations and declare them
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2401
simplification rules: *}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2402
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2403
declare
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2404
  fold1_singleton_def[OF Min_def, simp]
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2405
  ACIf.fold1_insert2_def[OF ACIf_min Min_def, simp]
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2406
  fold1_singleton_def[OF Max_def, simp]
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2407
  ACIf.fold1_insert2_def[OF ACIf_max Max_def, simp]
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2408
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2409
text{* Now we instantiate some @{text fold1} properties: *}
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2410
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2411
lemma Min_in [simp]:
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2412
  shows "finite A \<Longrightarrow> A \<noteq> {} \<Longrightarrow> Min A \<in> A"
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2413
using ACf.fold1_in[OF ACf_min]
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2414
by(fastsimp simp: Min_def min_def)
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2415
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2416
lemma Max_in [simp]:
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2417
  shows "finite A \<Longrightarrow> A \<noteq> {} \<Longrightarrow> Max A \<in> A"
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2418
using ACf.fold1_in[OF ACf_max]
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2419
by(fastsimp simp: Max_def max_def)
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2420
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2421
lemma Min_le [simp]: "\<lbrakk> finite A; A \<noteq> {}; x \<in> A \<rbrakk> \<Longrightarrow> Min A \<le> x"
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2422
by(simp add: Min_def ACIfSL.fold1_belowI[OF ACIfSL_min])
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15376
diff changeset
  2423
15484
2636ec211ec8 fold and fol1 changes
nipkow
parents: 15483
diff changeset
  2424
lemma Max_ge [simp]: "\<lbrakk> finite A; A \<noteq> {}; x \<in> A \<rbrakk> \<Longrightarrow> x \<le> Max A"
15497
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2425
by(simp add: Max_def ACIfSL.fold1_belowI[OF ACIfSL_max])
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2426
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2427
lemma Min_ge_iff[simp]:
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2428
  "\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> (x \<le> Min A) = (\<forall>a\<in>A. x \<le> a)"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2429
by(simp add: Min_def ACIfSL.below_fold1_iff[OF ACIfSL_min])
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2430
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2431
lemma Max_le_iff[simp]:
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2432
  "\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> (Max A \<le> x) = (\<forall>a\<in>A. a \<le> x)"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2433
by(simp add: Max_def ACIfSL.below_fold1_iff[OF ACIfSL_max])
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2434
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2435
lemma Min_le_iff:
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2436
  "\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> (Min A \<le> x) = (\<exists>a\<in>A. a \<le> x)"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2437
by(simp add: Min_def ACIfSLlin.fold1_below_iff[OF ACIfSLlin_min])
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2438
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2439
lemma Max_ge_iff:
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2440
  "\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> (x \<le> Max A) = (\<exists>a\<in>A. x \<le> a)"
53bca254719a Added semi-lattice locales and reorganized fold1 lemmas
nipkow
parents: 15487
diff changeset
  2441
by(simp add: Max_def ACIfSLlin.fold1_below_iff[OF ACIfSLlin_max])
12396
2298d5b8e530 renamed theory Finite to Finite_Set and converted;
wenzelm
parents:
diff changeset
  2442
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2443
lemma Min_le_Max:
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2444
  "\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> Min A \<le> Max A"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2445
by(simp add: Min_def Max_def Lattice.Inf_le_Sup[OF Lattice_min_max])
15504
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2446
(* FIXME
15500
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2447
lemma max_Min2_distrib:
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2448
  "\<lbrakk> finite A; A \<noteq> {}; finite B; B \<noteq> {} \<rbrakk> \<Longrightarrow>
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2449
  max (Min A) (Min B) = Min{ max a b |a b. a \<in> A \<and> b \<in> B}"
dd4ab096f082 Added Lattice locale
nipkow
parents: 15498
diff changeset
  2450
by(simp add: Min_def Max_def Lattice.sup_Inf2_distrib[OF Lattice_min_max])
15504
5bc81e50f2c5 *** empty log message ***
nipkow
parents: 15502
diff changeset
  2451
*)
15042
fa7d27ef7e59 added {0::nat..n(} = {..n(}
nipkow
parents: 15004
diff changeset
  2452
end