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