src/ZF/Cardinal_AC.thy
author paulson
Thu, 15 Mar 2012 17:38:05 +0000
changeset 46954 d8b3412cdb99
parent 46821 ff6b0c1087f2
child 46963 67da5904300a
permissions -rw-r--r--
beautification and structured proofs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 484
diff changeset
     1
(*  Title:      ZF/Cardinal_AC.thy
2b8c2a7547ab expanded tabs
clasohm
parents: 484
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
     3
    Copyright   1994  University of Cambridge
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
     4
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
     5
These results help justify infinite-branching datatypes
484
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
     6
*)
70b789956bd3 Axiom of choice, cardinality results, etc.
lcp
parents:
diff changeset
     7
13328
703de709a64b better document preparation
paulson
parents: 13269
diff changeset
     8
header{*Cardinal Arithmetic Using AC*}
703de709a64b better document preparation
paulson
parents: 13269
diff changeset
     9
16417
9bc16273c2d4 migrated theory headers to new format
haftmann
parents: 14046
diff changeset
    10
theory Cardinal_AC imports CardinalArith Zorn begin
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    11
13356
c9cfe1638bf2 improved presentation markup
paulson
parents: 13328
diff changeset
    12
subsection{*Strengthened Forms of Existing Theorems on Cardinals*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    13
46954
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    14
lemma cardinal_eqpoll: "|A| \<approx> A"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    15
apply (rule AC_well_ord [THEN exE])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    16
apply (erule well_ord_cardinal_eqpoll)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    17
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    18
14046
6616e6c53d48 updating ZF-UNITY with Sidi's new material
paulson
parents: 13784
diff changeset
    19
text{*The theorem @{term "||A|| = |A|"} *}
45602
2a858377c3d2 eliminated obsolete "standard";
wenzelm
parents: 39159
diff changeset
    20
lemmas cardinal_idem = cardinal_eqpoll [THEN cardinal_cong, simp]
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    21
46954
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    22
lemma cardinal_eqE: "|X| = |Y| ==> X \<approx> Y"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    23
apply (rule AC_well_ord [THEN exE])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    24
apply (rule AC_well_ord [THEN exE])
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13134
diff changeset
    25
apply (rule well_ord_cardinal_eqE, assumption+)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    26
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    27
46954
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    28
lemma cardinal_eqpoll_iff: "|X| = |Y| \<longleftrightarrow> X \<approx> Y"
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13134
diff changeset
    29
by (blast intro: cardinal_cong cardinal_eqE)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    30
13615
449a70d88b38 Numerous cosmetic changes, prompted by the new simplifier
paulson
parents: 13356
diff changeset
    31
lemma cardinal_disjoint_Un:
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
    32
     "[| |A|=|B|;  |C|=|D|;  A \<inter> C = 0;  B \<inter> D = 0 |]
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
    33
      ==> |A \<union> C| = |B \<union> D|"
13615
449a70d88b38 Numerous cosmetic changes, prompted by the new simplifier
paulson
parents: 13356
diff changeset
    34
by (simp add: cardinal_eqpoll_iff eqpoll_disjoint_Un)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    35
46954
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    36
lemma lepoll_imp_Card_le: "A \<lesssim> B ==> |A| \<le> |B|"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    37
apply (rule AC_well_ord [THEN exE])
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13134
diff changeset
    38
apply (erule well_ord_lepoll_imp_Card_le, assumption)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    39
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    40
46821
ff6b0c1087f2 Using mathematical notation for <-> and cardinal arithmetic
paulson
parents: 46820
diff changeset
    41
lemma cadd_assoc: "(i \<oplus> j) \<oplus> k = i \<oplus> (j \<oplus> k)"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    42
apply (rule AC_well_ord [THEN exE])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    43
apply (rule AC_well_ord [THEN exE])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    44
apply (rule AC_well_ord [THEN exE])
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13134
diff changeset
    45
apply (rule well_ord_cadd_assoc, assumption+)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    46
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    47
46821
ff6b0c1087f2 Using mathematical notation for <-> and cardinal arithmetic
paulson
parents: 46820
diff changeset
    48
lemma cmult_assoc: "(i \<otimes> j) \<otimes> k = i \<otimes> (j \<otimes> k)"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    49
apply (rule AC_well_ord [THEN exE])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    50
apply (rule AC_well_ord [THEN exE])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    51
apply (rule AC_well_ord [THEN exE])
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13134
diff changeset
    52
apply (rule well_ord_cmult_assoc, assumption+)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    53
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    54
46821
ff6b0c1087f2 Using mathematical notation for <-> and cardinal arithmetic
paulson
parents: 46820
diff changeset
    55
lemma cadd_cmult_distrib: "(i \<oplus> j) \<otimes> k = (i \<otimes> k) \<oplus> (j \<otimes> k)"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    56
apply (rule AC_well_ord [THEN exE])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    57
apply (rule AC_well_ord [THEN exE])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    58
apply (rule AC_well_ord [THEN exE])
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13134
diff changeset
    59
apply (rule well_ord_cadd_cmult_distrib, assumption+)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    60
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    61
46954
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    62
lemma InfCard_square_eq: "InfCard(|A|) ==> A*A \<approx> A"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    63
apply (rule AC_well_ord [THEN exE])
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13134
diff changeset
    64
apply (erule well_ord_InfCard_square_eq, assumption)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    65
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    66
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    67
14046
6616e6c53d48 updating ZF-UNITY with Sidi's new material
paulson
parents: 13784
diff changeset
    68
subsection {*The relationship between cardinality and le-pollence*}
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    69
46954
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    70
lemma Card_le_imp_lepoll:
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    71
  assumes "|A| \<le> |B|" shows "A \<lesssim> B"
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    72
proof -
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    73
  have "A \<approx> |A|" 
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    74
    by (rule cardinal_eqpoll [THEN eqpoll_sym])
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    75
  also have "... \<lesssim> |B|"
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    76
    by (rule le_imp_subset [THEN subset_imp_lepoll]) (rule assms)
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    77
  also have "... \<approx> B" 
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    78
    by (rule cardinal_eqpoll)
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    79
  finally show ?thesis .
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    80
qed
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    81
46954
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    82
lemma le_Card_iff: "Card(K) ==> |A| \<le> K \<longleftrightarrow> A \<lesssim> K"
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
    83
apply (erule Card_cardinal_eq [THEN subst], rule iffI,
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13134
diff changeset
    84
       erule Card_le_imp_lepoll)
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
    85
apply (erule lepoll_imp_Card_le)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    86
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
    87
46954
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    88
lemma cardinal_0_iff_0 [simp]: "|A| = 0 \<longleftrightarrow> A = 0"
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
    89
apply auto
14046
6616e6c53d48 updating ZF-UNITY with Sidi's new material
paulson
parents: 13784
diff changeset
    90
apply (drule cardinal_0 [THEN ssubst])
6616e6c53d48 updating ZF-UNITY with Sidi's new material
paulson
parents: 13784
diff changeset
    91
apply (blast intro: eqpoll_0_iff [THEN iffD1] cardinal_eqpoll_iff [THEN iffD1])
6616e6c53d48 updating ZF-UNITY with Sidi's new material
paulson
parents: 13784
diff changeset
    92
done
6616e6c53d48 updating ZF-UNITY with Sidi's new material
paulson
parents: 13784
diff changeset
    93
46954
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    94
lemma cardinal_lt_iff_lesspoll:
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    95
  assumes i: "Ord(i)" shows "i < |A| \<longleftrightarrow> i \<prec> A"
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    96
proof
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    97
  assume "i < |A|"
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    98
  hence  "i \<prec> |A|" 
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
    99
    by (blast intro: lt_Card_imp_lesspoll Card_cardinal) 
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   100
  also have "...  \<approx> A" 
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   101
    by (rule cardinal_eqpoll)
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   102
  finally show "i \<prec> A" .
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   103
next
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   104
  assume "i \<prec> A"
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   105
  also have "...  \<approx> |A|" 
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   106
    by (blast intro: cardinal_eqpoll eqpoll_sym) 
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   107
  finally have "i \<prec> |A|" .
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   108
  thus  "i < |A|" using i
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   109
    by (force intro: cardinal_lt_imp_lt lesspoll_cardinal_lt)
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   110
qed
14046
6616e6c53d48 updating ZF-UNITY with Sidi's new material
paulson
parents: 13784
diff changeset
   111
6616e6c53d48 updating ZF-UNITY with Sidi's new material
paulson
parents: 13784
diff changeset
   112
lemma cardinal_le_imp_lepoll: " i \<le> |A| ==> i \<lesssim> A"
46954
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   113
  by (blast intro: lt_Ord Card_le_imp_lepoll Ord_cardinal_le le_trans)
14046
6616e6c53d48 updating ZF-UNITY with Sidi's new material
paulson
parents: 13784
diff changeset
   114
6616e6c53d48 updating ZF-UNITY with Sidi's new material
paulson
parents: 13784
diff changeset
   115
6616e6c53d48 updating ZF-UNITY with Sidi's new material
paulson
parents: 13784
diff changeset
   116
subsection{*Other Applications of AC*}
6616e6c53d48 updating ZF-UNITY with Sidi's new material
paulson
parents: 13784
diff changeset
   117
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
   118
lemma surj_implies_inj: "f: surj(X,Y) ==> \<exists>g. g: inj(Y,X)"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   119
apply (unfold surj_def)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   120
apply (erule CollectE)
13784
b9f6154427a4 tidying (by script)
paulson
parents: 13615
diff changeset
   121
apply (rule_tac A1 = Y and B1 = "%y. f-``{y}" in AC_Pi [THEN exE])
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   122
apply (fast elim!: apply_Pair)
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
   123
apply (blast dest: apply_type Pi_memberD
13615
449a70d88b38 Numerous cosmetic changes, prompted by the new simplifier
paulson
parents: 13356
diff changeset
   124
             intro: apply_equality Pi_type f_imp_injective)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   125
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   126
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   127
(*Kunen's Lemma 10.20*)
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
   128
lemma surj_implies_cardinal_le: "f: surj(X,Y) ==> |Y| \<le> |X|"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   129
apply (rule lepoll_imp_Card_le)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   130
apply (erule surj_implies_inj [THEN exE])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   131
apply (unfold lepoll_def)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   132
apply (erule exI)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   133
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   135
(*Kunen's Lemma 10.21*)
13615
449a70d88b38 Numerous cosmetic changes, prompted by the new simplifier
paulson
parents: 13356
diff changeset
   136
lemma cardinal_UN_le:
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
   137
     "[| InfCard(K);  \<forall>i\<in>K. |X(i)| \<le> K |] ==> |\<Union>i\<in>K. X(i)| \<le> K"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   138
apply (simp add: InfCard_is_Card le_Card_iff)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   139
apply (rule lepoll_trans)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   140
 prefer 2
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   141
 apply (rule InfCard_square_eq [THEN eqpoll_imp_lepoll])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   142
 apply (simp add: InfCard_is_Card Card_cardinal_eq)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   143
apply (unfold lepoll_def)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   144
apply (frule InfCard_is_Card [THEN Card_is_Ord])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   145
apply (erule AC_ball_Pi [THEN exE])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   146
apply (rule exI)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   147
(*Lemma needed in both subgoals, for a fixed z*)
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
   148
apply (subgoal_tac "\<forall>z\<in>(\<Union>i\<in>K. X (i)). z: X (LEAST i. z:X (i)) &
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
   149
                    (LEAST i. z:X (i)) \<in> K")
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   150
 prefer 2
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   151
 apply (fast intro!: Least_le [THEN lt_trans1, THEN ltD] ltI
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   152
             elim!: LeastI Ord_in_Ord)
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
   153
apply (rule_tac c = "%z. <LEAST i. z:X (i), f ` (LEAST i. z:X (i)) ` z>"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   154
            and d = "%<i,j>. converse (f`i) ` j" in lam_injective)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   155
(*Instantiate the lemma proved above*)
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13134
diff changeset
   156
by (blast intro: inj_is_fun [THEN apply_type] dest: apply_type, force)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   157
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   158
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   159
(*The same again, using csucc*)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   160
lemma cardinal_UN_lt_csucc:
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
   161
     "[| InfCard(K);  \<forall>i\<in>K. |X(i)| < csucc(K) |]
13615
449a70d88b38 Numerous cosmetic changes, prompted by the new simplifier
paulson
parents: 13356
diff changeset
   162
      ==> |\<Union>i\<in>K. X(i)| < csucc(K)"
449a70d88b38 Numerous cosmetic changes, prompted by the new simplifier
paulson
parents: 13356
diff changeset
   163
by (simp add: Card_lt_csucc_iff cardinal_UN_le InfCard_is_Card Card_cardinal)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   164
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   165
(*The same again, for a union of ordinals.  In use, j(i) is a bit like rank(i),
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   166
  the least ordinal j such that i:Vfrom(A,j). *)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   167
lemma cardinal_UN_Ord_lt_csucc:
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
   168
     "[| InfCard(K);  \<forall>i\<in>K. j(i) < csucc(K) |]
13615
449a70d88b38 Numerous cosmetic changes, prompted by the new simplifier
paulson
parents: 13356
diff changeset
   169
      ==> (\<Union>i\<in>K. j(i)) < csucc(K)"
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13134
diff changeset
   170
apply (rule cardinal_UN_lt_csucc [THEN Card_lt_imp_lt], assumption)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   171
apply (blast intro: Ord_cardinal_le [THEN lt_trans1] elim: ltE)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   172
apply (blast intro!: Ord_UN elim: ltE)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   173
apply (erule InfCard_is_Card [THEN Card_is_Ord, THEN Card_csucc])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   174
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   175
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   176
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   177
(** Main result for infinite-branching datatypes.  As above, but the index
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   178
    set need not be a cardinal.  Surprisingly complicated proof!
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   179
**)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   180
46954
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   181
text{*Work backwards along the injection from @{term W} into @{term K}, given that @{term"W\<noteq>0"}.*}
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   182
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   183
lemma inj_UN_subset:
46954
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   184
  assumes f: "f \<in> inj(A,B)" and a: "a \<in> A"
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   185
  shows "(\<Union>x\<in>A. C(x)) \<subseteq> (\<Union>y\<in>B. C(if y \<in> range(f) then converse(f)`y else a))"
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   186
proof (rule UN_least)
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   187
  fix x
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   188
  assume x: "x \<in> A"
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   189
  hence fx: "f ` x \<in> B" by (blast intro: f inj_is_fun [THEN apply_type])
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   190
  have "C(x) \<subseteq> C(if f ` x \<in> range(f) then converse(f) ` (f ` x) else a)" 
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   191
    using f x by (simp add: inj_is_fun [THEN apply_rangeI])
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   192
  also have "... \<subseteq> (\<Union>y\<in>B. C(if y \<in> range(f) then converse(f) ` y else a))"
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   193
    by (rule UN_upper [OF fx]) 
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   194
  finally show "C(x) \<subseteq> (\<Union>y\<in>B. C(if y \<in> range(f) then converse(f)`y else a))" .
d8b3412cdb99 beautification and structured proofs
paulson
parents: 46821
diff changeset
   195
qed
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   196
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   197
(*Simpler to require |W|=K; we'd have a bijection; but the theorem would
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   198
  be weaker.*)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   199
lemma le_UN_Ord_lt_csucc:
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
   200
     "[| InfCard(K);  |W| \<le> K;  \<forall>w\<in>W. j(w) < csucc(K) |]
13615
449a70d88b38 Numerous cosmetic changes, prompted by the new simplifier
paulson
parents: 13356
diff changeset
   201
      ==> (\<Union>w\<in>W. j(w)) < csucc(K)"
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   202
apply (case_tac "W=0")
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   203
(*solve the easy 0 case*)
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
   204
 apply (simp add: InfCard_is_Card Card_is_Ord [THEN Card_csucc]
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   205
                  Card_is_Ord Ord_0_lt_csucc)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   206
apply (simp add: InfCard_is_Card le_Card_iff lepoll_def)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   207
apply (safe intro!: equalityI)
46820
c656222c4dc1 mathematical symbols instead of ASCII
paulson
parents: 46751
diff changeset
   208
apply (erule swap)
13269
3ba9be497c33 Tidying and introduction of various new theorems
paulson
parents: 13134
diff changeset
   209
apply (rule lt_subset_trans [OF inj_UN_subset cardinal_UN_Ord_lt_csucc], assumption+)
13134
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   210
 apply (simp add: inj_converse_fun [THEN apply_type])
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   211
apply (blast intro!: Ord_UN elim: ltE)
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   212
done
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   213
bf37a3049251 converted the AC branch to Isar
paulson
parents: 1478
diff changeset
   214
end