src/HOL/Fun.ML
author clasohm
Wed, 04 Oct 1995 13:10:03 +0100
changeset 1264 3eb91524b938
parent 923 ff1574a81019
child 1465 5d7a7e439cec
permissions -rw-r--r--
added local simpsets; removed IOA from 'make test'
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     1
(*  Title: 	HOL/Fun
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     3
    Author: 	Tobias Nipkow, Cambridge University Computer Laboratory
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1993  University of Cambridge
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
Lemmas about functions.
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
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 923
diff changeset
     9
simpset := HOL_ss;
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 923
diff changeset
    10
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    11
goal Fun.thy "(f = g) = (!x. f(x)=g(x))";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
by (rtac iffI 1);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 923
diff changeset
    13
by (Asm_simp_tac 1);
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 923
diff changeset
    14
by (rtac ext 1 THEN Asm_simp_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
qed "expand_fun_eq";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
val prems = goal Fun.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
    "[| f(x)=u;  !!x. P(x) ==> g(f(x)) = x;  P(x) |] ==> x=g(u)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
by (rtac (arg_cong RS box_equals) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
by (REPEAT (resolve_tac (prems@[refl]) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
qed "apply_inverse";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
(*** Range of a function ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    25
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
(*Frequently b does not have the syntactic form of f(x).*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
val [prem] = goalw Fun.thy [range_def] "b=f(x) ==> b : range(f)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
by (EVERY1 [rtac CollectI, rtac exI, rtac prem]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
qed "range_eqI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
val rangeI = refl RS range_eqI;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    33
val [major,minor] = goalw Fun.thy [range_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    34
    "[| b : range(%x.f(x));  !!x. b=f(x) ==> P |] ==> P"; 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
by (rtac (major RS CollectD RS exE) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
by (etac minor 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    37
qed "rangeE";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    38
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    39
(*** Image of a set under a function ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    40
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    41
val prems = goalw Fun.thy [image_def] "[| b=f(x);  x:A |] ==> b : f``A";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    42
by (REPEAT (resolve_tac (prems @ [CollectI,bexI,prem]) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    43
qed "image_eqI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    44
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    45
val imageI = refl RS image_eqI;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    46
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    47
(*The eta-expansion gives variable-name preservation.*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    48
val major::prems = goalw Fun.thy [image_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    49
    "[| b : (%x.f(x))``A;  !!x.[| b=f(x);  x:A |] ==> P |] ==> P"; 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    50
by (rtac (major RS CollectD RS bexE) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    51
by (REPEAT (ares_tac prems 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    52
qed "imageE";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
goalw Fun.thy [o_def] "(f o g)``r = f``(g``r)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    55
by (rtac set_ext 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
by (fast_tac (HOL_cs addIs [imageI] addSEs [imageE]) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    57
qed "image_compose";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    59
goal Fun.thy "f``(A Un B) = f``A Un f``B";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    60
by (rtac set_ext 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    61
by (fast_tac (HOL_cs addIs [imageI,UnCI] addSEs [imageE,UnE]) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    62
qed "image_Un";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    63
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
(*** inj(f): f is a one-to-one function ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    65
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    66
val prems = goalw Fun.thy [inj_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    67
    "[| !! x y. f(x) = f(y) ==> x=y |] ==> inj(f)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    68
by (fast_tac (HOL_cs addIs prems) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    69
qed "injI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    70
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    71
val [major] = goal Fun.thy "(!!x. g(f(x)) = x) ==> inj(f)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    72
by (rtac injI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    73
by (etac (arg_cong RS box_equals) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    74
by (rtac major 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    75
by (rtac major 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    76
qed "inj_inverseI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    78
val [major,minor] = goalw Fun.thy [inj_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    79
    "[| inj(f); f(x) = f(y) |] ==> x=y";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    80
by (rtac (major RS spec RS spec RS mp) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    81
by (rtac minor 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    82
qed "injD";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    83
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    84
(*Useful with the simplifier*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
val [major] = goal Fun.thy "inj(f) ==> (f(x) = f(y)) = (x=y)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    86
by (rtac iffI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    87
by (etac (major RS injD) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    88
by (etac arg_cong 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    89
qed "inj_eq";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    90
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    91
val [major] = goal Fun.thy "inj(f) ==> (@x.f(x)=f(y)) = y";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    92
by (rtac (major RS injD) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    93
by (rtac selectI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    94
by (rtac refl 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    95
qed "inj_select";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    96
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    97
(*A one-to-one function has an inverse (given using select).*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    98
val [major] = goalw Fun.thy [Inv_def] "inj(f) ==> Inv f (f x) = x";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    99
by (EVERY1 [rtac (major RS inj_select)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   100
qed "Inv_f_f";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   101
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   102
(* Useful??? *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   103
val [oneone,minor] = goal Fun.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   104
    "[| inj(f); !!y. y: range(f) ==> P(Inv f y) |] ==> P(x)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   105
by (res_inst_tac [("t", "x")] (oneone RS (Inv_f_f RS subst)) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   106
by (rtac (rangeI RS minor) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
qed "inj_transfer";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   108
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   109
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   110
(*** inj_onto f A: f is one-to-one over A ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   111
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   112
val prems = goalw Fun.thy [inj_onto_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   113
    "(!! x y. [| f(x) = f(y);  x:A;  y:A |] ==> x=y) ==> inj_onto f A";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   114
by (fast_tac (HOL_cs addIs prems addSIs [ballI]) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   115
qed "inj_ontoI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   116
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   117
val [major] = goal Fun.thy 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   118
    "(!!x. x:A ==> g(f(x)) = x) ==> inj_onto f A";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   119
by (rtac inj_ontoI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   120
by (etac (apply_inverse RS trans) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   121
by (REPEAT (eresolve_tac [asm_rl,major] 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   122
qed "inj_onto_inverseI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   123
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   124
val major::prems = goalw Fun.thy [inj_onto_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   125
    "[| inj_onto f A;  f(x)=f(y);  x:A;  y:A |] ==> x=y";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   126
by (rtac (major RS bspec RS bspec RS mp) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   127
by (REPEAT (resolve_tac prems 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   128
qed "inj_ontoD";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   129
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   130
goal Fun.thy "!!x y.[| inj_onto f A;  x:A;  y:A |] ==> (f(x)=f(y)) = (x=y)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   131
by (fast_tac (HOL_cs addSEs [inj_ontoD]) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   132
qed "inj_onto_iff";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   133
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   134
val major::prems = goal Fun.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   135
    "[| inj_onto f A;  ~x=y;  x:A;  y:A |] ==> ~ f(x)=f(y)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   136
by (rtac contrapos 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   137
by (etac (major RS inj_ontoD) 2);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   138
by (REPEAT (resolve_tac prems 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   139
qed "inj_onto_contraD";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   140
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   141
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   142
(*** Lemmas about inj ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   143
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   144
val prems = goalw Fun.thy [o_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   145
    "[| inj(f);  inj_onto g (range f) |] ==> inj(g o f)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   146
by (cut_facts_tac prems 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   147
by (fast_tac (HOL_cs addIs [injI,rangeI]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   148
                     addEs [injD,inj_ontoD]) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   149
qed "comp_inj";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   150
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   151
val [prem] = goal Fun.thy "inj(f) ==> inj_onto f A";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   152
by (fast_tac (HOL_cs addIs [prem RS injD, inj_ontoI]) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   153
qed "inj_imp";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   154
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   155
val [prem] = goalw Fun.thy [Inv_def] "y : range(f) ==> f(Inv f y) = y";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   156
by (EVERY1 [rtac (prem RS rangeE), rtac selectI, etac sym]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   157
qed "f_Inv_f";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   158
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   159
val prems = goal Fun.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   160
    "[| Inv f x=Inv f y; x: range(f);  y: range(f) |] ==> x=y";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   161
by (rtac (arg_cong RS box_equals) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   162
by (REPEAT (resolve_tac (prems @ [f_Inv_f]) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   163
qed "Inv_injective";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   164
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   165
val prems = goal Fun.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   166
    "[| inj(f);  A<=range(f) |] ==> inj_onto (Inv f) A";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   167
by (cut_facts_tac prems 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   168
by (fast_tac (HOL_cs addIs [inj_ontoI] 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   169
		     addEs [Inv_injective,injD,subsetD]) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   170
qed "inj_onto_Inv";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   171
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   172
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   173
(*** Set reasoning tools ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   174
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   175
val set_cs = HOL_cs 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   176
    addSIs [ballI, PowI, subsetI, InterI, INT_I, INT1_I, CollectI, 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   177
	    ComplI, IntI, DiffI, UnCI, insertCI] 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   178
    addIs  [bexI, UnionI, UN_I, UN1_I, imageI, rangeI] 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   179
    addSEs [bexE, make_elim PowD, UnionE, UN_E, UN1_E, DiffE,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   180
	    CollectE, ComplE, IntE, UnE, insertE, imageE, rangeE, emptyE] 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   181
    addEs  [ballE, InterD, InterE, INT_D, INT_E, make_elim INT1_D,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   182
	    subsetD, subsetCE];
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
fun cfast_tac prems = cut_facts_tac prems THEN' fast_tac set_cs;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   185
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
fun prover s = prove_goal Fun.thy s (fn _=>[fast_tac set_cs 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   188
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   189
val mem_simps = map prover
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   190
 [ "(a : A Un B)   =  (a:A | a:B)",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   191
   "(a : A Int B)  =  (a:A & a:B)",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   192
   "(a : Compl(B)) =  (~a:B)",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   193
   "(a : A-B)      =  (a:A & ~a:B)",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   194
   "(a : {b})      =  (a=b)",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   195
   "(a : {x.P(x)}) =  P(a)" ];
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   196
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   197
val mksimps_pairs = ("Ball",[bspec]) :: mksimps_pairs;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   198
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 923
diff changeset
   199
simpset := !simpset addsimps mem_simps
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 923
diff changeset
   200
                    addcongs [ball_cong,bex_cong]
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 923
diff changeset
   201
                    setmksimps (mksimps mksimps_pairs);