src/HOL/HOL.ML
author wenzelm
Tue, 24 Aug 1999 11:50:58 +0200
changeset 7333 6cb15c6f1d9f
parent 7030 53934985426a
child 7357 d0e16da40ea2
permissions -rw-r--r--
isar: no_pos flag;
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
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
     7
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
(** Equality **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    11
section "=";
923
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
qed_goal "sym" HOL.thy "s=t ==> t=s"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
 (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
    15
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
(*calling "standard" reduces maxidx to 0*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
bind_thm ("ssubst", (sym RS subst));
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
qed_goal "trans" HOL.thy "[| r=s; s=t |] ==> r=t"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
 (fn prems =>
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    21
        [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
    22
5309
01c2b317da88 stac now handles definitions as well as equalities
paulson
parents: 5299
diff changeset
    23
val prems = goal thy "(A == B) ==> A = B";
01c2b317da88 stac now handles definitions as well as equalities
paulson
parents: 5299
diff changeset
    24
by (rewrite_goals_tac prems);
01c2b317da88 stac now handles definitions as well as equalities
paulson
parents: 5299
diff changeset
    25
by (rtac refl 1);
01c2b317da88 stac now handles definitions as well as equalities
paulson
parents: 5299
diff changeset
    26
qed "def_imp_eq";
01c2b317da88 stac now handles definitions as well as equalities
paulson
parents: 5299
diff changeset
    27
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
(*Useful with eresolve_tac for proving equalties from known equalities.
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    29
        a = b
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    30
        |   |
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    31
        c = d   *)
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
    32
Goal "[| a=b;  a=c;  b=d |] ==> c=d";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
    33
by (rtac trans 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
    34
by (rtac trans 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
    35
by (rtac sym 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
    36
by (REPEAT (assume_tac 1)) ;
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
    37
qed "box_equals";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    38
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    39
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    40
(** Congruence rules for meta-application **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    41
section "Congruence";
923
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_THM in Gordon's HOL*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    44
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
    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
(*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
    48
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
    49
 (fn [prem] => [rtac (prem RS subst) 1, rtac refl 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    50
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    51
qed_goal "cong" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    52
   "[| f = g; (x::'a) = y |] ==> f(x) = g(y)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
 (fn [prem1,prem2] =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
   [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
    55
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    56
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    57
(** Equality of booleans -- iff **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    58
section "iff";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    59
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
    60
val prems = Goal
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
    61
   "[| P ==> Q;  Q ==> P |] ==> P=Q";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
    62
by (REPEAT (ares_tac (prems@[impI, iff RS mp RS mp]) 1));
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
    63
qed "iffI";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    65
qed_goal "iffD2" HOL.thy "[| P=Q; Q |] ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    66
 (fn prems =>
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    67
        [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
    68
4467
bd05e2a28602 New rules rev_iffD{1,2}
paulson
parents: 4302
diff changeset
    69
qed_goal "rev_iffD2" HOL.thy "!!P. [| Q; P=Q |] ==> P"
bd05e2a28602 New rules rev_iffD{1,2}
paulson
parents: 4302
diff changeset
    70
 (fn _ => [etac iffD2 1, assume_tac 1]);
bd05e2a28602 New rules rev_iffD{1,2}
paulson
parents: 4302
diff changeset
    71
bd05e2a28602 New rules rev_iffD{1,2}
paulson
parents: 4302
diff changeset
    72
bind_thm ("iffD1", sym RS iffD2);
bd05e2a28602 New rules rev_iffD{1,2}
paulson
parents: 4302
diff changeset
    73
bind_thm ("rev_iffD1", sym RSN (2, rev_iffD2));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    74
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    75
qed_goal "iffE" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    76
    "[| P=Q; [| P --> Q; Q --> P |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
 (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
    78
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    79
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    80
(** True **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    81
section "True";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    82
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    83
qed_goalw "TrueI" HOL.thy [True_def] "True"
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
    84
  (fn _ => [(rtac refl 1)]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
4025
77e426be5624 fixed qed;
wenzelm
parents: 3842
diff changeset
    86
qed_goal "eqTrueI" HOL.thy "P ==> P=True" 
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    87
 (fn prems => [REPEAT(resolve_tac ([iffI,TrueI]@prems) 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    88
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    89
qed_goal "eqTrueE" HOL.thy "P=True ==> P" 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    90
 (fn prems => [REPEAT(resolve_tac (prems@[TrueI,iffD2]) 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    91
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    92
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    93
(** Universal quantifier **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    94
section "!";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    95
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    96
qed_goalw "allI" HOL.thy [All_def] "(!!x::'a. P(x)) ==> !x. P(x)"
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
    97
 (fn prems => [(resolve_tac (prems RL [eqTrueI RS ext]) 1)]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    98
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3646
diff changeset
    99
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
   100
 (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
   101
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   102
val major::prems= goal HOL.thy "[| !x. P(x);  P(x) ==> R |] ==> R";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   103
by (REPEAT (resolve_tac (prems @ [major RS spec]) 1)) ;
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   104
qed "allE";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   105
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   106
val prems = goal HOL.thy 
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   107
    "[| ! x. P(x);  [| P(x); ! x. P(x) |] ==> R |] ==> R";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   108
by (REPEAT (resolve_tac (prems @ (prems RL [spec])) 1)) ;
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   109
qed "all_dupE";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   110
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
(** False ** Depends upon spec; it is impossible to do propositional logic
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   113
             before quantifiers! **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   114
section "False";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   115
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   116
qed_goalw "FalseE" HOL.thy [False_def] "False ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   117
 (fn [major] => [rtac (major RS spec) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   118
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   119
qed_goal "False_neq_True" HOL.thy "False=True ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   120
 (fn [prem] => [rtac (prem RS eqTrueE RS FalseE) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   121
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   122
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   123
(** Negation **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   124
section "~";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   125
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   126
qed_goalw "notI" HOL.thy [not_def] "(P ==> False) ==> ~P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   127
 (fn prems=> [rtac impI 1, eresolve_tac prems 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   128
5760
7e2cf2820684 Added theorems True_not_False and False_not_True
berghofe
parents: 5447
diff changeset
   129
qed_goal "False_not_True" HOL.thy "False ~= True"
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   130
  (fn _ => [rtac notI 1, etac False_neq_True 1]);
5760
7e2cf2820684 Added theorems True_not_False and False_not_True
berghofe
parents: 5447
diff changeset
   131
7e2cf2820684 Added theorems True_not_False and False_not_True
berghofe
parents: 5447
diff changeset
   132
qed_goal "True_not_False" HOL.thy "True ~= False"
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   133
  (fn _ => [rtac notI 1, dtac sym 1, etac False_neq_True 1]);
5760
7e2cf2820684 Added theorems True_not_False and False_not_True
berghofe
parents: 5447
diff changeset
   134
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   135
qed_goalw "notE" HOL.thy [not_def] "[| ~P;  P |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   136
 (fn prems => [rtac (prems MRS mp RS FalseE) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   137
2442
6663e0d210b0 added qed_goal_spec_mp and qed_goalw_spec_mp
oheimb
parents: 2031
diff changeset
   138
bind_thm ("classical2", notE RS notI);
6663e0d210b0 added qed_goal_spec_mp and qed_goalw_spec_mp
oheimb
parents: 2031
diff changeset
   139
1840
149b2e69633e Added rev_notE by analogy with rev_mp
paulson
parents: 1725
diff changeset
   140
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
   141
 (fn _ => [REPEAT (ares_tac [notE] 1)]);
149b2e69633e Added rev_notE by analogy with rev_mp
paulson
parents: 1725
diff changeset
   142
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   143
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   144
(** Implication **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   145
section "-->";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   146
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   147
val prems = Goal "[| P-->Q;  P;  Q ==> R |] ==> R";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   148
by (REPEAT (resolve_tac (prems@[mp]) 1));
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   149
qed "impE";
923
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
(* Reduces Q to P-->Q, allowing substitution in P. *)
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   152
Goal "[| P;  P --> Q |] ==> Q";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   153
by (REPEAT (ares_tac [mp] 1)) ;
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   154
qed "rev_mp";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   155
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   156
val [major,minor] = Goal "[| ~Q;  P==>Q |] ==> ~P";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   157
by (rtac (major RS notE RS notI) 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   158
by (etac minor 1) ;
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   159
qed "contrapos";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   160
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   161
val [major,minor] = Goal "[| P==>Q; ~Q |] ==> ~P";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   162
by (rtac (minor RS contrapos) 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   163
by (etac major 1) ;
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   164
qed "rev_contrapos";
1334
32a9fde85699 added rev_contrapos
nipkow
parents: 923
diff changeset
   165
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   166
(* ~(?t = ?s) ==> ~(?s = ?t) *)
1334
32a9fde85699 added rev_contrapos
nipkow
parents: 923
diff changeset
   167
bind_thm("not_sym", sym COMP rev_contrapos);
923
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
(** Existential quantifier **)
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
4527
4878fb3d0ac5 removed Eps_eq, ex1_Eps_eq, and some unnecessary parentheses
oheimb
parents: 4467
diff changeset
   173
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
   174
 (fn prems => [rtac selectI 1, resolve_tac prems 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   175
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   176
qed_goalw "exE" HOL.thy [Ex_def]
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3646
diff changeset
   177
  "[| ? x::'a. P(x); !!x. P(x) ==> Q |] ==> Q"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   178
  (fn prems => [REPEAT(resolve_tac prems 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   179
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
(** Conjunction **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   182
section "&";
923
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
qed_goalw "conjI" HOL.thy [and_def] "[| P; Q |] ==> P&Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   185
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   186
  [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
   187
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   188
qed_goalw "conjunct1" HOL.thy [and_def] "[| P & Q |] ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   189
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   190
   [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
   191
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   192
qed_goalw "conjunct2" HOL.thy [and_def] "[| P & Q |] ==> Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   193
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   194
   [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
   195
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   196
qed_goal "conjE" HOL.thy "[| P&Q;  [| P; Q |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   197
 (fn prems =>
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   198
         [cut_facts_tac prems 1, resolve_tac prems 1,
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   199
          etac conjunct1 1, etac conjunct2 1]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   200
6433
228237ec56e5 Added new thms.
nipkow
parents: 6214
diff changeset
   201
qed_goal "context_conjI" HOL.thy  "[| P; P ==> Q |] ==> P & Q"
228237ec56e5 Added new thms.
nipkow
parents: 6214
diff changeset
   202
 (fn prems => [REPEAT(resolve_tac (conjI::prems) 1)]);
228237ec56e5 Added new thms.
nipkow
parents: 6214
diff changeset
   203
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   204
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   205
(** Disjunction *)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   206
section "|";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   207
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   208
qed_goalw "disjI1" HOL.thy [or_def] "P ==> P|Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   209
 (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
   210
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   211
qed_goalw "disjI2" HOL.thy [or_def] "Q ==> P|Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   212
 (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
   213
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   214
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
   215
 (fn [a1,a2,a3] =>
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   216
        [rtac (mp RS mp) 1, rtac spec 1, rtac a1 1,
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   217
         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
   218
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   219
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   220
(** CCONTR -- classical logic **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   221
section "classical logic";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   222
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   223
qed_goalw "classical" HOL.thy [not_def]  "(~P ==> P) ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   224
 (fn [prem] =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   225
   [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
   226
    rtac (impI RS prem RS eqTrueI) 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   227
    etac subst 1,  assume_tac 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   228
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   229
val ccontr = FalseE RS classical;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   230
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   231
(*Double negation law*)
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   232
Goal "~~P ==> P";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   233
by (rtac classical 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   234
by (etac notE 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   235
by (assume_tac 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   236
qed "notnotD";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   237
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   238
val [p1,p2] = Goal "[| Q; ~ P ==> ~ Q |] ==> P";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   239
by (rtac classical 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   240
by (dtac p2 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   241
by (etac notE 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   242
by (rtac p1 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   243
qed "contrapos2";
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   244
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   245
val [p1,p2] = Goal "[| P;  Q ==> ~ P |] ==> ~ Q";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   246
by (rtac notI 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   247
by (dtac p2 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   248
by (etac notE 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   249
by (rtac p1 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   250
qed "swap2";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   251
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   252
(** Unique existence **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   253
section "?!";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   254
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   255
qed_goalw "ex1I" HOL.thy [Ex1_def]
2031
03a843f0f447 Ran expandshort
paulson
parents: 1980
diff changeset
   256
            "[| P(a);  !!x. P(x) ==> x=a |] ==> ?! x. P(x)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   257
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   258
  [REPEAT (ares_tac (prems@[exI,conjI,allI,impI]) 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   259
3003
c5293a17afa6 New introduction rule for "unique existence"
paulson
parents: 2562
diff changeset
   260
(*Sometimes easier to use: the premises have no shared variables.  Safe!*)
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   261
val [ex,eq] = Goal
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   262
    "[| ? x. P(x);  !!x y. [| P(x); P(y) |] ==> x=y |] ==> ?! x. P(x)";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   263
by (rtac (ex RS exE) 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   264
by (REPEAT (ares_tac [ex1I,eq] 1)) ;
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   265
qed "ex_ex1I";
3003
c5293a17afa6 New introduction rule for "unique existence"
paulson
parents: 2562
diff changeset
   266
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   267
qed_goalw "ex1E" HOL.thy [Ex1_def]
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3646
diff changeset
   268
    "[| ?! 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
   269
 (fn major::prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   270
  [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
   271
5185
d1067e2c3f9f Added theorem ex1_implies_ex.
berghofe
parents: 5154
diff changeset
   272
Goal "?! x. P x ==> ? x. P x";
5228
66925577cefe isatool expandshort;
wenzelm
parents: 5185
diff changeset
   273
by (etac ex1E 1);
66925577cefe isatool expandshort;
wenzelm
parents: 5185
diff changeset
   274
by (rtac exI 1);
66925577cefe isatool expandshort;
wenzelm
parents: 5185
diff changeset
   275
by (assume_tac 1);
5185
d1067e2c3f9f Added theorem ex1_implies_ex.
berghofe
parents: 5154
diff changeset
   276
qed "ex1_implies_ex";
d1067e2c3f9f Added theorem ex1_implies_ex.
berghofe
parents: 5154
diff changeset
   277
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   278
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   279
(** Select: Hilbert's Epsilon-operator **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   280
section "@";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   281
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   282
(*Easier to apply than selectI: conclusion has only one occurrence of P*)
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   283
val prems = Goal
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   284
    "[| P a;  !!x. P x ==> Q x |] ==> Q (@x. P x)";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   285
by (resolve_tac prems 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   286
by (rtac selectI 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   287
by (resolve_tac prems 1) ;
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   288
qed "selectI2";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   289
3646
a11338a5d2d4 Added select1_equality
nipkow
parents: 3621
diff changeset
   290
(*Easier to apply than selectI2 if witness ?a comes from an EX-formula*)
a11338a5d2d4 Added select1_equality
nipkow
parents: 3621
diff changeset
   291
qed_goal "selectI2EX" HOL.thy
4527
4878fb3d0ac5 removed Eps_eq, ex1_Eps_eq, and some unnecessary parentheses
oheimb
parents: 4467
diff changeset
   292
  "[| ? a. P a; !!x. P x ==> Q x |] ==> Q (Eps P)"
3646
a11338a5d2d4 Added select1_equality
nipkow
parents: 3621
diff changeset
   293
(fn [major,minor] => [rtac (major RS exE) 1, etac selectI2 1, etac minor 1]);
a11338a5d2d4 Added select1_equality
nipkow
parents: 3621
diff changeset
   294
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   295
val prems = Goal
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   296
    "[| P a;  !!x. P x ==> x=a |] ==> (@x. P x) = a";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   297
by (rtac selectI2 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   298
by (REPEAT (ares_tac prems 1)) ;
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   299
qed "select_equality";
3436
d68dbb8f22d3 Tuned wf_iff_no_infinite_down_chain proof, based on Konrads ideas.
nipkow
parents: 3003
diff changeset
   300
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   301
Goalw [Ex1_def] "[| ?!x. P x; P a |] ==> (@x. P x) = a";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   302
by (rtac select_equality 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   303
by (atac 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   304
by (etac exE 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   305
by (etac conjE 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   306
by (rtac allE 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   307
by (atac 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   308
by (etac impE 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   309
by (atac 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   310
by (etac ssubst 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   311
by (etac allE 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   312
by (etac mp 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   313
by (atac 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   314
qed "select1_equality";
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   315
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   316
Goal "P (@ x. P x) =  (? x. P x)";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   317
by (rtac iffI 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   318
by (etac exI 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   319
by (etac exE 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   320
by (etac selectI 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   321
qed "select_eq_Ex";
5447
df03d330aeab Proved and added rewrite rule (@x. x=y) = y to simpset.
nipkow
parents: 5346
diff changeset
   322
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   323
Goal "(@y. y=x) = x";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   324
by (rtac select_equality 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   325
by (rtac refl 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   326
by (atac 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   327
qed "Eps_eq";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   328
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   329
Goal "(Eps (op = x)) = x";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   330
by (rtac select_equality 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   331
by (rtac refl 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   332
by (etac sym 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   333
qed "Eps_sym_eq";
923
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
(** Classical intro rules for disjunction and existential quantifiers *)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   336
section "classical intro rules";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   337
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   338
val prems= Goal "(~Q ==> P) ==> P|Q";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   339
by (rtac classical 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   340
by (REPEAT (ares_tac (prems@[disjI1,notI]) 1));
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   341
by (REPEAT (ares_tac (prems@[disjI2,notE]) 1)) ;
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   342
qed "disjCI";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   343
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   344
Goal "~P | P";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   345
by (REPEAT (ares_tac [disjCI] 1)) ;
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   346
qed "excluded_middle";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   347
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   348
(*For disjunctive case analysis*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   349
fun excluded_middle_tac sP =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   350
    res_inst_tac [("Q",sP)] (excluded_middle RS disjE);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   351
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   352
(*Classical implies (-->) elimination. *)
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   353
val major::prems = Goal "[| P-->Q; ~P ==> R; Q ==> R |] ==> R";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   354
by (rtac (excluded_middle RS disjE) 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   355
by (REPEAT (DEPTH_SOLVE_1 (ares_tac (prems @ [major RS mp]) 1)));
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   356
qed "impCE";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   357
4302
2c99775d953f Added rule impCE'
paulson
parents: 4131
diff changeset
   358
(*This version of --> elimination works on Q before P.  It works best for
2c99775d953f Added rule impCE'
paulson
parents: 4131
diff changeset
   359
  those cases in which P holds "almost everywhere".  Can't install as
2c99775d953f Added rule impCE'
paulson
parents: 4131
diff changeset
   360
  default: would break old proofs.*)
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   361
val major::prems = Goal
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   362
    "[| P-->Q;  Q ==> R;  ~P ==> R |] ==> R";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   363
by (resolve_tac [excluded_middle RS disjE] 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   364
by (DEPTH_SOLVE (ares_tac (prems@[major RS mp]) 1)) ;
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   365
qed "impCE'";
4302
2c99775d953f Added rule impCE'
paulson
parents: 4131
diff changeset
   366
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   367
(*Classical <-> elimination. *)
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   368
val major::prems = Goal
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   369
    "[| P=Q;  [| P; Q |] ==> R;  [| ~P; ~Q |] ==> R |] ==> R";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   370
by (rtac (major RS iffE) 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   371
by (REPEAT (DEPTH_SOLVE_1 
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   372
	    (eresolve_tac ([asm_rl,impCE,notE]@prems) 1)));
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   373
qed "iffCE";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   374
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   375
val prems = Goal "(! x. ~P(x) ==> P(a)) ==> ? x. P(x)";
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   376
by (rtac ccontr 1);
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   377
by (REPEAT (ares_tac (prems@[exI,allI,notI,notE]) 1))  ;
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   378
qed "exCI";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   379
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   380
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   381
(* case distinction *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   382
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   383
qed_goal "case_split_thm" HOL.thy "[| P ==> Q; ~P ==> Q |] ==> Q"
5154
40fd46f3d3a1 tidying
paulson
parents: 5139
diff changeset
   384
  (fn [p1,p2] => [rtac (excluded_middle RS disjE) 1,
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   385
                  etac p2 1, etac p1 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   386
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   387
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
   388
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   389
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   390
(** Standard abbreviations **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   391
5309
01c2b317da88 stac now handles definitions as well as equalities
paulson
parents: 5299
diff changeset
   392
(*Apply an equality or definition ONCE.
01c2b317da88 stac now handles definitions as well as equalities
paulson
parents: 5299
diff changeset
   393
  Fails unless the substitution has an effect*)
01c2b317da88 stac now handles definitions as well as equalities
paulson
parents: 5299
diff changeset
   394
fun stac th = 
6968
7f2977e96a5c handle THM/TERM exn;
wenzelm
parents: 6513
diff changeset
   395
  let val th' = th RS def_imp_eq handle THM _ => th
5309
01c2b317da88 stac now handles definitions as well as equalities
paulson
parents: 5299
diff changeset
   396
  in  CHANGED_GOAL (rtac (th' RS ssubst))
01c2b317da88 stac now handles definitions as well as equalities
paulson
parents: 5299
diff changeset
   397
  end;
5139
013ea0f023e3 stac now uses CHANGED_GOAL and correctly fails when it has no useful effect,
paulson
parents: 4527
diff changeset
   398
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   399
fun strip_tac i = REPEAT(resolve_tac [impI,allI] i); 
1338
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   400
2562
d571d6660240 Moved qed_spec_mp, etc., from HOL.ML to thy_data.ML so that they work
paulson
parents: 2442
diff changeset
   401
d571d6660240 Moved qed_spec_mp, etc., from HOL.ML to thy_data.ML so that they work
paulson
parents: 2442
diff changeset
   402
(** 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
   403
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   404
local
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   405
1515
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   406
(* 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
   407
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
   408
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
   409
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
   410
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
   411
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   412
in
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   413
1515
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   414
fun RSspec th =
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   415
  (case concl_of th of
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   416
     _ $ (Const("All",_) $ Abs(a,_,_)) =>
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   417
         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
   418
         in th RS forall_elim ca aspec end
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   419
  | _ => raise THM("RSspec",0,[th]));
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   420
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   421
fun RSmp th =
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   422
  (case concl_of th of
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   423
     _ $ (Const("op -->",_)$_$_) => th RS mp
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   424
  | _ => raise THM("RSmp",0,[th]));
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   425
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   426
fun normalize_thm funs =
5346
bc9748ad8491 Now qed_spec_mp respects locales, by calling ml_store_thm
paulson
parents: 5309
diff changeset
   427
  let fun trans [] th = th
bc9748ad8491 Now qed_spec_mp respects locales, by calling ml_store_thm
paulson
parents: 5309
diff changeset
   428
	| trans (f::fs) th = (trans funs (f th)) handle THM _ => trans fs th
bc9748ad8491 Now qed_spec_mp respects locales, by calling ml_store_thm
paulson
parents: 5309
diff changeset
   429
  in zero_var_indexes o trans funs end;
1515
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   430
3615
e5322197cfea Moved some functions which used to be part of thy_data.ML
berghofe
parents: 3436
diff changeset
   431
fun qed_spec_mp name =
e5322197cfea Moved some functions which used to be part of thy_data.ML
berghofe
parents: 3436
diff changeset
   432
  let val thm = normalize_thm [RSspec,RSmp] (result())
6214
0513cfd1a598 ThmDatabase.ml_store_thm;
wenzelm
parents: 6092
diff changeset
   433
  in ThmDatabase.ml_store_thm(name, thm) end;
3615
e5322197cfea Moved some functions which used to be part of thy_data.ML
berghofe
parents: 3436
diff changeset
   434
e5322197cfea Moved some functions which used to be part of thy_data.ML
berghofe
parents: 3436
diff changeset
   435
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
   436
	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
   437
e5322197cfea Moved some functions which used to be part of thy_data.ML
berghofe
parents: 3436
diff changeset
   438
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
   439
	bind_thm (name, normalize_thm [RSspec,RSmp] (prove_goalw thy defs s p));
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   440
3621
d3e248853428 tuned comments;
wenzelm
parents: 3615
diff changeset
   441
end;
5888
d8e51792ca85 attrib_setup: rulify;
wenzelm
parents: 5809
diff changeset
   442
d8e51792ca85 attrib_setup: rulify;
wenzelm
parents: 5809
diff changeset
   443
d8e51792ca85 attrib_setup: rulify;
wenzelm
parents: 5809
diff changeset
   444
(* attributes *)
d8e51792ca85 attrib_setup: rulify;
wenzelm
parents: 5809
diff changeset
   445
d8e51792ca85 attrib_setup: rulify;
wenzelm
parents: 5809
diff changeset
   446
local
d8e51792ca85 attrib_setup: rulify;
wenzelm
parents: 5809
diff changeset
   447
7030
53934985426a getting rid of qed_goal
paulson
parents: 6968
diff changeset
   448
fun gen_rulify x = Attrib.no_args (Drule.rule_attribute (fn _ => (normalize_thm [RSspec, RSmp]))) x;
5888
d8e51792ca85 attrib_setup: rulify;
wenzelm
parents: 5809
diff changeset
   449
d8e51792ca85 attrib_setup: rulify;
wenzelm
parents: 5809
diff changeset
   450
in
d8e51792ca85 attrib_setup: rulify;
wenzelm
parents: 5809
diff changeset
   451
6513
e0a9459e99fc hol_setup;
wenzelm
parents: 6433
diff changeset
   452
val hol_setup =
5888
d8e51792ca85 attrib_setup: rulify;
wenzelm
parents: 5809
diff changeset
   453
 [Attrib.add_attributes
d8e51792ca85 attrib_setup: rulify;
wenzelm
parents: 5809
diff changeset
   454
  [("rulify", (gen_rulify, gen_rulify), "put theorem into standard rule form")]];
d8e51792ca85 attrib_setup: rulify;
wenzelm
parents: 5809
diff changeset
   455
d8e51792ca85 attrib_setup: rulify;
wenzelm
parents: 5809
diff changeset
   456
end;