src/HOL/HOL_lemmas.ML
author wenzelm
Tue, 13 Jun 2000 18:33:34 +0200
changeset 9058 7856a01119fb
parent 8964 df06ec11bbfa
child 9159 902ea754eee2
permissions -rw-r--r--
qed_spec_mp: strip_shyps_warning;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/HOL_lemmas.ML
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
     3
    Author:     Tobias Nipkow
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
     4
    Copyright   1991  University of Cambridge
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
     5
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
     6
Derived rules from Appendix of Mike Gordons HOL Report, Cambridge TR 68.
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
     7
*)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
     8
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
     9
(* ML bindings *)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    10
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    11
val plusI = thm "plusI";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    12
val minusI = thm "minusI";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    13
val timesI = thm "timesI";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    14
val powerI = thm "powerI";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    15
val eq_reflection = thm "eq_reflection";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    16
val refl = thm "refl";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    17
val subst = thm "subst";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    18
val ext = thm "ext";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    19
val selectI = thm "selectI";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    20
val impI = thm "impI";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    21
val mp = thm "mp";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    22
val True_def = thm "True_def";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    23
val All_def = thm "All_def";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    24
val Ex_def = thm "Ex_def";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    25
val False_def = thm "False_def";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    26
val not_def = thm "not_def";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    27
val and_def = thm "and_def";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    28
val or_def = thm "or_def";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    29
val Ex1_def = thm "Ex1_def";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    30
val iff = thm "iff";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    31
val True_or_False = thm "True_or_False";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    32
val Let_def = thm "Let_def";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    33
val if_def = thm "if_def";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    34
val arbitrary_def = thm "arbitrary_def";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    35
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    36
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    37
(** Equality **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    38
section "=";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    39
7618
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    40
Goal "s=t ==> t=s";
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    41
by (etac subst 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    42
by (rtac refl 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    43
qed "sym";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    44
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    45
(*calling "standard" reduces maxidx to 0*)
7618
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    46
bind_thm ("ssubst", sym RS subst);
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    47
7618
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    48
Goal "[| r=s; s=t |] ==> r=t";
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    49
by (etac subst 1 THEN assume_tac 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    50
qed "trans";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    51
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    52
val prems = goal (the_context ()) "(A == B) ==> A = B";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    53
by (rewrite_goals_tac prems);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    54
by (rtac refl 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    55
qed "def_imp_eq";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    56
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    57
(*Useful with eresolve_tac for proving equalties from known equalities.
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    58
        a = b
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    59
        |   |
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    60
        c = d   *)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    61
Goal "[| a=b;  a=c;  b=d |] ==> c=d";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    62
by (rtac trans 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    63
by (rtac trans 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    64
by (rtac sym 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    65
by (REPEAT (assume_tac 1)) ;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    66
qed "box_equals";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    67
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    68
(** Congruence rules for meta-application **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    69
section "Congruence";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    70
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    71
(*similar to AP_THM in Gordon's HOL*)
7618
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    72
Goal "(f::'a=>'b) = g ==> f(x)=g(x)";
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    73
by (etac subst 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    74
by (rtac refl 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    75
qed "fun_cong";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    76
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    77
(*similar to AP_TERM in Gordon's HOL and FOL's subst_context*)
7618
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    78
Goal "x=y ==> f(x)=f(y)";
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    79
by (etac subst 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    80
by (rtac refl 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    81
qed "arg_cong";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    82
7618
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    83
Goal "[| f = g; (x::'a) = y |] ==> f(x) = g(y)";
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    84
by (etac subst 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    85
by (etac subst 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    86
by (rtac refl 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    87
qed "cong";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    88
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    89
(** Equality of booleans -- iff **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    90
section "iff";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    91
7618
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    92
val prems = Goal "[| P ==> Q;  Q ==> P |] ==> P=Q";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    93
by (REPEAT (ares_tac (prems@[impI, iff RS mp RS mp]) 1));
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    94
qed "iffI";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
    95
7618
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    96
Goal "[| P=Q; Q |] ==> P";
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    97
by (etac ssubst 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    98
by (assume_tac 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
    99
qed "iffD2";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   100
7618
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   101
Goal "[| Q; P=Q |] ==> P";
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   102
by (etac iffD2 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   103
by (assume_tac 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   104
qed "rev_iffD2";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   105
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   106
bind_thm ("iffD1", sym RS iffD2);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   107
bind_thm ("rev_iffD1", sym RSN (2, rev_iffD2));
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   108
7618
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   109
val [p1,p2] = Goal "[| P=Q; [| P --> Q; Q --> P |] ==> R |] ==> R";
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   110
by (REPEAT (ares_tac [p1 RS iffD2, p1 RS iffD1, p2, impI] 1));
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   111
qed "iffE";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   112
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   113
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   114
(** True **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   115
section "True";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   116
7618
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   117
Goalw [True_def] "True";
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   118
by (rtac refl 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   119
qed "TrueI";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   120
7618
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   121
Goal "P ==> P=True";
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   122
by (REPEAT (ares_tac [iffI,TrueI] 1));
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   123
qed "eqTrueI";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   124
7618
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   125
Goal "P=True ==> P";
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   126
by (etac iffD2 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   127
by (rtac TrueI 1);
6680b3b8944b more tidying
paulson
parents: 7560
diff changeset
   128
qed "eqTrueE";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   129
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   130
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   131
(** Universal quantifier **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   132
section "!";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   133
8529
paulson
parents: 8276
diff changeset
   134
val prems = Goalw [All_def] "(!!x::'a. P(x)) ==> ! x. P(x)";
paulson
parents: 8276
diff changeset
   135
by (resolve_tac (prems RL [eqTrueI RS ext]) 1);
paulson
parents: 8276
diff changeset
   136
qed "allI";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   137
8529
paulson
parents: 8276
diff changeset
   138
Goalw [All_def] "! x::'a. P(x) ==> P(x)";
paulson
parents: 8276
diff changeset
   139
by (rtac eqTrueE 1);
paulson
parents: 8276
diff changeset
   140
by (etac fun_cong 1);
paulson
parents: 8276
diff changeset
   141
qed "spec";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   142
8529
paulson
parents: 8276
diff changeset
   143
val major::prems= goal (the_context ()) "[| ! x. P(x);  P(x) ==> R |] ==> R";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   144
by (REPEAT (resolve_tac (prems @ [major RS spec]) 1)) ;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   145
qed "allE";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   146
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   147
val prems = goal (the_context ()) 
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   148
    "[| ! x. P(x);  [| P(x); ! x. P(x) |] ==> R |] ==> R";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   149
by (REPEAT (resolve_tac (prems @ (prems RL [spec])) 1)) ;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   150
qed "all_dupE";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   151
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   152
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   153
(** False ** Depends upon spec; it is impossible to do propositional logic
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   154
             before quantifiers! **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   155
section "False";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   156
8529
paulson
parents: 8276
diff changeset
   157
Goalw [False_def] "False ==> P";
paulson
parents: 8276
diff changeset
   158
by (etac spec 1);
paulson
parents: 8276
diff changeset
   159
qed "FalseE";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   160
8529
paulson
parents: 8276
diff changeset
   161
Goal "False=True ==> P";
paulson
parents: 8276
diff changeset
   162
by (etac (eqTrueE RS FalseE) 1);
paulson
parents: 8276
diff changeset
   163
qed "False_neq_True";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   164
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   165
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   166
(** Negation **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   167
section "~";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   168
8529
paulson
parents: 8276
diff changeset
   169
val prems = Goalw [not_def] "(P ==> False) ==> ~P";
paulson
parents: 8276
diff changeset
   170
by (rtac impI 1);
paulson
parents: 8276
diff changeset
   171
by (eresolve_tac prems 1);
paulson
parents: 8276
diff changeset
   172
qed "notI";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   173
8529
paulson
parents: 8276
diff changeset
   174
Goal "False ~= True";
paulson
parents: 8276
diff changeset
   175
by (rtac notI 1);
paulson
parents: 8276
diff changeset
   176
by (etac False_neq_True 1);
paulson
parents: 8276
diff changeset
   177
qed "False_not_True";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   178
8529
paulson
parents: 8276
diff changeset
   179
Goal "True ~= False";
paulson
parents: 8276
diff changeset
   180
by (rtac notI 1);
paulson
parents: 8276
diff changeset
   181
by (dtac sym 1);
paulson
parents: 8276
diff changeset
   182
by (etac False_neq_True 1);
paulson
parents: 8276
diff changeset
   183
qed "True_not_False";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   184
8529
paulson
parents: 8276
diff changeset
   185
Goalw [not_def] "[| ~P;  P |] ==> R";
paulson
parents: 8276
diff changeset
   186
by (etac (mp RS FalseE) 1);
paulson
parents: 8276
diff changeset
   187
by (assume_tac 1);
paulson
parents: 8276
diff changeset
   188
qed "notE";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   189
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   190
bind_thm ("classical2", notE RS notI);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   191
8529
paulson
parents: 8276
diff changeset
   192
Goal "[| P; ~P |] ==> R";
paulson
parents: 8276
diff changeset
   193
by (etac notE 1);
paulson
parents: 8276
diff changeset
   194
by (assume_tac 1);
paulson
parents: 8276
diff changeset
   195
qed "rev_notE";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   196
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   197
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   198
(** Implication **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   199
section "-->";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   200
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   201
val prems = Goal "[| P-->Q;  P;  Q ==> R |] ==> R";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   202
by (REPEAT (resolve_tac (prems@[mp]) 1));
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   203
qed "impE";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   204
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   205
(* Reduces Q to P-->Q, allowing substitution in P. *)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   206
Goal "[| P;  P --> Q |] ==> Q";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   207
by (REPEAT (ares_tac [mp] 1)) ;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   208
qed "rev_mp";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   209
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   210
val [major,minor] = Goal "[| ~Q;  P==>Q |] ==> ~P";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   211
by (rtac (major RS notE RS notI) 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   212
by (etac minor 1) ;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   213
qed "contrapos";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   214
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   215
val [major,minor] = Goal "[| P==>Q; ~Q |] ==> ~P";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   216
by (rtac (minor RS contrapos) 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   217
by (etac major 1) ;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   218
qed "rev_contrapos";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   219
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   220
(* ~(?t = ?s) ==> ~(?s = ?t) *)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   221
bind_thm("not_sym", sym COMP rev_contrapos);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   222
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   223
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   224
(** Existential quantifier **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   225
section "?";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   226
8529
paulson
parents: 8276
diff changeset
   227
Goalw [Ex_def] "P x ==> ? x::'a. P x";
paulson
parents: 8276
diff changeset
   228
by (etac selectI 1) ;
paulson
parents: 8276
diff changeset
   229
qed "exI";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   230
8529
paulson
parents: 8276
diff changeset
   231
val [major,minor] = 
paulson
parents: 8276
diff changeset
   232
Goalw [Ex_def] "[| ? x::'a. P(x); !!x. P(x) ==> Q |] ==> Q";
paulson
parents: 8276
diff changeset
   233
by (rtac (major RS minor) 1);
paulson
parents: 8276
diff changeset
   234
qed "exE";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   235
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   236
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   237
(** Conjunction **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   238
section "&";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   239
8529
paulson
parents: 8276
diff changeset
   240
Goalw [and_def] "[| P; Q |] ==> P&Q";
paulson
parents: 8276
diff changeset
   241
by (rtac (impI RS allI) 1);
paulson
parents: 8276
diff changeset
   242
by (etac (mp RS mp) 1);
paulson
parents: 8276
diff changeset
   243
by (REPEAT (assume_tac 1));
paulson
parents: 8276
diff changeset
   244
qed "conjI";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   245
8529
paulson
parents: 8276
diff changeset
   246
Goalw [and_def] "[| P & Q |] ==> P";
paulson
parents: 8276
diff changeset
   247
by (dtac spec 1) ;
paulson
parents: 8276
diff changeset
   248
by (etac mp 1);
paulson
parents: 8276
diff changeset
   249
by (REPEAT (ares_tac [impI] 1));
paulson
parents: 8276
diff changeset
   250
qed "conjunct1";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   251
8529
paulson
parents: 8276
diff changeset
   252
Goalw [and_def] "[| P & Q |] ==> Q";
paulson
parents: 8276
diff changeset
   253
by (dtac spec 1) ;
paulson
parents: 8276
diff changeset
   254
by (etac mp 1);
paulson
parents: 8276
diff changeset
   255
by (REPEAT (ares_tac [impI] 1));
paulson
parents: 8276
diff changeset
   256
qed "conjunct2";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   257
8529
paulson
parents: 8276
diff changeset
   258
val [major,minor] =
paulson
parents: 8276
diff changeset
   259
Goal "[| P&Q;  [| P; Q |] ==> R |] ==> R";
paulson
parents: 8276
diff changeset
   260
by (rtac minor 1);
paulson
parents: 8276
diff changeset
   261
by (rtac (major RS conjunct1) 1);
paulson
parents: 8276
diff changeset
   262
by (rtac (major RS conjunct2) 1);
paulson
parents: 8276
diff changeset
   263
qed "conjE";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   264
8529
paulson
parents: 8276
diff changeset
   265
val prems =
paulson
parents: 8276
diff changeset
   266
Goal "[| P; P ==> Q |] ==> P & Q";
paulson
parents: 8276
diff changeset
   267
by (REPEAT (resolve_tac (conjI::prems) 1));
paulson
parents: 8276
diff changeset
   268
qed "context_conjI";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   269
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   270
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   271
(** Disjunction *)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   272
section "|";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   273
8529
paulson
parents: 8276
diff changeset
   274
Goalw [or_def] "P ==> P|Q";
paulson
parents: 8276
diff changeset
   275
by (REPEAT (resolve_tac [allI,impI] 1));
paulson
parents: 8276
diff changeset
   276
by (etac mp 1 THEN assume_tac 1);
paulson
parents: 8276
diff changeset
   277
qed "disjI1";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   278
8529
paulson
parents: 8276
diff changeset
   279
Goalw [or_def] "Q ==> P|Q";
paulson
parents: 8276
diff changeset
   280
by (REPEAT (resolve_tac [allI,impI] 1));
paulson
parents: 8276
diff changeset
   281
by (etac mp 1 THEN assume_tac 1);
paulson
parents: 8276
diff changeset
   282
qed "disjI2";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   283
8529
paulson
parents: 8276
diff changeset
   284
val [major,minorP,minorQ] =
paulson
parents: 8276
diff changeset
   285
Goalw [or_def]  "[| P | Q; P ==> R; Q ==> R |] ==> R";
paulson
parents: 8276
diff changeset
   286
by (rtac (major RS spec RS mp RS mp) 1);
paulson
parents: 8276
diff changeset
   287
by (DEPTH_SOLVE (ares_tac [impI,minorP,minorQ] 1));
paulson
parents: 8276
diff changeset
   288
qed "disjE";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   289
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   290
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   291
(** CCONTR -- classical logic **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   292
section "classical logic";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   293
8529
paulson
parents: 8276
diff changeset
   294
val [prem] = Goal  "(~P ==> P) ==> P";
paulson
parents: 8276
diff changeset
   295
by (rtac (True_or_False RS disjE RS eqTrueE) 1);
paulson
parents: 8276
diff changeset
   296
by (assume_tac 1);
paulson
parents: 8276
diff changeset
   297
by (rtac (notI RS prem RS eqTrueI) 1);
paulson
parents: 8276
diff changeset
   298
by (etac subst 1);
paulson
parents: 8276
diff changeset
   299
by (assume_tac 1);
paulson
parents: 8276
diff changeset
   300
qed "classical";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   301
7832
77bac5d84162 bind_thm "ccontr";
wenzelm
parents: 7659
diff changeset
   302
bind_thm ("ccontr", FalseE RS classical);
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   303
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   304
(*Double negation law*)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   305
Goal "~~P ==> P";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   306
by (rtac classical 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   307
by (etac notE 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   308
by (assume_tac 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   309
qed "notnotD";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   310
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   311
val [p1,p2] = Goal "[| Q; ~ P ==> ~ Q |] ==> P";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   312
by (rtac classical 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   313
by (dtac p2 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   314
by (etac notE 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   315
by (rtac p1 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   316
qed "contrapos2";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   317
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   318
val [p1,p2] = Goal "[| P;  Q ==> ~ P |] ==> ~ Q";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   319
by (rtac notI 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   320
by (dtac p2 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   321
by (etac notE 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   322
by (rtac p1 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   323
qed "swap2";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   324
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   325
(** Unique existence **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   326
section "?!";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   327
8529
paulson
parents: 8276
diff changeset
   328
val prems = Goalw [Ex1_def] "[| P(a);  !!x. P(x) ==> x=a |] ==> ?! x. P(x)";
paulson
parents: 8276
diff changeset
   329
by (REPEAT (ares_tac (prems@[exI,conjI,allI,impI]) 1));
paulson
parents: 8276
diff changeset
   330
qed "ex1I";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   331
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   332
(*Sometimes easier to use: the premises have no shared variables.  Safe!*)
8529
paulson
parents: 8276
diff changeset
   333
val [ex_prem,eq] = Goal
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   334
    "[| ? x. P(x);  !!x y. [| P(x); P(y) |] ==> x=y |] ==> ?! x. P(x)";
8529
paulson
parents: 8276
diff changeset
   335
by (rtac (ex_prem RS exE) 1);
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   336
by (REPEAT (ares_tac [ex1I,eq] 1)) ;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   337
qed "ex_ex1I";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   338
8529
paulson
parents: 8276
diff changeset
   339
val major::prems = Goalw [Ex1_def]
paulson
parents: 8276
diff changeset
   340
    "[| ?! x. P(x);  !!x. [| P(x);  ! y. P(y) --> y=x |] ==> R |] ==> R";
paulson
parents: 8276
diff changeset
   341
by (rtac (major RS exE) 1);
paulson
parents: 8276
diff changeset
   342
by (REPEAT (etac conjE 1 ORELSE ares_tac prems 1));
paulson
parents: 8276
diff changeset
   343
qed "ex1E";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   344
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   345
Goal "?! x. P x ==> ? x. P x";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   346
by (etac ex1E 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   347
by (rtac exI 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   348
by (assume_tac 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   349
qed "ex1_implies_ex";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   350
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   351
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   352
(** Select: Hilbert's Epsilon-operator **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   353
section "@";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   354
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   355
(*Easier to apply than selectI: conclusion has only one occurrence of P*)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   356
val prems = Goal
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   357
    "[| P a;  !!x. P x ==> Q x |] ==> Q (@x. P x)";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   358
by (resolve_tac prems 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   359
by (rtac selectI 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   360
by (resolve_tac prems 1) ;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   361
qed "selectI2";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   362
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   363
(*Easier to apply than selectI2 if witness ?a comes from an EX-formula*)
8529
paulson
parents: 8276
diff changeset
   364
val [major,minor] = Goal "[| ? a. P a;  !!x. P x ==> Q x |] ==> Q (Eps P)";
paulson
parents: 8276
diff changeset
   365
by (rtac (major RS exE) 1);
paulson
parents: 8276
diff changeset
   366
by (etac selectI2 1 THEN etac minor 1);
paulson
parents: 8276
diff changeset
   367
qed "selectI2EX";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   368
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   369
val prems = Goal
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   370
    "[| P a;  !!x. P x ==> x=a |] ==> (@x. P x) = a";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   371
by (rtac selectI2 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   372
by (REPEAT (ares_tac prems 1)) ;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   373
qed "select_equality";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   374
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   375
Goalw [Ex1_def] "[| ?!x. P x; P a |] ==> (@x. P x) = a";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   376
by (rtac select_equality 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   377
by (atac 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   378
by (etac exE 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   379
by (etac conjE 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   380
by (rtac allE 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   381
by (atac 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   382
by (etac impE 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   383
by (atac 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   384
by (etac ssubst 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   385
by (etac allE 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   386
by (etac mp 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   387
by (atac 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   388
qed "select1_equality";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   389
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   390
Goal "P (@ x. P x) =  (? x. P x)";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   391
by (rtac iffI 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   392
by (etac exI 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   393
by (etac exE 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   394
by (etac selectI 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   395
qed "select_eq_Ex";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   396
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   397
Goal "(@y. y=x) = x";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   398
by (rtac select_equality 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   399
by (rtac refl 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   400
by (atac 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   401
qed "Eps_eq";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   402
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   403
Goal "(Eps (op = x)) = x";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   404
by (rtac select_equality 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   405
by (rtac refl 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   406
by (etac sym 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   407
qed "Eps_sym_eq";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   408
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   409
(** Classical intro rules for disjunction and existential quantifiers *)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   410
section "classical intro rules";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   411
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   412
val prems= Goal "(~Q ==> P) ==> P|Q";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   413
by (rtac classical 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   414
by (REPEAT (ares_tac (prems@[disjI1,notI]) 1));
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   415
by (REPEAT (ares_tac (prems@[disjI2,notE]) 1)) ;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   416
qed "disjCI";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   417
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   418
Goal "~P | P";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   419
by (REPEAT (ares_tac [disjCI] 1)) ;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   420
qed "excluded_middle";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   421
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   422
(*For disjunctive case analysis*)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   423
fun excluded_middle_tac sP =
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   424
    res_inst_tac [("Q",sP)] (excluded_middle RS disjE);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   425
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   426
(*Classical implies (-->) elimination. *)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   427
val major::prems = Goal "[| P-->Q; ~P ==> R; Q ==> R |] ==> R";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   428
by (rtac (excluded_middle RS disjE) 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   429
by (REPEAT (DEPTH_SOLVE_1 (ares_tac (prems @ [major RS mp]) 1)));
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   430
qed "impCE";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   431
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   432
(*This version of --> elimination works on Q before P.  It works best for
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   433
  those cases in which P holds "almost everywhere".  Can't install as
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   434
  default: would break old proofs.*)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   435
val major::prems = Goal
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   436
    "[| P-->Q;  Q ==> R;  ~P ==> R |] ==> R";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   437
by (resolve_tac [excluded_middle RS disjE] 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   438
by (DEPTH_SOLVE (ares_tac (prems@[major RS mp]) 1)) ;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   439
qed "impCE'";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   440
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   441
(*Classical <-> elimination. *)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   442
val major::prems = Goal
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   443
    "[| P=Q;  [| P; Q |] ==> R;  [| ~P; ~Q |] ==> R |] ==> R";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   444
by (rtac (major RS iffE) 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   445
by (REPEAT (DEPTH_SOLVE_1 
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   446
	    (eresolve_tac ([asm_rl,impCE,notE]@prems) 1)));
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   447
qed "iffCE";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   448
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   449
val prems = Goal "(! x. ~P(x) ==> P(a)) ==> ? x. P(x)";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   450
by (rtac ccontr 1);
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   451
by (REPEAT (ares_tac (prems@[exI,allI,notI,notE]) 1))  ;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   452
qed "exCI";
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   453
8964
df06ec11bbfa some lemmas about plus_ac0
paulson
parents: 8529
diff changeset
   454
Goal "x + (y+z) = y + ((x+z)::'a::plus_ac0)";
df06ec11bbfa some lemmas about plus_ac0
paulson
parents: 8529
diff changeset
   455
by (rtac (thm"plus_ac0.commute" RS trans) 1);
df06ec11bbfa some lemmas about plus_ac0
paulson
parents: 8529
diff changeset
   456
by (rtac (thm"plus_ac0.assoc" RS trans) 1);
df06ec11bbfa some lemmas about plus_ac0
paulson
parents: 8529
diff changeset
   457
by (rtac (thm"plus_ac0.commute" RS arg_cong) 1);
df06ec11bbfa some lemmas about plus_ac0
paulson
parents: 8529
diff changeset
   458
qed "plus_ac0_left_commute";
df06ec11bbfa some lemmas about plus_ac0
paulson
parents: 8529
diff changeset
   459
df06ec11bbfa some lemmas about plus_ac0
paulson
parents: 8529
diff changeset
   460
Goal "x + 0 = (x ::'a::plus_ac0)";
df06ec11bbfa some lemmas about plus_ac0
paulson
parents: 8529
diff changeset
   461
by (rtac (thm"plus_ac0.commute" RS trans) 1);
df06ec11bbfa some lemmas about plus_ac0
paulson
parents: 8529
diff changeset
   462
by (rtac (thm"plus_ac0.zero") 1);
df06ec11bbfa some lemmas about plus_ac0
paulson
parents: 8529
diff changeset
   463
qed "plus_ac0_zero_right";
df06ec11bbfa some lemmas about plus_ac0
paulson
parents: 8529
diff changeset
   464
df06ec11bbfa some lemmas about plus_ac0
paulson
parents: 8529
diff changeset
   465
bind_thms ("plus_ac0", [thm"plus_ac0.assoc", thm"plus_ac0.commute", 
df06ec11bbfa some lemmas about plus_ac0
paulson
parents: 8529
diff changeset
   466
			plus_ac0_left_commute,
df06ec11bbfa some lemmas about plus_ac0
paulson
parents: 8529
diff changeset
   467
			thm"plus_ac0.zero", plus_ac0_zero_right]);
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   468
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   469
(* case distinction *)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   470
8529
paulson
parents: 8276
diff changeset
   471
val [prem1,prem2] = Goal "[| P ==> Q; ~P ==> Q |] ==> Q";
paulson
parents: 8276
diff changeset
   472
by (rtac (excluded_middle RS disjE) 1);
paulson
parents: 8276
diff changeset
   473
by (etac prem2 1);
paulson
parents: 8276
diff changeset
   474
by (etac prem1 1);
paulson
parents: 8276
diff changeset
   475
qed "case_split_thm";
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   476
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   477
fun case_tac a = res_inst_tac [("P",a)] case_split_thm;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   478
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   479
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   480
(** Standard abbreviations **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   481
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   482
(*Apply an equality or definition ONCE.
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   483
  Fails unless the substitution has an effect*)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   484
fun stac th = 
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   485
  let val th' = th RS def_imp_eq handle THM _ => th
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   486
  in  CHANGED_GOAL (rtac (th' RS ssubst))
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   487
  end;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   488
7490
9a74b57740d1 added smp_tac
oheimb
parents: 7427
diff changeset
   489
(* combination of (spec RS spec RS ...(j times) ... spec RS mp *) 
9a74b57740d1 added smp_tac
oheimb
parents: 7427
diff changeset
   490
local
9a74b57740d1 added smp_tac
oheimb
parents: 7427
diff changeset
   491
  fun wrong_prem (Const ("All", _) $ (Abs (_, _, t))) = wrong_prem t
9a74b57740d1 added smp_tac
oheimb
parents: 7427
diff changeset
   492
  |   wrong_prem (Bound _) = true
9a74b57740d1 added smp_tac
oheimb
parents: 7427
diff changeset
   493
  |   wrong_prem _ = false;
7533
1659dc4e3552 minor change to smp_tac
oheimb
parents: 7490
diff changeset
   494
  val filter_right = filter (fn t => not (wrong_prem (HOLogic.dest_Trueprop (hd (Thm.prems_of t)))));
7490
9a74b57740d1 added smp_tac
oheimb
parents: 7427
diff changeset
   495
in
9a74b57740d1 added smp_tac
oheimb
parents: 7427
diff changeset
   496
  fun smp i = funpow i (fn m => filter_right ([spec] RL m)) ([mp]);
9a74b57740d1 added smp_tac
oheimb
parents: 7427
diff changeset
   497
  fun smp_tac j = EVERY'[dresolve_tac (smp j), atac]
9a74b57740d1 added smp_tac
oheimb
parents: 7427
diff changeset
   498
end;
9a74b57740d1 added smp_tac
oheimb
parents: 7427
diff changeset
   499
9a74b57740d1 added smp_tac
oheimb
parents: 7427
diff changeset
   500
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   501
fun strip_tac i = REPEAT(resolve_tac [impI,allI] i); 
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   502
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   503
(** strip ! and --> from proved goal while preserving !-bound var names **)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   504
7884
2c65e8212115 qed_spec_mp is a mess;
wenzelm
parents: 7832
diff changeset
   505
(** THIS CODE IS A MESS!!! **)
2c65e8212115 qed_spec_mp is a mess;
wenzelm
parents: 7832
diff changeset
   506
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   507
local
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   508
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   509
(* Use XXX to avoid forall_intr failing because of duplicate variable name *)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   510
val myspec = read_instantiate [("P","?XXX")] spec;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   511
val _ $ (_ $ (vx as Var(_,vxT))) = concl_of myspec;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   512
val cvx = cterm_of (#sign(rep_thm myspec)) vx;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   513
val aspec = forall_intr cvx myspec;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   514
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   515
in
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   516
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   517
fun RSspec th =
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   518
  (case concl_of th of
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   519
     _ $ (Const("All",_) $ Abs(a,_,_)) =>
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   520
         let val ca = cterm_of (#sign(rep_thm th)) (Var((a,0),vxT))
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   521
         in th RS forall_elim ca aspec end
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   522
  | _ => raise THM("RSspec",0,[th]));
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   523
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   524
fun RSmp th =
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   525
  (case concl_of th of
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   526
     _ $ (Const("op -->",_)$_$_) => th RS mp
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   527
  | _ => raise THM("RSmp",0,[th]));
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   528
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   529
fun normalize_thm funs =
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   530
  let fun trans [] th = th
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   531
	| trans (f::fs) th = (trans funs (f th)) handle THM _ => trans fs th
9058
7856a01119fb qed_spec_mp: strip_shyps_warning;
wenzelm
parents: 8964
diff changeset
   532
  in zero_var_indexes o strip_shyps_warning o trans funs end;
7357
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   533
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   534
fun qed_spec_mp name =
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   535
  let val thm = normalize_thm [RSspec,RSmp] (result())
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   536
  in ThmDatabase.ml_store_thm(name, thm) end;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   537
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   538
fun qed_goal_spec_mp name thy s p = 
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   539
	bind_thm (name, normalize_thm [RSspec,RSmp] (prove_goal thy s p));
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   540
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   541
fun qed_goalw_spec_mp name thy defs s p = 
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   542
	bind_thm (name, normalize_thm [RSspec,RSmp] (prove_goalw thy defs s p));
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   543
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   544
end;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   545
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   546
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   547
(* attributes *)
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   548
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   549
local
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   550
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   551
fun gen_rulify x =
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   552
  Attrib.no_args (Drule.rule_attribute (fn _ => (normalize_thm [RSspec, RSmp]))) x;
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   553
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   554
in
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   555
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   556
val attrib_setup =
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   557
 [Attrib.add_attributes
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   558
  [("rulify", (gen_rulify, gen_rulify), "put theorem into standard rule form")]];
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   559
d0e16da40ea2 proper bootstrap of HOL theory and packages;
wenzelm
parents:
diff changeset
   560
end;