src/ZF/Zorn.thy
author wenzelm
Mon, 16 Feb 2009 21:23:33 +0100
changeset 29758 7a3b5bbed313
parent 27704 5b1585b48952
child 32960 69916a850301
permissions -rw-r--r--
removed rudiments of glossary;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
     1
(*  Title:      ZF/Zorn.thy
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
     2
    ID:         $Id$
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
     4
    Copyright   1994  University of Cambridge
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
     5
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
     6
*)
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
     7
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
     8
header{*Zorn's Lemma*}
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
     9
26056
6a0801279f4c Made theory names in ZF disjoint from HOL theory names to allow loading both developments
krauss
parents: 24893
diff changeset
    10
theory Zorn imports OrderArith AC Inductive_ZF begin
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    11
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
    12
text{*Based upon the unpublished article ``Towards the Mechanization of the
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
    13
Proofs of Some Classical Theorems of Set Theory,'' by Abrial and Laffitte.*}
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
    14
24893
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 16417
diff changeset
    15
definition
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 16417
diff changeset
    16
  Subset_rel :: "i=>i"  where
13558
paulson
parents: 13356
diff changeset
    17
   "Subset_rel(A) == {z \<in> A*A . \<exists>x y. z=<x,y> & x<=y & x\<noteq>y}"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    18
24893
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 16417
diff changeset
    19
definition
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 16417
diff changeset
    20
  chain      :: "i=>i"  where
13558
paulson
parents: 13356
diff changeset
    21
   "chain(A)      == {F \<in> Pow(A). \<forall>X\<in>F. \<forall>Y\<in>F. X<=Y | Y<=X}"
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    22
24893
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 16417
diff changeset
    23
definition
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 16417
diff changeset
    24
  super      :: "[i,i]=>i"  where
14653
0848ab6fe5fc constdefs: proper order;
wenzelm
parents: 14171
diff changeset
    25
   "super(A,c)    == {d \<in> chain(A). c<=d & c\<noteq>d}"
0848ab6fe5fc constdefs: proper order;
wenzelm
parents: 14171
diff changeset
    26
24893
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 16417
diff changeset
    27
definition
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 16417
diff changeset
    28
  maxchain   :: "i=>i"  where
13558
paulson
parents: 13356
diff changeset
    29
   "maxchain(A)   == {c \<in> chain(A). super(A,c)=0}"
paulson
parents: 13356
diff changeset
    30
24893
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 16417
diff changeset
    31
definition
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 16417
diff changeset
    32
  increasing :: "i=>i"  where
13558
paulson
parents: 13356
diff changeset
    33
    "increasing(A) == {f \<in> Pow(A)->Pow(A). \<forall>x. x<=A --> x<=f`x}"
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    34
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
    35
13558
paulson
parents: 13356
diff changeset
    36
text{*Lemma for the inductive definition below*}
paulson
parents: 13356
diff changeset
    37
lemma Union_in_Pow: "Y \<in> Pow(Pow(A)) ==> Union(Y) \<in> Pow(A)"
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
    38
by blast
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
    39
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
    40
13558
paulson
parents: 13356
diff changeset
    41
text{*We could make the inductive definition conditional on
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
    42
    @{term "next \<in> increasing(S)"}
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    43
    but instead we make this a side-condition of an introduction rule.  Thus
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    44
    the induction rule lets us assume that condition!  Many inductive proofs
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
    45
    are therefore unconditional.*}
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    46
consts
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    47
  "TFin" :: "[i,i]=>i"
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    48
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    49
inductive
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    50
  domains       "TFin(S,next)" <= "Pow(S)"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    51
  intros
13558
paulson
parents: 13356
diff changeset
    52
    nextI:       "[| x \<in> TFin(S,next);  next \<in> increasing(S) |]
paulson
parents: 13356
diff changeset
    53
                  ==> next`x \<in> TFin(S,next)"
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    54
13558
paulson
parents: 13356
diff changeset
    55
    Pow_UnionI: "Y \<in> Pow(TFin(S,next)) ==> Union(Y) \<in> TFin(S,next)"
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    56
6053
8a1059aa01f0 new inductive, datatype and primrec packages, etc.
paulson
parents: 1478
diff changeset
    57
  monos         Pow_mono
8a1059aa01f0 new inductive, datatype and primrec packages, etc.
paulson
parents: 1478
diff changeset
    58
  con_defs      increasing_def
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    59
  type_intros   CollectD1 [THEN apply_funtype] Union_in_Pow
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    60
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    61
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
    62
subsection{*Mathematical Preamble *}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    63
13558
paulson
parents: 13356
diff changeset
    64
lemma Union_lemma0: "(\<forall>x\<in>C. x<=A | B<=x) ==> Union(C)<=A | B<=Union(C)"
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
    65
by blast
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    66
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
    67
lemma Inter_lemma0:
13558
paulson
parents: 13356
diff changeset
    68
     "[| c \<in> C; \<forall>x\<in>C. A<=x | x<=B |] ==> A <= Inter(C) | Inter(C) <= B"
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
    69
by blast
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    70
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    71
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
    72
subsection{*The Transfinite Construction *}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    73
13558
paulson
parents: 13356
diff changeset
    74
lemma increasingD1: "f \<in> increasing(A) ==> f \<in> Pow(A)->Pow(A)"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    75
apply (unfold increasing_def)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    76
apply (erule CollectD1)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    77
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    78
13558
paulson
parents: 13356
diff changeset
    79
lemma increasingD2: "[| f \<in> increasing(A); x<=A |] ==> x <= f`x"
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
    80
by (unfold increasing_def, blast)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    81
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    82
lemmas TFin_UnionI = PowI [THEN TFin.Pow_UnionI, standard]
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    83
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    84
lemmas TFin_is_subset = TFin.dom_subset [THEN subsetD, THEN PowD, standard]
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    85
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    86
13558
paulson
parents: 13356
diff changeset
    87
text{*Structural induction on @{term "TFin(S,next)"} *}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    88
lemma TFin_induct:
13558
paulson
parents: 13356
diff changeset
    89
  "[| n \<in> TFin(S,next);
paulson
parents: 13356
diff changeset
    90
      !!x. [| x \<in> TFin(S,next);  P(x);  next \<in> increasing(S) |] ==> P(next`x);
paulson
parents: 13356
diff changeset
    91
      !!Y. [| Y <= TFin(S,next);  \<forall>y\<in>Y. P(y) |] ==> P(Union(Y))
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    92
   |] ==> P(n)"
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
    93
by (erule TFin.induct, blast+)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    94
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    95
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
    96
subsection{*Some Properties of the Transfinite Construction *}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    97
13558
paulson
parents: 13356
diff changeset
    98
lemmas increasing_trans = subset_trans [OF _ increasingD2,
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
    99
                                        OF _ _ TFin_is_subset]
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   100
13558
paulson
parents: 13356
diff changeset
   101
text{*Lemma 1 of section 3.1*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   102
lemma TFin_linear_lemma1:
13558
paulson
parents: 13356
diff changeset
   103
     "[| n \<in> TFin(S,next);  m \<in> TFin(S,next);
paulson
parents: 13356
diff changeset
   104
         \<forall>x \<in> TFin(S,next) . x<=m --> x=m | next`x<=m |]
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   105
      ==> n<=m | next`m<=n"
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   106
apply (erule TFin_induct)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   107
apply (erule_tac [2] Union_lemma0) (*or just Blast_tac*)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   108
(*downgrade subsetI from intro! to intro*)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   109
apply (blast dest: increasing_trans)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   110
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   111
13558
paulson
parents: 13356
diff changeset
   112
text{*Lemma 2 of section 3.2.  Interesting in its own right!
paulson
parents: 13356
diff changeset
   113
  Requires @{term "next \<in> increasing(S)"} in the second induction step.*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   114
lemma TFin_linear_lemma2:
13558
paulson
parents: 13356
diff changeset
   115
    "[| m \<in> TFin(S,next);  next \<in> increasing(S) |]
paulson
parents: 13356
diff changeset
   116
     ==> \<forall>n \<in> TFin(S,next). n<=m --> n=m | next`n <= m"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   117
apply (erule TFin_induct)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   118
apply (rule impI [THEN ballI])
13558
paulson
parents: 13356
diff changeset
   119
txt{*case split using @{text TFin_linear_lemma1}*}
13784
b9f6154427a4 tidying (by script)
paulson
parents: 13558
diff changeset
   120
apply (rule_tac n1 = n and m1 = x in TFin_linear_lemma1 [THEN disjE],
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   121
       assumption+)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   122
apply (blast del: subsetI
13558
paulson
parents: 13356
diff changeset
   123
	     intro: increasing_trans subsetI, blast)
paulson
parents: 13356
diff changeset
   124
txt{*second induction step*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   125
apply (rule impI [THEN ballI])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   126
apply (rule Union_lemma0 [THEN disjE])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   127
apply (erule_tac [3] disjI2)
13558
paulson
parents: 13356
diff changeset
   128
prefer 2 apply blast
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   129
apply (rule ballI)
13558
paulson
parents: 13356
diff changeset
   130
apply (drule bspec, assumption)
paulson
parents: 13356
diff changeset
   131
apply (drule subsetD, assumption)
13784
b9f6154427a4 tidying (by script)
paulson
parents: 13558
diff changeset
   132
apply (rule_tac n1 = n and m1 = x in TFin_linear_lemma1 [THEN disjE],
13558
paulson
parents: 13356
diff changeset
   133
       assumption+, blast)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   134
apply (erule increasingD2 [THEN subset_trans, THEN disjI1])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   135
apply (blast dest: TFin_is_subset)+
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   136
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   137
13558
paulson
parents: 13356
diff changeset
   138
text{*a more convenient form for Lemma 2*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   139
lemma TFin_subsetD:
13558
paulson
parents: 13356
diff changeset
   140
     "[| n<=m;  m \<in> TFin(S,next);  n \<in> TFin(S,next);  next \<in> increasing(S) |]
paulson
parents: 13356
diff changeset
   141
      ==> n=m | next`n <= m"
paulson
parents: 13356
diff changeset
   142
by (blast dest: TFin_linear_lemma2 [rule_format])
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   143
13558
paulson
parents: 13356
diff changeset
   144
text{*Consequences from section 3.3 -- Property 3.2, the ordering is total*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   145
lemma TFin_subset_linear:
13558
paulson
parents: 13356
diff changeset
   146
     "[| m \<in> TFin(S,next);  n \<in> TFin(S,next);  next \<in> increasing(S) |]
paulson
parents: 13356
diff changeset
   147
      ==> n <= m | m<=n"
paulson
parents: 13356
diff changeset
   148
apply (rule disjE)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   149
apply (rule TFin_linear_lemma1 [OF _ _TFin_linear_lemma2])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   150
apply (assumption+, erule disjI2)
13558
paulson
parents: 13356
diff changeset
   151
apply (blast del: subsetI
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   152
             intro: subsetI increasingD2 [THEN subset_trans] TFin_is_subset)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   153
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   154
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   155
13558
paulson
parents: 13356
diff changeset
   156
text{*Lemma 3 of section 3.3*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   157
lemma equal_next_upper:
13558
paulson
parents: 13356
diff changeset
   158
     "[| n \<in> TFin(S,next);  m \<in> TFin(S,next);  m = next`m |] ==> n <= m"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   159
apply (erule TFin_induct)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   160
apply (drule TFin_subsetD)
13784
b9f6154427a4 tidying (by script)
paulson
parents: 13558
diff changeset
   161
apply (assumption+, force, blast)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   162
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   163
13558
paulson
parents: 13356
diff changeset
   164
text{*Property 3.3 of section 3.3*}
paulson
parents: 13356
diff changeset
   165
lemma equal_next_Union:
paulson
parents: 13356
diff changeset
   166
     "[| m \<in> TFin(S,next);  next \<in> increasing(S) |]
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   167
      ==> m = next`m <-> m = Union(TFin(S,next))"
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   168
apply (rule iffI)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   169
apply (rule Union_upper [THEN equalityI])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   170
apply (rule_tac [2] equal_next_upper [THEN Union_least])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   171
apply (assumption+)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   172
apply (erule ssubst)
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   173
apply (rule increasingD2 [THEN equalityI], assumption)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   174
apply (blast del: subsetI
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   175
	     intro: subsetI TFin_UnionI TFin.nextI TFin_is_subset)+
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   176
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   177
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   178
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
   179
subsection{*Hausdorff's Theorem: Every Set Contains a Maximal Chain*}
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
   180
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
   181
text{*NOTE: We assume the partial ordering is @{text "\<subseteq>"}, the subset
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
   182
relation!*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   183
13558
paulson
parents: 13356
diff changeset
   184
text{** Defining the "next" operation for Hausdorff's Theorem **}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   185
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   186
lemma chain_subset_Pow: "chain(A) <= Pow(A)"
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   187
apply (unfold chain_def)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   188
apply (rule Collect_subset)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   189
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   190
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   191
lemma super_subset_chain: "super(A,c) <= chain(A)"
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   192
apply (unfold super_def)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   193
apply (rule Collect_subset)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   194
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   195
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   196
lemma maxchain_subset_chain: "maxchain(A) <= chain(A)"
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   197
apply (unfold maxchain_def)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   198
apply (rule Collect_subset)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   199
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   200
13558
paulson
parents: 13356
diff changeset
   201
lemma choice_super:
14171
0cab06e3bbd0 Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents: 13784
diff changeset
   202
     "[| ch \<in> (\<Pi> X \<in> Pow(chain(S)) - {0}. X); X \<in> chain(S);  X \<notin> maxchain(S) |]
13558
paulson
parents: 13356
diff changeset
   203
      ==> ch ` super(S,X) \<in> super(S,X)"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   204
apply (erule apply_type)
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   205
apply (unfold super_def maxchain_def, blast)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   206
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   207
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   208
lemma choice_not_equals:
14171
0cab06e3bbd0 Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents: 13784
diff changeset
   209
     "[| ch \<in> (\<Pi> X \<in> Pow(chain(S)) - {0}. X); X \<in> chain(S);  X \<notin> maxchain(S) |]
13558
paulson
parents: 13356
diff changeset
   210
      ==> ch ` super(S,X) \<noteq> X"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   211
apply (rule notI)
13784
b9f6154427a4 tidying (by script)
paulson
parents: 13558
diff changeset
   212
apply (drule choice_super, assumption, assumption)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   213
apply (simp add: super_def)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   214
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   215
13558
paulson
parents: 13356
diff changeset
   216
text{*This justifies Definition 4.4*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   217
lemma Hausdorff_next_exists:
14171
0cab06e3bbd0 Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents: 13784
diff changeset
   218
     "ch \<in> (\<Pi> X \<in> Pow(chain(S))-{0}. X) ==>
13558
paulson
parents: 13356
diff changeset
   219
      \<exists>next \<in> increasing(S). \<forall>X \<in> Pow(S).
paulson
parents: 13356
diff changeset
   220
                   next`X = if(X \<in> chain(S)-maxchain(S), ch`super(S,X), X)"
paulson
parents: 13356
diff changeset
   221
apply (rule_tac x="\<lambda>X\<in>Pow(S).
paulson
parents: 13356
diff changeset
   222
                   if X \<in> chain(S) - maxchain(S) then ch ` super(S, X) else X"
13175
81082cfa5618 new definition of "apply" and new simprule "beta_if"
paulson
parents: 13134
diff changeset
   223
       in bexI)
13558
paulson
parents: 13356
diff changeset
   224
apply force
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   225
apply (unfold increasing_def)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   226
apply (rule CollectI)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   227
apply (rule lam_type)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   228
apply (simp (no_asm_simp))
13558
paulson
parents: 13356
diff changeset
   229
apply (blast dest: super_subset_chain [THEN subsetD] 
paulson
parents: 13356
diff changeset
   230
                   chain_subset_Pow [THEN subsetD] choice_super)
paulson
parents: 13356
diff changeset
   231
txt{*Now, verify that it increases*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   232
apply (simp (no_asm_simp) add: Pow_iff subset_refl)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   233
apply safe
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   234
apply (drule choice_super)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   235
apply (assumption+)
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   236
apply (simp add: super_def, blast)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   237
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   238
13558
paulson
parents: 13356
diff changeset
   239
text{*Lemma 4*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   240
lemma TFin_chain_lemma4:
13558
paulson
parents: 13356
diff changeset
   241
     "[| c \<in> TFin(S,next);
14171
0cab06e3bbd0 Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents: 13784
diff changeset
   242
         ch \<in> (\<Pi> X \<in> Pow(chain(S))-{0}. X);
13558
paulson
parents: 13356
diff changeset
   243
         next \<in> increasing(S);
paulson
parents: 13356
diff changeset
   244
         \<forall>X \<in> Pow(S). next`X =
paulson
parents: 13356
diff changeset
   245
                          if(X \<in> chain(S)-maxchain(S), ch`super(S,X), X) |]
paulson
parents: 13356
diff changeset
   246
     ==> c \<in> chain(S)"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   247
apply (erule TFin_induct)
13558
paulson
parents: 13356
diff changeset
   248
apply (simp (no_asm_simp) add: chain_subset_Pow [THEN subsetD, THEN PowD]
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   249
            choice_super [THEN super_subset_chain [THEN subsetD]])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   250
apply (unfold chain_def)
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   251
apply (rule CollectI, blast, safe)
13558
paulson
parents: 13356
diff changeset
   252
apply (rule_tac m1=B and n1=Ba in TFin_subset_linear [THEN disjE], fast+)
paulson
parents: 13356
diff changeset
   253
      txt{*@{text "Blast_tac's"} slow*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   254
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   255
13558
paulson
parents: 13356
diff changeset
   256
theorem Hausdorff: "\<exists>c. c \<in> maxchain(S)"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   257
apply (rule AC_Pi_Pow [THEN exE])
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   258
apply (rule Hausdorff_next_exists [THEN bexE], assumption)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   259
apply (rename_tac ch "next")
13558
paulson
parents: 13356
diff changeset
   260
apply (subgoal_tac "Union (TFin (S,next)) \<in> chain (S) ")
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   261
prefer 2
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   262
 apply (blast intro!: TFin_chain_lemma4 subset_refl [THEN TFin_UnionI])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   263
apply (rule_tac x = "Union (TFin (S,next))" in exI)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   264
apply (rule classical)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   265
apply (subgoal_tac "next ` Union (TFin (S,next)) = Union (TFin (S,next))")
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   266
apply (rule_tac [2] equal_next_Union [THEN iffD2, symmetric])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   267
apply (rule_tac [2] subset_refl [THEN TFin_UnionI])
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   268
prefer 2 apply assumption
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   269
apply (rule_tac [2] refl)
13558
paulson
parents: 13356
diff changeset
   270
apply (simp add: subset_refl [THEN TFin_UnionI,
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   271
                              THEN TFin.dom_subset [THEN subsetD, THEN PowD]])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   272
apply (erule choice_not_equals [THEN notE])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   273
apply (assumption+)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   274
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   275
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   276
13558
paulson
parents: 13356
diff changeset
   277
subsection{*Zorn's Lemma: If All Chains in S Have Upper Bounds In S,
paulson
parents: 13356
diff changeset
   278
       then S contains a Maximal Element*}
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
   279
13558
paulson
parents: 13356
diff changeset
   280
text{*Used in the proof of Zorn's Lemma*}
paulson
parents: 13356
diff changeset
   281
lemma chain_extend:
paulson
parents: 13356
diff changeset
   282
    "[| c \<in> chain(A);  z \<in> A;  \<forall>x \<in> c. x<=z |] ==> cons(z,c) \<in> chain(A)"
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
   283
by (unfold chain_def, blast)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   284
13558
paulson
parents: 13356
diff changeset
   285
lemma Zorn: "\<forall>c \<in> chain(S). Union(c) \<in> S ==> \<exists>y \<in> S. \<forall>z \<in> S. y<=z --> y=z"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   286
apply (rule Hausdorff [THEN exE])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   287
apply (simp add: maxchain_def)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   288
apply (rename_tac c)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   289
apply (rule_tac x = "Union (c)" in bexI)
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   290
prefer 2 apply blast
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   291
apply safe
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   292
apply (rename_tac z)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   293
apply (rule classical)
13558
paulson
parents: 13356
diff changeset
   294
apply (subgoal_tac "cons (z,c) \<in> super (S,c) ")
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   295
apply (blast elim: equalityE)
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   296
apply (unfold super_def, safe)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   297
apply (fast elim: chain_extend)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   298
apply (fast elim: equalityE)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   299
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   300
27704
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   301
text {* Alternative version of Zorn's Lemma *}
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   302
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   303
theorem Zorn2:
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   304
  "\<forall>c \<in> chain(S). \<exists>y \<in> S. \<forall>x \<in> c. x <= y ==> \<exists>y \<in> S. \<forall>z \<in> S. y<=z --> y=z"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   305
apply (cut_tac Hausdorff maxchain_subset_chain)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   306
apply (erule exE)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   307
apply (drule subsetD, assumption)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   308
apply (drule bspec, assumption, erule bexE)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   309
apply (rule_tac x = y in bexI)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   310
  prefer 2 apply assumption
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   311
apply clarify
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   312
apply rule apply assumption
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   313
apply rule
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   314
apply (rule ccontr)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   315
apply (frule_tac z=z in chain_extend)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   316
  apply (assumption, blast)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   317
apply (unfold maxchain_def super_def)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   318
apply (blast elim!: equalityCE)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   319
done
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   320
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   321
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13269
diff changeset
   322
subsection{*Zermelo's Theorem: Every Set can be Well-Ordered*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   323
13558
paulson
parents: 13356
diff changeset
   324
text{*Lemma 5*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   325
lemma TFin_well_lemma5:
13558
paulson
parents: 13356
diff changeset
   326
     "[| n \<in> TFin(S,next);  Z <= TFin(S,next);  z:Z;  ~ Inter(Z) \<in> Z |]
paulson
parents: 13356
diff changeset
   327
      ==> \<forall>m \<in> Z. n <= m"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   328
apply (erule TFin_induct)
13558
paulson
parents: 13356
diff changeset
   329
prefer 2 apply blast txt{*second induction step is easy*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   330
apply (rule ballI)
13558
paulson
parents: 13356
diff changeset
   331
apply (rule bspec [THEN TFin_subsetD, THEN disjE], auto)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   332
apply (subgoal_tac "m = Inter (Z) ")
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   333
apply blast+
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   334
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   335
13558
paulson
parents: 13356
diff changeset
   336
text{*Well-ordering of @{term "TFin(S,next)"} *}
paulson
parents: 13356
diff changeset
   337
lemma well_ord_TFin_lemma: "[| Z <= TFin(S,next);  z \<in> Z |] ==> Inter(Z) \<in> Z"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   338
apply (rule classical)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   339
apply (subgoal_tac "Z = {Union (TFin (S,next))}")
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   340
apply (simp (no_asm_simp) add: Inter_singleton)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   341
apply (erule equal_singleton)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   342
apply (rule Union_upper [THEN equalityI])
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   343
apply (rule_tac [2] subset_refl [THEN TFin_UnionI, THEN TFin_well_lemma5, THEN bspec], blast+)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   344
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   345
13558
paulson
parents: 13356
diff changeset
   346
text{*This theorem just packages the previous result*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   347
lemma well_ord_TFin:
13558
paulson
parents: 13356
diff changeset
   348
     "next \<in> increasing(S) 
paulson
parents: 13356
diff changeset
   349
      ==> well_ord(TFin(S,next), Subset_rel(TFin(S,next)))"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   350
apply (rule well_ordI)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   351
apply (unfold Subset_rel_def linear_def)
13558
paulson
parents: 13356
diff changeset
   352
txt{*Prove the well-foundedness goal*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   353
apply (rule wf_onI)
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   354
apply (frule well_ord_TFin_lemma, assumption)
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   355
apply (drule_tac x = "Inter (Z) " in bspec, assumption)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   356
apply blast
13558
paulson
parents: 13356
diff changeset
   357
txt{*Now prove the linearity goal*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   358
apply (intro ballI)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   359
apply (case_tac "x=y")
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   360
 apply blast
13558
paulson
parents: 13356
diff changeset
   361
txt{*The @{term "x\<noteq>y"} case remains*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   362
apply (rule_tac n1=x and m1=y in TFin_subset_linear [THEN disjE],
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   363
       assumption+, blast+)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   364
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   365
13558
paulson
parents: 13356
diff changeset
   366
text{** Defining the "next" operation for Zermelo's Theorem **}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   367
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   368
lemma choice_Diff:
14171
0cab06e3bbd0 Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents: 13784
diff changeset
   369
     "[| ch \<in> (\<Pi> X \<in> Pow(S) - {0}. X);  X \<subseteq> S;  X\<noteq>S |] ==> ch ` (S-X) \<in> S-X"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   370
apply (erule apply_type)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   371
apply (blast elim!: equalityE)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   372
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   373
13558
paulson
parents: 13356
diff changeset
   374
text{*This justifies Definition 6.1*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   375
lemma Zermelo_next_exists:
14171
0cab06e3bbd0 Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents: 13784
diff changeset
   376
     "ch \<in> (\<Pi> X \<in> Pow(S)-{0}. X) ==>
13558
paulson
parents: 13356
diff changeset
   377
           \<exists>next \<in> increasing(S). \<forall>X \<in> Pow(S).
13175
81082cfa5618 new definition of "apply" and new simprule "beta_if"
paulson
parents: 13134
diff changeset
   378
                      next`X = (if X=S then S else cons(ch`(S-X), X))"
81082cfa5618 new definition of "apply" and new simprule "beta_if"
paulson
parents: 13134
diff changeset
   379
apply (rule_tac x="\<lambda>X\<in>Pow(S). if X=S then S else cons(ch`(S-X), X)"
81082cfa5618 new definition of "apply" and new simprule "beta_if"
paulson
parents: 13134
diff changeset
   380
       in bexI)
13558
paulson
parents: 13356
diff changeset
   381
apply force
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   382
apply (unfold increasing_def)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   383
apply (rule CollectI)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   384
apply (rule lam_type)
13558
paulson
parents: 13356
diff changeset
   385
txt{*Type checking is surprisingly hard!*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   386
apply (simp (no_asm_simp) add: Pow_iff cons_subset_iff subset_refl)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   387
apply (blast intro!: choice_Diff [THEN DiffD1])
13558
paulson
parents: 13356
diff changeset
   388
txt{*Verify that it increases*}
paulson
parents: 13356
diff changeset
   389
apply (intro allI impI)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   390
apply (simp add: Pow_iff subset_consI subset_refl)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   391
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   392
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   393
13558
paulson
parents: 13356
diff changeset
   394
text{*The construction of the injection*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   395
lemma choice_imp_injection:
14171
0cab06e3bbd0 Extended the notion of letter and digit, such that now one may use greek,
skalberg
parents: 13784
diff changeset
   396
     "[| ch \<in> (\<Pi> X \<in> Pow(S)-{0}. X);
13558
paulson
parents: 13356
diff changeset
   397
         next \<in> increasing(S);
paulson
parents: 13356
diff changeset
   398
         \<forall>X \<in> Pow(S). next`X = if(X=S, S, cons(ch`(S-X), X)) |]
paulson
parents: 13356
diff changeset
   399
      ==> (\<lambda> x \<in> S. Union({y \<in> TFin(S,next). x \<notin> y}))
paulson
parents: 13356
diff changeset
   400
               \<in> inj(S, TFin(S,next) - {S})"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   401
apply (rule_tac d = "%y. ch` (S-y) " in lam_injective)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   402
apply (rule DiffI)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   403
apply (rule Collect_subset [THEN TFin_UnionI])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   404
apply (blast intro!: Collect_subset [THEN TFin_UnionI] elim: equalityE)
13558
paulson
parents: 13356
diff changeset
   405
apply (subgoal_tac "x \<notin> Union ({y \<in> TFin (S,next) . x \<notin> y}) ")
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   406
prefer 2 apply (blast elim: equalityE)
13558
paulson
parents: 13356
diff changeset
   407
apply (subgoal_tac "Union ({y \<in> TFin (S,next) . x \<notin> y}) \<noteq> S")
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   408
prefer 2 apply (blast elim: equalityE)
13558
paulson
parents: 13356
diff changeset
   409
txt{*For proving @{text "x \<in> next`Union(...)"}.
paulson
parents: 13356
diff changeset
   410
  Abrial and Laffitte's justification appears to be faulty.*}
paulson
parents: 13356
diff changeset
   411
apply (subgoal_tac "~ next ` Union ({y \<in> TFin (S,next) . x \<notin> y}) 
paulson
parents: 13356
diff changeset
   412
                    <= Union ({y \<in> TFin (S,next) . x \<notin> y}) ")
paulson
parents: 13356
diff changeset
   413
 prefer 2
paulson
parents: 13356
diff changeset
   414
 apply (simp del: Union_iff
paulson
parents: 13356
diff changeset
   415
	     add: Collect_subset [THEN TFin_UnionI, THEN TFin_is_subset]
paulson
parents: 13356
diff changeset
   416
	     Pow_iff cons_subset_iff subset_refl choice_Diff [THEN DiffD2])
paulson
parents: 13356
diff changeset
   417
apply (subgoal_tac "x \<in> next ` Union ({y \<in> TFin (S,next) . x \<notin> y}) ")
paulson
parents: 13356
diff changeset
   418
 prefer 2
paulson
parents: 13356
diff changeset
   419
 apply (blast intro!: Collect_subset [THEN TFin_UnionI] TFin.nextI)
paulson
parents: 13356
diff changeset
   420
txt{*End of the lemmas!*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   421
apply (simp add: Collect_subset [THEN TFin_UnionI, THEN TFin_is_subset])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   422
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   423
13558
paulson
parents: 13356
diff changeset
   424
text{*The wellordering theorem*}
paulson
parents: 13356
diff changeset
   425
theorem AC_well_ord: "\<exists>r. well_ord(S,r)"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   426
apply (rule AC_Pi_Pow [THEN exE])
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   427
apply (rule Zermelo_next_exists [THEN bexE], assumption)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   428
apply (rule exI)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   429
apply (rule well_ord_rvimage)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   430
apply (erule_tac [2] well_ord_TFin)
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13175
diff changeset
   431
apply (rule choice_imp_injection [THEN inj_weaken_type], blast+)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 6053
diff changeset
   432
done
13558
paulson
parents: 13356
diff changeset
   433
27704
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   434
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   435
subsection {* Zorn's Lemma for Partial Orders *}
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   436
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   437
text {* Reimported from HOL by Clemens Ballarin. *}
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   438
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   439
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   440
definition Chain :: "i => i" where
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   441
  "Chain(r) = {A : Pow(field(r)). ALL a:A. ALL b:A. <a, b> : r | <b, a> : r}"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   442
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   443
lemma mono_Chain:
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   444
  "r \<subseteq> s ==> Chain(r) \<subseteq> Chain(s)"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   445
  unfolding Chain_def
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   446
  by blast
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   447
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   448
theorem Zorn_po:
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   449
  assumes po: "Partial_order(r)"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   450
    and u: "ALL C:Chain(r). EX u:field(r). ALL a:C. <a, u> : r"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   451
  shows "EX m:field(r). ALL a:field(r). <m, a> : r --> a = m"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   452
proof -
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   453
  have "Preorder(r)" using po by (simp add: partial_order_on_def)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   454
  --{* Mirror r in the set of subsets below (wrt r) elements of A (?). *}
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   455
  let ?B = "lam x:field(r). r -`` {x}" let ?S = "?B `` field(r)"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   456
  have "ALL C:chain(?S). EX U:?S. ALL A:C. A \<subseteq> U"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   457
  proof (clarsimp simp: chain_def Subset_rel_def bex_image_simp)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   458
    fix C
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   459
    assume 1: "C \<subseteq> ?S" and 2: "ALL A:C. ALL B:C. A \<subseteq> B | B \<subseteq> A"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   460
    let ?A = "{x : field(r). EX M:C. M = ?B`x}"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   461
    have "C = ?B `` ?A" using 1
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   462
      apply (auto simp: image_def)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   463
      apply rule
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   464
      apply rule
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   465
      apply (drule subsetD) apply assumption
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   466
      apply (erule CollectE)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   467
      apply rule apply assumption
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   468
      apply (erule bexE)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   469
      apply rule prefer 2 apply assumption
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   470
      apply rule
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   471
      apply (erule lamE) apply simp
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   472
      apply assumption
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   473
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   474
      apply (thin_tac "C \<subseteq> ?X")
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   475
      apply (fast elim: lamE)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   476
      done
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   477
    have "?A : Chain(r)"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   478
    proof (simp add: Chain_def subsetI, intro conjI ballI impI)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   479
      fix a b
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   480
      assume "a : field(r)" "r -`` {a} : C" "b : field(r)" "r -`` {b} : C"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   481
      hence "r -`` {a} \<subseteq> r -`` {b} | r -`` {b} \<subseteq> r -`` {a}" using 2 by auto
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   482
      then show "<a, b> : r | <b, a> : r"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   483
	using `Preorder(r)` `a : field(r)` `b : field(r)`
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   484
	by (simp add: subset_vimage1_vimage1_iff)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   485
    qed
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   486
    then obtain u where uA: "u : field(r)" "ALL a:?A. <a, u> : r"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   487
      using u
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   488
      apply auto
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   489
      apply (drule bspec) apply assumption
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   490
      apply auto
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   491
      done
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   492
    have "ALL A:C. A \<subseteq> r -`` {u}"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   493
    proof (auto intro!: vimageI)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   494
      fix a B
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   495
      assume aB: "B : C" "a : B"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   496
      with 1 obtain x where "x : field(r)" "B = r -`` {x}"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   497
	apply -
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   498
	apply (drule subsetD) apply assumption
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   499
	apply (erule imageE)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   500
	apply (erule lamE)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   501
	apply simp
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   502
	done
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   503
      then show "<a, u> : r" using uA aB `Preorder(r)`
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   504
	by (auto simp: preorder_on_def refl_def) (blast dest: trans_onD)+
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   505
    qed
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   506
    then show "EX U:field(r). ALL A:C. A \<subseteq> r -`` {U}"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   507
      using `u : field(r)` ..
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   508
  qed
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   509
  from Zorn2 [OF this]
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   510
  obtain m B where "m : field(r)" "B = r -`` {m}"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   511
    "ALL x:field(r). B \<subseteq> r -`` {x} --> B = r -`` {x}"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   512
    by (auto elim!: lamE simp: ball_image_simp)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   513
  then have "ALL a:field(r). <m, a> : r --> a = m"
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   514
    using po `Preorder(r)` `m : field(r)`
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   515
    by (auto simp: subset_vimage1_vimage1_iff Partial_order_eq_vimage1_vimage1_iff)
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   516
  then show ?thesis using `m : field(r)` by blast
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   517
qed
5b1585b48952 Zorn's Lemma for partial orders.
ballarin
parents: 26056
diff changeset
   518
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
   519
end