src/ZF/Zorn.ML
author paulson
Mon, 28 Dec 1998 16:59:28 +0100
changeset 6053 8a1059aa01f0
parent 5774 c675d4a8c26a
child 6065 3b4a29166f26
permissions -rw-r--r--
new inductive, datatype and primrec packages, etc.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1079
diff changeset
     1
(*  Title:      ZF/Zorn.ML
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
     2
    ID:         $Id$
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1079
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
     4
    Copyright   1994  University of Cambridge
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
     5
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
     6
Proofs from the paper
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
     7
    Abrial & Laffitte, 
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
     8
    Towards the Mechanization of the Proofs of Some 
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
     9
    Classical Theorems of Set Theory. 
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    10
*)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    11
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    12
(*** Section 1.  Mathematical Preamble ***)
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    13
5774
paulson
parents: 5666
diff changeset
    14
Goal "(ALL x:C. x<=A | B<=x) ==> Union(C)<=A | B<=Union(C)";
2925
b0ae2e13db93 Using Blast_tac
paulson
parents: 2493
diff changeset
    15
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
    16
qed "Union_lemma0";
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    17
5774
paulson
parents: 5666
diff changeset
    18
Goal "[| c:C; ALL x:C. A<=x | x<=B |] ==> A<=Inter(C) | Inter(C)<=B";
2925
b0ae2e13db93 Using Blast_tac
paulson
parents: 2493
diff changeset
    19
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
    20
qed "Inter_lemma0";
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    21
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    22
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    23
(*** Section 2.  The Transfinite Construction ***)
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    24
5666
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
    25
Goalw [increasing_def] "f: increasing(A) ==> f: Pow(A)->Pow(A)";
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
    26
by (etac CollectD1 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
    27
qed "increasingD1";
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    28
5666
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
    29
Goalw [increasing_def] "[| f: increasing(A); x<=A |] ==> x <= f`x";
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    30
by (eresolve_tac [CollectD2 RS spec RS mp] 1);
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    31
by (assume_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
    32
qed "increasingD2";
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    33
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    34
(*Introduction rules*)
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    35
val [TFin_nextI, Pow_TFin_UnionI] = TFin.intrs;
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    36
val TFin_UnionI = PowI RS Pow_TFin_UnionI;
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    37
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    38
val TFin_is_subset = TFin.dom_subset RS subsetD RS PowD;
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    39
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    40
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    41
(** Structural induction on TFin(S,next) **)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    42
5321
f8848433d240 got rid of some goal thy commands
paulson
parents: 5268
diff changeset
    43
val major::prems = Goal
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    44
  "[| n: TFin(S,next);  \
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    45
\     !!x. [| x : TFin(S,next);  P(x);  next: increasing(S) |] ==> P(next`x); \
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    46
\     !!Y. [| Y <= TFin(S,next);  ALL y:Y. P(y) |] ==> P(Union(Y)) \
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    47
\  |] ==> P(n)";
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 485
diff changeset
    48
by (rtac (major RS TFin.induct) 1);
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
    49
by (ALLGOALS (fast_tac (claset() addIs prems)));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
    50
qed "TFin_induct";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    51
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    52
(*Perform induction on n, then prove the major premise using prems. *)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    53
fun TFin_ind_tac a prems i = 
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    54
    EVERY [res_inst_tac [("n",a)] TFin_induct i,
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1079
diff changeset
    55
           rename_last_tac a ["1"] (i+1),
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1079
diff changeset
    56
           rename_last_tac a ["2"] (i+2),
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1079
diff changeset
    57
           ares_tac prems i];
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    58
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    59
(*** Section 3.  Some Properties of the Transfinite Construction ***)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    60
803
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 760
diff changeset
    61
bind_thm ("increasing_trans", 
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1079
diff changeset
    62
          TFin_is_subset RSN (3, increasingD2 RSN (2,subset_trans)));
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    63
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    64
(*Lemma 1 of section 3.1*)
5321
f8848433d240 got rid of some goal thy commands
paulson
parents: 5268
diff changeset
    65
Goal "[| n: TFin(S,next);  m: TFin(S,next);  \
f8848433d240 got rid of some goal thy commands
paulson
parents: 5268
diff changeset
    66
\        ALL x: TFin(S,next) . x<=m --> x=m | next`x<=m \
f8848433d240 got rid of some goal thy commands
paulson
parents: 5268
diff changeset
    67
\     |] ==> n<=m | next`m<=n";
f8848433d240 got rid of some goal thy commands
paulson
parents: 5268
diff changeset
    68
by (etac TFin_induct 1);
2925
b0ae2e13db93 Using Blast_tac
paulson
parents: 2493
diff changeset
    69
by (etac Union_lemma0 2);               (*or just Blast_tac*)
2929
4eefc6c22d41 Changed some fast_tac to blast_tac
paulson
parents: 2925
diff changeset
    70
by (blast_tac (subset_cs addIs [increasing_trans]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
    71
qed "TFin_linear_lemma1";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    72
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    73
(*Lemma 2 of section 3.2.  Interesting in its own right!
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    74
  Requires next: increasing(S) in the second induction step. *)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    75
val [major,ninc] = goal Zorn.thy
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    76
    "[| m: TFin(S,next);  next: increasing(S) \
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    77
\    |] ==> ALL n: TFin(S,next) . n<=m --> n=m | next`n<=m";
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
    78
by (rtac (major RS TFin_induct) 1);
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
    79
by (rtac (impI RS ballI) 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    80
(*case split using TFin_linear_lemma1*)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    81
by (res_inst_tac [("n1","n"), ("m1","x")] 
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    82
    (TFin_linear_lemma1 RS disjE) 1  THEN  REPEAT (assume_tac 1));
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    83
by (dres_inst_tac [("x","n")] bspec 1 THEN assume_tac 1);
2929
4eefc6c22d41 Changed some fast_tac to blast_tac
paulson
parents: 2925
diff changeset
    84
by (blast_tac (subset_cs addIs [increasing_trans]) 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    85
by (REPEAT (ares_tac [disjI1,equalityI] 1));
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    86
(*second induction step*)
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
    87
by (rtac (impI RS ballI) 1);
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
    88
by (rtac (Union_lemma0 RS disjE) 1);
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
    89
by (etac disjI2 3);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    90
by (REPEAT (ares_tac [disjI1,equalityI] 2));
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
    91
by (rtac ballI 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    92
by (ball_tac 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    93
by (set_mp_tac 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    94
by (res_inst_tac [("n1","n"), ("m1","x")] 
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    95
    (TFin_linear_lemma1 RS disjE) 1  THEN  REPEAT (assume_tac 1));
2929
4eefc6c22d41 Changed some fast_tac to blast_tac
paulson
parents: 2925
diff changeset
    96
by (blast_tac subset_cs 1);
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
    97
by (rtac (ninc RS increasingD2 RS subset_trans RS disjI1) 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
    98
by (REPEAT (ares_tac [TFin_is_subset] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
    99
qed "TFin_linear_lemma2";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   100
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   101
(*a more convenient form for Lemma 2*)
5666
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   102
Goal "[| n<=m;  m: TFin(S,next);  n: TFin(S,next);  next: increasing(S) |] \
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   103
\     ==> n=m | next`n<=m";
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   104
by (rtac (TFin_linear_lemma2 RS bspec RS mp) 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   105
by (REPEAT (assume_tac 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   106
qed "TFin_subsetD";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   107
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   108
(*Consequences from section 3.3 -- Property 3.2, the ordering is total*)
5666
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   109
Goal "[| m: TFin(S,next);  n: TFin(S,next);  next: increasing(S) |] \
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   110
\     ==> n<=m | m<=n";
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   111
by (rtac (TFin_linear_lemma2 RSN (3,TFin_linear_lemma1) RS disjE) 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   112
by (REPEAT (assume_tac 1) THEN etac disjI2 1);
2929
4eefc6c22d41 Changed some fast_tac to blast_tac
paulson
parents: 2925
diff changeset
   113
by (blast_tac (subset_cs addIs [increasingD2 RS subset_trans, 
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1079
diff changeset
   114
                               TFin_is_subset]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   115
qed "TFin_subset_linear";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   116
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   117
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   118
(*Lemma 3 of section 3.3*)
5321
f8848433d240 got rid of some goal thy commands
paulson
parents: 5268
diff changeset
   119
Goal "[| n: TFin(S,next);  m: TFin(S,next);  m = next`m |] ==> n<=m";
f8848433d240 got rid of some goal thy commands
paulson
parents: 5268
diff changeset
   120
by (etac TFin_induct 1);
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   121
by (dtac TFin_subsetD 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   122
by (REPEAT (assume_tac 1));
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   123
by (fast_tac (claset() addEs [ssubst]) 1);
2929
4eefc6c22d41 Changed some fast_tac to blast_tac
paulson
parents: 2925
diff changeset
   124
by (blast_tac (subset_cs addIs [TFin_is_subset]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   125
qed "equal_next_upper";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   126
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   127
(*Property 3.3 of section 3.3*)
5666
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   128
Goal "[| m: TFin(S,next);  next: increasing(S) |]  \
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   129
\     ==> m = next`m <-> m = Union(TFin(S,next))";
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   130
by (rtac iffI 1);
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   131
by (rtac (Union_upper RS equalityI) 1);
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   132
by (rtac (equal_next_upper RS Union_least) 2);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   133
by (REPEAT (assume_tac 1));
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   134
by (etac ssubst 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   135
by (rtac (increasingD2 RS equalityI) 1 THEN assume_tac 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   136
by (ALLGOALS
2929
4eefc6c22d41 Changed some fast_tac to blast_tac
paulson
parents: 2925
diff changeset
   137
    (blast_tac (subset_cs addIs [TFin_UnionI, TFin_nextI, TFin_is_subset])));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   138
qed "equal_next_Union";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   139
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   140
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   141
(*** Section 4.  Hausdorff's Theorem: every set contains a maximal chain ***)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   142
(*** NB: We assume the partial ordering is <=, the subset relation! **)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   143
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   144
(** Defining the "next" operation for Hausdorff's Theorem **)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   145
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4152
diff changeset
   146
Goalw [chain_def] "chain(A) <= Pow(A)";
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   147
by (rtac Collect_subset 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   148
qed "chain_subset_Pow";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   149
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4152
diff changeset
   150
Goalw [super_def] "super(A,c) <= chain(A)";
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   151
by (rtac Collect_subset 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   152
qed "super_subset_chain";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   153
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4152
diff changeset
   154
Goalw [maxchain_def] "maxchain(A) <= chain(A)";
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   155
by (rtac Collect_subset 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   156
qed "maxchain_subset_chain";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   157
5666
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   158
Goal "[| ch : (PROD X:Pow(chain(S)) - {0}. X);  \
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   159
\        X : chain(S);  X ~: maxchain(S) |]     \
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   160
\     ==> ch ` super(S,X) : super(S,X)";
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   161
by (etac apply_type 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   162
by (rewrite_goals_tac [super_def, maxchain_def]);
2925
b0ae2e13db93 Using Blast_tac
paulson
parents: 2493
diff changeset
   163
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   164
qed "choice_super";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   165
5147
825877190618 More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5137
diff changeset
   166
Goal "[| ch : (PROD X:Pow(chain(S)) - {0}. X);      \
5666
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   167
\            X : chain(S);  X ~: maxchain(S) |]     \
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   168
\     ==> ch ` super(S,X) ~= X";
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   169
by (rtac notI 1);
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   170
by (dtac choice_super 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   171
by (assume_tac 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   172
by (assume_tac 1);
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   173
by (asm_full_simp_tac (simpset() addsimps [super_def]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   174
qed "choice_not_equals";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   175
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   176
(*This justifies Definition 4.4*)
5147
825877190618 More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5137
diff changeset
   177
Goal "ch: (PROD X: Pow(chain(S))-{0}. X) ==>        \
5666
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   178
\     EX next: increasing(S). ALL X: Pow(S).       \
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   179
\                  next`X = if(X: chain(S)-maxchain(S), ch`super(S,X), X)";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   180
by (rtac bexI 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   181
by (rtac ballI 1);
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   182
by (rtac beta 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   183
by (assume_tac 1);
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   184
by (rewtac increasing_def);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   185
by (rtac CollectI 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   186
by (rtac lam_type 1);
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5116
diff changeset
   187
by (Asm_simp_tac 1);
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   188
by (fast_tac (claset() addSIs [super_subset_chain RS subsetD,
5666
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   189
			       chain_subset_Pow RS subsetD,
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   190
			       choice_super]) 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   191
(*Now, verify that it increases*)
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5116
diff changeset
   192
by (asm_simp_tac (simpset() addsimps [Pow_iff, subset_refl]) 1);
4152
451104c223e2 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   193
by Safe_tac;
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   194
by (dtac choice_super 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   195
by (REPEAT (assume_tac 1));
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   196
by (rewtac super_def);
2925
b0ae2e13db93 Using Blast_tac
paulson
parents: 2493
diff changeset
   197
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   198
qed "Hausdorff_next_exists";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   199
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   200
(*Lemma 4*)
5268
59ef39008514 even more tidying of Goal commands
paulson
parents: 5265
diff changeset
   201
Goal " [| c: TFin(S,next);                              \
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1079
diff changeset
   202
\         ch: (PROD X: Pow(chain(S))-{0}. X);           \
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1079
diff changeset
   203
\         next: increasing(S);                          \
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1079
diff changeset
   204
\         ALL X: Pow(S). next`X =       \
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1079
diff changeset
   205
\                         if(X: chain(S)-maxchain(S), ch`super(S,X), X) \
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   206
\      |] ==> c: chain(S)";
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   207
by (etac TFin_induct 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   208
by (asm_simp_tac 
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   209
    (simpset() addsimps [chain_subset_Pow RS subsetD, 
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5116
diff changeset
   210
			 choice_super RS (super_subset_chain RS subsetD)]) 1);
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   211
by (rewtac chain_def);
2925
b0ae2e13db93 Using Blast_tac
paulson
parents: 2493
diff changeset
   212
by (rtac CollectI 1 THEN Blast_tac 1);
4152
451104c223e2 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   213
by Safe_tac;
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   214
by (res_inst_tac  [("m1","B"), ("n1","Ba")] (TFin_subset_linear RS disjE) 1);
5469
024d887eae50 fixed PROOF FAILED
paulson
parents: 5321
diff changeset
   215
by (ALLGOALS Fast_tac);   (*Blast_tac's slow*)
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   216
qed "TFin_chain_lemma4";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   217
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4152
diff changeset
   218
Goal "EX c. c : maxchain(S)";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   219
by (rtac (AC_Pi_Pow RS exE) 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   220
by (rtac (Hausdorff_next_exists RS bexE) 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   221
by (assume_tac 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   222
by (rename_tac "ch next" 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   223
by (subgoal_tac "Union(TFin(S,next)) : chain(S)" 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   224
by (REPEAT (ares_tac [TFin_chain_lemma4, subset_refl RS TFin_UnionI] 2));
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   225
by (res_inst_tac [("x", "Union(TFin(S,next))")] exI 1);
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   226
by (rtac classical 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   227
by (subgoal_tac "next ` Union(TFin(S,next)) = Union(TFin(S,next))" 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   228
by (resolve_tac [equal_next_Union RS iffD2 RS sym] 2);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   229
by (resolve_tac [subset_refl RS TFin_UnionI] 2);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   230
by (assume_tac 2);
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   231
by (rtac refl 2);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   232
by (asm_full_simp_tac 
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   233
    (simpset() addsimps [subset_refl RS TFin_UnionI RS
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5116
diff changeset
   234
			 (TFin.dom_subset RS subsetD)]) 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   235
by (eresolve_tac [choice_not_equals RS notE] 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   236
by (REPEAT (assume_tac 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   237
qed "Hausdorff";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   238
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   239
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   240
(*** Section 5.  Zorn's Lemma: if all chains in S have upper bounds in S 
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   241
                               then S contains a maximal element ***)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   242
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   243
(*Used in the proof of Zorn's Lemma*)
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4152
diff changeset
   244
Goalw [chain_def]
5147
825877190618 More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5137
diff changeset
   245
    "[| c: chain(A);  z: A;  ALL x:c. x<=z |] ==> cons(z,c) : chain(A)";
2925
b0ae2e13db93 Using Blast_tac
paulson
parents: 2493
diff changeset
   246
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   247
qed "chain_extend";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   248
5147
825877190618 More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5137
diff changeset
   249
Goal "ALL c: chain(S). Union(c) : S ==> EX y:S. ALL z:S. y<=z --> y=z";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   250
by (resolve_tac [Hausdorff RS exE] 1);
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   251
by (asm_full_simp_tac (simpset() addsimps [maxchain_def]) 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   252
by (rename_tac "c" 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   253
by (res_inst_tac [("x", "Union(c)")] bexI 1);
5469
024d887eae50 fixed PROOF FAILED
paulson
parents: 5321
diff changeset
   254
by (Blast_tac 2);
4152
451104c223e2 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   255
by Safe_tac;
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   256
by (rename_tac "z" 1);
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   257
by (rtac classical 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   258
by (subgoal_tac "cons(z,c): super(S,c)" 1);
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   259
by (blast_tac (claset() addEs [equalityE]) 1);
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   260
by (rewtac super_def);
4152
451104c223e2 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   261
by Safe_tac;
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   262
by (fast_tac (claset() addEs [chain_extend]) 1);
5666
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   263
by (fast_tac (claset() addEs [equalityE]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   264
qed "Zorn";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   265
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   266
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   267
(*** Section 6.  Zermelo's Theorem: every set can be well-ordered ***)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   268
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   269
(*Lemma 5*)
5666
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   270
Goal "[| n: TFin(S,next);  Z <= TFin(S,next);  z:Z;  ~ Inter(Z) : Z |]  \
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   271
\     ==> ALL m:Z. n<=m";
5321
f8848433d240 got rid of some goal thy commands
paulson
parents: 5268
diff changeset
   272
by (etac TFin_induct 1);
2925
b0ae2e13db93 Using Blast_tac
paulson
parents: 2493
diff changeset
   273
by (Blast_tac 2);                  (*second induction step is easy*)
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   274
by (rtac ballI 1);
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   275
by (rtac (bspec RS TFin_subsetD RS disjE) 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   276
by (REPEAT_SOME (eresolve_tac [asm_rl,subsetD]));
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   277
by (subgoal_tac "x = Inter(Z)" 1);
2925
b0ae2e13db93 Using Blast_tac
paulson
parents: 2493
diff changeset
   278
by (Blast_tac 1);
b0ae2e13db93 Using Blast_tac
paulson
parents: 2493
diff changeset
   279
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   280
qed "TFin_well_lemma5";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   281
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   282
(*Well-ordering of TFin(S,next)*)
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5116
diff changeset
   283
Goal "[| Z <= TFin(S,next);  z:Z |] ==> Inter(Z) : Z";
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   284
by (rtac classical 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   285
by (subgoal_tac "Z = {Union(TFin(S,next))}" 1);
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   286
by (asm_simp_tac (simpset() addsimps [Inter_singleton]) 1);
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   287
by (etac equal_singleton 1);
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   288
by (rtac (Union_upper RS equalityI) 1);
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   289
by (rtac (subset_refl RS TFin_UnionI RS TFin_well_lemma5 RS bspec) 2);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   290
by (REPEAT_SOME (eresolve_tac [asm_rl,subsetD]));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   291
qed "well_ord_TFin_lemma";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   292
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   293
(*This theorem just packages the previous result*)
5147
825877190618 More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5137
diff changeset
   294
Goal "next: increasing(S) ==> \
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   295
\         well_ord(TFin(S,next), Subset_rel(TFin(S,next)))";
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   296
by (rtac well_ordI 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   297
by (rewrite_goals_tac [Subset_rel_def, linear_def]);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   298
(*Prove the linearity goal first*)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   299
by (REPEAT (rtac ballI 2));
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   300
by (excluded_middle_tac "x=y" 2);
2925
b0ae2e13db93 Using Blast_tac
paulson
parents: 2493
diff changeset
   301
by (Blast_tac 3);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   302
(*The x~=y case remains*)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   303
by (res_inst_tac [("n1","x"), ("m1","y")] 
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   304
    (TFin_subset_linear RS disjE) 2  THEN  REPEAT (assume_tac 2));
2925
b0ae2e13db93 Using Blast_tac
paulson
parents: 2493
diff changeset
   305
by (Blast_tac 2);
b0ae2e13db93 Using Blast_tac
paulson
parents: 2493
diff changeset
   306
by (Blast_tac 2);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   307
(*Now prove the well_foundedness goal*)
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   308
by (rtac wf_onI 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   309
by (forward_tac [well_ord_TFin_lemma] 1 THEN assume_tac 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   310
by (dres_inst_tac [("x","Inter(Z)")] bspec 1 THEN assume_tac 1);
2925
b0ae2e13db93 Using Blast_tac
paulson
parents: 2493
diff changeset
   311
by (Blast_tac 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   312
qed "well_ord_TFin";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   313
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   314
(** Defining the "next" operation for Zermelo's Theorem **)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   315
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   316
(*This justifies Definition 6.1*)
5147
825877190618 More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5137
diff changeset
   317
Goal "ch: (PROD X: Pow(S)-{0}. X) ==>               \
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1079
diff changeset
   318
\          EX next: increasing(S). ALL X: Pow(S).       \
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   319
\                     next`X = if(X=S, S, cons(ch`(S-X), X))";
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   320
by (rtac bexI 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   321
by (rtac ballI 1);
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   322
by (rtac beta 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   323
by (assume_tac 1);
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   324
by (rewtac increasing_def);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   325
by (rtac CollectI 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   326
by (rtac lam_type 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   327
(*Verify that it increases*)
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   328
by (rtac allI 2);
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   329
by (rtac impI 2);
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5116
diff changeset
   330
by (asm_simp_tac (simpset() addsimps [Pow_iff, subset_consI, subset_refl]) 2);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   331
(*Type checking is surprisingly hard!*)
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5116
diff changeset
   332
by (asm_simp_tac
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5116
diff changeset
   333
    (simpset() addsimps [Pow_iff, cons_subset_iff, subset_refl]) 1);
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   334
by (blast_tac (claset() addSIs [choice_Diff RS DiffD1]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   335
qed "Zermelo_next_exists";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   336
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   337
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   338
(*The construction of the injection*)
5147
825877190618 More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5137
diff changeset
   339
Goal "[| ch: (PROD X: Pow(S)-{0}. X);                 \
5666
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   340
\        next: increasing(S);                         \
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   341
\        ALL X: Pow(S). next`X = if(X=S, S, cons(ch`(S-X), X)) |] \
822db50b3ec5 fixed some indenting; changed a VERY slow blast_tac to fast_tac
paulson
parents: 5469
diff changeset
   342
\     ==> (lam x:S. Union({y: TFin(S,next). x~: y}))       \
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   343
\              : inj(S, TFin(S,next) - {S})";
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   344
by (res_inst_tac [("d", "%y. ch`(S-y)")] lam_injective 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   345
by (rtac DiffI 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   346
by (resolve_tac [Collect_subset RS TFin_UnionI] 1);
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   347
by (blast_tac (claset() addSIs [Collect_subset RS TFin_UnionI]
2469
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 1461
diff changeset
   348
                      addEs [equalityE]) 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   349
by (subgoal_tac "x ~: Union({y: TFin(S,next). x~: y})" 1);
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   350
by (blast_tac (claset() addEs [equalityE]) 2);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   351
by (subgoal_tac "Union({y: TFin(S,next). x~: y}) ~= S" 1);
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   352
by (blast_tac (claset() addEs [equalityE]) 2);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   353
(*For proving x : next`Union(...);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   354
  Abrial & Laffitte's justification appears to be faulty.*)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   355
by (subgoal_tac "~ next ` Union({y: TFin(S,next). x~: y}) <= \
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   356
\                  Union({y: TFin(S,next). x~: y})" 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   357
by (asm_simp_tac 
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   358
    (simpset() delsimps [Union_iff]
2493
bdeb5024353a Removal of sum_cs and eq_cs
paulson
parents: 2469
diff changeset
   359
              addsimps [Collect_subset RS TFin_UnionI RS TFin_is_subset,
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1079
diff changeset
   360
                     Pow_iff, cons_subset_iff, subset_refl,
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5116
diff changeset
   361
                     choice_Diff RS DiffD2]) 2);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   362
by (subgoal_tac "x : next ` Union({y: TFin(S,next). x~: y})" 1);
2929
4eefc6c22d41 Changed some fast_tac to blast_tac
paulson
parents: 2925
diff changeset
   363
by (blast_tac (subset_cs addSIs [Collect_subset RS TFin_UnionI, TFin_nextI]) 2);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   364
(*End of the lemmas!*)
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   365
by (asm_full_simp_tac 
4091
771b1f6422a8 isatool fixclasimp;
wenzelm
parents: 2929
diff changeset
   366
    (simpset() addsimps [Collect_subset RS TFin_UnionI RS TFin_is_subset,
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5116
diff changeset
   367
                     Pow_iff, cons_subset_iff, subset_refl]) 1);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   368
by (REPEAT (eresolve_tac [asm_rl, consE, sym, notE] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   369
qed "choice_imp_injection";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   370
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   371
(*The wellordering theorem*)
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4152
diff changeset
   372
Goal "EX r. well_ord(S,r)";
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   373
by (rtac (AC_Pi_Pow RS exE) 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   374
by (rtac (Zermelo_next_exists RS bexE) 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   375
by (assume_tac 1);
804
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   376
by (rtac exI 1);
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   377
by (rtac well_ord_rvimage 1);
02430d273ebf ran expandshort script
lcp
parents: 803
diff changeset
   378
by (etac well_ord_TFin 2);
485
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   379
by (resolve_tac [choice_imp_injection RS inj_weaken_type] 1);
5e00a676a211 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
   380
by (REPEAT (ares_tac [Diff_subset] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 593
diff changeset
   381
qed "AC_well_ord";