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