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