src/HOL/HOL.ML
author wenzelm
Fri, 03 Jul 1998 18:05:03 +0200
changeset 5126 01cbf154d926
parent 4527 4878fb3d0ac5
child 5139 013ea0f023e3
permissions -rw-r--r--
theory Main includes everything;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
     1
(*  Title:      HOL/HOL.ML
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
     3
    Author:     Tobias Nipkow
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
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
     6
For HOL.thy
923
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 **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    14
section "=";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
qed_goal "sym" HOL.thy "s=t ==> t=s"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
 (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
    18
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
(*calling "standard" reduces maxidx to 0*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
bind_thm ("ssubst", (sym RS subst));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
qed_goal "trans" HOL.thy "[| r=s; s=t |] ==> r=t"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
 (fn prems =>
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    24
        [rtac subst 1, resolve_tac prems 1, resolve_tac prems 1]);
923
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
(*Useful with eresolve_tac for proving equalties from known equalities.
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    27
        a = b
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    28
        |   |
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    29
        c = d   *)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
qed_goal "box_equals" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
    "[| a=b;  a=c;  b=d |] ==> c=d"  
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
 (fn prems=>
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 trans 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
    (rtac sym 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
    (REPEAT (resolve_tac prems 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    37
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    38
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    39
(** Congruence rules for meta-application **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    40
section "Congruence";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    41
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    42
(*similar to AP_THM in Gordon's HOL*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    43
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
    44
  (fn [prem] => [rtac (prem RS subst) 1, rtac refl 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    45
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    46
(*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
    47
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
    48
 (fn [prem] => [rtac (prem RS subst) 1, rtac refl 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    49
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    50
qed_goal "cong" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    51
   "[| f = g; (x::'a) = y |] ==> f(x) = g(y)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    52
 (fn [prem1,prem2] =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
   [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
    54
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    55
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
(** Equality of booleans -- iff **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    57
section "iff";
923
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
qed_goal "iffI" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    60
   "[| P ==> Q;  Q ==> P |] ==> P=Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    61
 (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
    62
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    63
qed_goal "iffD2" HOL.thy "[| P=Q; Q |] ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
 (fn prems =>
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    65
        [rtac ssubst 1, resolve_tac prems 1, resolve_tac prems 1]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    66
4467
bd05e2a28602 New rules rev_iffD{1,2}
paulson
parents: 4302
diff changeset
    67
qed_goal "rev_iffD2" HOL.thy "!!P. [| Q; P=Q |] ==> P"
bd05e2a28602 New rules rev_iffD{1,2}
paulson
parents: 4302
diff changeset
    68
 (fn _ => [etac iffD2 1, assume_tac 1]);
bd05e2a28602 New rules rev_iffD{1,2}
paulson
parents: 4302
diff changeset
    69
bd05e2a28602 New rules rev_iffD{1,2}
paulson
parents: 4302
diff changeset
    70
bind_thm ("iffD1", sym RS iffD2);
bd05e2a28602 New rules rev_iffD{1,2}
paulson
parents: 4302
diff changeset
    71
bind_thm ("rev_iffD1", sym RSN (2, rev_iffD2));
923
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 "iffE" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    74
    "[| P=Q; [| P --> Q; Q --> P |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    75
 (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
    76
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    77
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    78
(** True **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    79
section "True";
923
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 "TrueI" HOL.thy [True_def] "True"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    82
  (fn _ => [rtac refl 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    83
4025
77e426be5624 fixed qed;
wenzelm
parents: 3842
diff changeset
    84
qed_goal "eqTrueI" HOL.thy "P ==> P=True" 
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
 (fn prems => [REPEAT(resolve_tac ([iffI,TrueI]@prems) 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 "eqTrueE" HOL.thy "P=True ==> P" 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    88
 (fn prems => [REPEAT(resolve_tac (prems@[TrueI,iffD2]) 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    89
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    90
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    91
(** Universal quantifier **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    92
section "!";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    93
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    94
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
    95
 (fn prems => [resolve_tac (prems RL [eqTrueI RS ext]) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    96
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3646
diff changeset
    97
qed_goalw "spec" HOL.thy [All_def] "! x::'a. P(x) ==> P(x)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    98
 (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
    99
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3646
diff changeset
   100
qed_goal "allE" HOL.thy "[| !x. P(x);  P(x) ==> R |] ==> R"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   101
 (fn major::prems=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   102
  [ (REPEAT (resolve_tac (prems @ [major RS spec]) 1)) ]);
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
qed_goal "all_dupE" HOL.thy 
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3646
diff changeset
   105
    "[| ! x. P(x);  [| P(x); ! x. P(x) |] ==> R |] ==> R"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   106
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
  [ (REPEAT (resolve_tac (prems @ (prems RL [spec])) 1)) ]);
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
(** False ** Depends upon spec; it is impossible to do propositional logic
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   111
             before quantifiers! **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   112
section "False";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   113
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   114
qed_goalw "FalseE" HOL.thy [False_def] "False ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   115
 (fn [major] => [rtac (major RS spec) 1]);
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 "False_neq_True" HOL.thy "False=True ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   118
 (fn [prem] => [rtac (prem RS eqTrueE RS FalseE) 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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   121
(** Negation **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   122
section "~";
923
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_goalw "notI" HOL.thy [not_def] "(P ==> False) ==> ~P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   125
 (fn prems=> [rtac impI 1, eresolve_tac prems 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   126
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   127
qed_goalw "notE" HOL.thy [not_def] "[| ~P;  P |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   128
 (fn prems => [rtac (prems MRS mp RS FalseE) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   129
2442
6663e0d210b0 added qed_goal_spec_mp and qed_goalw_spec_mp
oheimb
parents: 2031
diff changeset
   130
bind_thm ("classical2", notE RS notI);
6663e0d210b0 added qed_goal_spec_mp and qed_goalw_spec_mp
oheimb
parents: 2031
diff changeset
   131
1840
149b2e69633e Added rev_notE by analogy with rev_mp
paulson
parents: 1725
diff changeset
   132
qed_goal "rev_notE" HOL.thy "!!P R. [| P; ~P |] ==> R"
149b2e69633e Added rev_notE by analogy with rev_mp
paulson
parents: 1725
diff changeset
   133
 (fn _ => [REPEAT (ares_tac [notE] 1)]);
149b2e69633e Added rev_notE by analogy with rev_mp
paulson
parents: 1725
diff changeset
   134
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   135
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   136
(** Implication **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   137
section "-->";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   138
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   139
qed_goal "impE" HOL.thy "[| P-->Q;  P;  Q ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   140
 (fn prems=> [ (REPEAT (resolve_tac (prems@[mp]) 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
(* Reduces Q to P-->Q, allowing substitution in P. *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   143
qed_goal "rev_mp" HOL.thy "[| P;  P --> Q |] ==> Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   144
 (fn prems=>  [ (REPEAT (resolve_tac (prems@[mp]) 1)) ]);
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
qed_goal "contrapos" HOL.thy "[| ~Q;  P==>Q |] ==> ~P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   147
 (fn [major,minor]=> 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   148
  [ (rtac (major RS notE RS notI) 1), 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   149
    (etac minor 1) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   150
1334
32a9fde85699 added rev_contrapos
nipkow
parents: 923
diff changeset
   151
qed_goal "rev_contrapos" HOL.thy "[| P==>Q; ~Q |] ==> ~P"
32a9fde85699 added rev_contrapos
nipkow
parents: 923
diff changeset
   152
 (fn [major,minor]=> 
32a9fde85699 added rev_contrapos
nipkow
parents: 923
diff changeset
   153
  [ (rtac (minor RS contrapos) 1), (etac major 1) ]);
32a9fde85699 added rev_contrapos
nipkow
parents: 923
diff changeset
   154
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   155
(* ~(?t = ?s) ==> ~(?s = ?t) *)
1334
32a9fde85699 added rev_contrapos
nipkow
parents: 923
diff changeset
   156
bind_thm("not_sym", sym COMP rev_contrapos);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   157
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
(** Existential quantifier **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   160
section "?";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   161
4527
4878fb3d0ac5 removed Eps_eq, ex1_Eps_eq, and some unnecessary parentheses
oheimb
parents: 4467
diff changeset
   162
qed_goalw "exI" HOL.thy [Ex_def] "P x ==> ? x::'a. P x"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   163
 (fn prems => [rtac selectI 1, resolve_tac prems 1]);
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
qed_goalw "exE" HOL.thy [Ex_def]
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3646
diff changeset
   166
  "[| ? x::'a. P(x); !!x. P(x) ==> Q |] ==> Q"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   167
  (fn prems => [REPEAT(resolve_tac prems 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   168
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
(** Conjunction **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   171
section "&";
923
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
qed_goalw "conjI" HOL.thy [and_def] "[| P; Q |] ==> P&Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   174
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   175
  [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
   176
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   177
qed_goalw "conjunct1" HOL.thy [and_def] "[| P & Q |] ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   178
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   179
   [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
   180
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   181
qed_goalw "conjunct2" HOL.thy [and_def] "[| P & Q |] ==> Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   182
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   183
   [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
   184
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   185
qed_goal "conjE" HOL.thy "[| P&Q;  [| P; Q |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   186
 (fn prems =>
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   187
         [cut_facts_tac prems 1, resolve_tac prems 1,
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   188
          etac conjunct1 1, etac conjunct2 1]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   189
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   190
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   191
(** Disjunction *)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   192
section "|";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   193
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   194
qed_goalw "disjI1" HOL.thy [or_def] "P ==> P|Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   195
 (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
   196
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   197
qed_goalw "disjI2" HOL.thy [or_def] "Q ==> P|Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   198
 (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
   199
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   200
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
   201
 (fn [a1,a2,a3] =>
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   202
        [rtac (mp RS mp) 1, rtac spec 1, rtac a1 1,
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   203
         rtac (a2 RS impI) 1, assume_tac 1, rtac (a3 RS impI) 1, assume_tac 1]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   204
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   205
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   206
(** CCONTR -- classical logic **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   207
section "classical logic";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   208
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   209
qed_goalw "classical" HOL.thy [not_def]  "(~P ==> P) ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   210
 (fn [prem] =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   211
   [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
   212
    rtac (impI RS prem RS eqTrueI) 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   213
    etac subst 1,  assume_tac 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   214
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   215
val ccontr = FalseE RS classical;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   216
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   217
(*Double negation law*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   218
qed_goal "notnotD" HOL.thy "~~P ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   219
 (fn [major]=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   220
  [ (rtac classical 1), (eresolve_tac [major RS notE] 1) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   221
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   222
qed_goal "contrapos2" HOL.thy "[| Q; ~ P ==> ~ Q |] ==> P" (fn [p1,p2] => [
2031
03a843f0f447 Ran expandshort
paulson
parents: 1980
diff changeset
   223
        rtac classical 1,
03a843f0f447 Ran expandshort
paulson
parents: 1980
diff changeset
   224
        dtac p2 1,
03a843f0f447 Ran expandshort
paulson
parents: 1980
diff changeset
   225
        etac notE 1,
03a843f0f447 Ran expandshort
paulson
parents: 1980
diff changeset
   226
        rtac p1 1]);
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   227
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   228
qed_goal "swap2" HOL.thy "[| P;  Q ==> ~ P |] ==> ~ Q" (fn [p1,p2] => [
2031
03a843f0f447 Ran expandshort
paulson
parents: 1980
diff changeset
   229
        rtac notI 1,
03a843f0f447 Ran expandshort
paulson
parents: 1980
diff changeset
   230
        dtac p2 1,
03a843f0f447 Ran expandshort
paulson
parents: 1980
diff changeset
   231
        etac notE 1,
03a843f0f447 Ran expandshort
paulson
parents: 1980
diff changeset
   232
        rtac p1 1]);
923
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
(** Unique existence **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   235
section "?!";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   236
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   237
qed_goalw "ex1I" HOL.thy [Ex1_def]
2031
03a843f0f447 Ran expandshort
paulson
parents: 1980
diff changeset
   238
            "[| P(a);  !!x. P(x) ==> x=a |] ==> ?! x. P(x)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   239
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   240
  [REPEAT (ares_tac (prems@[exI,conjI,allI,impI]) 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   241
3003
c5293a17afa6 New introduction rule for "unique existence"
paulson
parents: 2562
diff changeset
   242
(*Sometimes easier to use: the premises have no shared variables.  Safe!*)
c5293a17afa6 New introduction rule for "unique existence"
paulson
parents: 2562
diff changeset
   243
qed_goal "ex_ex1I" HOL.thy
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3646
diff changeset
   244
    "[| ? x. P(x);  !!x y. [| P(x); P(y) |] ==> x=y |] ==> ?! x. P(x)"
3003
c5293a17afa6 New introduction rule for "unique existence"
paulson
parents: 2562
diff changeset
   245
 (fn [ex,eq] => [ (rtac (ex RS exE) 1),
c5293a17afa6 New introduction rule for "unique existence"
paulson
parents: 2562
diff changeset
   246
                  (REPEAT (ares_tac [ex1I,eq] 1)) ]);
c5293a17afa6 New introduction rule for "unique existence"
paulson
parents: 2562
diff changeset
   247
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   248
qed_goalw "ex1E" HOL.thy [Ex1_def]
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3646
diff changeset
   249
    "[| ?! x. P(x);  !!x. [| P(x);  ! y. P(y) --> y=x |] ==> R |] ==> R"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   250
 (fn major::prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   251
  [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
   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
(** Select: Hilbert's Epsilon-operator **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   255
section "@";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   256
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   257
(*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
   258
qed_goal "selectI2" HOL.thy
4527
4878fb3d0ac5 removed Eps_eq, ex1_Eps_eq, and some unnecessary parentheses
oheimb
parents: 4467
diff changeset
   259
    "[| P a;  !!x. P x ==> Q x |] ==> Q (@x. P x)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   260
 (fn prems => [ resolve_tac prems 1, 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   261
                rtac selectI 1, 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   262
                resolve_tac prems 1 ]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   263
3646
a11338a5d2d4 Added select1_equality
nipkow
parents: 3621
diff changeset
   264
(*Easier to apply than selectI2 if witness ?a comes from an EX-formula*)
a11338a5d2d4 Added select1_equality
nipkow
parents: 3621
diff changeset
   265
qed_goal "selectI2EX" HOL.thy
4527
4878fb3d0ac5 removed Eps_eq, ex1_Eps_eq, and some unnecessary parentheses
oheimb
parents: 4467
diff changeset
   266
  "[| ? a. P a; !!x. P x ==> Q x |] ==> Q (Eps P)"
3646
a11338a5d2d4 Added select1_equality
nipkow
parents: 3621
diff changeset
   267
(fn [major,minor] => [rtac (major RS exE) 1, etac selectI2 1, etac minor 1]);
a11338a5d2d4 Added select1_equality
nipkow
parents: 3621
diff changeset
   268
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   269
qed_goal "select_equality" HOL.thy
4527
4878fb3d0ac5 removed Eps_eq, ex1_Eps_eq, and some unnecessary parentheses
oheimb
parents: 4467
diff changeset
   270
    "[| P a;  !!x. P x ==> x=a |] ==> (@x. P x) = a"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   271
 (fn prems => [ rtac selectI2 1, 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   272
                REPEAT (ares_tac prems 1) ]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   273
3646
a11338a5d2d4 Added select1_equality
nipkow
parents: 3621
diff changeset
   274
qed_goalw "select1_equality" HOL.thy [Ex1_def]
4527
4878fb3d0ac5 removed Eps_eq, ex1_Eps_eq, and some unnecessary parentheses
oheimb
parents: 4467
diff changeset
   275
  "!!P. [| ?!x. P x; P a |] ==> (@x. P x) = a" (K [
4131
916641b59219 added theorems for Eps
oheimb
parents: 4087
diff changeset
   276
	  rtac select_equality 1, atac 1,
3646
a11338a5d2d4 Added select1_equality
nipkow
parents: 3621
diff changeset
   277
          etac exE 1, etac conjE 1,
a11338a5d2d4 Added select1_equality
nipkow
parents: 3621
diff changeset
   278
          rtac allE 1, atac 1,
a11338a5d2d4 Added select1_equality
nipkow
parents: 3621
diff changeset
   279
          etac impE 1, atac 1, etac ssubst 1,
a11338a5d2d4 Added select1_equality
nipkow
parents: 3621
diff changeset
   280
          etac allE 1, etac impE 1, atac 1, etac ssubst 1,
a11338a5d2d4 Added select1_equality
nipkow
parents: 3621
diff changeset
   281
          rtac refl 1]);
3436
d68dbb8f22d3 Tuned wf_iff_no_infinite_down_chain proof, based on Konrads ideas.
nipkow
parents: 3003
diff changeset
   282
4131
916641b59219 added theorems for Eps
oheimb
parents: 4087
diff changeset
   283
qed_goal "select_eq_Ex" HOL.thy "P (@ x. P x) =  (? x. P x)" (K [
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   284
        rtac iffI 1,
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   285
        etac exI 1,
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   286
        etac exE 1,
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   287
        etac selectI 1]);
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   288
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   289
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   290
(** Classical intro rules for disjunction and existential quantifiers *)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   291
section "classical intro rules";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   292
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   293
qed_goal "disjCI" HOL.thy "(~Q ==> P) ==> P|Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   294
 (fn prems=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   295
  [ (rtac classical 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   296
    (REPEAT (ares_tac (prems@[disjI1,notI]) 1)),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   297
    (REPEAT (ares_tac (prems@[disjI2,notE]) 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   298
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   299
qed_goal "excluded_middle" HOL.thy "~P | P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   300
 (fn _ => [ (REPEAT (ares_tac [disjCI] 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   301
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   302
(*For disjunctive case analysis*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   303
fun excluded_middle_tac sP =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   304
    res_inst_tac [("Q",sP)] (excluded_middle RS disjE);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   305
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   306
(*Classical implies (-->) elimination. *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   307
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
   308
 (fn major::prems=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   309
  [ rtac (excluded_middle RS disjE) 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   310
    REPEAT (DEPTH_SOLVE_1 (ares_tac (prems @ [major RS mp]) 1))]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   311
4302
2c99775d953f Added rule impCE'
paulson
parents: 4131
diff changeset
   312
(*This version of --> elimination works on Q before P.  It works best for
2c99775d953f Added rule impCE'
paulson
parents: 4131
diff changeset
   313
  those cases in which P holds "almost everywhere".  Can't install as
2c99775d953f Added rule impCE'
paulson
parents: 4131
diff changeset
   314
  default: would break old proofs.*)
2c99775d953f Added rule impCE'
paulson
parents: 4131
diff changeset
   315
qed_goal "impCE'" thy 
2c99775d953f Added rule impCE'
paulson
parents: 4131
diff changeset
   316
    "[| P-->Q;  Q ==> R;  ~P ==> R |] ==> R"
2c99775d953f Added rule impCE'
paulson
parents: 4131
diff changeset
   317
 (fn major::prems=>
2c99775d953f Added rule impCE'
paulson
parents: 4131
diff changeset
   318
  [ (resolve_tac [excluded_middle RS disjE] 1),
2c99775d953f Added rule impCE'
paulson
parents: 4131
diff changeset
   319
    (DEPTH_SOLVE (ares_tac (prems@[major RS mp]) 1)) ]);
2c99775d953f Added rule impCE'
paulson
parents: 4131
diff changeset
   320
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   321
(*Classical <-> elimination. *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   322
qed_goal "iffCE" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   323
    "[| P=Q;  [| P; Q |] ==> R;  [| ~P; ~Q |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   324
 (fn major::prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   325
  [ (rtac (major RS iffE) 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   326
    (REPEAT (DEPTH_SOLVE_1 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   327
        (eresolve_tac ([asm_rl,impCE,notE]@prems) 1))) ]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   328
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3646
diff changeset
   329
qed_goal "exCI" HOL.thy "(! x. ~P(x) ==> P(a)) ==> ? x. P(x)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   330
 (fn prems=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   331
  [ (rtac ccontr 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   332
    (REPEAT (ares_tac (prems@[exI,allI,notI,notE]) 1))  ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   333
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   334
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   335
(* case distinction *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   336
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   337
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
   338
  (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
   339
                  etac p2 1, etac p1 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   340
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   341
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
   342
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   343
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   344
(** Standard abbreviations **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   345
1672
2c109cd2fdd0 repaired critical proofs depending on the order inside non-confluent SimpSets,
oheimb
parents: 1668
diff changeset
   346
fun stac th = CHANGED o rtac (th RS ssubst);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   347
fun strip_tac i = REPEAT(resolve_tac [impI,allI] i); 
1338
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   348
2562
d571d6660240 Moved qed_spec_mp, etc., from HOL.ML to thy_data.ML so that they work
paulson
parents: 2442
diff changeset
   349
d571d6660240 Moved qed_spec_mp, etc., from HOL.ML to thy_data.ML so that they work
paulson
parents: 2442
diff changeset
   350
(** strip ! and --> from proved goal while preserving !-bound var names **)
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   351
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   352
local
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   353
1515
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   354
(* Use XXX to avoid forall_intr failing because of duplicate variable name *)
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   355
val myspec = read_instantiate [("P","?XXX")] spec;
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   356
val _ $ (_ $ (vx as Var(_,vxT))) = concl_of myspec;
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   357
val cvx = cterm_of (#sign(rep_thm myspec)) vx;
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   358
val aspec = forall_intr cvx myspec;
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   359
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   360
in
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   361
1515
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   362
fun RSspec th =
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   363
  (case concl_of th of
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   364
     _ $ (Const("All",_) $ Abs(a,_,_)) =>
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   365
         let val ca = cterm_of (#sign(rep_thm th)) (Var((a,0),vxT))
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   366
         in th RS forall_elim ca aspec end
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   367
  | _ => raise THM("RSspec",0,[th]));
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   368
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   369
fun RSmp th =
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   370
  (case concl_of th of
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   371
     _ $ (Const("op -->",_)$_$_) => th RS mp
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   372
  | _ => raise THM("RSmp",0,[th]));
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   373
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   374
fun normalize_thm funs =
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   375
let fun trans [] th = th
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   376
      | trans (f::fs) th = (trans funs (f th)) handle THM _ => trans fs th
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   377
in trans funs end;
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   378
3615
e5322197cfea Moved some functions which used to be part of thy_data.ML
berghofe
parents: 3436
diff changeset
   379
fun qed_spec_mp name =
e5322197cfea Moved some functions which used to be part of thy_data.ML
berghofe
parents: 3436
diff changeset
   380
  let val thm = normalize_thm [RSspec,RSmp] (result())
e5322197cfea Moved some functions which used to be part of thy_data.ML
berghofe
parents: 3436
diff changeset
   381
  in bind_thm(name, thm) end;
e5322197cfea Moved some functions which used to be part of thy_data.ML
berghofe
parents: 3436
diff changeset
   382
e5322197cfea Moved some functions which used to be part of thy_data.ML
berghofe
parents: 3436
diff changeset
   383
fun qed_goal_spec_mp name thy s p = 
e5322197cfea Moved some functions which used to be part of thy_data.ML
berghofe
parents: 3436
diff changeset
   384
	bind_thm (name, normalize_thm [RSspec,RSmp] (prove_goal thy s p));
e5322197cfea Moved some functions which used to be part of thy_data.ML
berghofe
parents: 3436
diff changeset
   385
e5322197cfea Moved some functions which used to be part of thy_data.ML
berghofe
parents: 3436
diff changeset
   386
fun qed_goalw_spec_mp name thy defs s p = 
e5322197cfea Moved some functions which used to be part of thy_data.ML
berghofe
parents: 3436
diff changeset
   387
	bind_thm (name, normalize_thm [RSspec,RSmp] (prove_goalw thy defs s p));
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   388
3621
d3e248853428 tuned comments;
wenzelm
parents: 3615
diff changeset
   389
end;