| author | wenzelm | 
| Sun, 27 Feb 2000 15:22:14 +0100 | |
| changeset 8302 | da404f79c1fc | 
| parent 8053 | 37ebdaf3bb91 | 
| child 8326 | 0e329578b0ef | 
| permissions | -rw-r--r-- | 
| 1465 | 1 | (* Title: HOL/set | 
| 923 | 2 | ID: $Id$ | 
| 1465 | 3 | Author: Lawrence C Paulson, Cambridge University Computer Laboratory | 
| 923 | 4 | Copyright 1991 University of Cambridge | 
| 5 | ||
| 1985 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: 
1937diff
changeset | 6 | Set theory for higher-order logic. A set is simply a predicate. | 
| 923 | 7 | *) | 
| 8 | ||
| 1548 | 9 | section "Relating predicates and sets"; | 
| 10 | ||
| 3469 
61d927bd57ec
Now Collect_mem_eq is a default simprule (how could it have ever been omitted?
 paulson parents: 
3420diff
changeset | 11 | Addsimps [Collect_mem_eq]; | 
| 
61d927bd57ec
Now Collect_mem_eq is a default simprule (how could it have ever been omitted?
 paulson parents: 
3420diff
changeset | 12 | AddIffs [mem_Collect_eq]; | 
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 13 | |
| 5143 
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
 paulson parents: 
5069diff
changeset | 14 | Goal "P(a) ==> a : {x. P(x)}";
 | 
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 15 | by (Asm_simp_tac 1); | 
| 923 | 16 | qed "CollectI"; | 
| 17 | ||
| 5316 | 18 | Goal "a : {x. P(x)} ==> P(a)";
 | 
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 19 | by (Asm_full_simp_tac 1); | 
| 923 | 20 | qed "CollectD"; | 
| 21 | ||
| 7658 | 22 | bind_thm ("CollectE", make_elim CollectD);
 | 
| 23 | ||
| 5316 | 24 | val [prem] = Goal "[| !!x. (x:A) = (x:B) |] ==> A = B"; | 
| 923 | 25 | by (rtac (prem RS ext RS arg_cong RS box_equals) 1); | 
| 26 | by (rtac Collect_mem_eq 1); | |
| 27 | by (rtac Collect_mem_eq 1); | |
| 28 | qed "set_ext"; | |
| 29 | ||
| 5316 | 30 | val [prem] = Goal "[| !!x. P(x)=Q(x) |] ==> {x. P(x)} = {x. Q(x)}";
 | 
| 923 | 31 | by (rtac (prem RS ext RS arg_cong) 1); | 
| 32 | qed "Collect_cong"; | |
| 33 | ||
| 34 | val CollectE = make_elim CollectD; | |
| 35 | ||
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 36 | AddSIs [CollectI]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 37 | AddSEs [CollectE]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 38 | |
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 39 | |
| 1548 | 40 | section "Bounded quantifiers"; | 
| 923 | 41 | |
| 5316 | 42 | val prems = Goalw [Ball_def] | 
| 923 | 43 | "[| !!x. x:A ==> P(x) |] ==> ! x:A. P(x)"; | 
| 44 | by (REPEAT (ares_tac (prems @ [allI,impI]) 1)); | |
| 45 | qed "ballI"; | |
| 46 | ||
| 5316 | 47 | Goalw [Ball_def] "[| ! x:A. P(x); x:A |] ==> P(x)"; | 
| 48 | by (Blast_tac 1); | |
| 923 | 49 | qed "bspec"; | 
| 50 | ||
| 5316 | 51 | val major::prems = Goalw [Ball_def] | 
| 923 | 52 | "[| ! x:A. P(x); P(x) ==> Q; x~:A ==> Q |] ==> Q"; | 
| 53 | by (rtac (major RS spec RS impCE) 1); | |
| 54 | by (REPEAT (eresolve_tac prems 1)); | |
| 55 | qed "ballE"; | |
| 56 | ||
| 57 | (*Takes assumptions ! x:A.P(x) and a:A; creates assumption P(a)*) | |
| 58 | fun ball_tac i = etac ballE i THEN contr_tac (i+1); | |
| 59 | ||
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 60 | AddSIs [ballI]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 61 | AddEs [ballE]; | 
| 7441 | 62 | AddXDs [bspec]; | 
| 5521 | 63 | (* gives better instantiation for bound: *) | 
| 64 | claset_ref() := claset() addWrapper ("bspec", fn tac2 =>
 | |
| 65 | (dtac bspec THEN' atac) APPEND' tac2); | |
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 66 | |
| 6006 | 67 | (*Normally the best argument order: P(x) constrains the choice of x:A*) | 
| 5316 | 68 | Goalw [Bex_def] "[| P(x); x:A |] ==> ? x:A. P(x)"; | 
| 69 | by (Blast_tac 1); | |
| 923 | 70 | qed "bexI"; | 
| 71 | ||
| 6006 | 72 | (*The best argument order when there is only one x:A*) | 
| 73 | Goalw [Bex_def] "[| x:A; P(x) |] ==> ? x:A. P(x)"; | |
| 74 | by (Blast_tac 1); | |
| 75 | qed "rev_bexI"; | |
| 76 | ||
| 7031 | 77 | val prems = Goal | 
| 7007 | 78 | "[| ! x:A. ~P(x) ==> P(a); a:A |] ==> ? x:A. P(x)"; | 
| 79 | by (rtac classical 1); | |
| 80 | by (REPEAT (ares_tac (prems@[bexI,ballI,notI,notE]) 1)) ; | |
| 81 | qed "bexCI"; | |
| 923 | 82 | |
| 5316 | 83 | val major::prems = Goalw [Bex_def] | 
| 923 | 84 | "[| ? x:A. P(x); !!x. [| x:A; P(x) |] ==> Q |] ==> Q"; | 
| 85 | by (rtac (major RS exE) 1); | |
| 86 | by (REPEAT (eresolve_tac (prems @ [asm_rl,conjE]) 1)); | |
| 87 | qed "bexE"; | |
| 88 | ||
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 89 | AddIs [bexI]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 90 | AddSEs [bexE]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 91 | |
| 3420 | 92 | (*Trival rewrite rule*) | 
| 5069 | 93 | Goal "(! x:A. P) = ((? x. x:A) --> P)"; | 
| 4089 | 94 | by (simp_tac (simpset() addsimps [Ball_def]) 1); | 
| 3420 | 95 | qed "ball_triv"; | 
| 1816 | 96 | |
| 1882 | 97 | (*Dual form for existentials*) | 
| 5069 | 98 | Goal "(? x:A. P) = ((? x. x:A) & P)"; | 
| 4089 | 99 | by (simp_tac (simpset() addsimps [Bex_def]) 1); | 
| 3420 | 100 | qed "bex_triv"; | 
| 1882 | 101 | |
| 3420 | 102 | Addsimps [ball_triv, bex_triv]; | 
| 923 | 103 | |
| 104 | (** Congruence rules **) | |
| 105 | ||
| 6291 | 106 | val prems = Goalw [Ball_def] | 
| 923 | 107 | "[| A=B; !!x. x:B ==> P(x) = Q(x) |] ==> \ | 
| 108 | \ (! x:A. P(x)) = (! x:B. Q(x))"; | |
| 6291 | 109 | by (asm_simp_tac (simpset() addsimps prems) 1); | 
| 923 | 110 | qed "ball_cong"; | 
| 111 | ||
| 6291 | 112 | val prems = Goalw [Bex_def] | 
| 923 | 113 | "[| A=B; !!x. x:B ==> P(x) = Q(x) |] ==> \ | 
| 114 | \ (? x:A. P(x)) = (? x:B. Q(x))"; | |
| 6291 | 115 | by (asm_simp_tac (simpset() addcongs [conj_cong] addsimps prems) 1); | 
| 923 | 116 | qed "bex_cong"; | 
| 117 | ||
| 6291 | 118 | Addcongs [ball_cong,bex_cong]; | 
| 119 | ||
| 1548 | 120 | section "Subsets"; | 
| 923 | 121 | |
| 5316 | 122 | val prems = Goalw [subset_def] "(!!x. x:A ==> x:B) ==> A <= B"; | 
| 923 | 123 | by (REPEAT (ares_tac (prems @ [ballI]) 1)); | 
| 124 | qed "subsetI"; | |
| 125 | ||
| 5649 | 126 | (*Map the type ('a set => anything) to just 'a.
 | 
| 127 | For overloading constants whose first argument has type "'a set" *) | |
| 128 | fun overload_1st_set s = Blast.overloaded (s, HOLogic.dest_setT o domain_type); | |
| 129 | ||
| 4059 | 130 | (*While (:) is not, its type must be kept | 
| 131 | for overloading of = to work.*) | |
| 4240 
8ba60a4cd380
Renamed "overload" to "overloaded" for sml/nj compatibility
 paulson parents: 
4231diff
changeset | 132 | Blast.overloaded ("op :", domain_type);
 | 
| 5649 | 133 | |
| 134 | overload_1st_set "Ball"; (*need UNION, INTER also?*) | |
| 135 | overload_1st_set "Bex"; | |
| 4059 | 136 | |
| 4469 | 137 | (*Image: retain the type of the set being expressed*) | 
| 8005 | 138 | Blast.overloaded ("image", domain_type);
 | 
| 2881 | 139 | |
| 923 | 140 | (*Rule in Modus Ponens style*) | 
| 5316 | 141 | Goalw [subset_def] "[| A <= B; c:A |] ==> c:B"; | 
| 142 | by (Blast_tac 1); | |
| 923 | 143 | qed "subsetD"; | 
| 7658 | 144 | AddXIs [subsetD]; | 
| 923 | 145 | |
| 146 | (*The same, with reversed premises for use with etac -- cf rev_mp*) | |
| 7007 | 147 | Goal "[| c:A; A <= B |] ==> c:B"; | 
| 148 | by (REPEAT (ares_tac [subsetD] 1)) ; | |
| 149 | qed "rev_subsetD"; | |
| 7658 | 150 | AddXIs [rev_subsetD]; | 
| 923 | 151 | |
| 1920 | 152 | (*Converts A<=B to x:A ==> x:B*) | 
| 153 | fun impOfSubs th = th RSN (2, rev_subsetD); | |
| 154 | ||
| 7007 | 155 | Goal "[| A <= B; c ~: B |] ==> c ~: A"; | 
| 156 | by (REPEAT (eresolve_tac [asm_rl, contrapos, subsetD] 1)) ; | |
| 157 | qed "contra_subsetD"; | |
| 1841 | 158 | |
| 7007 | 159 | Goal "[| c ~: B; A <= B |] ==> c ~: A"; | 
| 160 | by (REPEAT (eresolve_tac [asm_rl, contrapos, subsetD] 1)) ; | |
| 161 | qed "rev_contra_subsetD"; | |
| 1841 | 162 | |
| 923 | 163 | (*Classical elimination rule*) | 
| 5316 | 164 | val major::prems = Goalw [subset_def] | 
| 923 | 165 | "[| A <= B; c~:A ==> P; c:B ==> P |] ==> P"; | 
| 166 | by (rtac (major RS ballE) 1); | |
| 167 | by (REPEAT (eresolve_tac prems 1)); | |
| 168 | qed "subsetCE"; | |
| 169 | ||
| 170 | (*Takes assumptions A<=B; c:A and creates the assumption c:B *) | |
| 171 | fun set_mp_tac i = etac subsetCE i THEN mp_tac i; | |
| 172 | ||
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 173 | AddSIs [subsetI]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 174 | AddEs [subsetD, subsetCE]; | 
| 923 | 175 | |
| 7007 | 176 | Goal "A <= (A::'a set)"; | 
| 177 | by (Fast_tac 1); | |
| 178 | qed "subset_refl"; (*Blast_tac would try order_refl and fail*) | |
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 179 | |
| 5316 | 180 | Goal "[| A<=B; B<=C |] ==> A<=(C::'a set)"; | 
| 2891 | 181 | by (Blast_tac 1); | 
| 923 | 182 | qed "subset_trans"; | 
| 183 | ||
| 184 | ||
| 1548 | 185 | section "Equality"; | 
| 923 | 186 | |
| 187 | (*Anti-symmetry of the subset relation*) | |
| 5316 | 188 | Goal "[| A <= B; B <= A |] ==> A = (B::'a set)"; | 
| 5318 | 189 | by (rtac set_ext 1); | 
| 5316 | 190 | by (blast_tac (claset() addIs [subsetD]) 1); | 
| 923 | 191 | qed "subset_antisym"; | 
| 192 | val equalityI = subset_antisym; | |
| 193 | ||
| 1762 | 194 | AddSIs [equalityI]; | 
| 195 | ||
| 923 | 196 | (* Equality rules from ZF set theory -- are they appropriate here? *) | 
| 5316 | 197 | Goal "A = B ==> A<=(B::'a set)"; | 
| 198 | by (etac ssubst 1); | |
| 923 | 199 | by (rtac subset_refl 1); | 
| 200 | qed "equalityD1"; | |
| 201 | ||
| 5316 | 202 | Goal "A = B ==> B<=(A::'a set)"; | 
| 203 | by (etac ssubst 1); | |
| 923 | 204 | by (rtac subset_refl 1); | 
| 205 | qed "equalityD2"; | |
| 206 | ||
| 5316 | 207 | val prems = Goal | 
| 923 | 208 | "[| A = B; [| A<=B; B<=(A::'a set) |] ==> P |] ==> P"; | 
| 209 | by (resolve_tac prems 1); | |
| 210 | by (REPEAT (resolve_tac (prems RL [equalityD1,equalityD2]) 1)); | |
| 211 | qed "equalityE"; | |
| 212 | ||
| 5316 | 213 | val major::prems = Goal | 
| 923 | 214 | "[| A = B; [| c:A; c:B |] ==> P; [| c~:A; c~:B |] ==> P |] ==> P"; | 
| 215 | by (rtac (major RS equalityE) 1); | |
| 216 | by (REPEAT (contr_tac 1 ORELSE eresolve_tac ([asm_rl,subsetCE]@prems) 1)); | |
| 217 | qed "equalityCE"; | |
| 218 | ||
| 219 | (*Lemma for creating induction formulae -- for "pattern matching" on p | |
| 220 | To make the induction hypotheses usable, apply "spec" or "bspec" to | |
| 221 | put universal quantifiers over the free variables in p. *) | |
| 5316 | 222 | val prems = Goal | 
| 923 | 223 | "[| p:A; !!z. z:A ==> p=z --> R |] ==> R"; | 
| 224 | by (rtac mp 1); | |
| 225 | by (REPEAT (resolve_tac (refl::prems) 1)); | |
| 226 | qed "setup_induction"; | |
| 227 | ||
| 8053 | 228 | Goal "A = B ==> (x : A) = (x : B)"; | 
| 229 | by (Asm_simp_tac 1); | |
| 230 | qed "eqset_imp_iff"; | |
| 231 | ||
| 923 | 232 | |
| 4159 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 233 | section "The universal set -- UNIV"; | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 234 | |
| 7031 | 235 | Goalw [UNIV_def] "x : UNIV"; | 
| 236 | by (rtac CollectI 1); | |
| 237 | by (rtac TrueI 1); | |
| 238 | qed "UNIV_I"; | |
| 4159 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 239 | |
| 4434 | 240 | Addsimps [UNIV_I]; | 
| 241 | AddIs [UNIV_I]; (*unsafe makes it less likely to cause problems*) | |
| 4159 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 242 | |
| 7031 | 243 | Goal "A <= UNIV"; | 
| 244 | by (rtac subsetI 1); | |
| 245 | by (rtac UNIV_I 1); | |
| 246 | qed "subset_UNIV"; | |
| 4159 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 247 | |
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 248 | (** Eta-contracting these two rules (to remove P) causes them to be ignored | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 249 | because of their interaction with congruence rules. **) | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 250 | |
| 5069 | 251 | Goalw [Ball_def] "Ball UNIV P = All P"; | 
| 4159 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 252 | by (Simp_tac 1); | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 253 | qed "ball_UNIV"; | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 254 | |
| 5069 | 255 | Goalw [Bex_def] "Bex UNIV P = Ex P"; | 
| 4159 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 256 | by (Simp_tac 1); | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 257 | qed "bex_UNIV"; | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 258 | Addsimps [ball_UNIV, bex_UNIV]; | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 259 | |
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 260 | |
| 2858 | 261 | section "The empty set -- {}";
 | 
| 262 | ||
| 7007 | 263 | Goalw [empty_def] "(c : {}) = False";
 | 
| 264 | by (Blast_tac 1) ; | |
| 265 | qed "empty_iff"; | |
| 2858 | 266 | |
| 267 | Addsimps [empty_iff]; | |
| 268 | ||
| 7007 | 269 | Goal "a:{} ==> P";
 | 
| 270 | by (Full_simp_tac 1); | |
| 271 | qed "emptyE"; | |
| 2858 | 272 | |
| 273 | AddSEs [emptyE]; | |
| 274 | ||
| 7007 | 275 | Goal "{} <= A";
 | 
| 276 | by (Blast_tac 1) ; | |
| 277 | qed "empty_subsetI"; | |
| 2858 | 278 | |
| 5256 | 279 | (*One effect is to delete the ASSUMPTION {} <= A*)
 | 
| 280 | AddIffs [empty_subsetI]; | |
| 281 | ||
| 7031 | 282 | val [prem]= Goal "[| !!y. y:A ==> False |] ==> A={}";
 | 
| 7007 | 283 | by (blast_tac (claset() addIs [prem RS FalseE]) 1) ; | 
| 284 | qed "equals0I"; | |
| 2858 | 285 | |
| 5256 | 286 | (*Use for reasoning about disjointness: A Int B = {} *)
 | 
| 7007 | 287 | Goal "A={} ==> a ~: A";
 | 
| 288 | by (Blast_tac 1) ; | |
| 289 | qed "equals0D"; | |
| 2858 | 290 | |
| 5450 
fe9d103464a4
Changed equals0E back to equals0D and gave it the correct destruct form
 paulson parents: 
5336diff
changeset | 291 | AddDs [equals0D, sym RS equals0D]; | 
| 5256 | 292 | |
| 5069 | 293 | Goalw [Ball_def] "Ball {} P = True";
 | 
| 4159 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 294 | by (Simp_tac 1); | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 295 | qed "ball_empty"; | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 296 | |
| 5069 | 297 | Goalw [Bex_def] "Bex {} P = False";
 | 
| 4159 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 298 | by (Simp_tac 1); | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 299 | qed "bex_empty"; | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 300 | Addsimps [ball_empty, bex_empty]; | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 301 | |
| 5069 | 302 | Goal "UNIV ~= {}";
 | 
| 4159 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 303 | by (blast_tac (claset() addEs [equalityE]) 1); | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 304 | qed "UNIV_not_empty"; | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 305 | AddIffs [UNIV_not_empty]; | 
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 306 | |
| 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 307 | |
| 2858 | 308 | |
| 309 | section "The Powerset operator -- Pow"; | |
| 310 | ||
| 7007 | 311 | Goalw [Pow_def] "(A : Pow(B)) = (A <= B)"; | 
| 312 | by (Asm_simp_tac 1); | |
| 313 | qed "Pow_iff"; | |
| 2858 | 314 | |
| 315 | AddIffs [Pow_iff]; | |
| 316 | ||
| 7031 | 317 | Goalw [Pow_def] "A <= B ==> A : Pow(B)"; | 
| 7007 | 318 | by (etac CollectI 1); | 
| 319 | qed "PowI"; | |
| 2858 | 320 | |
| 7031 | 321 | Goalw [Pow_def] "A : Pow(B) ==> A<=B"; | 
| 7007 | 322 | by (etac CollectD 1); | 
| 323 | qed "PowD"; | |
| 324 | ||
| 2858 | 325 | |
| 326 | val Pow_bottom = empty_subsetI RS PowI;        (* {}: Pow(B) *)
 | |
| 327 | val Pow_top = subset_refl RS PowI; (* A : Pow(A) *) | |
| 328 | ||
| 329 | ||
| 5931 | 330 | section "Set complement"; | 
| 923 | 331 | |
| 7031 | 332 | Goalw [Compl_def] "(c : -A) = (c~:A)"; | 
| 333 | by (Blast_tac 1); | |
| 334 | qed "Compl_iff"; | |
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 335 | |
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 336 | Addsimps [Compl_iff]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 337 | |
| 5490 | 338 | val prems = Goalw [Compl_def] "[| c:A ==> False |] ==> c : -A"; | 
| 923 | 339 | by (REPEAT (ares_tac (prems @ [CollectI,notI]) 1)); | 
| 340 | qed "ComplI"; | |
| 341 | ||
| 342 | (*This form, with negated conclusion, works well with the Classical prover. | |
| 343 | Negated assumptions behave like formulae on the right side of the notional | |
| 344 | turnstile...*) | |
| 5490 | 345 | Goalw [Compl_def] "c : -A ==> c~:A"; | 
| 5316 | 346 | by (etac CollectD 1); | 
| 923 | 347 | qed "ComplD"; | 
| 348 | ||
| 349 | val ComplE = make_elim ComplD; | |
| 350 | ||
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 351 | AddSIs [ComplI]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 352 | AddSEs [ComplE]; | 
| 1640 | 353 | |
| 923 | 354 | |
| 1548 | 355 | section "Binary union -- Un"; | 
| 923 | 356 | |
| 7031 | 357 | Goalw [Un_def] "(c : A Un B) = (c:A | c:B)"; | 
| 358 | by (Blast_tac 1); | |
| 359 | qed "Un_iff"; | |
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 360 | Addsimps [Un_iff]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 361 | |
| 5143 
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
 paulson parents: 
5069diff
changeset | 362 | Goal "c:A ==> c : A Un B"; | 
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 363 | by (Asm_simp_tac 1); | 
| 923 | 364 | qed "UnI1"; | 
| 365 | ||
| 5143 
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
 paulson parents: 
5069diff
changeset | 366 | Goal "c:B ==> c : A Un B"; | 
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 367 | by (Asm_simp_tac 1); | 
| 923 | 368 | qed "UnI2"; | 
| 369 | ||
| 370 | (*Classical introduction rule: no commitment to A vs B*) | |
| 7007 | 371 | |
| 7031 | 372 | val prems = Goal "(c~:B ==> c:A) ==> c : A Un B"; | 
| 7007 | 373 | by (Simp_tac 1); | 
| 374 | by (REPEAT (ares_tac (prems@[disjCI]) 1)) ; | |
| 375 | qed "UnCI"; | |
| 923 | 376 | |
| 5316 | 377 | val major::prems = Goalw [Un_def] | 
| 923 | 378 | "[| c : A Un B; c:A ==> P; c:B ==> P |] ==> P"; | 
| 379 | by (rtac (major RS CollectD RS disjE) 1); | |
| 380 | by (REPEAT (eresolve_tac prems 1)); | |
| 381 | qed "UnE"; | |
| 382 | ||
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 383 | AddSIs [UnCI]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 384 | AddSEs [UnE]; | 
| 1640 | 385 | |
| 923 | 386 | |
| 1548 | 387 | section "Binary intersection -- Int"; | 
| 923 | 388 | |
| 7031 | 389 | Goalw [Int_def] "(c : A Int B) = (c:A & c:B)"; | 
| 390 | by (Blast_tac 1); | |
| 391 | qed "Int_iff"; | |
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 392 | Addsimps [Int_iff]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 393 | |
| 5143 
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
 paulson parents: 
5069diff
changeset | 394 | Goal "[| c:A; c:B |] ==> c : A Int B"; | 
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 395 | by (Asm_simp_tac 1); | 
| 923 | 396 | qed "IntI"; | 
| 397 | ||
| 5143 
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
 paulson parents: 
5069diff
changeset | 398 | Goal "c : A Int B ==> c:A"; | 
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 399 | by (Asm_full_simp_tac 1); | 
| 923 | 400 | qed "IntD1"; | 
| 401 | ||
| 5143 
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
 paulson parents: 
5069diff
changeset | 402 | Goal "c : A Int B ==> c:B"; | 
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 403 | by (Asm_full_simp_tac 1); | 
| 923 | 404 | qed "IntD2"; | 
| 405 | ||
| 5316 | 406 | val [major,minor] = Goal | 
| 923 | 407 | "[| c : A Int B; [| c:A; c:B |] ==> P |] ==> P"; | 
| 408 | by (rtac minor 1); | |
| 409 | by (rtac (major RS IntD1) 1); | |
| 410 | by (rtac (major RS IntD2) 1); | |
| 411 | qed "IntE"; | |
| 412 | ||
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 413 | AddSIs [IntI]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 414 | AddSEs [IntE]; | 
| 923 | 415 | |
| 1548 | 416 | section "Set difference"; | 
| 923 | 417 | |
| 7031 | 418 | Goalw [set_diff_def] "(c : A-B) = (c:A & c~:B)"; | 
| 419 | by (Blast_tac 1); | |
| 420 | qed "Diff_iff"; | |
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 421 | Addsimps [Diff_iff]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 422 | |
| 7007 | 423 | Goal "[| c : A; c ~: B |] ==> c : A - B"; | 
| 424 | by (Asm_simp_tac 1) ; | |
| 425 | qed "DiffI"; | |
| 923 | 426 | |
| 7007 | 427 | Goal "c : A - B ==> c : A"; | 
| 428 | by (Asm_full_simp_tac 1) ; | |
| 429 | qed "DiffD1"; | |
| 923 | 430 | |
| 7007 | 431 | Goal "[| c : A - B; c : B |] ==> P"; | 
| 432 | by (Asm_full_simp_tac 1) ; | |
| 433 | qed "DiffD2"; | |
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 434 | |
| 7031 | 435 | val prems = Goal "[| c : A - B; [| c:A; c~:B |] ==> P |] ==> P"; | 
| 7007 | 436 | by (resolve_tac prems 1); | 
| 437 | by (REPEAT (ares_tac (prems RL [DiffD1, DiffD2 RS notI]) 1)) ; | |
| 438 | qed "DiffE"; | |
| 923 | 439 | |
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 440 | AddSIs [DiffI]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 441 | AddSEs [DiffE]; | 
| 923 | 442 | |
| 443 | ||
| 1548 | 444 | section "Augmenting a set -- insert"; | 
| 923 | 445 | |
| 7031 | 446 | Goalw [insert_def] "a : insert b A = (a=b | a:A)"; | 
| 447 | by (Blast_tac 1); | |
| 448 | qed "insert_iff"; | |
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 449 | Addsimps [insert_iff]; | 
| 923 | 450 | |
| 7031 | 451 | Goal "a : insert a B"; | 
| 7007 | 452 | by (Simp_tac 1); | 
| 453 | qed "insertI1"; | |
| 923 | 454 | |
| 7007 | 455 | Goal "!!a. a : B ==> a : insert b B"; | 
| 456 | by (Asm_simp_tac 1); | |
| 457 | qed "insertI2"; | |
| 458 | ||
| 459 | val major::prems = Goalw [insert_def] | |
| 460 | "[| a : insert b A; a=b ==> P; a:A ==> P |] ==> P"; | |
| 461 | by (rtac (major RS UnE) 1); | |
| 462 | by (REPEAT (eresolve_tac (prems @ [CollectE]) 1)); | |
| 463 | qed "insertE"; | |
| 923 | 464 | |
| 465 | (*Classical introduction rule*) | |
| 7031 | 466 | val prems = Goal "(a~:B ==> a=b) ==> a: insert b B"; | 
| 7007 | 467 | by (Simp_tac 1); | 
| 468 | by (REPEAT (ares_tac (prems@[disjCI]) 1)) ; | |
| 469 | qed "insertCI"; | |
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 470 | |
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 471 | AddSIs [insertCI]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 472 | AddSEs [insertE]; | 
| 923 | 473 | |
| 7496 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 474 | Goal "A <= insert x B ==> A <= B & x ~: A | (? B'. A = insert x B' & B' <= B)"; | 
| 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 475 | by (case_tac "x:A" 1); | 
| 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 476 | by (Fast_tac 2); | 
| 7499 | 477 | by (rtac disjI2 1); | 
| 7496 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 478 | by (res_inst_tac [("x","A-{x}")] exI 1);
 | 
| 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 479 | by (Fast_tac 1); | 
| 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 480 | qed "subset_insertD"; | 
| 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 481 | |
| 1548 | 482 | section "Singletons, using insert"; | 
| 923 | 483 | |
| 7007 | 484 | Goal "a : {a}";
 | 
| 485 | by (rtac insertI1 1) ; | |
| 486 | qed "singletonI"; | |
| 923 | 487 | |
| 5143 
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
 paulson parents: 
5069diff
changeset | 488 | Goal "b : {a} ==> b=a";
 | 
| 2891 | 489 | by (Blast_tac 1); | 
| 923 | 490 | qed "singletonD"; | 
| 491 | ||
| 1776 
d7e77cb8ce5c
moved mem_simps and the corresponding update of !simpset from Fun.ML to Set.ML,
 oheimb parents: 
1762diff
changeset | 492 | bind_thm ("singletonE", make_elim singletonD);
 | 
| 
d7e77cb8ce5c
moved mem_simps and the corresponding update of !simpset from Fun.ML to Set.ML,
 oheimb parents: 
1762diff
changeset | 493 | |
| 7007 | 494 | Goal "(b : {a}) = (b=a)";
 | 
| 495 | by (Blast_tac 1); | |
| 496 | qed "singleton_iff"; | |
| 923 | 497 | |
| 5143 
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
 paulson parents: 
5069diff
changeset | 498 | Goal "{a}={b} ==> a=b";
 | 
| 4089 | 499 | by (blast_tac (claset() addEs [equalityE]) 1); | 
| 923 | 500 | qed "singleton_inject"; | 
| 501 | ||
| 2858 | 502 | (*Redundant? But unlike insertCI, it proves the subgoal immediately!*) | 
| 503 | AddSIs [singletonI]; | |
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 504 | AddSDs [singleton_inject]; | 
| 3718 | 505 | AddSEs [singletonE]; | 
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 506 | |
| 7969 | 507 | Goal "{b} = insert a A = (a = b & A <= {b})";
 | 
| 7496 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 508 | by (safe_tac (claset() addSEs [equalityE])); | 
| 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 509 | by (ALLGOALS Blast_tac); | 
| 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 510 | qed "singleton_insert_inj_eq"; | 
| 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 511 | |
| 7969 | 512 | Goal "(insert a A = {b} ) = (a = b & A <= {b})";
 | 
| 513 | by (rtac (singleton_insert_inj_eq RS (eq_sym_conv RS trans)) 1); | |
| 514 | qed "singleton_insert_inj_eq'"; | |
| 515 | ||
| 7496 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 516 | Goal "A <= {x} ==> A={} | A = {x}";
 | 
| 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 517 | by (Fast_tac 1); | 
| 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 518 | qed "subset_singletonD"; | 
| 
93ae11d887ff
added theorems subset_insertD, singleton_insert_inj_eq, subset_singletonD
 oheimb parents: 
7441diff
changeset | 519 | |
| 5069 | 520 | Goal "{x. x=a} = {a}";
 | 
| 4423 | 521 | by (Blast_tac 1); | 
| 3582 | 522 | qed "singleton_conv"; | 
| 523 | Addsimps [singleton_conv]; | |
| 1531 | 524 | |
| 5600 | 525 | Goal "{x. a=x} = {a}";
 | 
| 6301 | 526 | by (Blast_tac 1); | 
| 5600 | 527 | qed "singleton_conv2"; | 
| 528 | Addsimps [singleton_conv2]; | |
| 529 | ||
| 1531 | 530 | |
| 1548 | 531 | section "Unions of families -- UNION x:A. B(x) is Union(B``A)"; | 
| 923 | 532 | |
| 5069 | 533 | Goalw [UNION_def] "(b: (UN x:A. B(x))) = (EX x:A. b: B(x))"; | 
| 2891 | 534 | by (Blast_tac 1); | 
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 535 | qed "UN_iff"; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 536 | |
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 537 | Addsimps [UN_iff]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 538 | |
| 923 | 539 | (*The order of the premises presupposes that A is rigid; b may be flexible*) | 
| 5143 
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
 paulson parents: 
5069diff
changeset | 540 | Goal "[| a:A; b: B(a) |] ==> b: (UN x:A. B(x))"; | 
| 4477 
b3e5857d8d99
New Auto_tac (by Oheimb), and new syntax (without parens), and expandshort
 paulson parents: 
4469diff
changeset | 541 | by Auto_tac; | 
| 923 | 542 | qed "UN_I"; | 
| 543 | ||
| 5316 | 544 | val major::prems = Goalw [UNION_def] | 
| 923 | 545 | "[| b : (UN x:A. B(x)); !!x.[| x:A; b: B(x) |] ==> R |] ==> R"; | 
| 546 | by (rtac (major RS CollectD RS bexE) 1); | |
| 547 | by (REPEAT (ares_tac prems 1)); | |
| 548 | qed "UN_E"; | |
| 549 | ||
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 550 | AddIs [UN_I]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 551 | AddSEs [UN_E]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 552 | |
| 6291 | 553 | val prems = Goalw [UNION_def] | 
| 923 | 554 | "[| A=B; !!x. x:B ==> C(x) = D(x) |] ==> \ | 
| 555 | \ (UN x:A. C(x)) = (UN x:B. D(x))"; | |
| 6291 | 556 | by (asm_simp_tac (simpset() addsimps prems) 1); | 
| 923 | 557 | qed "UN_cong"; | 
| 558 | ||
| 559 | ||
| 1548 | 560 | section "Intersections of families -- INTER x:A. B(x) is Inter(B``A)"; | 
| 923 | 561 | |
| 5069 | 562 | Goalw [INTER_def] "(b: (INT x:A. B(x))) = (ALL x:A. b: B(x))"; | 
| 4477 
b3e5857d8d99
New Auto_tac (by Oheimb), and new syntax (without parens), and expandshort
 paulson parents: 
4469diff
changeset | 563 | by Auto_tac; | 
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 564 | qed "INT_iff"; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 565 | |
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 566 | Addsimps [INT_iff]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 567 | |
| 5316 | 568 | val prems = Goalw [INTER_def] | 
| 923 | 569 | "(!!x. x:A ==> b: B(x)) ==> b : (INT x:A. B(x))"; | 
| 570 | by (REPEAT (ares_tac ([CollectI,ballI] @ prems) 1)); | |
| 571 | qed "INT_I"; | |
| 572 | ||
| 5143 
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
 paulson parents: 
5069diff
changeset | 573 | Goal "[| b : (INT x:A. B(x)); a:A |] ==> b: B(a)"; | 
| 4477 
b3e5857d8d99
New Auto_tac (by Oheimb), and new syntax (without parens), and expandshort
 paulson parents: 
4469diff
changeset | 574 | by Auto_tac; | 
| 923 | 575 | qed "INT_D"; | 
| 576 | ||
| 577 | (*"Classical" elimination -- by the Excluded Middle on a:A *) | |
| 5316 | 578 | val major::prems = Goalw [INTER_def] | 
| 923 | 579 | "[| b : (INT x:A. B(x)); b: B(a) ==> R; a~:A ==> R |] ==> R"; | 
| 580 | by (rtac (major RS CollectD RS ballE) 1); | |
| 581 | by (REPEAT (eresolve_tac prems 1)); | |
| 582 | qed "INT_E"; | |
| 583 | ||
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 584 | AddSIs [INT_I]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 585 | AddEs [INT_D, INT_E]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 586 | |
| 6291 | 587 | val prems = Goalw [INTER_def] | 
| 923 | 588 | "[| A=B; !!x. x:B ==> C(x) = D(x) |] ==> \ | 
| 589 | \ (INT x:A. C(x)) = (INT x:B. D(x))"; | |
| 6291 | 590 | by (asm_simp_tac (simpset() addsimps prems) 1); | 
| 923 | 591 | qed "INT_cong"; | 
| 592 | ||
| 593 | ||
| 1548 | 594 | section "Union"; | 
| 923 | 595 | |
| 5069 | 596 | Goalw [Union_def] "(A : Union(C)) = (EX X:C. A:X)"; | 
| 2891 | 597 | by (Blast_tac 1); | 
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 598 | qed "Union_iff"; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 599 | |
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 600 | Addsimps [Union_iff]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 601 | |
| 923 | 602 | (*The order of the premises presupposes that C is rigid; A may be flexible*) | 
| 5143 
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
 paulson parents: 
5069diff
changeset | 603 | Goal "[| X:C; A:X |] ==> A : Union(C)"; | 
| 4477 
b3e5857d8d99
New Auto_tac (by Oheimb), and new syntax (without parens), and expandshort
 paulson parents: 
4469diff
changeset | 604 | by Auto_tac; | 
| 923 | 605 | qed "UnionI"; | 
| 606 | ||
| 5316 | 607 | val major::prems = Goalw [Union_def] | 
| 923 | 608 | "[| A : Union(C); !!X.[| A:X; X:C |] ==> R |] ==> R"; | 
| 609 | by (rtac (major RS UN_E) 1); | |
| 610 | by (REPEAT (ares_tac prems 1)); | |
| 611 | qed "UnionE"; | |
| 612 | ||
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 613 | AddIs [UnionI]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 614 | AddSEs [UnionE]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 615 | |
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 616 | |
| 1548 | 617 | section "Inter"; | 
| 923 | 618 | |
| 5069 | 619 | Goalw [Inter_def] "(A : Inter(C)) = (ALL X:C. A:X)"; | 
| 2891 | 620 | by (Blast_tac 1); | 
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 621 | qed "Inter_iff"; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 622 | |
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 623 | Addsimps [Inter_iff]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 624 | |
| 5316 | 625 | val prems = Goalw [Inter_def] | 
| 923 | 626 | "[| !!X. X:C ==> A:X |] ==> A : Inter(C)"; | 
| 627 | by (REPEAT (ares_tac ([INT_I] @ prems) 1)); | |
| 628 | qed "InterI"; | |
| 629 | ||
| 630 | (*A "destruct" rule -- every X in C contains A as an element, but | |
| 631 | A:X can hold when X:C does not! This rule is analogous to "spec". *) | |
| 5143 
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
 paulson parents: 
5069diff
changeset | 632 | Goal "[| A : Inter(C); X:C |] ==> A:X"; | 
| 4477 
b3e5857d8d99
New Auto_tac (by Oheimb), and new syntax (without parens), and expandshort
 paulson parents: 
4469diff
changeset | 633 | by Auto_tac; | 
| 923 | 634 | qed "InterD"; | 
| 635 | ||
| 636 | (*"Classical" elimination rule -- does not require proving X:C *) | |
| 5316 | 637 | val major::prems = Goalw [Inter_def] | 
| 2721 | 638 | "[| A : Inter(C); X~:C ==> R; A:X ==> R |] ==> R"; | 
| 923 | 639 | by (rtac (major RS INT_E) 1); | 
| 640 | by (REPEAT (eresolve_tac prems 1)); | |
| 641 | qed "InterE"; | |
| 642 | ||
| 2499 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 643 | AddSIs [InterI]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 644 | AddEs [InterD, InterE]; | 
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 645 | |
| 
0bc87b063447
Tidying of proofs.  New theorems are enterred immediately into the
 paulson parents: 
2031diff
changeset | 646 | |
| 2912 | 647 | (*** Image of a set under a function ***) | 
| 648 | ||
| 649 | (*Frequently b does not have the syntactic form of f(x).*) | |
| 5316 | 650 | Goalw [image_def] "[| b=f(x); x:A |] ==> b : f``A"; | 
| 651 | by (Blast_tac 1); | |
| 2912 | 652 | qed "image_eqI"; | 
| 3909 | 653 | Addsimps [image_eqI]; | 
| 2912 | 654 | |
| 655 | bind_thm ("imageI", refl RS image_eqI);
 | |
| 656 | ||
| 8025 | 657 | (*This version's more effective when we already have the required x*) | 
| 658 | Goalw [image_def] "[| x:A; b=f(x) |] ==> b : f``A"; | |
| 659 | by (Blast_tac 1); | |
| 660 | qed "rev_image_eqI"; | |
| 661 | ||
| 2912 | 662 | (*The eta-expansion gives variable-name preservation.*) | 
| 5316 | 663 | val major::prems = Goalw [image_def] | 
| 3842 | 664 | "[| b : (%x. f(x))``A; !!x.[| b=f(x); x:A |] ==> P |] ==> P"; | 
| 2912 | 665 | by (rtac (major RS CollectD RS bexE) 1); | 
| 666 | by (REPEAT (ares_tac prems 1)); | |
| 667 | qed "imageE"; | |
| 668 | ||
| 669 | AddIs [image_eqI]; | |
| 670 | AddSEs [imageE]; | |
| 671 | ||
| 5069 | 672 | Goal "f``(A Un B) = f``A Un f``B"; | 
| 2935 | 673 | by (Blast_tac 1); | 
| 2912 | 674 | qed "image_Un"; | 
| 675 | ||
| 5069 | 676 | Goal "(z : f``A) = (EX x:A. z = f x)"; | 
| 3960 | 677 | by (Blast_tac 1); | 
| 678 | qed "image_iff"; | |
| 679 | ||
| 4523 | 680 | (*This rewrite rule would confuse users if made default.*) | 
| 5069 | 681 | Goal "(f``A <= B) = (ALL x:A. f(x): B)"; | 
| 4523 | 682 | by (Blast_tac 1); | 
| 683 | qed "image_subset_iff"; | |
| 684 | ||
| 685 | (*Replaces the three steps subsetI, imageE, hyp_subst_tac, but breaks too | |
| 686 | many existing proofs.*) | |
| 5316 | 687 | val prems = Goal "(!!x. x:A ==> f(x) : B) ==> f``A <= B"; | 
| 4510 | 688 | by (blast_tac (claset() addIs prems) 1); | 
| 689 | qed "image_subsetI"; | |
| 690 | ||
| 2912 | 691 | |
| 692 | (*** Range of a function -- just a translation for image! ***) | |
| 693 | ||
| 5143 
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
 paulson parents: 
5069diff
changeset | 694 | Goal "b=f(x) ==> b : range(f)"; | 
| 2912 | 695 | by (EVERY1 [etac image_eqI, rtac UNIV_I]); | 
| 696 | bind_thm ("range_eqI", UNIV_I RSN (2,image_eqI));
 | |
| 697 | ||
| 698 | bind_thm ("rangeI", UNIV_I RS imageI);
 | |
| 699 | ||
| 5316 | 700 | val [major,minor] = Goal | 
| 3842 | 701 | "[| b : range(%x. f(x)); !!x. b=f(x) ==> P |] ==> P"; | 
| 2912 | 702 | by (rtac (major RS imageE) 1); | 
| 703 | by (etac minor 1); | |
| 704 | qed "rangeE"; | |
| 705 | ||
| 1776 
d7e77cb8ce5c
moved mem_simps and the corresponding update of !simpset from Fun.ML to Set.ML,
 oheimb parents: 
1762diff
changeset | 706 | |
| 
d7e77cb8ce5c
moved mem_simps and the corresponding update of !simpset from Fun.ML to Set.ML,
 oheimb parents: 
1762diff
changeset | 707 | (*** Set reasoning tools ***) | 
| 
d7e77cb8ce5c
moved mem_simps and the corresponding update of !simpset from Fun.ML to Set.ML,
 oheimb parents: 
1762diff
changeset | 708 | |
| 
d7e77cb8ce5c
moved mem_simps and the corresponding update of !simpset from Fun.ML to Set.ML,
 oheimb parents: 
1762diff
changeset | 709 | |
| 3912 | 710 | (** Rewrite rules for boolean case-splitting: faster than | 
| 4830 | 711 | addsplits[split_if] | 
| 3912 | 712 | **) | 
| 713 | ||
| 4830 | 714 | bind_thm ("split_if_eq1", read_instantiate [("P", "%x. x = ?b")] split_if);
 | 
| 715 | bind_thm ("split_if_eq2", read_instantiate [("P", "%x. ?a = x")] split_if);
 | |
| 3912 | 716 | |
| 5237 | 717 | (*Split ifs on either side of the membership relation. | 
| 718 | Not for Addsimps -- can cause goals to blow up!*) | |
| 4830 | 719 | bind_thm ("split_if_mem1", 
 | 
| 6394 | 720 |     read_instantiate_sg (Theory.sign_of Set.thy) [("P", "%x. x : ?b")] split_if);
 | 
| 4830 | 721 | bind_thm ("split_if_mem2", 
 | 
| 6394 | 722 |     read_instantiate_sg (Theory.sign_of Set.thy) [("P", "%x. ?a : x")] split_if);
 | 
| 3912 | 723 | |
| 4830 | 724 | val split_ifs = [if_bool_eq_conj, split_if_eq1, split_if_eq2, | 
| 725 | split_if_mem1, split_if_mem2]; | |
| 3912 | 726 | |
| 727 | ||
| 4089 | 728 | (*Each of these has ALREADY been added to simpset() above.*) | 
| 2024 
909153d8318f
Rationalized the rewriting of membership for {} and insert
 paulson parents: 
1985diff
changeset | 729 | val mem_simps = [insert_iff, empty_iff, Un_iff, Int_iff, Compl_iff, Diff_iff, | 
| 4159 
4aff9b7e5597
UNIV now a constant; UNION1, INTER1 now translations and no longer have
 paulson parents: 
4135diff
changeset | 730 | mem_Collect_eq, UN_iff, Union_iff, INT_iff, Inter_iff]; | 
| 1776 
d7e77cb8ce5c
moved mem_simps and the corresponding update of !simpset from Fun.ML to Set.ML,
 oheimb parents: 
1762diff
changeset | 731 | |
| 
d7e77cb8ce5c
moved mem_simps and the corresponding update of !simpset from Fun.ML to Set.ML,
 oheimb parents: 
1762diff
changeset | 732 | val mksimps_pairs = ("Ball",[bspec]) :: mksimps_pairs;
 | 
| 
d7e77cb8ce5c
moved mem_simps and the corresponding update of !simpset from Fun.ML to Set.ML,
 oheimb parents: 
1762diff
changeset | 733 | |
| 6291 | 734 | simpset_ref() := simpset() setmksimps (mksimps mksimps_pairs); | 
| 3222 
726a9b069947
Distributed Psubset stuff to basic set theory files, incl Finite.
 nipkow parents: 
2935diff
changeset | 735 | |
| 5256 | 736 | Addsimps[subset_UNIV, subset_refl]; | 
| 3222 
726a9b069947
Distributed Psubset stuff to basic set theory files, incl Finite.
 nipkow parents: 
2935diff
changeset | 737 | |
| 
726a9b069947
Distributed Psubset stuff to basic set theory files, incl Finite.
 nipkow parents: 
2935diff
changeset | 738 | |
| 8001 | 739 | (*** The 'proper subset' relation (<) ***) | 
| 3222 
726a9b069947
Distributed Psubset stuff to basic set theory files, incl Finite.
 nipkow parents: 
2935diff
changeset | 740 | |
| 5069 | 741 | Goalw [psubset_def] "!!A::'a set. [| A <= B; A ~= B |] ==> A<B"; | 
| 3222 
726a9b069947
Distributed Psubset stuff to basic set theory files, incl Finite.
 nipkow parents: 
2935diff
changeset | 742 | by (Blast_tac 1); | 
| 
726a9b069947
Distributed Psubset stuff to basic set theory files, incl Finite.
 nipkow parents: 
2935diff
changeset | 743 | qed "psubsetI"; | 
| 7658 | 744 | AddXIs [psubsetI]; | 
| 3222 
726a9b069947
Distributed Psubset stuff to basic set theory files, incl Finite.
 nipkow parents: 
2935diff
changeset | 745 | |
| 5148 
74919e8f221c
More tidying and removal of "\!\!... from Goal commands
 paulson parents: 
5143diff
changeset | 746 | Goalw [psubset_def] "A < insert x B ==> (x ~: A) & A<=B | x:A & A-{x}<B";
 | 
| 4477 
b3e5857d8d99
New Auto_tac (by Oheimb), and new syntax (without parens), and expandshort
 paulson parents: 
4469diff
changeset | 747 | by Auto_tac; | 
| 3222 
726a9b069947
Distributed Psubset stuff to basic set theory files, incl Finite.
 nipkow parents: 
2935diff
changeset | 748 | qed "psubset_insertD"; | 
| 4059 | 749 | |
| 750 | bind_thm ("psubset_eq", psubset_def RS meta_eq_to_obj_eq);
 | |
| 6443 | 751 | |
| 752 | bind_thm ("psubset_imp_subset", psubset_eq RS iffD1 RS conjunct1);
 | |
| 753 | ||
| 754 | Goal"[| (A::'a set) < B; B <= C |] ==> A < C"; | |
| 755 | by (auto_tac (claset(), simpset() addsimps [psubset_eq])); | |
| 756 | qed "psubset_subset_trans"; | |
| 757 | ||
| 758 | Goal"[| (A::'a set) <= B; B < C|] ==> A < C"; | |
| 759 | by (auto_tac (claset(), simpset() addsimps [psubset_eq])); | |
| 760 | qed "subset_psubset_trans"; | |
| 7717 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 761 | |
| 8001 | 762 | Goalw [psubset_def] "A < B ==> EX b. b : (B - A)"; | 
| 763 | by (Blast_tac 1); | |
| 764 | qed "psubset_imp_ex_mem"; | |
| 765 | ||
| 7717 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 766 | |
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 767 | (* attributes *) | 
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 768 | |
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 769 | local | 
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 770 | |
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 771 | fun gen_rulify_prems x = | 
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 772 | Attrib.no_args (Drule.rule_attribute (fn _ => (standard o | 
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 773 | rule_by_tactic (REPEAT (ALLGOALS (resolve_tac [allI, ballI, impI])))))) x; | 
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 774 | |
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 775 | in | 
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 776 | |
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 777 | val rulify_prems_attrib_setup = | 
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 778 | [Attrib.add_attributes | 
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 779 |   [("rulify_prems", (gen_rulify_prems, gen_rulify_prems), "put theorem into standard rule form")]];
 | 
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 780 | |
| 
e7ecfa617443
Added attribute rulify_prems (useful for modifying premises of introduction
 berghofe parents: 
7658diff
changeset | 781 | end; |