src/HOL/simpdata.ML
author paulson
Thu, 05 Sep 1996 10:23:55 +0200
changeset 1948 78e5bfcbc1e9
parent 1922 ce495557ac33
child 1968 daa97cc96feb
permissions -rw-r--r--
Added miniscoping to the simplifier: quantifiers are now pushed in
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
     1
(*  Title:      HOL/simpdata.ML
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1264
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
Instantiation of the generic simplifier
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
open Simplifier;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    11
(*** Integration of simplifier with classical reasoner ***)
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    12
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    13
(*Add a simpset to a classical set!*)
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    14
infix 4 addss;
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    15
fun cs addss ss = cs addbefore asm_full_simp_tac ss 1;
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    16
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    17
fun Addss ss = (claset := !claset addbefore asm_full_simp_tac ss 1);
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    18
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    19
(*Maybe swap the safe_tac and simp_tac lines?**)
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    20
fun auto_tac (cs,ss) = 
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    21
    TRY (safe_tac cs) THEN 
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    22
    ALLGOALS (asm_full_simp_tac ss) THEN
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    23
    REPEAT (FIRSTGOAL (best_tac (cs addss ss)));
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    24
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    25
fun Auto_tac() = auto_tac (!claset, !simpset);
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    26
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    27
fun auto() = by (Auto_tac());
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    28
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    29
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
local
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    32
  fun prover s = prove_goal HOL.thy s (fn _ => [fast_tac HOL_cs 1]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    33
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    34
  val P_imp_P_iff_True = prover "P --> (P = True)" RS mp;
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    35
  val P_imp_P_eq_True = P_imp_P_iff_True RS eq_reflection;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    37
  val not_P_imp_P_iff_F = prover "~P --> (P = False)" RS mp;
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    38
  val not_P_imp_P_eq_False = not_P_imp_P_iff_F RS eq_reflection;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    39
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    40
  fun atomize pairs =
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    41
    let fun atoms th =
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    42
	  (case concl_of th of
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    43
	     Const("Trueprop",_) $ p =>
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    44
	       (case head_of p of
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    45
		  Const(a,_) =>
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    46
		    (case assoc(pairs,a) of
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    47
		       Some(rls) => flat (map atoms ([th] RL rls))
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    48
		     | None => [th])
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    49
		| _ => [th])
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    50
	   | _ => [th])
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    51
    in atoms end;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    52
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    53
  fun mk_meta_eq r = case concl_of r of
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    54
	  Const("==",_)$_$_ => r
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    55
      |   _$(Const("op =",_)$_$_) => r RS eq_reflection
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    56
      |   _$(Const("not",_)$_) => r RS not_P_imp_P_eq_False
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    57
      |   _ => r RS P_imp_P_eq_True;
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    58
  (* last 2 lines requires all formulae to be of the from Trueprop(.) *)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    59
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    60
  fun gen_all th = forall_elim_vars (#maxidx(rep_thm th)+1) th;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    61
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    62
  val simp_thms = map prover
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    63
   [ "(x=x) = True",
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    64
     "(~True) = False", "(~False) = True", "(~ ~ P) = P",
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    65
     "(~P) ~= P", "P ~= (~P)", "(P ~= Q) = (P = (~Q))",
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    66
     "(True=P) = P", "(P=True) = P",
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    67
     "(True --> P) = P", "(False --> P) = True", 
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    68
     "(P --> True) = True", "(P --> P) = True",
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    69
     "(P --> False) = (~P)", "(P --> ~P) = (~P)",
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    70
     "(P & True) = P", "(True & P) = P", 
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    71
     "(P & False) = False", "(False & P) = False", "(P & P) = P",
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    72
     "(P | True) = True", "(True | P) = True", 
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    73
     "(P | False) = P", "(False | P) = P", "(P | P) = P",
1948
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
    74
     "((~P) = (~Q)) = (P=Q)",
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    75
     "(!x.P) = P", "(? x.P) = P", "? x. x=t", 
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    76
     "(? x. x=t & P(x)) = P(t)", "(! x. x=t --> P(x)) = P(t)" ];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    78
in
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    79
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    80
val meta_eq_to_obj_eq = prove_goal HOL.thy "x==y ==> x=y"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    81
  (fn [prem] => [rewtac prem, rtac refl 1]);
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
val eq_sym_conv = prover "(x=y) = (y=x)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    84
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
val conj_assoc = prover "((P&Q)&R) = (P&(Q&R))";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    86
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    87
val disj_assoc = prover "((P|Q)|R) = (P|(Q|R))";
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    88
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    89
val imp_disj   = prover "(P|Q --> R) = ((P-->R)&(Q-->R))";
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    90
1948
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
    91
(*Avoids duplication of subgoals after expand_if, when the true and false 
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
    92
  cases boil down to the same thing.*) 
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
    93
val cases_simp = prover "((P --> Q) & (~P --> Q)) = Q";
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
    94
965
24eef3860714 changed syntax of "if"
clasohm
parents: 941
diff changeset
    95
val if_True = prove_goalw HOL.thy [if_def] "(if True then x else y) = x"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    96
 (fn _=>[fast_tac (HOL_cs addIs [select_equality]) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    97
965
24eef3860714 changed syntax of "if"
clasohm
parents: 941
diff changeset
    98
val if_False = prove_goalw HOL.thy [if_def] "(if False then x else y) = y"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    99
 (fn _=>[fast_tac (HOL_cs addIs [select_equality]) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   100
965
24eef3860714 changed syntax of "if"
clasohm
parents: 941
diff changeset
   101
val if_P = prove_goal HOL.thy "P ==> (if P then x else y) = x"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   102
 (fn [prem] => [ stac (prem RS eqTrueI) 1, rtac if_True 1 ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   103
965
24eef3860714 changed syntax of "if"
clasohm
parents: 941
diff changeset
   104
val if_not_P = prove_goal HOL.thy "~P ==> (if P then x else y) = y"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   105
 (fn [prem] => [ stac (prem RS not_P_imp_P_iff_F) 1, rtac if_False 1 ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   106
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
val expand_if = prove_goal HOL.thy
965
24eef3860714 changed syntax of "if"
clasohm
parents: 941
diff changeset
   108
    "P(if Q then x else y) = ((Q --> P(x)) & (~Q --> P(y)))"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   109
 (fn _=> [ (res_inst_tac [("Q","Q")] (excluded_middle RS disjE) 1),
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
   110
         rtac (if_P RS ssubst) 2,
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
   111
         rtac (if_not_P RS ssubst) 1,
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
   112
         REPEAT(fast_tac HOL_cs 1) ]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   113
965
24eef3860714 changed syntax of "if"
clasohm
parents: 941
diff changeset
   114
val if_bool_eq = prove_goal HOL.thy
24eef3860714 changed syntax of "if"
clasohm
parents: 941
diff changeset
   115
                   "(if P then Q else R) = ((P-->Q) & (~P-->R))"
24eef3860714 changed syntax of "if"
clasohm
parents: 941
diff changeset
   116
                   (fn _ => [rtac expand_if 1]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   117
988
8317adb1c444 Defined addss to perform simplification in a claset.
lcp
parents: 965
diff changeset
   118
(*Add congruence rules for = (instead of ==) *)
8317adb1c444 Defined addss to perform simplification in a claset.
lcp
parents: 965
diff changeset
   119
infix 4 addcongs;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   120
fun ss addcongs congs = ss addeqcongs (congs RL [eq_reflection]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   121
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 988
diff changeset
   122
fun Addcongs congs = (simpset := !simpset addcongs congs);
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 988
diff changeset
   123
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   124
val mksimps_pairs =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   125
  [("op -->", [mp]), ("op &", [conjunct1,conjunct2]),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   126
   ("All", [spec]), ("True", []), ("False", []),
965
24eef3860714 changed syntax of "if"
clasohm
parents: 941
diff changeset
   127
   ("If", [if_bool_eq RS iffD1])];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   128
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   129
fun mksimps pairs = map mk_meta_eq o atomize pairs o gen_all;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   130
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   131
val imp_cong = impI RSN
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   132
    (2, prove_goal HOL.thy "(P=P')--> (P'--> (Q=Q'))--> ((P-->Q) = (P'-->Q'))"
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   133
        (fn _=> [fast_tac HOL_cs 1]) RS mp RS mp);
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   134
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   135
val o_apply = prove_goalw HOL.thy [o_def] "(f o g)(x) = f(g(x))"
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   136
 (fn _ => [rtac refl 1]);
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   137
1948
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   138
(*Miniscoping: pushing in existential quantifiers*)
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   139
val ex_simps = map prover 
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   140
		["(EX x. P x & Q)   = ((EX x.P x) & Q)",
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   141
		 "(EX x. P & Q x)   = (P & (EX x.Q x))",
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   142
		 "(EX x. P x | Q)   = ((EX x.P x) | Q)",
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   143
		 "(EX x. P | Q x)   = (P | (EX x.Q x))",
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   144
		 "(EX x. P x --> Q) = ((ALL x.P x) --> Q)",
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   145
		 "(EX x. P --> Q x) = (P --> (EX x.Q x))"];
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   146
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   147
(*Miniscoping: pushing in universal quantifiers*)
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   148
val all_simps = map prover
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   149
		["(ALL x. P x & Q)   = ((ALL x.P x) & Q)",
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   150
		 "(ALL x. P & Q x)   = (P & (ALL x.Q x))",
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   151
		 "(ALL x. P x | Q)   = ((ALL x.P x) | Q)",
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   152
		 "(ALL x. P | Q x)   = (P | (ALL x.Q x))",
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   153
		 "(ALL x. P x --> Q) = ((EX x.P x) --> Q)",
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   154
		 "(ALL x. P --> Q x) = (P --> (ALL x.Q x))"];
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   155
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   156
val HOL_ss = empty_ss
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   157
      setmksimps (mksimps mksimps_pairs)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   158
      setsolver (fn prems => resolve_tac (TrueI::refl::prems) ORELSE' atac
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   159
                             ORELSE' etac FalseE)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   160
      setsubgoaler asm_simp_tac
1948
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   161
      addsimps ([if_True, if_False, o_apply, imp_disj, conj_assoc, disj_assoc,
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   162
		 cases_simp]
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   163
        @ ex_simps @ all_simps @ simp_thms)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   164
      addcongs [imp_cong];
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   165
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   166
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   167
(*In general it seems wrong to add distributive laws by default: they
1948
78e5bfcbc1e9 Added miniscoping to the simplifier: quantifiers are now pushed in
paulson
parents: 1922
diff changeset
   168
  might cause exponential blow-up.  But imp_disj has been in for a while
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   169
  and cannot be removed without affecting existing proofs.  Moreover, 
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   170
  rewriting by "(P|Q --> R) = ((P-->R)&(Q-->R))" might be justified on the
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   171
  grounds that it allows simplification of R in the two cases.*)
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   172
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   173
941
f8a202891ac9 Enforced partial evaluation of mk_case_split_tac
nipkow
parents: 923
diff changeset
   174
local val mktac = mk_case_split_tac (meta_eq_to_obj_eq RS iffD2)
f8a202891ac9 Enforced partial evaluation of mk_case_split_tac
nipkow
parents: 923
diff changeset
   175
in
f8a202891ac9 Enforced partial evaluation of mk_case_split_tac
nipkow
parents: 923
diff changeset
   176
fun split_tac splits = mktac (map mk_meta_eq splits)
f8a202891ac9 Enforced partial evaluation of mk_case_split_tac
nipkow
parents: 923
diff changeset
   177
end;
f8a202891ac9 Enforced partial evaluation of mk_case_split_tac
nipkow
parents: 923
diff changeset
   178
1722
bb326972ede6 Added split_inside_tac.
berghofe
parents: 1660
diff changeset
   179
local val mktac = mk_case_split_inside_tac (meta_eq_to_obj_eq RS iffD2)
bb326972ede6 Added split_inside_tac.
berghofe
parents: 1660
diff changeset
   180
in
bb326972ede6 Added split_inside_tac.
berghofe
parents: 1660
diff changeset
   181
fun split_inside_tac splits = mktac (map mk_meta_eq splits)
bb326972ede6 Added split_inside_tac.
berghofe
parents: 1660
diff changeset
   182
end;
bb326972ede6 Added split_inside_tac.
berghofe
parents: 1660
diff changeset
   183
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   184
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   185
(* eliminiation of existential quantifiers in assumptions *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   186
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   187
val ex_all_equiv =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   188
  let val lemma1 = prove_goal HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   189
        "(? x. P(x) ==> PROP Q) ==> (!!x. P(x) ==> PROP Q)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   190
        (fn prems => [resolve_tac prems 1, etac exI 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   191
      val lemma2 = prove_goalw HOL.thy [Ex_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   192
        "(!!x. P(x) ==> PROP Q) ==> (? x. P(x) ==> PROP Q)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   193
        (fn prems => [REPEAT(resolve_tac prems 1)])
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   194
  in equal_intr lemma1 lemma2 end;
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
(* '&' congruence rule: not included by default!
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   197
   May slow rewrite proofs down by as much as 50% *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   198
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   199
val conj_cong = impI RSN
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   200
    (2, prove_goal HOL.thy "(P=P')--> (P'--> (Q=Q'))--> ((P&Q) = (P'&Q'))"
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
   201
        (fn _=> [fast_tac HOL_cs 1]) RS mp RS mp);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   202
1548
afe750876848 Added 'section' commands
nipkow
parents: 1485
diff changeset
   203
val rev_conj_cong = impI RSN
afe750876848 Added 'section' commands
nipkow
parents: 1485
diff changeset
   204
    (2, prove_goal HOL.thy "(Q=Q')--> (Q'--> (P=P'))--> ((P&Q) = (P'&Q'))"
afe750876848 Added 'section' commands
nipkow
parents: 1485
diff changeset
   205
        (fn _=> [fast_tac HOL_cs 1]) RS mp RS mp);
afe750876848 Added 'section' commands
nipkow
parents: 1485
diff changeset
   206
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   207
(** 'if' congruence rules: neither included by default! *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   208
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   209
(*Simplifies x assuming c and y assuming ~c*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   210
val if_cong = prove_goal HOL.thy
965
24eef3860714 changed syntax of "if"
clasohm
parents: 941
diff changeset
   211
  "[| b=c; c ==> x=u; ~c ==> y=v |] ==>\
24eef3860714 changed syntax of "if"
clasohm
parents: 941
diff changeset
   212
\  (if b then x else y) = (if c then u else v)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   213
  (fn rew::prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   214
   [stac rew 1, stac expand_if 1, stac expand_if 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   215
    fast_tac (HOL_cs addDs prems) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   216
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   217
(*Prevents simplification of x and y: much faster*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   218
val if_weak_cong = prove_goal HOL.thy
965
24eef3860714 changed syntax of "if"
clasohm
parents: 941
diff changeset
   219
  "b=c ==> (if b then x else y) = (if c then x else y)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   220
  (fn [prem] => [rtac (prem RS arg_cong) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   221
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   222
(*Prevents simplification of t: much faster*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   223
val let_weak_cong = prove_goal HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   224
  "a = b ==> (let x=a in t(x)) = (let x=b in t(x))"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   225
  (fn [prem] => [rtac (prem RS arg_cong) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   226
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   227
end;
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
fun prove nm thm  = qed_goal nm HOL.thy thm (fn _ => [fast_tac HOL_cs 1]);
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
prove "conj_commute" "(P&Q) = (Q&P)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   232
prove "conj_left_commute" "(P&(Q&R)) = (Q&(P&R))";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   233
val conj_comms = [conj_commute, conj_left_commute];
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   234
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   235
prove "disj_commute" "(P|Q) = (Q|P)";
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   236
prove "disj_left_commute" "(P|(Q|R)) = (Q|(P|R))";
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   237
val disj_comms = [disj_commute, disj_left_commute];
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   238
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   239
prove "conj_disj_distribL" "(P&(Q|R)) = (P&Q | P&R)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   240
prove "conj_disj_distribR" "((P|Q)&R) = (P&R | Q&R)";
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   241
1892
23765bc3e8e2 Added two new distributive laws
paulson
parents: 1874
diff changeset
   242
prove "disj_conj_distribL" "(P|(Q&R)) = ((P|Q) & (P|R))";
23765bc3e8e2 Added two new distributive laws
paulson
parents: 1874
diff changeset
   243
prove "disj_conj_distribR" "((P&Q)|R) = ((P|R) & (Q|R))";
23765bc3e8e2 Added two new distributive laws
paulson
parents: 1874
diff changeset
   244
23765bc3e8e2 Added two new distributive laws
paulson
parents: 1874
diff changeset
   245
prove "imp_conj_distrib" "(P --> (Q&R)) = ((P-->Q) & (P-->R))";
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   246
prove "imp_conj"         "((P&Q)-->R)   = (P --> (Q --> R))";
1892
23765bc3e8e2 Added two new distributive laws
paulson
parents: 1874
diff changeset
   247
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   248
prove "de_Morgan_disj" "(~(P | Q)) = (~P & ~Q)";
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   249
prove "de_Morgan_conj" "(~(P & Q)) = (~P | ~Q)";
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   250
prove "not_iff" "(P~=Q) = (P = (~Q))";
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   251
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1655
diff changeset
   252
prove "not_all" "(~ (! x.P(x))) = (? x.~P(x))";
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   253
prove "imp_all" "((! x. P x) --> Q) = (? x. P x --> Q)";
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1655
diff changeset
   254
prove "not_ex"  "(~ (? x.P(x))) = (! x.~P(x))";
1922
ce495557ac33 Installation of auto_tac; re-organization
paulson
parents: 1892
diff changeset
   255
prove "imp_ex" "((? x. P x) --> Q) = (! x. P x --> Q)";
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1655
diff changeset
   256
1655
5be64540f275 Added a number of lemmas
nipkow
parents: 1548
diff changeset
   257
prove "ex_disj_distrib" "(? x. P(x) | Q(x)) = ((? x. P(x)) | (? x. Q(x)))";
5be64540f275 Added a number of lemmas
nipkow
parents: 1548
diff changeset
   258
prove "all_conj_distrib" "(!x. P(x) & Q(x)) = ((! x. P(x)) & (! x. Q(x)))";
5be64540f275 Added a number of lemmas
nipkow
parents: 1548
diff changeset
   259
1758
60613b065e9b Added ex_imp
nipkow
parents: 1722
diff changeset
   260
1655
5be64540f275 Added a number of lemmas
nipkow
parents: 1548
diff changeset
   261
qed_goal "if_cancel" HOL.thy "(if c then x else x) = x"
5be64540f275 Added a number of lemmas
nipkow
parents: 1548
diff changeset
   262
  (fn _ => [simp_tac (HOL_ss setloop (split_tac [expand_if])) 1]);
5be64540f275 Added a number of lemmas
nipkow
parents: 1548
diff changeset
   263
5be64540f275 Added a number of lemmas
nipkow
parents: 1548
diff changeset
   264
qed_goal "if_distrib" HOL.thy
5be64540f275 Added a number of lemmas
nipkow
parents: 1548
diff changeset
   265
  "f(if c then x else y) = (if c then f x else f y)" 
5be64540f275 Added a number of lemmas
nipkow
parents: 1548
diff changeset
   266
  (fn _ => [simp_tac (HOL_ss setloop (split_tac [expand_if])) 1]);
5be64540f275 Added a number of lemmas
nipkow
parents: 1548
diff changeset
   267
1874
35f22792aade Corrected o_assoc lemma
pusch
parents: 1821
diff changeset
   268
qed_goalw "o_assoc" HOL.thy [o_def] "f o (g o h) = (f o g o h)"
1655
5be64540f275 Added a number of lemmas
nipkow
parents: 1548
diff changeset
   269
  (fn _=>[rtac ext 1, rtac refl 1]);