src/ZF/CardinalArith.ML
author lcp
Fri, 09 Sep 1994 11:57:49 +0200
changeset 596 cffb278ec83e
parent 571 0b03ce5b62f7
child 760 f0200e91b272
permissions -rw-r--r--
Per cent (%) now functions as comment character in tt box environment
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
     1
(*  Title: 	ZF/CardinalArith.ML
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
     2
    ID:         $Id$
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
     3
    Author: 	Lawrence C Paulson, Cambridge University Computer Laboratory
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
     4
    Copyright   1994  University of Cambridge
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
     5
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
     6
Cardinal arithmetic -- WITHOUT the Axiom of Choice
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
     7
*)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
     8
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
     9
open CardinalArith;
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    10
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    11
(*** Elementary properties ***)
467
92868dab2939 new cardinal arithmetic developments
lcp
parents: 437
diff changeset
    12
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    13
(*Use AC to discharge first premise*)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    14
goal CardinalArith.thy
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    15
    "!!A B. [| well_ord(B,r);  A lepoll B |] ==> |A| le |B|";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    16
by (res_inst_tac [("i","|A|"),("j","|B|")] Ord_linear_le 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    17
by (REPEAT_FIRST (ares_tac [Ord_cardinal, le_eqI]));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    18
by (rtac (eqpollI RS cardinal_cong) 1 THEN assume_tac 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    19
by (rtac lepoll_trans 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    20
by (rtac (well_ord_cardinal_eqpoll RS eqpoll_sym RS eqpoll_imp_lepoll) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    21
by (assume_tac 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    22
by (etac (le_imp_subset RS subset_imp_lepoll RS lepoll_trans) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    23
by (rtac eqpoll_imp_lepoll 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    24
by (rewtac lepoll_def);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    25
by (etac exE 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    26
by (rtac well_ord_cardinal_eqpoll 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    27
by (etac well_ord_rvimage 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    28
by (assume_tac 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    29
val well_ord_lepoll_imp_le = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    30
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    31
(*Each element of Fin(A) is equivalent to a natural number*)
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    32
goal CardinalArith.thy
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    33
    "!!X A. X: Fin(A) ==> EX n:nat. X eqpoll n";
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    34
by (eresolve_tac [Fin_induct] 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    35
by (fast_tac (ZF_cs addIs [eqpoll_refl, nat_0I]) 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    36
by (fast_tac (ZF_cs addSIs [cons_eqpoll_cong, 
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    37
			    rewrite_rule [succ_def] nat_succI] 
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    38
                            addSEs [mem_irrefl]) 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    39
val Fin_eqpoll = result();
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    40
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    41
(*** Cardinal addition ***)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    42
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    43
(** Cardinal addition is commutative **)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    44
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    45
goalw CardinalArith.thy [eqpoll_def] "A+B eqpoll B+A";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    46
by (rtac exI 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    47
by (res_inst_tac [("c", "case(Inr, Inl)"), ("d", "case(Inr, Inl)")] 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    48
    lam_bijective 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    49
by (safe_tac (ZF_cs addSEs [sumE]));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    50
by (ALLGOALS (asm_simp_tac case_ss));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    51
val sum_commute_eqpoll = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    52
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    53
goalw CardinalArith.thy [cadd_def] "i |+| j = j |+| i";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    54
by (rtac (sum_commute_eqpoll RS cardinal_cong) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    55
val cadd_commute = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    56
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    57
(** Cardinal addition is associative **)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    58
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    59
goalw CardinalArith.thy [eqpoll_def] "(A+B)+C eqpoll A+(B+C)";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    60
by (rtac exI 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    61
by (res_inst_tac [("c", "case(case(Inl, %y.Inr(Inl(y))), %y. Inr(Inr(y)))"),
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    62
		  ("d", "case(%x.Inl(Inl(x)), case(%x.Inl(Inr(x)), Inr))")] 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    63
    lam_bijective 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    64
by (ALLGOALS (asm_simp_tac (case_ss setloop etac sumE)));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    65
val sum_assoc_eqpoll = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    66
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    67
(*Unconditional version requires AC*)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    68
goalw CardinalArith.thy [cadd_def]
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    69
    "!!i j k. [| well_ord(i,ri); well_ord(j,rj); well_ord(k,rk) |] ==>	\
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    70
\             (i |+| j) |+| k = i |+| (j |+| k)";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    71
by (rtac cardinal_cong 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    72
br ([well_ord_cardinal_eqpoll, eqpoll_refl] MRS sum_eqpoll_cong RS
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    73
    eqpoll_trans) 1;
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    74
by (rtac (sum_assoc_eqpoll RS eqpoll_trans) 2);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    75
br ([eqpoll_refl, well_ord_cardinal_eqpoll] MRS sum_eqpoll_cong RS
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    76
    eqpoll_sym) 2;
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    77
by (REPEAT (ares_tac [well_ord_radd] 1));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    78
val well_ord_cadd_assoc = result();
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    79
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    80
(** 0 is the identity for addition **)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    81
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    82
goalw CardinalArith.thy [eqpoll_def] "0+A eqpoll A";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    83
by (rtac exI 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    84
by (res_inst_tac [("c", "case(%x.x, %y.y)"), ("d", "Inr")] 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    85
    lam_bijective 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    86
by (ALLGOALS (asm_simp_tac (case_ss setloop eresolve_tac [sumE,emptyE])));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    87
val sum_0_eqpoll = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    88
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
    89
goalw CardinalArith.thy [cadd_def] "!!K. Card(K) ==> 0 |+| K = K";
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    90
by (asm_simp_tac (ZF_ss addsimps [sum_0_eqpoll RS cardinal_cong, 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    91
				  Card_cardinal_eq]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    92
val cadd_0 = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    93
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    94
(** Addition of finite cardinals is "ordinary" addition **)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    95
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    96
goalw CardinalArith.thy [eqpoll_def] "succ(A)+B eqpoll succ(A+B)";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    97
by (rtac exI 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    98
by (res_inst_tac [("c", "%z.if(z=Inl(A),A+B,z)"), 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
    99
		  ("d", "%z.if(z=A+B,Inl(A),z)")] 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   100
    lam_bijective 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   101
by (ALLGOALS
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   102
    (asm_simp_tac (case_ss addsimps [succI2, mem_imp_not_eq]
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   103
		           setloop eresolve_tac [sumE,succE])));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   104
val sum_succ_eqpoll = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   105
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   106
(*Pulling the  succ(...)  outside the |...| requires m, n: nat  *)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   107
(*Unconditional version requires AC*)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   108
goalw CardinalArith.thy [cadd_def]
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   109
    "!!m n. [| Ord(m);  Ord(n) |] ==> succ(m) |+| n = |succ(m |+| n)|";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   110
by (rtac (sum_succ_eqpoll RS cardinal_cong RS trans) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   111
by (rtac (succ_eqpoll_cong RS cardinal_cong) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   112
by (rtac (well_ord_cardinal_eqpoll RS eqpoll_sym) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   113
by (REPEAT (ares_tac [well_ord_radd, well_ord_Memrel] 1));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   114
val cadd_succ_lemma = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   115
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   116
val [mnat,nnat] = goal CardinalArith.thy
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   117
    "[| m: nat;  n: nat |] ==> m |+| n = m#+n";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   118
by (cut_facts_tac [nnat] 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   119
by (nat_ind_tac "m" [mnat] 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   120
by (asm_simp_tac (arith_ss addsimps [nat_into_Card RS cadd_0]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   121
by (asm_simp_tac (arith_ss addsimps [nat_into_Ord, cadd_succ_lemma,
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   122
				     nat_into_Card RS Card_cardinal_eq]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   123
val nat_cadd_eq_add = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   124
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   125
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   126
(*** Cardinal multiplication ***)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   127
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   128
(** Cardinal multiplication is commutative **)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   129
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   130
(*Easier to prove the two directions separately*)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   131
goalw CardinalArith.thy [eqpoll_def] "A*B eqpoll B*A";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   132
by (rtac exI 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   133
by (res_inst_tac [("c", "split(%x y.<y,x>)"), ("d", "split(%x y.<y,x>)")] 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   134
    lam_bijective 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   135
by (safe_tac ZF_cs);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   136
by (ALLGOALS (asm_simp_tac ZF_ss));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   137
val prod_commute_eqpoll = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   138
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   139
goalw CardinalArith.thy [cmult_def] "i |*| j = j |*| i";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   140
by (rtac (prod_commute_eqpoll RS cardinal_cong) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   141
val cmult_commute = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   142
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   143
(** Cardinal multiplication is associative **)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   144
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   145
goalw CardinalArith.thy [eqpoll_def] "(A*B)*C eqpoll A*(B*C)";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   146
by (rtac exI 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   147
by (res_inst_tac [("c", "split(%w z. split(%x y. <x,<y,z>>, w))"),
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   148
		  ("d", "split(%x.   split(%y z. <<x,y>, z>))")] 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   149
    lam_bijective 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   150
by (safe_tac ZF_cs);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   151
by (ALLGOALS (asm_simp_tac ZF_ss));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   152
val prod_assoc_eqpoll = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   153
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   154
(*Unconditional version requires AC*)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   155
goalw CardinalArith.thy [cmult_def]
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   156
    "!!i j k. [| well_ord(i,ri); well_ord(j,rj); well_ord(k,rk) |] ==>	\
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   157
\             (i |*| j) |*| k = i |*| (j |*| k)";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   158
by (rtac cardinal_cong 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   159
br ([well_ord_cardinal_eqpoll, eqpoll_refl] MRS prod_eqpoll_cong RS
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   160
    eqpoll_trans) 1;
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   161
by (rtac (prod_assoc_eqpoll RS eqpoll_trans) 2);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   162
br ([eqpoll_refl, well_ord_cardinal_eqpoll] MRS prod_eqpoll_cong RS
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   163
    eqpoll_sym) 2;
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   164
by (REPEAT (ares_tac [well_ord_rmult] 1));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   165
val well_ord_cmult_assoc = result();
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   166
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   167
(** Cardinal multiplication distributes over addition **)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   168
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   169
goalw CardinalArith.thy [eqpoll_def] "(A+B)*C eqpoll (A*C)+(B*C)";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   170
by (rtac exI 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   171
by (res_inst_tac
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   172
    [("c", "split(%x z. case(%y.Inl(<y,z>), %y.Inr(<y,z>), x))"),
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   173
     ("d", "case(split(%x y.<Inl(x),y>), split(%x y.<Inr(x),y>))")] 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   174
    lam_bijective 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   175
by (safe_tac (ZF_cs addSEs [sumE]));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   176
by (ALLGOALS (asm_simp_tac case_ss));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   177
val sum_prod_distrib_eqpoll = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   178
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   179
goalw CardinalArith.thy [lepoll_def, inj_def] "A lepoll A*A";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   180
by (res_inst_tac [("x", "lam x:A. <x,x>")] exI 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   181
by (simp_tac (ZF_ss addsimps [lam_type]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   182
val prod_square_lepoll = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   183
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   184
goalw CardinalArith.thy [cmult_def] "!!K. Card(K) ==> K le K |*| K";
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   185
by (rtac le_trans 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   186
by (rtac well_ord_lepoll_imp_le 2);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   187
by (rtac prod_square_lepoll 3);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   188
by (REPEAT (ares_tac [well_ord_rmult, well_ord_Memrel, Card_is_Ord] 2));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   189
by (asm_simp_tac (ZF_ss addsimps [le_refl, Card_is_Ord, Card_cardinal_eq]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   190
val cmult_square_le = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   191
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   192
(** Multiplication by 0 yields 0 **)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   193
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   194
goalw CardinalArith.thy [eqpoll_def] "0*A eqpoll 0";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   195
by (rtac exI 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   196
by (rtac lam_bijective 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   197
by (safe_tac ZF_cs);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   198
val prod_0_eqpoll = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   199
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   200
goalw CardinalArith.thy [cmult_def] "0 |*| i = 0";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   201
by (asm_simp_tac (ZF_ss addsimps [prod_0_eqpoll RS cardinal_cong, 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   202
				  Card_0 RS Card_cardinal_eq]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   203
val cmult_0 = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   204
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   205
(** 1 is the identity for multiplication **)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   206
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   207
goalw CardinalArith.thy [eqpoll_def] "{x}*A eqpoll A";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   208
by (rtac exI 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   209
by (res_inst_tac [("c", "snd"), ("d", "%z.<x,z>")] lam_bijective 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   210
by (safe_tac ZF_cs);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   211
by (ALLGOALS (asm_simp_tac ZF_ss));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   212
val prod_singleton_eqpoll = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   213
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   214
goalw CardinalArith.thy [cmult_def, succ_def] "!!K. Card(K) ==> 1 |*| K = K";
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   215
by (asm_simp_tac (ZF_ss addsimps [prod_singleton_eqpoll RS cardinal_cong, 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   216
				  Card_cardinal_eq]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   217
val cmult_1 = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   218
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   219
(** Multiplication of finite cardinals is "ordinary" multiplication **)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   220
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   221
goalw CardinalArith.thy [eqpoll_def] "succ(A)*B eqpoll B + A*B";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   222
by (rtac exI 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   223
by (res_inst_tac [("c", "split(%x y. if(x=A, Inl(y), Inr(<x,y>)))"), 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   224
		  ("d", "case(%y. <A,y>, %z.z)")] 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   225
    lam_bijective 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   226
by (safe_tac (ZF_cs addSEs [sumE]));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   227
by (ALLGOALS
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   228
    (asm_simp_tac (case_ss addsimps [succI2, if_type, mem_imp_not_eq])));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   229
val prod_succ_eqpoll = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   230
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   231
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   232
(*Unconditional version requires AC*)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   233
goalw CardinalArith.thy [cmult_def, cadd_def]
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   234
    "!!m n. [| Ord(m);  Ord(n) |] ==> succ(m) |*| n = n |+| (m |*| n)";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   235
by (rtac (prod_succ_eqpoll RS cardinal_cong RS trans) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   236
by (rtac (cardinal_cong RS sym) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   237
by (rtac ([eqpoll_refl, well_ord_cardinal_eqpoll] MRS sum_eqpoll_cong) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   238
by (REPEAT (ares_tac [well_ord_rmult, well_ord_Memrel] 1));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   239
val cmult_succ_lemma = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   240
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   241
val [mnat,nnat] = goal CardinalArith.thy
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   242
    "[| m: nat;  n: nat |] ==> m |*| n = m#*n";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   243
by (cut_facts_tac [nnat] 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   244
by (nat_ind_tac "m" [mnat] 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   245
by (asm_simp_tac (arith_ss addsimps [cmult_0]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   246
by (asm_simp_tac (arith_ss addsimps [nat_into_Ord, cmult_succ_lemma,
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   247
				     nat_cadd_eq_add]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   248
val nat_cmult_eq_mult = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   249
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   250
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   251
(*** Infinite Cardinals are Limit Ordinals ***)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   252
571
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   253
(*This proof is modelled upon one assuming nat<=A, with injection
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   254
  lam z:cons(u,A). if(z=u, 0, if(z : nat, succ(z), z))  and inverse
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   255
  %y. if(y:nat, nat_case(u,%z.z,y), y).  If f: inj(nat,A) then
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   256
  range(f) behaves like the natural numbers.*)
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 488
diff changeset
   257
goalw CardinalArith.thy [lepoll_def]
571
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   258
    "!!i. nat lepoll A ==> cons(u,A) lepoll A";
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   259
by (etac exE 1);
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 488
diff changeset
   260
by (res_inst_tac [("x",
571
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   261
    "lam z:cons(u,A). if(z=u, f`0, 	\
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   262
\                        if(z: range(f), f`succ(converse(f)`z), z))")] exI 1);
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   263
by (res_inst_tac [("d", "%y. if(y: range(f), 	\
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   264
\                               nat_case(u, %z.f`z, converse(f)`y), y)")] 
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 488
diff changeset
   265
    lam_injective 1);
571
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   266
by (fast_tac (ZF_cs addSIs [if_type, nat_0I, nat_succI, apply_type]
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   267
                    addIs  [inj_is_fun, inj_converse_fun]) 1);
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 488
diff changeset
   268
by (asm_simp_tac 
571
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   269
    (ZF_ss addsimps [inj_is_fun RS apply_rangeI,
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   270
		     inj_converse_fun RS apply_rangeI,
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   271
		     inj_converse_fun RS apply_funtype,
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   272
		     left_inverse, right_inverse, nat_0I, nat_succI, 
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   273
		     nat_case_0, nat_case_succ]
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 488
diff changeset
   274
           setloop split_tac [expand_if]) 1);
571
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   275
val nat_cons_lepoll = result();
516
1957113f0d7d installation of new inductive/datatype sections
lcp
parents: 488
diff changeset
   276
571
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   277
goal CardinalArith.thy "!!i. nat lepoll A ==> cons(u,A) eqpoll A";
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   278
by (etac (nat_cons_lepoll RS eqpollI) 1);
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   279
by (rtac (subset_consI RS subset_imp_lepoll) 1);
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   280
val nat_cons_eqpoll = result();
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   281
571
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   282
(*Specialized version required below*)
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   283
goalw CardinalArith.thy [succ_def] "!!i. nat <= A ==> succ(A) eqpoll A";
0b03ce5b62f7 ZF/Cardinal: some results moved here from CardinalArith
lcp
parents: 523
diff changeset
   284
by (eresolve_tac [subset_imp_lepoll RS nat_cons_eqpoll] 1);
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   285
val nat_succ_eqpoll = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   286
488
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 484
diff changeset
   287
goalw CardinalArith.thy [InfCard_def] "InfCard(nat)";
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 484
diff changeset
   288
by (fast_tac (ZF_cs addIs [Card_nat, le_refl, Card_is_Ord]) 1);
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 484
diff changeset
   289
val InfCard_nat = result();
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 484
diff changeset
   290
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   291
goalw CardinalArith.thy [InfCard_def] "!!K. InfCard(K) ==> Card(K)";
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   292
by (etac conjunct1 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   293
val InfCard_is_Card = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   294
523
972119df615e ZF/CardinalArith/InfCard_Un: new
lcp
parents: 517
diff changeset
   295
goalw CardinalArith.thy [InfCard_def]
972119df615e ZF/CardinalArith/InfCard_Un: new
lcp
parents: 517
diff changeset
   296
    "!!K L. [| InfCard(K);  Card(L) |] ==> InfCard(K Un L)";
972119df615e ZF/CardinalArith/InfCard_Un: new
lcp
parents: 517
diff changeset
   297
by (asm_simp_tac (ZF_ss addsimps [Card_Un, Un_upper1_le RSN (2,le_trans), 
972119df615e ZF/CardinalArith/InfCard_Un: new
lcp
parents: 517
diff changeset
   298
				  Card_is_Ord]) 1);
972119df615e ZF/CardinalArith/InfCard_Un: new
lcp
parents: 517
diff changeset
   299
val InfCard_Un = result();
972119df615e ZF/CardinalArith/InfCard_Un: new
lcp
parents: 517
diff changeset
   300
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   301
(*Kunen's Lemma 10.11*)
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   302
goalw CardinalArith.thy [InfCard_def] "!!K. InfCard(K) ==> Limit(K)";
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   303
by (etac conjE 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   304
by (rtac (ltI RS non_succ_LimitI) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   305
by (etac ([asm_rl, nat_0I] MRS (le_imp_subset RS subsetD)) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   306
by (etac Card_is_Ord 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   307
by (safe_tac (ZF_cs addSDs [Limit_nat RS Limit_le_succD]));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   308
by (forward_tac [Card_is_Ord RS Ord_succD] 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   309
by (rewtac Card_def);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   310
by (res_inst_tac [("i", "succ(y)")] lt_irrefl 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   311
by (dtac (le_imp_subset RS nat_succ_eqpoll RS cardinal_cong) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   312
(*Tricky combination of substitutions; backtracking needed*)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   313
by (etac ssubst 1 THEN etac ssubst 1 THEN rtac Ord_cardinal_le 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   314
by (assume_tac 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   315
val InfCard_is_Limit = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   316
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   317
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   318
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   319
(*** An infinite cardinal equals its square (Kunen, Thm 10.12, page 29) ***)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   320
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   321
(*A general fact about ordermap*)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   322
goalw Cardinal.thy [eqpoll_def]
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   323
    "!!A. [| well_ord(A,r);  x:A |] ==> ordermap(A,r)`x eqpoll pred(A,x,r)";
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   324
by (rtac exI 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   325
by (asm_simp_tac (ZF_ss addsimps [ordermap_eq_image, well_ord_is_wf]) 1);
467
92868dab2939 new cardinal arithmetic developments
lcp
parents: 437
diff changeset
   326
by (etac (ordermap_bij RS bij_is_inj RS restrict_bij RS bij_converse_bij) 1);
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   327
by (rtac pred_subset 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   328
val ordermap_eqpoll_pred = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   329
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   330
(** Establishing the well-ordering **)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   331
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   332
goalw CardinalArith.thy [inj_def]
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   333
 "!!K. Ord(K) ==>	\
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   334
\ (lam z:K*K. split(%x y. <x Un y, <x, y>>, z)) : inj(K*K, K*K*K)";
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   335
by (safe_tac ZF_cs);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   336
by (fast_tac (ZF_cs addIs [lam_type, Un_least_lt RS ltD, ltI]
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   337
                    addSEs [split_type]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   338
by (asm_full_simp_tac ZF_ss 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   339
val csquare_lam_inj = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   340
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   341
goalw CardinalArith.thy [csquare_rel_def]
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   342
 "!!K. Ord(K) ==> well_ord(K*K, csquare_rel(K))";
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   343
by (rtac (csquare_lam_inj RS well_ord_rvimage) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   344
by (REPEAT (ares_tac [well_ord_rmult, well_ord_Memrel] 1));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   345
val well_ord_csquare = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   346
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   347
(** Characterising initial segments of the well-ordering **)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   348
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   349
goalw CardinalArith.thy [csquare_rel_def]
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   350
 "!!K. [| x<K;  y<K;  z<K |] ==> \
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   351
\      <<x,y>, <z,z>> : csquare_rel(K) --> x le z & y le z";
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   352
by (REPEAT (etac ltE 1));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   353
by (asm_simp_tac (ZF_ss addsimps [rvimage_iff, rmult_iff, Memrel_iff,
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   354
                                  Un_absorb, Un_least_mem_iff, ltD]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   355
by (safe_tac (ZF_cs addSEs [mem_irrefl] 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   356
                    addSIs [Un_upper1_le, Un_upper2_le]));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   357
by (ALLGOALS (asm_simp_tac (ZF_ss addsimps [lt_def, succI2, Ord_succ])));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   358
val csquareD_lemma = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   359
val csquareD = csquareD_lemma RS mp |> standard;
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   360
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   361
goalw CardinalArith.thy [pred_def]
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   362
 "!!K. z<K ==> pred(K*K, <z,z>, csquare_rel(K)) <= succ(z)*succ(z)";
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   363
by (safe_tac (lemmas_cs addSEs [SigmaE]));	(*avoids using succCI*)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   364
by (rtac (csquareD RS conjE) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   365
by (rewtac lt_def);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   366
by (assume_tac 4);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   367
by (ALLGOALS (fast_tac ZF_cs));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   368
val pred_csquare_subset = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   369
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   370
goalw CardinalArith.thy [csquare_rel_def]
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   371
 "!!K. [| x<z;  y<z;  z<K |] ==> \
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   372
\      <<x,y>, <z,z>> : csquare_rel(K)";
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   373
by (subgoals_tac ["x<K", "y<K"] 1);
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   374
by (REPEAT (eresolve_tac [asm_rl, lt_trans] 2));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   375
by (REPEAT (etac ltE 1));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   376
by (asm_simp_tac (ZF_ss addsimps [rvimage_iff, rmult_iff, Memrel_iff,
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   377
                                  Un_absorb, Un_least_mem_iff, ltD]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   378
val csquare_ltI = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   379
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   380
(*Part of the traditional proof.  UNUSED since it's harder to prove & apply *)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   381
goalw CardinalArith.thy [csquare_rel_def]
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   382
 "!!K. [| x le z;  y le z;  z<K |] ==> \
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   383
\      <<x,y>, <z,z>> : csquare_rel(K) | x=z & y=z";
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   384
by (subgoals_tac ["x<K", "y<K"] 1);
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   385
by (REPEAT (eresolve_tac [asm_rl, lt_trans1] 2));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   386
by (REPEAT (etac ltE 1));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   387
by (asm_simp_tac (ZF_ss addsimps [rvimage_iff, rmult_iff, Memrel_iff,
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   388
                                  Un_absorb, Un_least_mem_iff, ltD]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   389
by (REPEAT_FIRST (etac succE));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   390
by (ALLGOALS
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   391
    (asm_simp_tac (ZF_ss addsimps [subset_Un_iff RS iff_sym, 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   392
				   subset_Un_iff2 RS iff_sym, OrdmemD])));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   393
val csquare_or_eqI = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   394
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   395
(** The cardinality of initial segments **)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   396
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   397
goal CardinalArith.thy
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   398
    "!!K. [| InfCard(K);  x<K;  y<K;  z=succ(x Un y) |] ==> \
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   399
\         ordermap(K*K, csquare_rel(K)) ` <x,y> lepoll 		\
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   400
\         ordermap(K*K, csquare_rel(K)) ` <z,z>";
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   401
by (subgoals_tac ["z<K", "well_ord(K*K, csquare_rel(K))"] 1);
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   402
by (etac (InfCard_is_Card RS Card_is_Ord RS well_ord_csquare) 2);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   403
by (fast_tac (ZF_cs addSIs [Un_least_lt, InfCard_is_Limit, Limit_has_succ]) 2);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   404
by (rtac (OrdmemD RS subset_imp_lepoll) 1);
467
92868dab2939 new cardinal arithmetic developments
lcp
parents: 437
diff changeset
   405
by (res_inst_tac [("z1","z")] (csquare_ltI RS ordermap_mono) 1);
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   406
by (etac well_ord_is_wf 4);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   407
by (ALLGOALS 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   408
    (fast_tac (ZF_cs addSIs [Un_upper1_le, Un_upper2_le, Ord_ordermap] 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   409
                     addSEs [ltE])));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   410
val ordermap_z_lepoll = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   411
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   412
(*Kunen: "each <x,y>: K*K has no more than z*z predecessors..." (page 29) *)
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   413
goalw CardinalArith.thy [cmult_def]
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   414
  "!!K. [| InfCard(K);  x<K;  y<K;  z=succ(x Un y) |] ==> \
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   415
\       | ordermap(K*K, csquare_rel(K)) ` <x,y> | le  |succ(z)| |*| |succ(z)|";
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   416
by (rtac (well_ord_rmult RS well_ord_lepoll_imp_le) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   417
by (REPEAT (ares_tac [Ord_cardinal, well_ord_Memrel] 1));
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   418
by (subgoals_tac ["z<K"] 1);
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   419
by (fast_tac (ZF_cs addSIs [Un_least_lt, InfCard_is_Limit, 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   420
                            Limit_has_succ]) 2);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   421
by (rtac (ordermap_z_lepoll RS lepoll_trans) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   422
by (REPEAT_SOME assume_tac);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   423
by (rtac (ordermap_eqpoll_pred RS eqpoll_imp_lepoll RS lepoll_trans) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   424
by (etac (InfCard_is_Card RS Card_is_Ord RS well_ord_csquare) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   425
by (fast_tac (ZF_cs addIs [ltD]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   426
by (rtac (pred_csquare_subset RS subset_imp_lepoll RS lepoll_trans) 1 THEN
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   427
    assume_tac 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   428
by (REPEAT_FIRST (etac ltE));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   429
by (rtac (prod_eqpoll_cong RS eqpoll_sym RS eqpoll_imp_lepoll) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   430
by (REPEAT_FIRST (etac (Ord_succ RS Ord_cardinal_eqpoll)));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   431
val ordermap_csquare_le = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   432
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   433
(*Kunen: "... so the order type <= K" *)
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   434
goal CardinalArith.thy
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   435
    "!!K. [| InfCard(K);  ALL y:K. InfCard(y) --> y |*| y = y |]  ==>  \
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   436
\         ordertype(K*K, csquare_rel(K)) le K";
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   437
by (forward_tac [InfCard_is_Card RS Card_is_Ord] 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   438
by (rtac all_lt_imp_le 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   439
by (assume_tac 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   440
by (etac (well_ord_csquare RS Ord_ordertype) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   441
by (rtac Card_lt_imp_lt 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   442
by (etac InfCard_is_Card 3);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   443
by (etac ltE 2 THEN assume_tac 2);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   444
by (asm_full_simp_tac (ZF_ss addsimps [ordertype_unfold]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   445
by (safe_tac (ZF_cs addSEs [ltE]));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   446
by (subgoals_tac ["Ord(xb)", "Ord(y)"] 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   447
by (REPEAT (eresolve_tac [asm_rl, Ord_in_Ord] 2));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   448
by (rtac (ordermap_csquare_le RS lt_trans1) 1  THEN
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   449
    REPEAT (ares_tac [refl] 1 ORELSE etac ltI 1));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   450
by (res_inst_tac [("i","xb Un y"), ("j","nat")] Ord_linear2 1  THEN
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   451
    REPEAT (ares_tac [Ord_Un, Ord_nat] 1));
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   452
(*the finite case: xb Un y < nat *)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   453
by (res_inst_tac [("j", "nat")] lt_trans2 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   454
by (asm_full_simp_tac (FOL_ss addsimps [InfCard_def]) 2);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   455
by (asm_full_simp_tac
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   456
    (ZF_ss addsimps [lt_def, nat_cmult_eq_mult, nat_succI, mult_type,
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   457
		     nat_into_Card RS Card_cardinal_eq, Ord_nat]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   458
(*case nat le (xb Un y), equivalently InfCard(xb Un y)  *)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   459
by (asm_full_simp_tac
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   460
    (ZF_ss addsimps [le_imp_subset RS nat_succ_eqpoll RS cardinal_cong,
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   461
		     le_succ_iff, InfCard_def, Card_cardinal, Un_least_lt, 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   462
		     Ord_Un, ltI, nat_le_cardinal,
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   463
		     Ord_cardinal_le RS lt_trans1 RS ltD]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   464
val ordertype_csquare_le = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   465
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   466
(*This lemma can easily be generalized to premise well_ord(A*A,r) *)
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   467
goalw CardinalArith.thy [cmult_def]
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   468
    "!!K. Ord(K) ==> K |*| K  =  |ordertype(K*K, csquare_rel(K))|";
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   469
by (rtac cardinal_cong 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   470
by (rewtac eqpoll_def);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   471
by (rtac exI 1);
467
92868dab2939 new cardinal arithmetic developments
lcp
parents: 437
diff changeset
   472
by (etac (well_ord_csquare RS ordermap_bij) 1);
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   473
val csquare_eq_ordertype = result();
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   474
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   475
(*Main result: Kunen's Theorem 10.12*)
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   476
goal CardinalArith.thy "!!K. InfCard(K) ==> K |*| K = K";
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   477
by (forward_tac [InfCard_is_Card RS Card_is_Ord] 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   478
by (etac rev_mp 1);
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   479
by (trans_ind_tac "K" [] 1);
437
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   480
by (rtac impI 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   481
by (rtac le_anti_sym 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   482
by (etac (InfCard_is_Card RS cmult_square_le) 2);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   483
by (rtac (ordertype_csquare_le RSN (2, le_trans)) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   484
by (assume_tac 2);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   485
by (assume_tac 2);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   486
by (asm_simp_tac 
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   487
    (ZF_ss addsimps [csquare_eq_ordertype, Ord_cardinal_le,
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   488
                     well_ord_csquare RS Ord_ordertype]) 1);
435875e4b21d modifications for cardinal arithmetic
lcp
parents:
diff changeset
   489
val InfCard_csquare_eq = result();
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   490
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   491
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   492
goal CardinalArith.thy
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   493
    "!!A. [| well_ord(A,r);  InfCard(|A|) |] ==> A*A eqpoll A";
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   494
by (resolve_tac [prod_eqpoll_cong RS eqpoll_trans] 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   495
by (REPEAT (etac (well_ord_cardinal_eqpoll RS eqpoll_sym) 1));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   496
by (resolve_tac [well_ord_cardinal_eqE] 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   497
by (REPEAT (ares_tac [Ord_cardinal, well_ord_rmult, well_ord_Memrel] 1));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   498
by (asm_simp_tac (ZF_ss addsimps [symmetric cmult_def, InfCard_csquare_eq]) 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   499
val well_ord_InfCard_square_eq = result();
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   500
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   501
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   502
(*** For every cardinal number there exists a greater one
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   503
     [Kunen's Theorem 10.16, which would be trivial using AC] ***)
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   504
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   505
goalw CardinalArith.thy [jump_cardinal_def] "Ord(jump_cardinal(K))";
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   506
by (rtac (Ord_is_Transset RSN (2,OrdI)) 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   507
by (safe_tac (ZF_cs addSIs [Ord_ordertype]));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   508
bw Transset_def;
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   509
by (safe_tac ZF_cs);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   510
by (rtac (ordertype_subset RS exE) 1 THEN REPEAT (assume_tac 1));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   511
by (resolve_tac [UN_I] 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   512
by (resolve_tac [ReplaceI] 2);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   513
by (ALLGOALS (fast_tac (ZF_cs addSEs [well_ord_subset])));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   514
val Ord_jump_cardinal = result();
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   515
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   516
(*Allows selective unfolding.  Less work than deriving intro/elim rules*)
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   517
goalw CardinalArith.thy [jump_cardinal_def]
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   518
     "i : jump_cardinal(K) <->   \
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   519
\         (EX r X. r <= K*K & X <= K & well_ord(X,r) & i = ordertype(X,r))";
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   520
by (fast_tac subset_cs 1);	(*It's vital to avoid reasoning about <=*)
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   521
val jump_cardinal_iff = result();
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   522
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   523
(*The easy part of Theorem 10.16: jump_cardinal(K) exceeds K*)
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   524
goal CardinalArith.thy "!!K. Ord(K) ==> K < jump_cardinal(K)";
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   525
by (resolve_tac [Ord_jump_cardinal RSN (2,ltI)] 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   526
by (resolve_tac [jump_cardinal_iff RS iffD2] 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   527
by (REPEAT_FIRST (ares_tac [exI, conjI, well_ord_Memrel]));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   528
by (resolve_tac [subset_refl] 2);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   529
by (asm_simp_tac (ZF_ss addsimps [Memrel_def, subset_iff]) 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   530
by (asm_simp_tac (ZF_ss addsimps [ordertype_Memrel]) 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   531
val K_lt_jump_cardinal = result();
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   532
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   533
(*The proof by contradiction: the bijection f yields a wellordering of X
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   534
  whose ordertype is jump_cardinal(K).  *)
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   535
goal CardinalArith.thy
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   536
    "!!K. [| well_ord(X,r);  r <= K * K;  X <= K;	\
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   537
\            f : bij(ordertype(X,r), jump_cardinal(K)) 	\
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   538
\	  |] ==> jump_cardinal(K) : jump_cardinal(K)";
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   539
by (subgoal_tac "f O ordermap(X,r): bij(X, jump_cardinal(K))" 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   540
by (REPEAT (ares_tac [comp_bij, ordermap_bij] 2));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   541
by (resolve_tac [jump_cardinal_iff RS iffD2] 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   542
by (REPEAT_FIRST (resolve_tac [exI, conjI]));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   543
by (rtac ([rvimage_type, Sigma_mono] MRS subset_trans) 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   544
by (REPEAT (assume_tac 1));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   545
by (etac (bij_is_inj RS well_ord_rvimage) 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   546
by (rtac (Ord_jump_cardinal RS well_ord_Memrel) 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   547
by (asm_simp_tac
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   548
    (ZF_ss addsimps [well_ord_Memrel RSN (2, bij_ordertype_vimage), 
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   549
		     ordertype_Memrel, Ord_jump_cardinal]) 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   550
val Card_jump_cardinal_lemma = result();
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   551
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   552
(*The hard part of Theorem 10.16: jump_cardinal(K) is itself a cardinal*)
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   553
goal CardinalArith.thy "Card(jump_cardinal(K))";
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   554
by (rtac (Ord_jump_cardinal RS CardI) 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   555
by (rewrite_goals_tac [eqpoll_def]);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   556
by (safe_tac (ZF_cs addSDs [ltD, jump_cardinal_iff RS iffD1]));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   557
by (REPEAT (ares_tac [Card_jump_cardinal_lemma RS mem_irrefl] 1));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   558
val Card_jump_cardinal = result();
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   559
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   560
(*** Basic properties of successor cardinals ***)
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   561
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   562
goalw CardinalArith.thy [csucc_def]
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   563
    "!!K. Ord(K) ==> Card(csucc(K)) & K < csucc(K)";
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   564
by (rtac LeastI 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   565
by (REPEAT (ares_tac [conjI, Card_jump_cardinal, K_lt_jump_cardinal,
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   566
		      Ord_jump_cardinal] 1));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   567
val csucc_basic = result();
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   568
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   569
val Card_csucc = csucc_basic RS conjunct1 |> standard;
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   570
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   571
val lt_csucc = csucc_basic RS conjunct2 |> standard;
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   572
517
a9f93400f307 for infinite datatypes with arbitrary index sets
lcp
parents: 516
diff changeset
   573
goal CardinalArith.thy "!!K. Ord(K) ==> 0 < csucc(K)";
a9f93400f307 for infinite datatypes with arbitrary index sets
lcp
parents: 516
diff changeset
   574
by (resolve_tac [[Ord_0_le, lt_csucc] MRS lt_trans1] 1);
a9f93400f307 for infinite datatypes with arbitrary index sets
lcp
parents: 516
diff changeset
   575
by (REPEAT (assume_tac 1));
a9f93400f307 for infinite datatypes with arbitrary index sets
lcp
parents: 516
diff changeset
   576
val Ord_0_lt_csucc = result();
a9f93400f307 for infinite datatypes with arbitrary index sets
lcp
parents: 516
diff changeset
   577
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   578
goalw CardinalArith.thy [csucc_def]
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   579
    "!!K L. [| Card(L);  K<L |] ==> csucc(K) le L";
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   580
by (rtac Least_le 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   581
by (REPEAT (ares_tac [conjI, Card_is_Ord] 1));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   582
val csucc_le = result();
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   583
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   584
goal CardinalArith.thy
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   585
    "!!K. [| Ord(i); Card(K) |] ==> i < csucc(K) <-> |i| le K";
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   586
by (resolve_tac [iffI] 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   587
by (resolve_tac [Card_lt_imp_lt] 2);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   588
by (eresolve_tac [lt_trans1] 2);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   589
by (REPEAT (ares_tac [lt_csucc, Card_csucc, Card_is_Ord] 2));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   590
by (resolve_tac [notI RS not_lt_imp_le] 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   591
by (resolve_tac [Card_cardinal RS csucc_le RS lt_trans1 RS lt_irrefl] 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   592
by (assume_tac 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   593
by (resolve_tac [Ord_cardinal_le RS lt_trans1] 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   594
by (REPEAT (ares_tac [Ord_cardinal] 1
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   595
     ORELSE eresolve_tac [ltE, Card_is_Ord] 1));
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   596
val lt_csucc_iff = result();
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   597
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   598
goal CardinalArith.thy
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   599
    "!!K' K. [| Card(K'); Card(K) |] ==> K' < csucc(K) <-> K' le K";
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   600
by (asm_simp_tac 
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   601
    (ZF_ss addsimps [lt_csucc_iff, Card_cardinal_eq, Card_is_Ord]) 1);
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents: 467
diff changeset
   602
val Card_lt_csucc_iff = result();
488
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 484
diff changeset
   603
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 484
diff changeset
   604
goalw CardinalArith.thy [InfCard_def]
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 484
diff changeset
   605
    "!!K. InfCard(K) ==> InfCard(csucc(K))";
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 484
diff changeset
   606
by (asm_simp_tac (ZF_ss addsimps [Card_csucc, Card_is_Ord, 
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 484
diff changeset
   607
				  lt_csucc RS leI RSN (2,le_trans)]) 1);
52f7447d4f1b Addition of infinite branching datatypes
lcp
parents: 484
diff changeset
   608
val InfCard_csucc = result();
517
a9f93400f307 for infinite datatypes with arbitrary index sets
lcp
parents: 516
diff changeset
   609
a9f93400f307 for infinite datatypes with arbitrary index sets
lcp
parents: 516
diff changeset
   610
val Limit_csucc = InfCard_csucc RS InfCard_is_Limit |> standard;