src/HOL/ex/mesontest.ML
author berghofe
Tue, 25 Jun 1996 13:11:29 +0200
changeset 1824 44254696843a
parent 1718 eaecc8be539b
child 2031 03a843f0f447
permissions -rw-r--r--
Changed argument order of nat_rec.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
     1
(*  Title:      HOL/ex/mesontest
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1992  University of Cambridge
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     5
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     6
Test data for the MESON proof procedure
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     7
   (Excludes the equality problems 51, 52, 56, 58)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
     8
1718
eaecc8be539b updated comments for handling derivations
paulson
parents: 1600
diff changeset
     9
show_hyps := false;
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    10
1718
eaecc8be539b updated comments for handling derivations
paulson
parents: 1600
diff changeset
    11
keep_derivs := MinDeriv;
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    12
by (rtac ccontr 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    13
val [prem] = gethyps 1;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    14
val nnf = make_nnf prem;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    15
val xsko = skolemize nnf;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    16
by (cut_facts_tac [xsko] 1 THEN REPEAT (etac exE 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    17
val [_,sko] = gethyps 1;
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
    18
val clauses = make_clauses [sko];       
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    19
val horns = make_horns clauses;
1600
901579c25021 Examples call gocls to make goal clauses
paulson
parents: 1586
diff changeset
    20
val goes = gocls clauses;
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    21
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    22
goal HOL.thy "False";
1600
901579c25021 Examples call gocls to make goal clauses
paulson
parents: 1586
diff changeset
    23
by (resolve_tac goes 1);
1718
eaecc8be539b updated comments for handling derivations
paulson
parents: 1600
diff changeset
    24
keep_derivs := FullDeriv;
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    25
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    26
by (prolog_step_tac horns 1);
1600
901579c25021 Examples call gocls to make goal clauses
paulson
parents: 1586
diff changeset
    27
by (iter_deepen_prolog_tac horns);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    28
by (depth_prolog_tac horns);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    29
by (best_prolog_tac size_of_subgoals horns);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    30
*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    31
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    32
writeln"File HOL/ex/meson-test.";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    33
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    34
(*Deep unifications can be required, esp. during transformation to clauses*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    35
val orig_trace_bound = !Unify.trace_bound
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    36
and orig_search_bound = !Unify.search_bound;
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    37
Unify.trace_bound := 20;
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    38
Unify.search_bound := 40;
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    39
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    40
(**** Interactive examples ****)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    41
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    42
(*Generate nice names for Skolem functions*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    43
Logic.auto_rename := true; Logic.set_rename_prefix "a";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    44
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    45
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    46
writeln"Problem 25";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    47
goal HOL.thy "(? x. P x) &  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    48
\       (! x. L x --> ~ (M x & R x)) &  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    49
\       (! x. P x --> (M x & L x)) &   \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    50
\       ((! x. P x --> Q x) | (? x. P x & R x))  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    51
\   --> (? x. Q x & P x)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    52
by (rtac ccontr 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    53
val [prem25] = gethyps 1;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    54
val nnf25 = make_nnf prem25;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    55
val xsko25 = skolemize nnf25;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    56
by (cut_facts_tac [xsko25] 1 THEN REPEAT (etac exE 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    57
val [_,sko25] = gethyps 1;
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
    58
val clauses25 = make_clauses [sko25];   (*7 clauses*)
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
    59
val horns25 = make_horns clauses25;     (*16 Horn clauses*)
1600
901579c25021 Examples call gocls to make goal clauses
paulson
parents: 1586
diff changeset
    60
val go25::_ = gocls clauses25;
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    61
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    62
goal HOL.thy "False";
1600
901579c25021 Examples call gocls to make goal clauses
paulson
parents: 1586
diff changeset
    63
by (rtac go25 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    64
by (depth_prolog_tac horns25);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    65
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    66
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    67
writeln"Problem 26";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    68
goal HOL.thy "((? x. p x) = (? x. q x)) &     \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    69
\     (! x. ! y. p x & q y --> (r x = s y)) \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    70
\ --> ((! x. p x --> r x) = (! x. q x --> s x))";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    71
by (rtac ccontr 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    72
val [prem26] = gethyps 1;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    73
val nnf26 = make_nnf prem26;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    74
val xsko26 = skolemize nnf26;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    75
by (cut_facts_tac [xsko26] 1 THEN REPEAT (etac exE 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    76
val [_,sko26] = gethyps 1;
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
    77
val clauses26 = make_clauses [sko26];                   (*9 clauses*)
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
    78
val horns26 = make_horns clauses26;                     (*24 Horn clauses*)
1600
901579c25021 Examples call gocls to make goal clauses
paulson
parents: 1586
diff changeset
    79
val go26::_ = gocls clauses26;
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    80
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    81
goal HOL.thy "False";
1600
901579c25021 Examples call gocls to make goal clauses
paulson
parents: 1586
diff changeset
    82
by (rtac go26 1);
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    83
by (depth_prolog_tac horns26);  (*1.4 secs*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    84
(*Proof is of length 107!!*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    85
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    86
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
    87
writeln"Problem 43  NOW PROVED AUTOMATICALLY!!";  (*16 Horn clauses*)
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
    88
goal HOL.thy "(! x. ! y. q x y = (! z. p z x = (p z y::bool)))  \
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    89
\         --> (! x. (! y. q x y = (q y x::bool)))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    90
by (rtac ccontr 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    91
val [prem43] = gethyps 1;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    92
val nnf43 = make_nnf prem43;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    93
val xsko43 = skolemize nnf43;
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    94
by (cut_facts_tac [xsko43] 1 THEN REPEAT (etac exE 1));
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    95
val [_,sko43] = gethyps 1;
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
    96
val clauses43 = make_clauses [sko43];   (*6*)
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
    97
val horns43 = make_horns clauses43;     (*16*)
1600
901579c25021 Examples call gocls to make goal clauses
paulson
parents: 1586
diff changeset
    98
val go43::_ = gocls clauses43;
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
    99
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   100
goal HOL.thy "False";
1600
901579c25021 Examples call gocls to make goal clauses
paulson
parents: 1586
diff changeset
   101
by (rtac go43 1);
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   102
by (best_prolog_tac size_of_subgoals horns43);   (*1.6 secs*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   103
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   104
(* 
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   105
#1  (q x xa ==> ~ q x xa) ==> q xa x
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   106
#2  (q xa x ==> ~ q xa x) ==> q x xa
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   107
#3  (~ q x xa ==> q x xa) ==> ~ q xa x
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   108
#4  (~ q xa x ==> q xa x) ==> ~ q x xa
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   109
#5  [| ~ q ?U ?V ==> q ?U ?V; ~ p ?W ?U ==> p ?W ?U |] ==> p ?W ?V
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   110
#6  [| ~ p ?W ?U ==> p ?W ?U; p ?W ?V ==> ~ p ?W ?V |] ==> ~ q ?U ?V
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   111
#7  [| p ?W ?V ==> ~ p ?W ?V; ~ q ?U ?V ==> q ?U ?V |] ==> ~ p ?W ?U
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   112
#8  [| ~ q ?U ?V ==> q ?U ?V; ~ p ?W ?V ==> p ?W ?V |] ==> p ?W ?U
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   113
#9  [| ~ p ?W ?V ==> p ?W ?V; p ?W ?U ==> ~ p ?W ?U |] ==> ~ q ?U ?V
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   114
#10 [| p ?W ?U ==> ~ p ?W ?U; ~ q ?U ?V ==> q ?U ?V |] ==> ~ p ?W ?V
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   115
#11 [| p (xb ?U ?V) ?U ==> ~ p (xb ?U ?V) ?U;
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   116
       p (xb ?U ?V) ?V ==> ~ p (xb ?U ?V) ?V |] ==> q ?U ?V
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   117
#12 [| p (xb ?U ?V) ?V ==> ~ p (xb ?U ?V) ?V; q ?U ?V ==> ~ q ?U ?V |] ==>
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   118
    p (xb ?U ?V) ?U
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   119
#13 [| q ?U ?V ==> ~ q ?U ?V; p (xb ?U ?V) ?U ==> ~ p (xb ?U ?V) ?U |] ==>
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   120
    p (xb ?U ?V) ?V
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   121
#14 [| ~ p (xb ?U ?V) ?U ==> p (xb ?U ?V) ?U;
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   122
       ~ p (xb ?U ?V) ?V ==> p (xb ?U ?V) ?V |] ==> q ?U ?V
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   123
#15 [| ~ p (xb ?U ?V) ?V ==> p (xb ?U ?V) ?V; q ?U ?V ==> ~ q ?U ?V |] ==>
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   124
    ~ p (xb ?U ?V) ?U
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   125
#16 [| q ?U ?V ==> ~ q ?U ?V; ~ p (xb ?U ?V) ?U ==> p (xb ?U ?V) ?U |] ==>
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   126
    ~ p (xb ?U ?V) ?V
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   127
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   128
And here is the proof!  (Unkn is the start state after use of goal clause)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   129
[Unkn, Res ([Thm "#14"], false, 1), Res ([Thm "#5"], false, 1),
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   130
   Res ([Thm "#1"], false, 1), Asm 1, Res ([Thm "#13"], false, 1), Asm 2,
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   131
   Asm 1, Res ([Thm "#13"], false, 1), Asm 1, Res ([Thm "#10"], false, 1),
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   132
   Res ([Thm "#16"], false, 1), Asm 2, Asm 1, Res ([Thm "#1"], false, 1),
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   133
   Asm 1, Res ([Thm "#14"], false, 1), Res ([Thm "#5"], false, 1),
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   134
   Res ([Thm "#2"], false, 1), Asm 1, Res ([Thm "#13"], false, 1), Asm 2,
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   135
   Asm 1, Res ([Thm "#8"], false, 1), Res ([Thm "#2"], false, 1), Asm 1,
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   136
   Res ([Thm "#12"], false, 1), Asm 2, Asm 1] : lderiv list
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   137
*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   138
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   139
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   140
(*Restore variable name preservation*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   141
Logic.auto_rename := false; 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   142
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   143
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   144
(**** Batch test data ****)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   145
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   146
(*Sample problems from 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   147
  F. J. Pelletier, 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   148
  Seventy-Five Problems for Testing Automatic Theorem Provers,
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   149
  J. Automated Reasoning 2 (1986), 191-216.
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   150
  Errata, JAR 4 (1988), 236-236.
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   151
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   152
The hardest problems -- judging by experience with several theorem provers,
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   153
including matrix ones -- are 34 and 43.
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   154
*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   155
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   156
writeln"Pelletier's examples";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   157
(*1*)
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   158
goal HOL.thy "(P --> Q)  =  (~Q --> ~P)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   159
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   160
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   161
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   162
(*2*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   163
goal HOL.thy "(~ ~ P) =  P";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   164
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   165
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   166
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   167
(*3*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   168
goal HOL.thy "~(P-->Q) --> (Q-->P)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   169
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   170
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   171
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   172
(*4*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   173
goal HOL.thy "(~P-->Q)  =  (~Q --> P)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   174
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   175
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   176
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   177
(*5*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   178
goal HOL.thy "((P|Q)-->(P|R)) --> (P|(Q-->R))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   179
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   180
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   181
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   182
(*6*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   183
goal HOL.thy "P | ~ P";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   184
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   185
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   186
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   187
(*7*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   188
goal HOL.thy "P | ~ ~ ~ P";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   189
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   190
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   191
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   192
(*8.  Peirce's law*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   193
goal HOL.thy "((P-->Q) --> P)  -->  P";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   194
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   195
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   196
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   197
(*9*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   198
goal HOL.thy "((P|Q) & (~P|Q) & (P| ~Q)) --> ~ (~P | ~Q)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   199
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   200
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   201
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   202
(*10*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   203
goal HOL.thy "(Q-->R) & (R-->P&Q) & (P-->Q|R) --> (P=Q)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   204
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   205
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   206
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   207
(*11.  Proved in each direction (incorrectly, says Pelletier!!)  *)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   208
goal HOL.thy "P=(P::bool)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   209
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   210
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   211
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   212
(*12.  "Dijkstra's law"*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   213
goal HOL.thy "((P = Q) = R) = (P = (Q = R))";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   214
by (safe_meson_tac 1);
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   215
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   216
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   217
(*13.  Distributive law*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   218
goal HOL.thy "(P | (Q & R)) = ((P | Q) & (P | R))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   219
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   220
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   221
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   222
(*14*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   223
goal HOL.thy "(P = Q) = ((Q | ~P) & (~Q|P))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   224
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   225
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   226
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   227
(*15*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   228
goal HOL.thy "(P --> Q) = (~P | Q)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   229
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   230
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   231
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   232
(*16*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   233
goal HOL.thy "(P-->Q) | (Q-->P)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   234
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   235
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   236
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   237
(*17*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   238
goal HOL.thy "((P & (Q-->R))-->S)  =  ((~P | Q | S) & (~P | ~R | S))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   239
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   240
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   241
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   242
writeln"Classical Logic: examples with quantifiers";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   243
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   244
goal HOL.thy "(! x. P x & Q x) = ((! x. P x) & (! x. Q x))";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   245
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   246
result(); 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   247
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   248
goal HOL.thy "(? x. P --> Q x)  =  (P --> (? x.Q x))";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   249
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   250
result(); 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   251
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   252
goal HOL.thy "(? x.P x --> Q) = ((! x.P x) --> Q)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   253
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   254
result(); 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   255
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   256
goal HOL.thy "((! x.P x) | Q)  =  (! x. P x | Q)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   257
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   258
result(); 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   259
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   260
goal HOL.thy "(! x. P x --> P(f x))  &  P d --> P(f(f(f d)))";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   261
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   262
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   263
1259
6f5d2d76e19b added new example by John Harrison
paulson
parents: 969
diff changeset
   264
(*Needs double instantiation of EXISTS*)
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   265
goal HOL.thy "? x. P x --> P a & P b";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   266
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   267
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   268
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   269
goal HOL.thy "? z. P z --> (! x. P x)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   270
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   271
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   272
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   273
writeln"Hard examples with quantifiers";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   274
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   275
writeln"Problem 18";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   276
goal HOL.thy "? y. ! x. P y --> P x";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   277
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   278
result(); 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   279
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   280
writeln"Problem 19";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   281
goal HOL.thy "? x. ! y z. (P y --> Q z) --> (P x --> Q x)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   282
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   283
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   284
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   285
writeln"Problem 20";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   286
goal HOL.thy "(! x y. ? z. ! w. (P x & Q y --> R z & S w))     \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   287
\   --> (? x y. P x & Q y) --> (? z. R z)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   288
by (safe_meson_tac 1); 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   289
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   290
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   291
writeln"Problem 21";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   292
goal HOL.thy "(? x. P --> Q x) & (? x. Q x --> P) --> (? x. P=Q x)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   293
by (safe_meson_tac 1); 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   294
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   295
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   296
writeln"Problem 22";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   297
goal HOL.thy "(! x. P = Q x)  -->  (P = (! x. Q x))";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   298
by (safe_meson_tac 1); 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   299
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   300
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   301
writeln"Problem 23";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   302
goal HOL.thy "(! x. P | Q x)  =  (P | (! x. Q x))";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   303
by (safe_meson_tac 1);  
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   304
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   305
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   306
writeln"Problem 24";  (*The first goal clause is useless*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   307
goal HOL.thy "~(? x. S x & Q x) & (! x. P x --> Q x | R x) &  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   308
\    ~(? x.P x) --> (? x.Q x) & (! x. Q x | R x --> S x)  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   309
\   --> (? x. P x & R x)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   310
by (safe_meson_tac 1); 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   311
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   312
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   313
writeln"Problem 25";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   314
goal HOL.thy "(? x. P x) &  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   315
\       (! x. L x --> ~ (M x & R x)) &  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   316
\       (! x. P x --> (M x & L x)) &   \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   317
\       ((! x. P x --> Q x) | (? x. P x & R x))  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   318
\   --> (? x. Q x & P x)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   319
by (safe_meson_tac 1); 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   320
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   321
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   322
writeln"Problem 26";  (*24 Horn clauses*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   323
goal HOL.thy "((? x. p x) = (? x. q x)) &     \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   324
\     (! x. ! y. p x & q y --> (r x = s y)) \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   325
\ --> ((! x. p x --> r x) = (! x. q x --> s x))";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   326
by (safe_meson_tac 1); 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   327
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   328
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   329
writeln"Problem 27";	(*13 Horn clauses*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   330
goal HOL.thy "(? x. P x & ~Q x) &   \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   331
\             (! x. P x --> R x) &   \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   332
\             (! x. M x & L x --> P x) &   \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   333
\             ((? x. R x & ~ Q x) --> (! x. L x --> ~ R x))  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   334
\         --> (! x. M x --> ~L x)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   335
by (safe_meson_tac 1); 
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   336
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   337
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   338
writeln"Problem 28.  AMENDED";	(*14 Horn clauses*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   339
goal HOL.thy "(! x. P x --> (! x. Q x)) &   \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   340
\       ((! x. Q x | R x) --> (? x. Q x & S x)) &  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   341
\       ((? x.S x) --> (! x. L x --> M x))  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   342
\   --> (! x. P x & L x --> M x)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   343
by (safe_meson_tac 1);  
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   344
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   345
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   346
writeln"Problem 29.  Essentially the same as Principia Mathematica *11.71";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   347
	(*62 Horn clauses*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   348
goal HOL.thy "(? x. F x) & (? y. G y)  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   349
\   --> ( ((! x. F x --> H x) & (! y. G y --> J y))  =   \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   350
\         (! x y. F x & G y --> H x & J y))";
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   351
by (safe_meson_tac 1);          (*0.7 secs*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   352
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   353
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   354
writeln"Problem 30";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   355
goal HOL.thy "(! x. P x | Q x --> ~ R x) & \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   356
\       (! x. (Q x --> ~ S x) --> P x & R x)  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   357
\   --> (! x. S x)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   358
by (safe_meson_tac 1);  
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   359
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   360
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   361
writeln"Problem 31";  (*10 Horn clauses; first negative clauses is useless*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   362
goal HOL.thy "~(? x.P x & (Q x | R x)) & \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   363
\       (? x. L x & P x) & \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   364
\       (! x. ~ R x --> M x)  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   365
\   --> (? x. L x & M x)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   366
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   367
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   368
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   369
writeln"Problem 32";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   370
goal HOL.thy "(! x. P x & (Q x | R x)-->S x) & \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   371
\       (! x. S x & R x --> L x) & \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   372
\       (! x. M x --> R x)  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   373
\   --> (! x. P x & M x --> L x)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   374
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   375
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   376
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   377
writeln"Problem 33";  (*55 Horn clauses*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   378
goal HOL.thy "(! x. P a & (P x --> P b)-->P c)  =    \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   379
\    (! x. (~P a | P x | P c) & (~P a | ~P b | P c))";
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
   380
by (safe_meson_tac 1);          (*5.6 secs*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   381
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   382
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   383
writeln"Problem 34  AMENDED (TWICE!!)"; (*924 Horn clauses*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   384
(*Andrews's challenge*)
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   385
goal HOL.thy "((? x. ! y. p x = p y)  =               \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   386
\              ((? x. q x) = (! y. p y)))     =       \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   387
\             ((? x. ! y. q x = q y)  =               \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   388
\              ((? x. p x) = (! y. q y)))";
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   389
by (safe_meson_tac 1);          (*13 secs*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   390
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   391
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   392
writeln"Problem 35";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   393
goal HOL.thy "? x y. P x y -->  (! u v. P u v)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   394
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   395
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   396
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   397
writeln"Problem 36";  (*15 Horn clauses*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   398
goal HOL.thy "(! x. ? y. J x y) & \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   399
\       (! x. ? y. G x y) & \
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
   400
\       (! x y. J x y | G x y -->       \
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   401
\       (! z. J y z | G y z --> H x z))   \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   402
\   --> (! x. ? y. H x y)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   403
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   404
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   405
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   406
writeln"Problem 37";  (*10 Horn clauses*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   407
goal HOL.thy "(! z. ? w. ! x. ? y. \
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   408
\          (P x z --> P y w) & P y z & (P y w --> (? u.Q u w))) & \
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   409
\       (! x z. ~P x z --> (? y. Q y z)) & \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   410
\       ((? x y. Q x y) --> (! x. R x x))  \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   411
\   --> (! x. ? y. R x y)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   412
by (safe_meson_tac 1);   (*causes unification tracing messages*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   413
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   414
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   415
writeln"Problem 38";  (*Quite hard: 422 Horn clauses!!*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   416
goal HOL.thy
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   417
    "(! x. p a & (p x --> (? y. p y & r x y)) -->            \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   418
\          (? z. ? w. p z & r x w & r w z))  =                 \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   419
\    (! x. (~p a | p x | (? z. ? w. p z & r x w & r w z)) &  \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   420
\          (~p a | ~(? y. p y & r x y) |                      \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   421
\           (? z. ? w. p z & r x w & r w z)))";
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   422
by (safe_best_meson_tac 1);  (*10 secs; iter. deepening is slightly slower*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   423
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   424
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   425
writeln"Problem 39";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   426
goal HOL.thy "~ (? x. ! y. F y x = (~F y y))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   427
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   428
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   429
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   430
writeln"Problem 40.  AMENDED";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   431
goal HOL.thy "(? y. ! x. F x y = F x x)  \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   432
\       -->  ~ (! x. ? y. ! z. F z y = (~F z x))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   433
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   434
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   435
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   436
writeln"Problem 41";
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
   437
goal HOL.thy "(! z. (? y. (! x. f x y = (f x z & ~ f x x))))    \
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   438
\              --> ~ (? z. ! x. f x z)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   439
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   440
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   441
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   442
writeln"Problem 42";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   443
goal HOL.thy "~ (? y. ! x. p x y = (~ (? z. p x z & p z x)))";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   444
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   445
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   446
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   447
writeln"Problem 43  NOW PROVED AUTOMATICALLY!!";
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
   448
goal HOL.thy "(! x. ! y. q x y = (! z. p z x = (p z y::bool)))  \
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   449
\         --> (! x. (! y. q x y = (q y x::bool)))";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   450
by (safe_best_meson_tac 1);	
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   451
(*1.6 secs; iter. deepening is slightly slower*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   452
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   453
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   454
writeln"Problem 44";  (*13 Horn clauses; 7-step proof*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   455
goal HOL.thy "(! x. f x -->                                    \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   456
\             (? y. g y & h x y & (? y. g y & ~ h x y)))  &   \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   457
\             (? x. j x & (! y. g y --> h x y))               \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   458
\             --> (? x. j x & ~f x)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   459
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   460
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   461
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   462
writeln"Problem 45";  (*27 Horn clauses; 54-step proof*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   463
goal HOL.thy "(! x. f x & (! y. g y & h x y --> j x y)        \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   464
\                     --> (! y. g y & h x y --> k y)) &       \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   465
\     ~ (? y. l y & k y) &                                    \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   466
\     (? x. f x & (! y. h x y --> l y)                        \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   467
\                  & (! y. g y & h x y --> j x y))             \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   468
\     --> (? x. f x & ~ (? y. g y & h x y))";
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   469
by (safe_best_meson_tac 1);	
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   470
(*1.6 secs; iter. deepening is slightly slower*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   471
result();
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   472
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   473
writeln"Problem 46";  (*26 Horn clauses; 21-step proof*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   474
goal HOL.thy
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   475
    "(! x. f x & (! y. f y & h y x --> g y) --> g x) &      \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   476
\    ((? x.f x & ~g x) -->                                    \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   477
\     (? x. f x & ~g x & (! y. f y & ~g y --> j x y))) &    \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   478
\    (! x y. f x & f y & h x y --> ~j y x)                    \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   479
\     --> (! x. f x --> g x)";
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   480
by (safe_best_meson_tac 1);	
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   481
(*1.7 secs; iter. deepening is slightly slower*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   482
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   483
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   484
writeln"Problem 47.  Schubert's Steamroller";
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   485
	(*26 clauses; 63 Horn clauses*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   486
goal HOL.thy
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   487
    "(! x. P1 x --> P0 x) & (? x.P1 x) &     \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   488
\    (! x. P2 x --> P0 x) & (? x.P2 x) &     \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   489
\    (! x. P3 x --> P0 x) & (? x.P3 x) &     \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   490
\    (! x. P4 x --> P0 x) & (? x.P4 x) &     \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   491
\    (! x. P5 x --> P0 x) & (? x.P5 x) &     \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   492
\    (! x. Q1 x --> Q0 x) & (? x.Q1 x) &     \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   493
\    (! x. P0 x --> ((! y.Q0 y-->R x y) |    \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   494
\                     (! y.P0 y & S y x &     \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   495
\                          (? z.Q0 z&R y z) --> R x y))) &   \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   496
\    (! x y. P3 y & (P5 x|P4 x) --> S x y) &        \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   497
\    (! x y. P3 x & P2 y --> S x y) &        \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   498
\    (! x y. P2 x & P1 y --> S x y) &        \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   499
\    (! x y. P1 x & (P2 y|Q1 y) --> ~R x y) &       \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   500
\    (! x y. P3 x & P4 y --> R x y) &        \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   501
\    (! x y. P3 x & P5 y --> ~R x y) &       \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   502
\    (! x. (P4 x|P5 x) --> (? y.Q0 y & R x y))      \
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   503
\    --> (? x y. P0 x & P0 y & (? z. Q1 z & R y z & R x y))";
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   504
by (safe_meson_tac 1);	 (*119 secs*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   505
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   506
1259
6f5d2d76e19b added new example by John Harrison
paulson
parents: 969
diff changeset
   507
(*The Los problem?  Circulated by John Harrison*)
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
   508
goal HOL.thy "(! x y z. P x y & P y z --> P x z) &      \
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
   509
\      (! x y z. Q x y & Q y z --> Q x z) &     \
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
   510
\      (! x y. P x y --> P y x) &       \
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
   511
\      (! (x::'a) y. P x y | Q x y)     \
1259
6f5d2d76e19b added new example by John Harrison
paulson
parents: 969
diff changeset
   512
\      --> (! x y. P x y) | (! x y. Q x y)";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   513
by (safe_best_meson_tac 1);	(*3 secs; iter. deepening is VERY slow*)
1259
6f5d2d76e19b added new example by John Harrison
paulson
parents: 969
diff changeset
   514
result();
6f5d2d76e19b added new example by John Harrison
paulson
parents: 969
diff changeset
   515
6f5d2d76e19b added new example by John Harrison
paulson
parents: 969
diff changeset
   516
(*A similar example, suggested by Johannes Schumann and credited to Pelletier*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   517
goal HOL.thy "(!x y z. P x y --> P y z --> P x z) --> \
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
   518
\       (!x y z. Q x y --> Q y z --> Q x z) --> \
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
   519
\       (!x y.Q x y --> Q y x) -->  (!x y. P x y | Q x y) --> \
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
   520
\       (!x y.P x y) | (!x y.Q x y)";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   521
by (safe_best_meson_tac 1);          (*2.7 secs*)
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   522
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   523
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   524
writeln"Problem 50";  
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   525
(*What has this to do with equality?*)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   526
goal HOL.thy "(! x. P a x | (! y.P x y)) --> (? x. ! y.P x y)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   527
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   528
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   529
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   530
writeln"Problem 55";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   531
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   532
(*Non-equational version, from Manthey and Bry, CADE-9 (Springer, 1988).
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   533
  meson_tac cannot report who killed Agatha. *)
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   534
goal HOL.thy "lives agatha & lives butler & lives charles & \
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   535
\  (killed agatha agatha | killed butler agatha | killed charles agatha) & \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   536
\  (!x y. killed x y --> hates x y & ~richer x y) & \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   537
\  (!x. hates agatha x --> ~hates charles x) & \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   538
\  (hates agatha agatha & hates agatha charles) & \
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   539
\  (!x. lives x & ~richer x agatha --> hates butler x) & \
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   540
\  (!x. hates agatha x --> hates butler x) & \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   541
\  (!x. ~hates x agatha | ~hates x butler | ~hates x charles) --> \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   542
\  (? x. killed x agatha)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   543
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   544
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   545
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   546
writeln"Problem 57";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   547
goal HOL.thy
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   548
    "P (f a b) (f b c) & P (f b c) (f a c) & \
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   549
\    (! x y z. P x y & P y z --> P x z)    -->   P (f a b) (f a c)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   550
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   551
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   552
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   553
writeln"Problem 58";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   554
(* Challenge found on info-hol *)
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   555
goal HOL.thy
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   556
    "! P Q R x. ? v w. ! y z. P x & Q y --> (P v | R w) & (R z --> Q v)";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   557
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   558
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   559
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   560
writeln"Problem 59";
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   561
goal HOL.thy "(! x. P x = (~P(f x))) --> (? x. P x & ~P(f x))";
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   562
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   563
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   564
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   565
writeln"Problem 60";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   566
goal HOL.thy "! x. P x (f x) = (? y. (! z. P z y --> P z (f x)) & P x y)";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   567
by (safe_meson_tac 1);
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   568
result();
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   569
1404
57c3f6d2e692 Added Pelletier's problem 62, as corrected in AAR
paulson
parents: 1259
diff changeset
   570
writeln"Problem 62 as corrected in AAR newletter #31";
57c3f6d2e692 Added Pelletier's problem 62, as corrected in AAR
paulson
parents: 1259
diff changeset
   571
goal HOL.thy
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
   572
    "(ALL x. p a & (p x --> p(f x)) --> p(f(f x)))  =   \
5d7a7e439cec expanded tabs
clasohm
parents: 1404
diff changeset
   573
\    (ALL x. (~ p a | p x | p(f(f x))) &                        \
1404
57c3f6d2e692 Added Pelletier's problem 62, as corrected in AAR
paulson
parents: 1259
diff changeset
   574
\            (~ p a | ~ p(f x) | p(f(f x))))";
57c3f6d2e692 Added Pelletier's problem 62, as corrected in AAR
paulson
parents: 1259
diff changeset
   575
by (safe_meson_tac 1);
57c3f6d2e692 Added Pelletier's problem 62, as corrected in AAR
paulson
parents: 1259
diff changeset
   576
result();
57c3f6d2e692 Added Pelletier's problem 62, as corrected in AAR
paulson
parents: 1259
diff changeset
   577
1586
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   578
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   579
(** Charles Morgan's problems **)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   580
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   581
val axa = "! x y.   T(i x(i y x))";
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   582
val axb = "! x y z. T(i(i x(i y z))(i(i x y)(i x z)))";
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   583
val axc = "! x y.   T(i(i(n x)(n y))(i y x))";
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   584
val axd = "! x y.   T(i x y) & T x --> T y";
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   585
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   586
fun axjoin ([],   q) = q
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   587
  | axjoin (p::ps, q) = "(" ^ p ^ ") --> (" ^ axjoin(ps,q) ^ ")";
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   588
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   589
goal HOL.thy (axjoin([axa,axb,axd], "! x. T(i x x)"));
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   590
by (safe_meson_tac 1);  
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   591
result();
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   592
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   593
writeln"Problem 66";  
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   594
goal HOL.thy (axjoin([axa,axb,axc,axd], "! x. T(i x(n(n x)))"));
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   595
(*TOO SLOW: more than 24 minutes!
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   596
by (safe_meson_tac 1);
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   597
result();
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   598
*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   599
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   600
writeln"Problem 67";  
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   601
goal HOL.thy (axjoin([axa,axb,axc,axd], "! x. T(i(n(n x)) x)"));
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   602
(*TOO SLOW: more than 3 minutes!
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   603
by (safe_meson_tac 1);
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   604
result();
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   605
*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   606
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   607
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   608
(*Restore original values*)
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   609
Unify.trace_bound := orig_trace_bound;
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   610
Unify.search_bound := orig_search_bound;
d91296e4deb3 New safe_meson_tac proves some harder theorems
paulson
parents: 1465
diff changeset
   611
969
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   612
writeln"Reached end of file.";
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   613
b051e2fc2e34 converted ex with curried function application
clasohm
parents:
diff changeset
   614
(*26 August 1992: loaded in 277 secs.  New Jersey v 75*)