src/HOL/HOL.ML
author clasohm
Wed, 21 Jun 1995 15:47:10 +0200
changeset 1151 c820b3cc3df0
parent 923 ff1574a81019
child 1334 32a9fde85699
permissions -rw-r--r--
removed \...\ inside strings
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/hol.ML
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
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
For hol.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
Derived rules from Appendix of Mike Gordons HOL Report, Cambridge TR 68 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
open HOL;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    11
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
(** Equality **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
qed_goal "sym" HOL.thy "s=t ==> t=s"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
 (fn prems => [cut_facts_tac prems 1, etac subst 1, rtac refl 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
(*calling "standard" reduces maxidx to 0*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
bind_thm ("ssubst", (sym RS subst));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
qed_goal "trans" HOL.thy "[| r=s; s=t |] ==> r=t"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
	[rtac subst 1, resolve_tac prems 1, resolve_tac prems 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    25
(*Useful with eresolve_tac for proving equalties from known equalities.
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
	a = b
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
	|   |
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
	c = d	*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
qed_goal "box_equals" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
    "[| a=b;  a=c;  b=d |] ==> c=d"  
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
 (fn prems=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
  [ (rtac trans 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    33
    (rtac trans 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    34
    (rtac sym 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
    (REPEAT (resolve_tac prems 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    37
(** Congruence rules for meta-application **)
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
(*similar to AP_THM in Gordon's HOL*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    40
qed_goal "fun_cong" HOL.thy "(f::'a=>'b) = g ==> f(x)=g(x)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    41
  (fn [prem] => [rtac (prem RS subst) 1, rtac refl 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    42
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    43
(*similar to AP_TERM in Gordon's HOL and FOL's subst_context*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    44
qed_goal "arg_cong" HOL.thy "x=y ==> f(x)=f(y)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    45
 (fn [prem] => [rtac (prem RS subst) 1, rtac refl 1]);
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
qed_goal "cong" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    48
   "[| f = g; (x::'a) = y |] ==> f(x) = g(y)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    49
 (fn [prem1,prem2] =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    50
   [rtac (prem1 RS subst) 1, rtac (prem2 RS subst) 1, rtac refl 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    51
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    52
(** Equality of booleans -- iff **)
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
qed_goal "iffI" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    55
   "[| P ==> Q;  Q ==> P |] ==> P=Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
 (fn prems=> [ (REPEAT (ares_tac (prems@[impI, iff RS mp RS mp]) 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    57
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
qed_goal "iffD2" HOL.thy "[| P=Q; Q |] ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    59
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    60
	[rtac ssubst 1, resolve_tac prems 1, resolve_tac prems 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    61
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    62
val iffD1 = sym RS iffD2;
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
qed_goal "iffE" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    65
    "[| P=Q; [| P --> Q; Q --> P |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    66
 (fn [p1,p2] => [REPEAT(ares_tac([p1 RS iffD2, p1 RS iffD1, p2, impI])1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    67
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    68
(** True **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    69
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    70
qed_goalw "TrueI" HOL.thy [True_def] "True"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    71
  (fn _ => [rtac refl 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    72
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    73
qed_goal "eqTrueI " HOL.thy "P ==> P=True" 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    74
 (fn prems => [REPEAT(resolve_tac ([iffI,TrueI]@prems) 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    75
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    76
qed_goal "eqTrueE" HOL.thy "P=True ==> P" 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
 (fn prems => [REPEAT(resolve_tac (prems@[TrueI,iffD2]) 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    78
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    79
(** Universal quantifier **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    80
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    81
qed_goalw "allI" HOL.thy [All_def] "(!!x::'a. P(x)) ==> !x. P(x)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    82
 (fn prems => [resolve_tac (prems RL [eqTrueI RS ext]) 1]);
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
qed_goalw "spec" HOL.thy [All_def] "! x::'a.P(x) ==> P(x)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
 (fn prems => [rtac eqTrueE 1, resolve_tac (prems RL [fun_cong]) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    86
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    87
qed_goal "allE" HOL.thy "[| !x.P(x);  P(x) ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    88
 (fn major::prems=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    89
  [ (REPEAT (resolve_tac (prems @ [major RS spec]) 1)) ]);
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
qed_goal "all_dupE" HOL.thy 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    92
    "[| ! x.P(x);  [| P(x); ! x.P(x) |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    93
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    94
  [ (REPEAT (resolve_tac (prems @ (prems RL [spec])) 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    95
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    96
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    97
(** False ** Depends upon spec; it is impossible to do propositional logic
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    98
             before quantifiers! **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    99
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   100
qed_goalw "FalseE" HOL.thy [False_def] "False ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   101
 (fn [major] => [rtac (major RS spec) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   102
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   103
qed_goal "False_neq_True" HOL.thy "False=True ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   104
 (fn [prem] => [rtac (prem RS eqTrueE RS FalseE) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   105
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   106
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
(** Negation **)
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
qed_goalw "notI" HOL.thy [not_def] "(P ==> False) ==> ~P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   110
 (fn prems=> [rtac impI 1, eresolve_tac prems 1]);
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
qed_goalw "notE" HOL.thy [not_def] "[| ~P;  P |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   113
 (fn prems => [rtac (prems MRS mp RS FalseE) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   114
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   115
(** Implication **)
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
qed_goal "impE" HOL.thy "[| P-->Q;  P;  Q ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   118
 (fn prems=> [ (REPEAT (resolve_tac (prems@[mp]) 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   119
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   120
(* Reduces Q to P-->Q, allowing substitution in P. *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   121
qed_goal "rev_mp" HOL.thy "[| P;  P --> Q |] ==> Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   122
 (fn prems=>  [ (REPEAT (resolve_tac (prems@[mp]) 1)) ]);
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
qed_goal "contrapos" HOL.thy "[| ~Q;  P==>Q |] ==> ~P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   125
 (fn [major,minor]=> 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   126
  [ (rtac (major RS notE RS notI) 1), 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   127
    (etac minor 1) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   128
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   129
(* ~(?t = ?s) ==> ~(?s = ?t) *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   130
val [not_sym] = compose(sym,2,contrapos);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   131
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   132
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   133
(** Existential quantifier **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   134
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   135
qed_goalw "exI" HOL.thy [Ex_def] "P(x) ==> ? x::'a.P(x)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   136
 (fn prems => [rtac selectI 1, resolve_tac prems 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   137
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   138
qed_goalw "exE" HOL.thy [Ex_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   139
  "[| ? x::'a.P(x); !!x. P(x) ==> Q |] ==> Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   140
  (fn prems => [REPEAT(resolve_tac prems 1)]);
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   143
(** Conjunction **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   144
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   145
qed_goalw "conjI" HOL.thy [and_def] "[| P; Q |] ==> P&Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   146
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   147
  [REPEAT (resolve_tac (prems@[allI,impI]) 1 ORELSE etac (mp RS mp) 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   148
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   149
qed_goalw "conjunct1" HOL.thy [and_def] "[| P & Q |] ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   150
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   151
   [resolve_tac (prems RL [spec] RL [mp]) 1, REPEAT(ares_tac [impI] 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   152
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   153
qed_goalw "conjunct2" HOL.thy [and_def] "[| P & Q |] ==> Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   154
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   155
   [resolve_tac (prems RL [spec] RL [mp]) 1, REPEAT(ares_tac [impI] 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   156
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   157
qed_goal "conjE" HOL.thy "[| P&Q;  [| P; Q |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   158
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   159
	 [cut_facts_tac prems 1, resolve_tac prems 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   160
	  etac conjunct1 1, etac conjunct2 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   161
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   162
(** Disjunction *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   163
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   164
qed_goalw "disjI1" HOL.thy [or_def] "P ==> P|Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   165
 (fn [prem] => [REPEAT(ares_tac [allI,impI, prem RSN (2,mp)] 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   166
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   167
qed_goalw "disjI2" HOL.thy [or_def] "Q ==> P|Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   168
 (fn [prem] => [REPEAT(ares_tac [allI,impI, prem RSN (2,mp)] 1)]);
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
qed_goalw "disjE" HOL.thy [or_def] "[| P | Q; P ==> R; Q ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   171
 (fn [a1,a2,a3] =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   172
	[rtac (mp RS mp) 1, rtac spec 1, rtac a1 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   173
	 rtac (a2 RS impI) 1, assume_tac 1, rtac (a3 RS impI) 1, assume_tac 1]);
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
(** CCONTR -- classical logic **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   176
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   177
qed_goalw "classical" HOL.thy [not_def]  "(~P ==> P) ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   178
 (fn [prem] =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   179
   [rtac (True_or_False RS (disjE RS eqTrueE)) 1,  assume_tac 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   180
    rtac (impI RS prem RS eqTrueI) 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   181
    etac subst 1,  assume_tac 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   182
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   183
val ccontr = FalseE RS classical;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   184
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   185
(*Double negation law*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   186
qed_goal "notnotD" HOL.thy "~~P ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   187
 (fn [major]=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   188
  [ (rtac classical 1), (eresolve_tac [major RS notE] 1) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   189
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   190
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   191
(** Unique existence **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   192
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   193
qed_goalw "ex1I" HOL.thy [Ex1_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   194
    "[| P(a);  !!x. P(x) ==> x=a |] ==> ?! x. P(x)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   195
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   196
  [REPEAT (ares_tac (prems@[exI,conjI,allI,impI]) 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   197
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   198
qed_goalw "ex1E" HOL.thy [Ex1_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   199
    "[| ?! x.P(x);  !!x. [| P(x);  ! y. P(y) --> y=x |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   200
 (fn major::prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   201
  [rtac (major RS exE) 1, REPEAT (etac conjE 1 ORELSE ares_tac prems 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   202
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   203
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   204
(** Select: Hilbert's Epsilon-operator **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   205
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   206
(*Easier to apply than selectI: conclusion has only one occurrence of P*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   207
qed_goal "selectI2" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   208
    "[| P(a);  !!x. P(x) ==> Q(x) |] ==> Q(@x.P(x))"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   209
 (fn prems => [ resolve_tac prems 1, 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   210
	        rtac selectI 1, 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   211
		resolve_tac prems 1 ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   212
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   213
qed_goal "select_equality" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   214
    "[| P(a);  !!x. P(x) ==> x=a |] ==> (@x.P(x)) = a"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   215
 (fn prems => [ rtac selectI2 1, 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   216
		REPEAT (ares_tac prems 1) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   217
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   218
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   219
(** Classical intro rules for disjunction and existential quantifiers *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   220
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   221
qed_goal "disjCI" HOL.thy "(~Q ==> P) ==> P|Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   222
 (fn prems=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   223
  [ (rtac classical 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   224
    (REPEAT (ares_tac (prems@[disjI1,notI]) 1)),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   225
    (REPEAT (ares_tac (prems@[disjI2,notE]) 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   226
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   227
qed_goal "excluded_middle" HOL.thy "~P | P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   228
 (fn _ => [ (REPEAT (ares_tac [disjCI] 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   229
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   230
(*For disjunctive case analysis*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   231
fun excluded_middle_tac sP =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   232
    res_inst_tac [("Q",sP)] (excluded_middle RS disjE);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   233
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   234
(*Classical implies (-->) elimination. *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   235
qed_goal "impCE" HOL.thy "[| P-->Q; ~P ==> R; Q ==> R |] ==> R" 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   236
 (fn major::prems=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   237
  [ rtac (excluded_middle RS disjE) 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   238
    REPEAT (DEPTH_SOLVE_1 (ares_tac (prems @ [major RS mp]) 1))]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   239
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   240
(*Classical <-> elimination. *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   241
qed_goal "iffCE" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   242
    "[| P=Q;  [| P; Q |] ==> R;  [| ~P; ~Q |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   243
 (fn major::prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   244
  [ (rtac (major RS iffE) 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   245
    (REPEAT (DEPTH_SOLVE_1 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   246
	(eresolve_tac ([asm_rl,impCE,notE]@prems) 1))) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   247
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   248
qed_goal "exCI" HOL.thy "(! x. ~P(x) ==> P(a)) ==> ? x.P(x)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   249
 (fn prems=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   250
  [ (rtac ccontr 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   251
    (REPEAT (ares_tac (prems@[exI,allI,notI,notE]) 1))  ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   252
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   253
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   254
(* case distinction *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   255
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   256
qed_goal "case_split_thm" HOL.thy "[| P ==> Q; ~P ==> Q |] ==> Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   257
  (fn [p1,p2] => [cut_facts_tac [excluded_middle] 1, etac disjE 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   258
                  etac p2 1, etac p1 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   259
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   260
fun case_tac a = res_inst_tac [("P",a)] case_split_thm;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   261
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   262
(** Standard abbreviations **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   263
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   264
fun stac th = rtac(th RS ssubst);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   265
fun sstac ths = EVERY' (map stac ths);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   266
fun strip_tac i = REPEAT(resolve_tac [impI,allI] i);