src/ZF/QUniv.ML
author wenzelm
Sat, 01 Jul 2000 19:55:22 +0200
changeset 9230 17ae63f82ad8
parent 9211 6236c5285bd8
child 9907 473a6604da94
permissions -rw-r--r--
GPLed;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9211
6236c5285bd8 removal of batch-style proofs
paulson
parents: 6070
diff changeset
     1
(*  Title:      ZF/QUniv
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 838
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     4
    Copyright   1993  University of Cambridge
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
5809
bacf85370ce0 removed obsolete comment and "open" declaration
paulson
parents: 5321
diff changeset
     6
A small universe for lazy recursive types
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
838
120edb26ee93 Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents: 803
diff changeset
     9
(** Properties involving Transset and Sum **)
120edb26ee93 Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents: 803
diff changeset
    10
9211
6236c5285bd8 removal of batch-style proofs
paulson
parents: 6070
diff changeset
    11
Goalw [sum_def] "[| Transset(C); A+B <= C |] ==> A <= C & B <= C";
6236c5285bd8 removal of batch-style proofs
paulson
parents: 6070
diff changeset
    12
by (dtac (Un_subset_iff RS iffD1) 1);
6236c5285bd8 removal of batch-style proofs
paulson
parents: 6070
diff changeset
    13
by (blast_tac (claset() addDs [Transset_includes_range]) 1);
838
120edb26ee93 Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents: 803
diff changeset
    14
qed "Transset_includes_summands";
120edb26ee93 Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents: 803
diff changeset
    15
9211
6236c5285bd8 removal of batch-style proofs
paulson
parents: 6070
diff changeset
    16
Goalw [sum_def] "Transset(C) ==> (A+B) Int C <= (A Int C) + (B Int C)";
2033
639de962ded4 Ran expandshort; used stac instead of ssubst
paulson
parents: 1461
diff changeset
    17
by (stac Int_Un_distrib 1);
9211
6236c5285bd8 removal of batch-style proofs
paulson
parents: 6070
diff changeset
    18
by (blast_tac (claset() addDs [Transset_Pair_D]) 1);
838
120edb26ee93 Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents: 803
diff changeset
    19
qed "Transset_sum_Int_subset";
120edb26ee93 Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents: 803
diff changeset
    20
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    21
(** Introduction and elimination rules avoid tiresome folding/unfolding **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    22
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4091
diff changeset
    23
Goalw [quniv_def]
5147
825877190618 More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5137
diff changeset
    24
    "X <= univ(eclose(A)) ==> X : quniv(A)";
15
6c6d2f6e3185 ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents: 6
diff changeset
    25
by (etac PowI 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
    26
qed "qunivI";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    27
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4091
diff changeset
    28
Goalw [quniv_def]
5147
825877190618 More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5137
diff changeset
    29
    "X : quniv(A) ==> X <= univ(eclose(A))";
15
6c6d2f6e3185 ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents: 6
diff changeset
    30
by (etac PowD 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
    31
qed "qunivD";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    32
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5067
diff changeset
    33
Goalw [quniv_def] "A<=B ==> quniv(A) <= quniv(B)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    34
by (etac (eclose_mono RS univ_mono RS Pow_mono) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
    35
qed "quniv_mono";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    36
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    37
(*** Closure properties ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    38
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4091
diff changeset
    39
Goalw [quniv_def] "univ(eclose(A)) <= quniv(A)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    40
by (rtac (Transset_iff_Pow RS iffD1) 1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    41
by (rtac (Transset_eclose RS Transset_univ) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
    42
qed "univ_eclose_subset_quniv";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    43
170
590c9d1e0d73 ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents: 129
diff changeset
    44
(*Key property for proving A_subset_quniv; requires eclose in def of quniv*)
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4091
diff changeset
    45
Goal "univ(A) <= quniv(A)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    46
by (rtac (arg_subset_eclose RS univ_mono RS subset_trans) 1);
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    47
by (rtac univ_eclose_subset_quniv 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
    48
qed "univ_subset_quniv";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    49
803
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 782
diff changeset
    50
bind_thm ("univ_into_quniv", univ_subset_quniv RS subsetD);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    51
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4091
diff changeset
    52
Goalw [quniv_def] "Pow(univ(A)) <= quniv(A)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    53
by (rtac (arg_subset_eclose RS univ_mono RS Pow_mono) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
    54
qed "Pow_univ_subset_quniv";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    55
803
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 782
diff changeset
    56
bind_thm ("univ_subset_into_quniv", 
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 838
diff changeset
    57
          PowI RS (Pow_univ_subset_quniv RS subsetD));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    58
803
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 782
diff changeset
    59
bind_thm ("zero_in_quniv", zero_in_univ RS univ_into_quniv);
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 782
diff changeset
    60
bind_thm ("one_in_quniv", one_in_univ RS univ_into_quniv);
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 782
diff changeset
    61
bind_thm ("two_in_quniv", two_in_univ RS univ_into_quniv);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    62
803
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 782
diff changeset
    63
bind_thm ("A_subset_quniv",
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 838
diff changeset
    64
          [A_subset_univ, univ_subset_quniv] MRS subset_trans);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    65
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    66
val A_into_quniv = A_subset_quniv RS subsetD;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    67
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    68
(*** univ(A) closure for Quine-inspired pairs and injections ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    69
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    70
(*Quine ordered pairs*)
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4091
diff changeset
    71
Goalw [QPair_def]
5147
825877190618 More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5137
diff changeset
    72
    "[| a <= univ(A);  b <= univ(A) |] ==> <a;b> <= univ(A)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    73
by (REPEAT (ares_tac [sum_subset_univ] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
    74
qed "QPair_subset_univ";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    75
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    76
(** Quine disjoint sum **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    77
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5067
diff changeset
    78
Goalw [QInl_def] "a <= univ(A) ==> QInl(a) <= univ(A)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    79
by (etac (empty_subsetI RS QPair_subset_univ) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
    80
qed "QInl_subset_univ";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    81
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    82
val naturals_subset_nat =
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    83
    rewrite_rule [Transset_def] (Ord_nat RS Ord_is_Transset)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    84
    RS bspec;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    85
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    86
val naturals_subset_univ = 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    87
    [naturals_subset_nat, nat_subset_univ] MRS subset_trans;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    88
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5067
diff changeset
    89
Goalw [QInr_def] "a <= univ(A) ==> QInr(a) <= univ(A)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    90
by (etac (nat_1I RS naturals_subset_univ RS QPair_subset_univ) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
    91
qed "QInr_subset_univ";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    92
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    93
(*** Closure for Quine-inspired products and sums ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    94
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    95
(*Quine ordered pairs*)
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4091
diff changeset
    96
Goalw [quniv_def,QPair_def]
5147
825877190618 More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5137
diff changeset
    97
    "[| a: quniv(A);  b: quniv(A) |] ==> <a;b> : quniv(A)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    98
by (REPEAT (dtac PowD 1));
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    99
by (REPEAT (ares_tac [PowI, sum_subset_univ] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
   100
qed "QPair_in_quniv";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   101
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4091
diff changeset
   102
Goal "quniv(A) <*> quniv(A) <= quniv(A)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   103
by (REPEAT (ares_tac [subsetI, QPair_in_quniv] 1
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   104
     ORELSE eresolve_tac [QSigmaE, ssubst] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
   105
qed "QSigma_quniv";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   106
803
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 782
diff changeset
   107
bind_thm ("QSigma_subset_quniv",
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 838
diff changeset
   108
          [QSigma_mono, QSigma_quniv] MRS subset_trans);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   109
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   110
(*The opposite inclusion*)
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4091
diff changeset
   111
Goalw [quniv_def,QPair_def]
5147
825877190618 More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5137
diff changeset
   112
    "<a;b> : quniv(A) ==> a: quniv(A) & b: quniv(A)";
129
dc50a4b96d7b expandshort and other trivial changes
lcp
parents: 120
diff changeset
   113
by (etac ([Transset_eclose RS Transset_univ, PowD] MRS 
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 838
diff changeset
   114
          Transset_includes_summands RS conjE) 1);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   115
by (REPEAT (ares_tac [conjI,PowI] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
   116
qed "quniv_QPair_D";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   117
803
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 782
diff changeset
   118
bind_thm ("quniv_QPair_E", quniv_QPair_D RS conjE);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   119
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4091
diff changeset
   120
Goal "<a;b> : quniv(A) <-> a: quniv(A) & b: quniv(A)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   121
by (REPEAT (ares_tac [iffI, QPair_in_quniv, quniv_QPair_D] 1
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   122
     ORELSE etac conjE 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
   123
qed "quniv_QPair_iff";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   124
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   125
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   126
(** Quine disjoint sum **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   127
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5067
diff changeset
   128
Goalw [QInl_def] "a: quniv(A) ==> QInl(a) : quniv(A)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   129
by (REPEAT (ares_tac [zero_in_quniv,QPair_in_quniv] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
   130
qed "QInl_in_quniv";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   131
5137
60205b0de9b9 Huge tidy-up: removal of leading \!\!
paulson
parents: 5067
diff changeset
   132
Goalw [QInr_def] "b: quniv(A) ==> QInr(b) : quniv(A)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   133
by (REPEAT (ares_tac [one_in_quniv, QPair_in_quniv] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
   134
qed "QInr_in_quniv";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   135
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4091
diff changeset
   136
Goal "quniv(C) <+> quniv(C) <= quniv(C)";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   137
by (REPEAT (ares_tac [subsetI, QInl_in_quniv, QInr_in_quniv] 1
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   138
     ORELSE eresolve_tac [qsumE, ssubst] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
   139
qed "qsum_quniv";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   140
803
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 782
diff changeset
   141
bind_thm ("qsum_subset_quniv", [qsum_mono, qsum_quniv] MRS subset_trans);
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 782
diff changeset
   142
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   143
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   144
(*** The natural numbers ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   145
803
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 782
diff changeset
   146
bind_thm ("nat_subset_quniv",
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 838
diff changeset
   147
          [nat_subset_univ, univ_subset_quniv] MRS subset_trans);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   148
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   149
(* n:nat ==> n:quniv(A) *)
782
200a16083201 added bind_thm for theorems defined by "standard ..."
clasohm
parents: 760
diff changeset
   150
bind_thm ("nat_into_quniv", (nat_subset_quniv RS subsetD));
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   151
803
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 782
diff changeset
   152
bind_thm ("bool_subset_quniv",
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 838
diff changeset
   153
          [bool_subset_univ, univ_subset_quniv] MRS subset_trans);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   154
803
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 782
diff changeset
   155
bind_thm ("bool_into_quniv", bool_subset_quniv RS subsetD);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   156
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   157
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   158
(*** Intersecting <a;b> with Vfrom... ***)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   159
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4091
diff changeset
   160
Goalw [QPair_def,sum_def]
5147
825877190618 More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5137
diff changeset
   161
 "Transset(X) ==>          \
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   162
\      <a;b> Int Vfrom(X, succ(i))  <=  <a Int Vfrom(X,i);  b Int Vfrom(X,i)>";
2033
639de962ded4 Ran expandshort; used stac instead of ssubst
paulson
parents: 1461
diff changeset
   163
by (stac Int_Un_distrib 1);
15
6c6d2f6e3185 ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents: 6
diff changeset
   164
by (rtac Un_mono 1);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   165
by (REPEAT (ares_tac [product_Int_Vfrom_subset RS subset_trans,
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 838
diff changeset
   166
                      [Int_lower1, subset_refl] MRS Sigma_mono] 1));
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
   167
qed "QPair_Int_Vfrom_succ_subset";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   168
170
590c9d1e0d73 ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents: 129
diff changeset
   169
(**** "Take-lemma" rules for proving a=b by coinduction and c: quniv(A) ****)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   170
170
590c9d1e0d73 ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents: 129
diff changeset
   171
(*Rule for level i -- preserving the level, not decreasing it*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   172
5067
62b6288e6005 isatool fixgoal;
wenzelm
parents: 4091
diff changeset
   173
Goalw [QPair_def]
5147
825877190618 More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5137
diff changeset
   174
 "Transset(X) ==>          \
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   175
\      <a;b> Int Vfrom(X,i)  <=  <a Int Vfrom(X,i);  b Int Vfrom(X,i)>";
15
6c6d2f6e3185 ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents: 6
diff changeset
   176
by (etac (Transset_Vfrom RS Transset_sum_Int_subset) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
   177
qed "QPair_Int_Vfrom_subset";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   178
170
590c9d1e0d73 ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents: 129
diff changeset
   179
(*[| a Int Vset(i) <= c; b Int Vset(i) <= d |] ==> <a;b> Int Vset(i) <= <c;d>*)
803
4c8333ab3eae changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents: 782
diff changeset
   180
bind_thm ("QPair_Int_Vset_subset_trans", 
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 838
diff changeset
   181
          [Transset_0 RS QPair_Int_Vfrom_subset, QPair_mono] MRS subset_trans);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   182
5268
59ef39008514 even more tidying of Goal commands
paulson
parents: 5147
diff changeset
   183
Goal "Ord(i) ==> <a;b> Int Vset(i) <= (UN j:i. <a Int Vset(j); b Int Vset(j)>)";
170
590c9d1e0d73 ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents: 129
diff changeset
   184
by (etac Ord_cases 1 THEN REPEAT_FIRST hyp_subst_tac);
590c9d1e0d73 ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents: 129
diff changeset
   185
(*0 case*)
2033
639de962ded4 Ran expandshort; used stac instead of ssubst
paulson
parents: 1461
diff changeset
   186
by (stac Vfrom_0 1);
2469
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 2033
diff changeset
   187
by (Fast_tac 1);
170
590c9d1e0d73 ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents: 129
diff changeset
   188
(*succ(j) case*)
590c9d1e0d73 ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents: 129
diff changeset
   189
by (rtac (Transset_0 RS QPair_Int_Vfrom_succ_subset RS subset_trans) 1);
590c9d1e0d73 ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents: 129
diff changeset
   190
by (rtac (succI1 RS UN_upper) 1);
590c9d1e0d73 ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents: 129
diff changeset
   191
(*Limit(i) case*)
5268
59ef39008514 even more tidying of Goal commands
paulson
parents: 5147
diff changeset
   192
by (asm_simp_tac
6070
032babd0120b ZF: the natural numbers as a datatype
paulson
parents: 5809
diff changeset
   193
    (simpset() addsimps [Limit_Vfrom_eq, Int_UN_distrib, 
5268
59ef39008514 even more tidying of Goal commands
paulson
parents: 5147
diff changeset
   194
			 UN_mono, QPair_Int_Vset_subset_trans]) 1);
760
f0200e91b272 added qed and qed_goal[w]
clasohm
parents: 170
diff changeset
   195
qed "QPair_Int_Vset_subset_UN";