src/Tools/Metis/src/problems.sml
author blanchet
Fri, 17 Sep 2010 01:58:21 +0200
changeset 39502 cffceed8e7fa
parent 39501 aaa7078fff55
child 42102 fcfd07f122d4
permissions -rw-r--r--
fix license
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
39348
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
     1
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
     2
(* SOME SAMPLE PROBLEMS TO TEST PROOF PROCEDURES                             *)
39502
cffceed8e7fa fix license
blanchet
parents: 39501
diff changeset
     3
(* Copyright (c) 2001 Joe Hurd, distributed under the BSD License            *)
39348
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
     4
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
     5
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
     6
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
     7
(* A type of problems.                                                       *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
     8
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
     9
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    10
type problem =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    11
     {name : string,
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    12
      comments : string list,
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    13
      goal : Formula.quotation};
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    14
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    15
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    16
(* Helper functions.                                                         *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    17
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    18
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    19
local
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    20
  fun mkCollection collection = "Collection: " ^ collection;
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    21
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    22
  fun mkProblem collection description (problem : problem) : problem =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    23
      let
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    24
        val {name,comments,goal} = problem
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    25
        val comments = if null comments then [] else "" :: comments
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    26
        val comments = "Description: " ^ description :: comments
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    27
        val comments = mkCollection collection :: comments
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    28
      in
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    29
        {name = name, comments = comments, goal = goal}
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    30
      end;
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    31
in
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    32
  fun isCollection collection {name = _, comments, goal = _} =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    33
      Useful.mem (mkCollection collection) comments;
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    34
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    35
  fun mkProblems collection description problems =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    36
      map (mkProblem collection description) problems;
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    37
end;
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    38
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    39
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    40
(* The collection of problems.                                               *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    41
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    42
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    43
val problems : problem list =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    44
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    45
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    46
(* Problems without equality.                                                *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    47
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    48
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    49
mkProblems "nonequality" "Problems without equality from various sources" [
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    50
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    51
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    52
(* Trivia (some of which demonstrate ex-bugs in provers).                    *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    53
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    54
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    55
{name = "TRUE",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    56
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    57
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    58
T`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    59
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    60
{name = "SIMPLE",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    61
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    62
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    63
!x y. ?z. p x \/ p y ==> p z`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    64
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    65
{name = "CYCLIC",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    66
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    67
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    68
(!x. p (g (c x))) ==> ?z. p (g z)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    69
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    70
{name = "MICHAEL_NORRISH_BUG",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    71
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    72
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    73
(!x. ?y. f y x x) ==> ?z. f z 0 0`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    74
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    75
{name = "RELATION_COMPOSITION",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    76
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    77
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    78
(!x. ?y. p x y) /\ (!x. ?y. q x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    79
(!x y z. p x y /\ q y z ==> r x z) ==> !x. ?y. r x y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    80
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    81
{name = "TOBIAS_NIPKOW",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    82
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    83
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    84
(!x y. p x y ==> f x = f y) /\ (!x. f (g x) = f x) /\ p (g a) (g b) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    85
f a = f b`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    86
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    87
{name = "SLEDGEHAMMER",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    88
 comments = ["From Tobias Nipkow: A ==> A takes 1 minute in sledgehammer."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    89
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    90
(!x y z t.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    91
   x @ y = z @ t <=>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    92
   ?u. x = z @ u /\ u @ y = t \/ x @ u = z /\ y = u @ t) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    93
!x y z t.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    94
  x @ y = z @ t <=> ?u. x = z @ u /\ u @ y = t \/ x @ u = z /\ y = u @ t`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    95
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    96
{name = "SPLITTING_UNSOUNDNESS",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    97
 comments = ["A trivial example to illustrate a bug spotted by",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    98
             "Geoff Sutcliffe in Dec 2008."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
    99
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   100
(!x. p x /\ q x ==> F) ==> !x. p x ==> !x. q x ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   101
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   102
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   103
(* Propositional Logic.                                                      *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   104
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   105
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   106
{name = "PROP_1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   107
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   108
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   109
p ==> q <=> ~q ==> ~p`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   110
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   111
{name = "PROP_2",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   112
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   113
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   114
~~p <=> p`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   115
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   116
{name = "PROP_3",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   117
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   118
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   119
~(p ==> q) ==> q ==> p`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   120
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   121
{name = "PROP_4",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   122
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   123
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   124
~p ==> q <=> ~q ==> p`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   125
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   126
{name = "PROP_5",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   127
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   128
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   129
(p \/ q ==> p \/ r) ==> p \/ (q ==> r)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   130
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   131
{name = "PROP_6",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   132
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   133
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   134
p \/ ~p`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   135
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   136
{name = "PROP_7",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   137
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   138
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   139
p \/ ~~~p`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   140
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   141
{name = "PROP_8",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   142
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   143
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   144
((p ==> q) ==> p) ==> p`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   145
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   146
{name = "PROP_9",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   147
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   148
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   149
(p \/ q) /\ (~p \/ q) /\ (p \/ ~q) ==> ~(~q \/ ~q)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   150
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   151
{name = "PROP_10",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   152
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   153
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   154
(q ==> r) /\ (r ==> p /\ q) /\ (p ==> q /\ r) ==> (p <=> q)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   155
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   156
{name = "PROP_11",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   157
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   158
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   159
p <=> p`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   160
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   161
{name = "PROP_12",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   162
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   163
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   164
((p <=> q) <=> r) <=> p <=> q <=> r`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   165
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   166
{name = "PROP_13",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   167
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   168
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   169
p \/ q /\ r <=> (p \/ q) /\ (p \/ r)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   170
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   171
{name = "PROP_14",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   172
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   173
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   174
(p <=> q) <=> (q \/ ~p) /\ (~q \/ p)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   175
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   176
{name = "PROP_15",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   177
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   178
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   179
p ==> q <=> ~p \/ q`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   180
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   181
{name = "PROP_16",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   182
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   183
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   184
(p ==> q) \/ (q ==> p)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   185
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   186
{name = "PROP_17",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   187
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   188
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   189
p /\ (q ==> r) ==> s <=> (~p \/ q \/ s) /\ (~p \/ ~r \/ s)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   190
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   191
{name = "MATHS4_EXAMPLE",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   192
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   193
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   194
(a \/ ~k ==> g) /\ (g ==> q) /\ ~q ==> k`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   195
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   196
{name = "LOGICPROOF_1996",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   197
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   198
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   199
(p ==> r) /\ (~p ==> ~q) /\ (p \/ q) ==> p /\ r`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   200
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   201
{name = "XOR_ASSOC",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   202
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   203
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   204
~(~(p <=> q) <=> r) <=> ~(p <=> ~(q <=> r))`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   205
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   206
{name = "ALL_3_CLAUSES",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   207
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   208
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   209
(p \/ q \/ r) /\ (p \/ q \/ ~r) /\ (p \/ ~q \/ r) /\ (p \/ ~q \/ ~r) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   210
(~p \/ q \/ r) /\ (~p \/ q \/ ~r) /\ (~p \/ ~q \/ r) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   211
(~p \/ ~q \/ ~r) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   212
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   213
{name = "CLAUSE_SIMP",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   214
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   215
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   216
(lit ==> clause) ==> (lit \/ clause <=> clause)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   217
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   218
{name = "SPLIT_NOT_IFF",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   219
 comments = ["A way to split a goal that looks like ~(p <=> q)"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   220
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   221
~(p <=> q) <=> (p ==> ~q) /\ (q ==> ~p)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   222
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   223
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   224
(* Monadic Predicate Logic.                                                  *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   225
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   226
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   227
{name = "P18",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   228
 comments = ["The drinker's principle."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   229
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   230
?very_popular_guy. !whole_pub. drinks very_popular_guy ==> drinks whole_pub`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   231
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   232
{name = "P19",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   233
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   234
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   235
?x. !y z. (p y ==> q z) ==> p x ==> q x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   236
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   237
{name = "P20",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   238
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   239
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   240
(!x y. ?z. !w. p x /\ q y ==> r z /\ u w) /\ (!x y. p x /\ q y) ==> ?z. r z`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   241
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   242
{name = "P21",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   243
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   244
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   245
(?x. p ==> q x) /\ (?x. q x ==> p) ==> ?x. p <=> q x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   246
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   247
{name = "P22",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   248
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   249
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   250
(!x. p <=> q x) ==> (p <=> !x. q x)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   251
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   252
{name = "P23",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   253
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   254
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   255
(!x. p \/ q x) <=> p \/ !x. q x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   256
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   257
{name = "P24",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   258
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   259
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   260
~(?x. u x /\ q x) /\ (!x. p x ==> q x \/ r x) /\ ~(?x. p x ==> ?x. q x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   261
(!x. q x /\ r x ==> u x) ==> ?x. p x /\ r x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   262
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   263
{name = "P25",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   264
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   265
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   266
(?x. p x) /\ (!x. u x ==> ~g x /\ r x) /\ (!x. p x ==> g x /\ u x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   267
((!x. p x ==> q x) \/ ?x. q x /\ p x) ==> ?x. q x /\ p x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   268
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   269
{name = "P26",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   270
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   271
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   272
((?x. p x) <=> ?x. q x) /\ (!x y. p x /\ q y ==> (r x <=> u y)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   273
((!x. p x ==> r x) <=> !x. q x ==> u x)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   274
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   275
{name = "P27",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   276
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   277
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   278
(?x. p x /\ ~q x) /\ (!x. p x ==> r x) /\ (!x. u x /\ s x ==> p x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   279
(?x. r x /\ ~q x) ==> (!x. u x ==> ~r x) ==> !x. u x ==> ~s x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   280
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   281
{name = "P28",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   282
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   283
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   284
(!x. p x ==> !x. q x) /\ ((!x. q x \/ r x) ==> ?x. q x /\ r x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   285
((?x. r x) ==> !x. l x ==> m x) ==> !x. p x /\ l x ==> m x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   286
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   287
{name = "P29",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   288
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   289
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   290
(?x. p x) /\ (?x. g x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   291
((!x. p x ==> h x) /\ (!x. g x ==> j x) <=>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   292
 !x y. p x /\ g y ==> h x /\ j y)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   293
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   294
{name = "P30",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   295
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   296
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   297
(!x. p x \/ g x ==> ~h x) /\ (!x. (g x ==> ~u x) ==> p x /\ h x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   298
!x. u x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   299
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   300
{name = "P31",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   301
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   302
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   303
~(?x. p x /\ (g x \/ h x)) /\ (?x. q x /\ p x) /\ (!x. ~h x ==> j x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   304
?x. q x /\ j x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   305
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   306
{name = "P32",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   307
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   308
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   309
(!x. p x /\ (g x \/ h x) ==> q x) /\ (!x. q x /\ h x ==> j x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   310
(!x. r x ==> h x) ==> !x. p x /\ r x ==> j x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   311
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   312
{name = "P33",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   313
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   314
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   315
(!x. p a /\ (p x ==> p b) ==> p c) <=>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   316
(!x. p a ==> p x \/ p c) /\ (p a ==> p b ==> p c)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   317
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   318
{name = "P34",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   319
 comments =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   320
["This gives rise to 5184 clauses when naively converted to CNF!"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   321
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   322
((?x. !y. p x <=> p y) <=> (?x. q x) <=> !y. q y) <=>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   323
(?x. !y. q x <=> q y) <=> (?x. p x) <=> !y. p y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   324
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   325
{name = "P35",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   326
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   327
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   328
?x y. p x y ==> !x y. p x y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   329
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   330
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   331
(* Predicate logic without functions.                                        *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   332
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   333
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   334
{name = "P36",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   335
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   336
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   337
(!x. ?y. p x y) /\ (!x. ?y. g x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   338
(!x y. p x y \/ g x y ==> !z. p y z \/ g y z ==> h x z) ==> !x. ?y. h x y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   339
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   340
{name = "P37",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   341
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   342
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   343
(!z. ?w. !x. ?y. (p x z ==> p y w) /\ p y z /\ (p y w ==> ?v. q v w)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   344
(!x z. ~p x z ==> ?y. q y z) /\ ((?x y. q x y) ==> !x. r x x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   345
!x. ?y. r x y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   346
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   347
{name = "P38",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   348
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   349
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   350
(!x. p a /\ (p x ==> ?y. p y /\ r x y) ==> ?z w. p z /\ r x w /\ r w z) <=>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   351
!x.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   352
  (~p a \/ p x \/ ?z w. p z /\ r x w /\ r w z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   353
  (~p a \/ ~(?y. p y /\ r x y) \/ ?z w. p z /\ r x w /\ r w z)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   354
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   355
{name = "P39",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   356
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   357
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   358
~?x. !y. p y x <=> ~p y y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   359
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   360
{name = "P40",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   361
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   362
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   363
(?y. !x. p x y <=> p x x) ==> ~!x. ?y. !z. p z y <=> ~p z x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   364
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   365
{name = "P41",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   366
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   367
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   368
(!z. ?y. !x. p x y <=> p x z /\ ~p x x) ==> ~?z. !x. p x z`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   369
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   370
{name = "P42",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   371
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   372
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   373
~?y. !x. p x y <=> ~?z. p x z /\ p z x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   374
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   375
{name = "P43",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   376
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   377
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   378
(!x y. q x y <=> !z. p z x <=> p z y) ==> !x y. q x y <=> q y x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   379
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   380
{name = "P44",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   381
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   382
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   383
(!x. p x ==> (?y. g y /\ h x y) /\ ?y. g y /\ ~h x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   384
(?x. j x /\ !y. g y ==> h x y) ==> ?x. j x /\ ~p x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   385
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   386
{name = "P45",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   387
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   388
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   389
(!x. p x /\ (!y. g y /\ h x y ==> j x y) ==> !y. g y /\ h x y ==> r y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   390
~(?y. l y /\ r y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   391
(?x. p x /\ (!y. h x y ==> l y) /\ !y. g y /\ h x y ==> j x y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   392
?x. p x /\ ~?y. g y /\ h x y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   393
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   394
{name = "P46",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   395
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   396
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   397
(!x. p x /\ (!y. p y /\ h y x ==> g y) ==> g x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   398
((?x. p x /\ ~g x) ==> ?x. p x /\ ~g x /\ !y. p y /\ ~g y ==> j x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   399
(!x y. p x /\ p y /\ h x y ==> ~j y x) ==> !x. p x ==> g x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   400
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   401
{name = "P50",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   402
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   403
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   404
(!x. f0 a x \/ !y. f0 x y) ==> ?x. !y. f0 x y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   405
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   406
{name = "LOGICPROOF_L10",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   407
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   408
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   409
!x. ?y. ~(P y x <=> ~P y y)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   410
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   411
{name = "BARBER",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   412
 comments = ["One resolution of the barber paradox"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   413
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   414
(!x. man x ==> (shaves barber x <=> ~shaves x x)) ==> ~man barber`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   415
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   416
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   417
(* Full predicate logic.                                                     *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   418
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   419
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   420
{name = "LOGICPROOF_1999",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   421
 comments = ["A non-theorem."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   422
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   423
(?x. p x /\ q x) ==> ?x. p (f x x) \/ !y. q y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   424
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   425
{name = "P55",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   426
 comments = ["Example from Manthey and Bry, CADE-9. [JRH]"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   427
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   428
lives agatha /\ lives butler /\ lives charles /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   429
(killed agatha agatha \/ killed butler agatha \/ killed charles agatha) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   430
(!x y. killed x y ==> hates x y /\ ~richer x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   431
(!x. hates agatha x ==> ~hates charles x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   432
(hates agatha agatha /\ hates agatha charles) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   433
(!x. lives x /\ ~richer x agatha ==> hates butler x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   434
(!x. hates agatha x ==> hates butler x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   435
(!x. ~hates x agatha \/ ~hates x butler \/ ~hates x charles) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   436
killed agatha agatha /\ ~killed butler agatha /\ ~killed charles agatha`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   437
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   438
{name = "P57",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   439
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   440
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   441
p (f a b) (f b c) /\ p (f b c) (f a c) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   442
(!x y z. p x y /\ p y z ==> p x z) ==> p (f a b) (f a c)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   443
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   444
{name = "P58",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   445
 comments = ["See info-hol 1498 [JRH]"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   446
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   447
!x. ?v w. !y z. p x /\ q y ==> (p v \/ r w) /\ (r z ==> q v)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   448
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   449
{name = "P59",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   450
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   451
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   452
(!x. p x <=> ~p (f x)) ==> ?x. p x /\ ~p (f x)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   453
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   454
{name = "P60",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   455
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   456
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   457
!x. p x (f x) <=> ?y. (!z. p z y ==> p z (f x)) /\ p x y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   458
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   459
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   460
(* From Gilmore's classic paper.                                             *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   461
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   462
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   463
{name = "GILMORE_1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   464
 comments =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   465
["Amazingly, this still seems non-trivial... in HOL [MESON_TAC] it",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   466
 "works at depth 45! [JRH]",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   467
 "Confirmed (depth=45, inferences=263702, time=148s), though if",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   468
 "lemmaizing is used then a lemma is discovered at depth 29 that allows",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   469
 "a much quicker proof (depth=30, inferences=10039, time=5.5s)."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   470
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   471
?x. !y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   472
  (f y ==> g y <=> f x) /\ (f y ==> h y <=> g x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   473
  ((f y ==> g y) ==> h y <=> h x) ==> f z /\ g z /\ h z`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   474
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   475
{name = "GILMORE_2",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   476
 comments =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   477
["This is not valid, according to Gilmore. [JRH]",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   478
 "Confirmed: ordered resolution quickly saturates."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   479
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   480
?x y. !z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   481
  (f x z <=> f z y) /\ (f z y <=> f z z) /\ (f x y <=> f y x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   482
  (f x y <=> f x z)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   483
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   484
{name = "GILMORE_3",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   485
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   486
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   487
?x. !y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   488
  ((f y z ==> g y ==> h x) ==> f x x) /\ ((f z x ==> g x) ==> h z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   489
  f x y ==> f z z`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   490
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   491
{name = "GILMORE_4",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   492
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   493
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   494
?x y. !z. (f x y ==> f y z /\ f z z) /\ (f x y /\ g x y ==> g x z /\ g z z)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   495
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   496
{name = "GILMORE_5",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   497
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   498
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   499
(!x. ?y. f x y \/ f y x) /\ (!x y. f y x ==> f y y) ==> ?z. f z z`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   500
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   501
{name = "GILMORE_6",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   502
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   503
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   504
!x. ?y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   505
  (?w. !v. f w x ==> g v w /\ g w x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   506
  (?w. !v. f w y ==> g v w /\ g w y) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   507
  !z v. ?w. g v z \/ h w y z ==> g z w`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   508
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   509
{name = "GILMORE_7",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   510
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   511
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   512
(!x. k x ==> ?y. l y /\ (f x y ==> g x y)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   513
(?z. k z /\ !w. l w ==> f z w) ==> ?v w. k v /\ l w /\ g v w`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   514
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   515
{name = "GILMORE_8",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   516
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   517
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   518
?x. !y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   519
  ((f y z ==> g y ==> !w. ?v. h w v x) ==> f x x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   520
  ((f z x ==> g x) ==> !w. ?v. h w v z) /\ f x y ==> f z z`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   521
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   522
{name = "GILMORE_9",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   523
 comments =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   524
["Model elimination (in HOL):",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   525
 "- With lemmaizing: (depth=18, inferences=15632, time=21s)",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   526
 "- Without: gave up waiting after (depth=25, inferences=2125072, ...)"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   527
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   528
!x. ?y. !z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   529
  ((!w. ?v. f y w v /\ g y w /\ ~h y x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   530
   (!w. ?v. f x w v /\ g z u /\ ~h x z) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   531
   !w. ?v. f x w v /\ g y w /\ ~h x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   532
  ((!w. ?v. f x w v /\ g y w /\ ~h x y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   533
   ~(!w. ?v. f x w v /\ g z w /\ ~h x z) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   534
   (!w. ?v. f y w v /\ g y w /\ ~h y x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   535
   !w. ?v. f z w v /\ g y w /\ ~h z y)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   536
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   537
{name = "GILMORE_9a",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   538
 comments =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   539
["Translation of Gilmore procedure using separate definitions. [JRH]"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   540
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   541
(!x y. p x y <=> !w. ?v. f x w v /\ g y w /\ ~h x y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   542
!x. ?y. !z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   543
  (p y x ==> p x z ==> p x y) /\ (p x y ==> ~p x z ==> p y x /\ p z y)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   544
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   545
{name = "BAD_CONNECTIONS",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   546
 comments =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   547
["The interesting example where connections make the proof longer. [JRH]"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   548
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   549
~a /\ (a \/ b) /\ (c \/ d) /\ (~b \/ e \/ f) /\ (~c \/ ~e) /\ (~c \/ ~f) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   550
(~b \/ g \/ h) /\ (~d \/ ~g) /\ (~d \/ ~h) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   551
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   552
{name = "LOS",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   553
 comments =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   554
["The classic Los puzzle. (Clausal version MSC006-1 in the TPTP library.)",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   555
 "Note: this is actually in the decidable AE subset, though that doesn't",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   556
 "yield a very efficient proof. [JRH]"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   557
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   558
(!x y z. p x y ==> p y z ==> p x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   559
(!x y z. q x y ==> q y z ==> q x z) /\ (!x y. q x y ==> q y x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   560
(!x y. p x y \/ q x y) ==> (!x y. p x y) \/ !x y. q x y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   561
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   562
{name = "STEAM_ROLLER",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   563
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   564
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   565
((!x. p1 x ==> p0 x) /\ ?x. p1 x) /\ ((!x. p2 x ==> p0 x) /\ ?x. p2 x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   566
((!x. p3 x ==> p0 x) /\ ?x. p3 x) /\ ((!x. p4 x ==> p0 x) /\ ?x. p4 x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   567
((!x. p5 x ==> p0 x) /\ ?x. p5 x) /\ ((?x. q1 x) /\ !x. q1 x ==> q0 x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   568
(!x.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   569
   p0 x ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   570
   (!y. q0 y ==> r x y) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   571
   !y. p0 y /\ s0 y x /\ (?z. q0 z /\ r y z) ==> r x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   572
(!x y. p3 y /\ (p5 x \/ p4 x) ==> s0 x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   573
(!x y. p3 x /\ p2 y ==> s0 x y) /\ (!x y. p2 x /\ p1 y ==> s0 x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   574
(!x y. p1 x /\ (p2 y \/ q1 y) ==> ~r x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   575
(!x y. p3 x /\ p4 y ==> r x y) /\ (!x y. p3 x /\ p5 y ==> ~r x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   576
(!x. p4 x \/ p5 x ==> ?y. q0 y /\ r x y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   577
?x y. p0 x /\ p0 y /\ ?z. q1 z /\ r y z /\ r x y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   578
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   579
{name = "MODEL_COMPLETENESS",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   580
 comments = ["An incestuous example used to establish completeness",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   581
             "characterization. [JRH]"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   582
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   583
(!w x. sentence x ==> holds w x \/ holds w (not x)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   584
(!w x. ~(holds w x /\ holds w (not x))) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   585
((!x.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   586
    sentence x ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   587
    (!w. models w s ==> holds w x) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   588
    !w. models w s ==> holds w (not x)) <=>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   589
 !w v.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   590
   models w s /\ models v s ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   591
   !x. sentence x ==> (holds w x <=> holds v x))`}
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   592
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   593
] @
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   594
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   595
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   596
(* Problems with equality.                                                   *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   597
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   598
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   599
mkProblems "equality" "Equality problems from various sources" [
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   600
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   601
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   602
(* Trivia (some of which demonstrate ex-bugs in the prover).                 *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   603
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   604
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   605
{name = "REFLEXIVITY",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   606
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   607
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   608
c = c`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   609
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   610
{name = "SYMMETRY",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   611
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   612
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   613
!x y. x = y ==> y = x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   614
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   615
{name = "TRANSITIVITY",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   616
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   617
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   618
!x y z. x = y /\ y = z ==> x = z`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   619
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   620
{name = "TRANS_SYMM",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   621
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   622
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   623
!x y z. x = y /\ y = z ==> z = x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   624
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   625
{name = "SUBSTITUTIVITY",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   626
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   627
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   628
!x y. f x /\ x = y ==> f y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   629
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   630
{name = "CYCLIC_SUBSTITUTION_BUG",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   631
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   632
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   633
!y. (!x. y = g (c x)) ==> ?z. y = g z`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   634
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   635
{name = "JUDITA_1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   636
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   637
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   638
~(a = b) /\ (!x. x = c) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   639
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   640
{name = "JUDITA_2",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   641
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   642
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   643
~(a = b) /\ (!x y. x = y) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   644
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   645
{name = "JUDITA_3",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   646
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   647
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   648
p a /\ ~p b /\ (!x. x = c) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   649
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   650
{name = "JUDITA_4",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   651
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   652
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   653
p a /\ ~p b /\ (!x y. x = y) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   654
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   655
{name = "JUDITA_5",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   656
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   657
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   658
p a /\ p b /\ ~(a = b) /\ ~p c /\ (!x. x = a \/ x = d) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   659
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   660
{name = "INJECTIVITY_1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   661
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   662
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   663
(!x y. f x = f y ==> x = y) /\ f a = f b ==> a = b`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   664
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   665
{name = "INJECTIVITY_2",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   666
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   667
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   668
(!x y. g (f x) = g (f y) ==> x = y) /\ f a = f b ==> a = b`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   669
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   670
{name = "SELF_REWRITE",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   671
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   672
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   673
f (g (h c)) = h c /\ g (h c) = b /\ f b = a /\ (!x. ~(a = h x)) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   674
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   675
{name = "EQUALITY_ORDERING",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   676
 comments = ["Positive resolution saturates if equality literals are",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   677
             "ordered like other literals, instead of considering their",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   678
             "left and right sides."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   679
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   680
p a /\ q a /\ q b /\ r b /\ (~p c \/ c = a) /\ (~r c \/ c = b) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   681
(!x. ~q x \/ p x \/ r x) /\ (~p c \/ ~q c) /\ (~q c \/ ~r c) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   682
(c = b \/ p c \/ q c) /\ (~p b \/ c = a \/ q c) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   683
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   684
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   685
(* Simple equality problems.                                                 *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   686
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   687
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   688
{name = "P48",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   689
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   690
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   691
(a = b \/ c = d) /\ (a = c \/ b = d) ==> a = d \/ b = c`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   692
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   693
{name = "P49",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   694
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   695
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   696
(?x y. !z. z = x \/ z = y) /\ p a /\ p b /\ ~(a = b) ==> !x. p x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   697
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   698
{name = "P51",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   699
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   700
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   701
(?z w. !x y. f0 x y <=> x = z /\ y = w) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   702
?z. !x. (?w. !y. f0 x y <=> y = w) <=> x = z`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   703
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   704
{name = "P52",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   705
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   706
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   707
(?z w. !x y. f0 x y <=> x = z /\ y = w) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   708
?w. !y. (?z. !x. f0 x y <=> x = z) <=> y = w`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   709
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   710
{name = "UNSKOLEMIZED_MELHAM",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   711
 comments = ["The Melham problem after an inverse skolemization step."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   712
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   713
(!x y. g x = g y ==> f x = f y) ==> !y. ?w. !x. y = g x ==> w = f x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   714
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   715
{name = "CONGRUENCE_CLOSURE_EXAMPLE",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   716
 comments = ["The example always given for congruence closure."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   717
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   718
!x. f (f (f (f (f x)))) = x /\ f (f (f x)) = x ==> f x = x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   719
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   720
{name = "EWD_1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   721
 comments =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   722
["A simple example (see EWD1266a and the application to Morley's",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   723
 "theorem). [JRH]"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   724
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   725
(!x. f x ==> g x) /\ (?x. f x) /\ (!x y. g x /\ g y ==> x = y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   726
!y. g y ==> f y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   727
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   728
{name = "EWD_2",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   729
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   730
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   731
(!x. f (f x) = f x) /\ (!x. ?y. f y = x) ==> !x. f x = x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   732
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   733
{name = "JIA",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   734
 comments = ["Needs only the K combinator"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   735
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   736
(!x y. k . x . y = x) /\ (!v. P (v . a) a) /\ (!w. Q (w . b) b) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   737
!z. ?x y. P (z . x . y) x /\ Q (z . x . y) y`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   738
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   739
{name = "WISHNU",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   740
 comments = ["Wishnu Prasetya's example. [JRH]"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   741
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   742
(?x. x = f (g x) /\ !x'. x' = f (g x') ==> x = x') <=>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   743
?y. y = g (f y) /\ !y'. y' = g (f y') ==> y = y'`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   744
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   745
{name = "AGATHA",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   746
 comments = ["An equality version of the Agatha puzzle. [JRH]"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   747
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   748
(?x. lives x /\ killed x agatha) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   749
(lives agatha /\ lives butler /\ lives charles) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   750
(!x. lives x ==> x = agatha \/ x = butler \/ x = charles) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   751
(!x y. killed x y ==> hates x y) /\ (!x y. killed x y ==> ~richer x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   752
(!x. hates agatha x ==> ~hates charles x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   753
(!x. ~(x = butler) ==> hates agatha x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   754
(!x. ~richer x agatha ==> hates butler x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   755
(!x. hates agatha x ==> hates butler x) /\ (!x. ?y. ~hates x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   756
~(agatha = butler) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   757
killed agatha agatha /\ ~killed butler agatha /\ ~killed charles agatha`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   758
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   759
{name = "DIVIDES_9_1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   760
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   761
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   762
(!x y. x * y = y * x) /\ (!x y z. x * y * z = x * (y * z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   763
(!x y. divides x y <=> ?z. y = z * x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   764
!x y z. divides x y ==> divides x (z * y)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   765
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   766
{name = "DIVIDES_9_2",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   767
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   768
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   769
(!x y. x * y = y * x) /\ (!x y z. x * y * z = x * (y * z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   770
(!x y. divides x y <=> ?z. z * x = y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   771
!x y z. divides x y ==> divides x (z * y)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   772
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   773
{name = "XOR_COUNT_COMMUTATIVE",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   774
 comments = ["The xor literal counting function in Normalize is commutative."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   775
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   776
(!x y. x + y = y + x) /\ (!x y z. x + (y + z) = x + y + z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   777
(!x y. x * y = y * x) /\ (!x y z. x * (y * z) = x * y * z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   778
pl = p1 * p2 + n1 * n2 /\ nl = p1 * n2 + n1 * p2 /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   779
pr = p2 * p1 + n2 * n1 /\ nr = p2 * n1 + n2 * p1 ==> pl = pr /\ nl = nr`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   780
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   781
{name = "XOR_COUNT_ASSOCIATIVE",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   782
 comments = ["The xor literal counting function in Normalize is associative."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   783
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   784
(!x y. x + y = y + x) /\ (!x y z. x + (y + z) = x + y + z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   785
(!x y. x * y = y * x) /\ (!x y z. x * (y * z) = x * y * z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   786
px = p1 * p2 + n1 * n2 /\ nx = p1 * n2 + n1 * p2 /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   787
pl = px * p3 + nx * n3 /\ nl = px * n3 + nx * p3 /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   788
py = p2 * p3 + n2 * n3 /\ ny = p2 * n3 + n2 * p3 /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   789
pr = p1 * py + n1 * ny /\ nr = p1 * ny + n1 * py ==> pl = pr /\ nl = nr`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   790
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   791
{name = "REVERSE_REVERSE",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   792
 comments = ["Proving the goal",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   793
             "  !l. finite l ==> rev (rev l) = l",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   794
             "after first generalizing it to",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   795
             "  !l k. finite l /\\ finite k ==> rev (rev l @ k) = rev k @ l",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   796
             "and then applying list induction."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   797
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   798
finite nil /\ (!h t. finite (h :: t) <=> finite t) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   799
(!l1 l2. finite (l1 @ l2) <=> finite l1 /\ finite l2) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   800
(!l. nil @ l = l) /\ (!h t l. (h :: t) @ l = h :: t @ l) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   801
rev nil = nil /\ (!h t. rev (h :: t) = rev t @ h :: nil) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   802
(!l. l @ nil = l) /\ (!l1 l2 l3. l1 @ l2 @ l3 = (l1 @ l2) @ l3) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   803
(!k. finite k ==> rev (rev nil @ k) = rev k @ nil) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   804
!t.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   805
  finite t ==> (!k. finite k ==> rev (rev t @ k) = rev k @ t) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   806
  !h k. finite k ==> rev (rev (h :: t) @ k) = rev k @ h :: t`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   807
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   808
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   809
(* Group theory examples.                                                    *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   810
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   811
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   812
{name = "GROUP_INVERSE_INVERSE",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   813
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   814
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   815
(!x y z. x * (y * z) = x * y * z) /\ (!x. e * x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   816
(!x. i x * x = e) ==> !x. i (i x) = x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   817
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   818
{name = "GROUP_RIGHT_INVERSE",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   819
 comments = ["Size 18, 61814 seconds. [JRH]"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   820
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   821
(!x y z. x * (y * z) = x * y * z) /\ (!x. e * x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   822
(!x. i x * x = e) ==> !x. x * i x = e`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   823
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   824
{name = "GROUP_RIGHT_IDENTITY",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   825
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   826
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   827
(!x y z. x * (y * z) = x * y * z) /\ (!x. e * x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   828
(!x. i x * x = e) ==> !x. x * e = x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   829
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   830
{name = "GROUP_IDENTITY_EQUIV",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   831
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   832
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   833
(!x y z. x * (y * z) = x * y * z) /\ (!x. e * x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   834
(!x. i x * x = e) ==> !x. x * x = x <=> x = e`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   835
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   836
{name = "KLEIN_GROUP_COMMUTATIVE",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   837
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   838
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   839
(!x y z. x * (y * z) = x * y * z) /\ (!x. e * x = x) /\ (!x. x * e = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   840
(!x. x * x = e) ==> !x y. x * y = y * x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   841
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   842
{name = "DOUBLE_DISTRIB",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   843
 comments = ["From a John Harrison post to hol-info on 2008-04-15"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   844
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   845
(!x y z. x * y * z = x * z * (y * z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   846
(!x y z. z * (x * y) = z * x * (z * y)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   847
!a b c. a * b * (c * a) = a * c * (b * a)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   848
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   849
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   850
(* Ring theory examples.                                                     *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   851
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   852
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   853
{name = "CONWAY_2",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   854
 comments = ["From a John Harrison post to hol-info on 2008-04-15"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   855
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   856
(!x. 0 + x = x) /\ (!x y. x + y = y + x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   857
(!x y z. x + (y + z) = x + y + z) /\ (!x. 1 * x = x) /\ (!x. x * 1 = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   858
(!x y z. x * (y * z) = x * y * z) /\ (!x. 0 * x = 0) /\ (!x. x * 0 = 0) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   859
(!x y z. x * (y + z) = x * y + x * z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   860
(!x y z. (x + y) * z = x * z + y * z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   861
(!x y. star (x * y) = 1 + x * star (y * x) * y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   862
(!x y. star (x + y) = star (star (x) * y) * star (x)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   863
!a. star (star (star (star (a)))) = star (star (star (a)))`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   864
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   865
{name = "JACOBSON_2",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   866
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   867
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   868
(!x. 0 + x = x) /\ (!x. x + 0 = x) /\ (!x. ~x + x = 0) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   869
(!x. x + ~x = 0) /\ (!x y z. x + (y + z) = x + y + z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   870
(!x y. x + y = y + x) /\ (!x y z. x * (y * z) = x * y * z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   871
(!x y z. x * (y + z) = x * y + x * z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   872
(!x y z. (x + y) * z = x * z + y * z) /\ (!x. x * x = x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   873
!x y. x * y = y * x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   874
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   875
{name = "JACOBSON_3",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   876
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   877
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   878
(!x. 0 + x = x) /\ (!x. x + 0 = x) /\ (!x. ~x + x = 0) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   879
(!x. x + ~x = 0) /\ (!x y z. x + (y + z) = x + y + z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   880
(!x y. x + y = y + x) /\ (!x y z. x * (y * z) = x * y * z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   881
(!x y z. x * (y + z) = x * y + x * z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   882
(!x y z. (x + y) * z = x * z + y * z) /\ (!x. x * (x * x) = x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   883
!x y. x * y = y * x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   884
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   885
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   886
(* Set theory examples.                                                      *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   887
(* ------------------------------------------------------------------------- *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   888
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   889
{name = "UNION_2_SUBSET",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   890
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   891
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   892
(!x y. subset x y ==> subset y x ==> x = y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   893
(!x y. (!z. member z x ==> member z y) ==> subset x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   894
(!x y z. member z (x + y) <=> member z x \/ member z y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   895
!x y. subset (x + y) (y + x)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   896
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   897
{name = "UNION_2",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   898
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   899
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   900
(!x y. subset x y ==> subset y x ==> x = y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   901
(!x y. (!z. member z x ==> member z y) ==> subset x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   902
(!x y z. member z (x + y) <=> member z x \/ member z y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   903
!x y. x + y = y + x`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   904
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   905
{name = "UNION_3_SUBSET",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   906
 comments = ["From an email from Tobias Nipkow, 4 Nov 2008.",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   907
             "The Isabelle version of metis diverges on this goal"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   908
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   909
(!x y. subset x y ==> subset y x ==> x = y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   910
(!x y. (!z. member z x ==> member z y) ==> subset x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   911
(!x y z. member z (x + y) <=> member z x \/ member z y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   912
!x y z. subset (x + y + z) (z + y + x)`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   913
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   914
{name = "UNION_3",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   915
 comments = ["From an email from Tobias Nipkow, 28 Oct 2008.",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   916
             "The Isabelle version of metis diverges on this goal"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   917
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   918
(!x y. subset x y ==> subset y x ==> x = y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   919
(!x y. (!z. member z x ==> member z y) ==> subset x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   920
(!x y z. member z (x + y) <=> member z x \/ member z y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   921
!x y z. x + y + z = z + y + x`}] @
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   922
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   923
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   924
(* Some sample problems from the TPTP archive.                               *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   925
(* Note: for brevity some relation/function names have been shortened.       *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   926
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   927
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   928
mkProblems "tptp" "Sample problems from the TPTP collection"
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   929
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   930
[
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   931
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   932
{name = "ALG005-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   933
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   934
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   935
(!x y. x + (y + x) = x) /\ (!x y. x + (x + y) = y + (y + x)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   936
(!x y z. x + y + z = x + z + (y + z)) /\ (!x y. x * y = x + (x + y)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   937
~(a * b * c = a * (b * c)) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   938
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   939
{name = "ALG006-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   940
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   941
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   942
(!x y. x + (y + x) = x) /\ (!x y. x + (x + y) = y + (y + x)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   943
(!x y z. x + y + z = x + z + (y + z)) ==> ~(a + c + b = a + b + c) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   944
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   945
{name = "BOO021-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   946
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   947
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   948
(!x y. (x + y) * y = y) /\ (!x y z. x * (y + z) = y * x + z * x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   949
(!x. x + i x = 1) /\ (!x y. x * y + y = y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   950
(!x y z. x + y * z = (y + x) * (z + x)) /\ (!x. x * i x = 0) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   951
~(b * a = a * b) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   952
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   953
{name = "COL058-2",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   954
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   955
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   956
(!x y. r (r 0 x) y = r x (r y y)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   957
~(r (r (r 0 (r (r 0 (r 0 0)) (r 0 (r 0 0)))) (r 0 (r 0 0)))
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   958
    (r (r 0 (r (r 0 (r 0 0)) (r 0 (r 0 0)))) (r 0 (r 0 0))) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   959
  r (r 0 (r (r 0 (r 0 0)) (r 0 (r 0 0)))) (r 0 (r 0 0))) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   960
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   961
{name = "COL060-3",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   962
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   963
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   964
(!x y z. b . x . y . z = x . (y . z)) /\ (!x y. t . x . y = y . x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   965
~(b . (b . (t . b) . b) . t . x . y . z = y . (x . z)) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   966
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   967
{name = "GEO002-4",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   968
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   969
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   970
(!x y z v. ~between x y z \/ ~between y v z \/ between x y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   971
(!x y z. ~equidistant x y z z \/ x == y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   972
(!x y z v w.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   973
   ~between x y z \/ ~between v z w \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   974
   between x (outer_pasch y x v w z) v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   975
(!x y z v w.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   976
   ~between x y z \/ ~between v z w \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   977
   between w y (outer_pasch y x v w z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   978
(!x y z v. between x y (extension x y z v)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   979
(!x y z v. equidistant x (extension y x z v) z v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   980
(!x y z v. ~(x == y) \/ ~between z v x \/ between z v y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   981
~between a a b ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   982
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   983
{name = "GEO036-2",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   984
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   985
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   986
(!x y. equidistant x y y x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   987
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   988
   ~equidistant x y z x' \/ ~equidistant x y y' z' \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   989
   equidistant z x' y' z') /\ (!x y z. ~equidistant x y z z \/ x = y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   990
(!x y z v. between x y (extension x y z v)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   991
(!x y z v. equidistant x (extension y x z v) z v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   992
(!x y z v w x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   993
   ~equidistant x y z v \/ ~equidistant y w v x' \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   994
   ~equidistant x y' z z' \/ ~equidistant y y' v z' \/ ~between x y w \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   995
   ~between z v x' \/ x = y \/ equidistant w y' x' z') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   996
(!x y. ~between x y x \/ x = y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   997
(!x y z v w.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   998
   ~between x y z \/ ~between v w z \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
   999
   between y (inner_pasch x y z w v) v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1000
(!x y z v w.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1001
   ~between x y z \/ ~between v w z \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1002
   between w (inner_pasch x y z w v) x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1003
~between lower_dimension_point_1 lower_dimension_point_2
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1004
   lower_dimension_point_3 /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1005
~between lower_dimension_point_2 lower_dimension_point_3
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1006
   lower_dimension_point_1 /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1007
~between lower_dimension_point_3 lower_dimension_point_1
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1008
   lower_dimension_point_2 /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1009
(!x y z v w.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1010
   ~equidistant x y x z \/ ~equidistant v y v z \/ ~equidistant w y w z \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1011
   between x v w \/ between v w x \/ between w x v \/ y = z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1012
(!x y z v w.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1013
   ~between x y z \/ ~between v y w \/ x = y \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1014
   between x v (euclid1 x v y w z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1015
(!x y z v w.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1016
   ~between x y z \/ ~between v y w \/ x = y \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1017
   between x w (euclid2 x v y w z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1018
(!x y z v w.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1019
   ~between x y z \/ ~between v y w \/ x = y \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1020
   between (euclid1 x v y w z) z (euclid2 x v y w z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1021
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1022
   ~equidistant x y x z \/ ~equidistant x x' x y' \/ ~between x y x' \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1023
   ~between y z' x' \/ between z (continuous x y z z' x' y') y') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1024
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1025
   ~equidistant x y x z \/ ~equidistant x x' x y' \/ ~between x y x' \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1026
   ~between y z' x' \/ equidistant x z' x (continuous x y z z' x' y')) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1027
(!x y z v. ~(x = y) \/ ~between x z v \/ between y z v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1028
(!x y z v. ~(x = y) \/ ~between z x v \/ between z y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1029
(!x y z v. ~(x = y) \/ ~between z v x \/ between z v y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1030
(!x y z v w. ~(x = y) \/ ~equidistant x z v w \/ equidistant y z v w) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1031
(!x y z v w. ~(x = y) \/ ~equidistant z x v w \/ equidistant z y v w) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1032
(!x y z v w. ~(x = y) \/ ~equidistant z v x w \/ equidistant z v y w) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1033
(!x y z v w. ~(x = y) \/ ~equidistant z v w x \/ equidistant z v w y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1034
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1035
   ~(x = y) \/ inner_pasch x z x' y' z' = inner_pasch y z x' y' z') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1036
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1037
   ~(x = y) \/ inner_pasch z x x' y' z' = inner_pasch z y x' y' z') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1038
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1039
   ~(x = y) \/ inner_pasch z x' x y' z' = inner_pasch z x' y y' z') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1040
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1041
   ~(x = y) \/ inner_pasch z x' y' x z' = inner_pasch z x' y' y z') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1042
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1043
   ~(x = y) \/ inner_pasch z x' y' z' x = inner_pasch z x' y' z' y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1044
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1045
   ~(x = y) \/ euclid1 x z x' y' z' = euclid1 y z x' y' z') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1046
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1047
   ~(x = y) \/ euclid1 z x x' y' z' = euclid1 z y x' y' z') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1048
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1049
   ~(x = y) \/ euclid1 z x' x y' z' = euclid1 z x' y y' z') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1050
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1051
   ~(x = y) \/ euclid1 z x' y' x z' = euclid1 z x' y' y z') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1052
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1053
   ~(x = y) \/ euclid1 z x' y' z' x = euclid1 z x' y' z' y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1054
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1055
   ~(x = y) \/ euclid2 x z x' y' z' = euclid2 y z x' y' z') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1056
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1057
   ~(x = y) \/ euclid2 z x x' y' z' = euclid2 z y x' y' z') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1058
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1059
   ~(x = y) \/ euclid2 z x' x y' z' = euclid2 z x' y y' z') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1060
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1061
   ~(x = y) \/ euclid2 z x' y' x z' = euclid2 z x' y' y z') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1062
(!x y z x' y' z'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1063
   ~(x = y) \/ euclid2 z x' y' z' x = euclid2 z x' y' z' y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1064
(!x y z v w. ~(x = y) \/ extension x z v w = extension y z v w) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1065
(!x y z v w. ~(x = y) \/ extension z x v w = extension z y v w) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1066
(!x y z v w. ~(x = y) \/ extension z v x w = extension z v y w) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1067
(!x y z v w. ~(x = y) \/ extension z v w x = extension z v w y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1068
(!x y z v w x' y'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1069
   ~(x = y) \/ continuous x z v w x' y' = continuous y z v w x' y') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1070
(!x y z v w x' y'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1071
   ~(x = y) \/ continuous z x v w x' y' = continuous z y v w x' y') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1072
(!x y z v w x' y'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1073
   ~(x = y) \/ continuous z v x w x' y' = continuous z v y w x' y') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1074
(!x y z v w x' y'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1075
   ~(x = y) \/ continuous z v w x x' y' = continuous z v w y x' y') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1076
(!x y z v w x' y'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1077
   ~(x = y) \/ continuous z v w x' x y' = continuous z v w x' y y') /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1078
(!x y z v w x' y'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1079
   ~(x = y) \/ continuous z v w x' y' x = continuous z v w x' y' y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1080
lower_dimension_point_1 = lower_dimension_point_2 \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1081
lower_dimension_point_2 = lower_dimension_point_3 \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1082
lower_dimension_point_1 = lower_dimension_point_3 ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1083
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1084
{name = "GRP010-4",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1085
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1086
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1087
(!x. x = x) /\ (!x y. ~(x = y) \/ y = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1088
(!x y z. ~(x = y) \/ ~(y = z) \/ x = z) /\ (!x y. ~(x = y) \/ i x = i y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1089
(!x y z. ~(x = y) \/ x * z = y * z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1090
(!x y z. ~(x = y) \/ z * x = z * y) /\ (!x y z. x * y * z = x * (y * z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1091
(!x. 1 * x = x) /\ (!x. i x * x = 1) /\ c * b = 1 ==> ~(b * c = 1) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1092
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1093
{name = "GRP057-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1094
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1095
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1096
(!x. x = x) /\ (!x y. ~(x = y) \/ y = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1097
(!x y z. ~(x = y) \/ ~(y = z) \/ x = z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1098
(!x y z v. x * i (i (i y * (i x * z)) * v * i (y * v)) = z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1099
(!x y. ~(x = y) \/ i x = i y) /\ (!x y z. ~(x = y) \/ x * z = y * z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1100
(!x y z. ~(x = y) \/ z * x = z * y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1101
~(i a1 * a1 = i b1 * b1) \/ ~(i b2 * b2 * a2 = a2) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1102
~(a3 * b3 * c3 = a3 * (b3 * c3)) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1103
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1104
{name = "GRP086-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1105
 comments = ["Bug check: used to be unsolvable without sticky constraints"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1106
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1107
(!x. x = x) /\ (!x y. ~(x = y) \/ y = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1108
(!x y z. ~(x = y) \/ ~(y = z) \/ x = z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1109
(!x y z. x * (y * z * i (x * z)) = y) /\ (!x y. ~(x = y) \/ i x = i y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1110
(!x y z. ~(x = y) \/ x * z = y * z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1111
(!x y z. ~(x = y) \/ z * x = z * y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1112
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1113
   ~(i a1 * a1 = i b1 * b1) \/ ~(i b2 * b2 * a2 = a2) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1114
   ~(a3 * b3 * c3 = a3 * (b3 * c3)) \/ ~(x * y = y * x)) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1115
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1116
{name = "GRP104-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1117
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1118
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1119
(!x. x = x) /\ (!x y. ~(x = y) \/ y = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1120
(!x y z. ~(x = y) \/ ~(y = z) \/ x = z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1121
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1122
   double_divide x
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1123
     (inverse
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1124
        (double_divide
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1125
           (inverse (double_divide (double_divide x y) (inverse z))) y)) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1126
   z) /\ (!x y. x * y = inverse (double_divide y x)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1127
(!x y. ~(x = y) \/ inverse x = inverse y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1128
(!x y z. ~(x = y) \/ x * z = y * z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1129
(!x y z. ~(x = y) \/ z * x = z * y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1130
(!x y z. ~(x = y) \/ double_divide x z = double_divide y z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1131
(!x y z. ~(x = y) \/ double_divide z x = double_divide z y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1132
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1133
   ~(inverse a1 * a1 = inverse b1 * b1) \/ ~(inverse b2 * b2 * a2 = a2) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1134
   ~(a3 * b3 * c3 = a3 * (b3 * c3)) \/ ~(x * y = y * x)) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1135
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1136
{name = "GRP128-4.003",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1137
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1138
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1139
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1140
   ~elt x \/ ~elt y \/ product e_1 x y \/ product e_2 x y \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1141
   product e_3 x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1142
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1143
   ~elt x \/ ~elt y \/ product x e_1 y \/ product x e_2 y \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1144
   product x e_3 y) /\ elt e_1 /\ elt e_2 /\ elt e_3 /\ ~(e_1 == e_2) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1145
~(e_1 == e_3) /\ ~(e_2 == e_1) /\ ~(e_2 == e_3) /\ ~(e_3 == e_1) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1146
~(e_3 == e_2) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1147
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1148
   ~elt x \/ ~elt y \/ product x y e_1 \/ product x y e_2 \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1149
   product x y e_3) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1150
(!x y z v. ~product x y z \/ ~product x y v \/ z == v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1151
(!x y z v. ~product x y z \/ ~product x v z \/ y == v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1152
(!x y z v. ~product x y z \/ ~product v y z \/ x == v) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1153
(!x y z v. product x y z \/ ~product x z v \/ ~product z y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1154
(!x y z v. product x y z \/ ~product v x z \/ ~product v y x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1155
(!x y z v. ~product x y z \/ ~product z y v \/ product x z v) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1156
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1157
{name = "HEN006-3",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1158
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1159
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1160
(!x. x = x) /\ (!x y. ~(x = y) \/ y = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1161
(!x y z. ~(x = y) \/ ~(y = z) \/ x = z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1162
(!x y. ~(x <= y) \/ x / y = 0) /\ (!x y. ~(x / y = 0) \/ x <= y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1163
(!x y. x / y <= x) /\ (!x y z. x / y / (z / y) <= x / z / y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1164
(!x. 0 <= x) /\ (!x y. ~(x <= y) \/ ~(y <= x) \/ x = y) /\ (!x. x <= 1) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1165
(!x y z. ~(x = y) \/ x / z = y / z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1166
(!x y z. ~(x = y) \/ z / x = z / y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1167
(!x y z. ~(x = y) \/ ~(x <= z) \/ y <= z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1168
(!x y z. ~(x = y) \/ ~(z <= x) \/ z <= y) /\ a / b <= d ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1169
~(a / d <= b) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1170
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1171
{name = "LAT005-3",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1172
 comments = ["SAM's lemma"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1173
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1174
(!x. x = x) /\ (!x y. ~(x = y) \/ y = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1175
(!x y z. ~(x = y) \/ ~(y = z) \/ x = z) /\ (!x. meet x x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1176
(!x. join x x = x) /\ (!x y. meet x (join x y) = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1177
(!x y. join x (meet x y) = x) /\ (!x y. meet x y = meet y x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1178
(!x y. join x y = join y x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1179
(!x y z. meet (meet x y) z = meet x (meet y z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1180
(!x y z. join (join x y) z = join x (join y z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1181
(!x y z. ~(x = y) \/ join x z = join y z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1182
(!x y z. ~(x = y) \/ join z x = join z y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1183
(!x y z. ~(x = y) \/ meet x z = meet y z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1184
(!x y z. ~(x = y) \/ meet z x = meet z y) /\ (!x. meet x 0 = 0) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1185
(!x. join x 0 = x) /\ (!x. meet x 1 = x) /\ (!x. join x 1 = 1) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1186
(!x y z. ~(meet x y = x) \/ meet y (join x z) = join x (meet z y)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1187
(!x y. ~complement x y \/ meet x y = 0) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1188
(!x y. ~complement x y \/ join x y = 1) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1189
(!x y. ~(meet x y = 0) \/ ~(join x y = 1) \/ complement x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1190
(!x y z. ~(x = y) \/ ~complement x z \/ complement y z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1191
(!x y z. ~(x = y) \/ ~complement z x \/ complement z y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1192
complement r1 (join a b) /\ complement r2 (meet a b) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1193
~(r1 = meet (join r1 (meet r2 b)) (join r1 (meet r2 a))) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1194
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1195
{name = "LCL009-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1196
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1197
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1198
(!x y. ~p (x - y) \/ ~p x \/ p y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1199
(!x y z. p (x - y - (z - y - (x - z)))) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1200
~p (a - b - c - (a - (b - c))) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1201
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1202
{name = "LCL087-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1203
 comments =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1204
["Solved quickly by resolution when NOT tracking term-ordering constraints."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1205
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1206
(!x y. ~p (implies x y) \/ ~p x \/ p y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1207
(!x y z v w.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1208
   p
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1209
     (implies (implies (implies x y) (implies z v))
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1210
        (implies w (implies (implies v x) (implies z x))))) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1211
~p (implies a (implies b a)) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1212
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1213
{name = "LCL107-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1214
 comments = ["A very small problem that's tricky to prove."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1215
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1216
(!x y. ~p (x - y) \/ ~p x \/ p y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1217
(!x y z v w x' y'.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1218
   p
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1219
     (x - y - z - (v - w - (x' - w - (x' - v) - y')) -
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1220
      (z - (y - x - y')))) ==> ~p (a - b - c - (e - b - (a - e - c))) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1221
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1222
{name = "LCL187-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1223
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1224
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1225
(!x. axiom (or (not (or x x)) x)) /\ (!x y. axiom (or (not x) (or y x))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1226
(!x y. axiom (or (not (or x y)) (or y x))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1227
(!x y z. axiom (or (not (or x (or y z))) (or y (or x z)))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1228
(!x y z. axiom (or (not (or (not x) y)) (or (not (or z x)) (or z y)))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1229
(!x. theorem x \/ ~axiom x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1230
(!x y. theorem x \/ ~axiom (or (not y) x) \/ ~theorem y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1231
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1232
   theorem (or (not x) y) \/ ~axiom (or (not x) z) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1233
   ~theorem (or (not z) y)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1234
~theorem (or (not p) (or (not (not p)) q)) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1235
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1236
{name = "LDA007-3",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1237
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1238
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1239
(!x. x = x) /\ (!x y. ~(x = y) \/ y = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1240
(!x y z. ~(x = y) \/ ~(y = z) \/ x = z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1241
(!x y z. f x (f y z) = f (f x y) (f x z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1242
(!x y z. ~(x = y) \/ f x z = f y z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1243
(!x y z. ~(x = y) \/ f z x = f z y) /\ tt = f t t /\ ts = f t s /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1244
tt_ts = f tt ts /\ tk = f t k /\ tsk = f ts k ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1245
~(f t tsk = f tt_ts tk) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1246
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1247
{name = "NUM001-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1248
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1249
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1250
(!x. x == x) /\ (!x y z. ~(x == y) \/ ~(y == z) \/ x == z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1251
(!x y. x + y == y + x) /\ (!x y z. x + (y + z) == x + y + z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1252
(!x y. x + y - y == x) /\ (!x y. x == x + y - y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1253
(!x y z. x - y + z == x + z - y) /\ (!x y z. x + y - z == x - z + y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1254
(!x y z v. ~(x == y) \/ ~(z == x + v) \/ z == y + v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1255
(!x y z v. ~(x == y) \/ ~(z == v + x) \/ z == v + y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1256
(!x y z v. ~(x == y) \/ ~(z == x - v) \/ z == y - v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1257
(!x y z v. ~(x == y) \/ ~(z == v - x) \/ z == v - y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1258
~(a + b + c == a + (b + c)) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1259
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1260
{name = "NUM014-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1261
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1262
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1263
(!x. product x x (square x)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1264
(!x y z. ~product x y z \/ product y x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1265
(!x y z. ~product x y z \/ divides x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1266
(!x y z v.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1267
   ~prime x \/ ~product y z v \/ ~divides x v \/ divides x y \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1268
   divides x z) /\ prime a /\ product a (square c) (square b) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1269
~divides a b ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1270
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1271
{name = "PUZ001-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1272
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1273
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1274
lives agatha /\ lives butler /\ lives charles /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1275
(!x y. ~killed x y \/ ~richer x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1276
(!x. ~hates agatha x \/ ~hates charles x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1277
(!x. ~hates x agatha \/ ~hates x butler \/ ~hates x charles) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1278
hates agatha agatha /\ hates agatha charles /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1279
(!x y. ~killed x y \/ hates x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1280
(!x. ~hates agatha x \/ hates butler x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1281
(!x. ~lives x \/ richer x agatha \/ hates butler x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1282
killed butler agatha \/ killed charles agatha ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1283
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1284
{name = "PUZ011-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1285
 comments =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1286
["Curiosity: solved trivially by meson without cache cutting, but not with."],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1287
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1288
ocean atlantic /\ ocean indian /\ borders atlantic brazil /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1289
borders atlantic uruguay /\ borders atlantic venesuela /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1290
borders atlantic zaire /\ borders atlantic nigeria /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1291
borders atlantic angola /\ borders indian india /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1292
borders indian pakistan /\ borders indian iran /\ borders indian somalia /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1293
borders indian kenya /\ borders indian tanzania /\ south_american brazil /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1294
south_american uruguay /\ south_american venesuela /\ african zaire /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1295
african nigeria /\ african angola /\ african somalia /\ african kenya /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1296
african tanzania /\ asian india /\ asian pakistan /\ asian iran ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1297
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1298
   ~ocean x \/ ~borders x y \/ ~african y \/ ~borders x z \/ ~asian z) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1299
F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1300
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1301
{name = "PUZ020-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1302
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1303
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1304
(!x. x = x) /\ (!x y. ~(x = y) \/ y = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1305
(!x y z. ~(x = y) \/ ~(y = z) \/ x = z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1306
(!x y. ~(x = y) \/ statement_by x = statement_by y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1307
(!x. ~person x \/ knight x \/ knave x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1308
(!x. ~person x \/ ~knight x \/ ~knave x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1309
(!x y. ~says x y \/ a_truth y \/ ~a_truth y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1310
(!x y. ~says x y \/ ~(x = y)) /\ (!x y. ~says x y \/ y = statement_by x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1311
(!x y. ~person x \/ ~(x = statement_by y)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1312
(!x. ~person x \/ ~a_truth (statement_by x) \/ knight x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1313
(!x. ~person x \/ a_truth (statement_by x) \/ knave x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1314
(!x y. ~(x = y) \/ ~knight x \/ knight y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1315
(!x y. ~(x = y) \/ ~knave x \/ knave y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1316
(!x y. ~(x = y) \/ ~person x \/ person y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1317
(!x y z. ~(x = y) \/ ~says x z \/ says y z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1318
(!x y z. ~(x = y) \/ ~says z x \/ says z y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1319
(!x y. ~(x = y) \/ ~a_truth x \/ a_truth y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1320
(!x y. ~knight x \/ ~says x y \/ a_truth y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1321
(!x y. ~knave x \/ ~says x y \/ ~a_truth y) /\ person husband /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1322
person wife /\ ~(husband = wife) /\ says husband (statement_by husband) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1323
(~a_truth (statement_by husband) \/ ~knight husband \/ knight wife) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1324
(a_truth (statement_by husband) \/ ~knight husband) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1325
(a_truth (statement_by husband) \/ knight wife) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1326
(~knight wife \/ a_truth (statement_by husband)) ==> ~knight husband ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1327
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1328
{name = "ROB002-1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1329
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1330
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1331
(!x. x = x) /\ (!x y. ~(x = y) \/ y = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1332
(!x y z. ~(x = y) \/ ~(y = z) \/ x = z) /\ (!x y. x + y = y + x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1333
(!x y z. x + y + z = x + (y + z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1334
(!x y. negate (negate (x + y) + negate (x + negate y)) = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1335
(!x y z. ~(x = y) \/ x + z = y + z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1336
(!x y z. ~(x = y) \/ z + x = z + y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1337
(!x y. ~(x = y) \/ negate x = negate y) /\ (!x. negate (negate x) = x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1338
~(negate (a + negate b) + negate (negate a + negate b) = b) ==> F`}
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1339
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1340
] @
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1341
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1342
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1343
(* Some problems from HOL.                                                   *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1344
(* ========================================================================= *)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1345
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1346
mkProblems "hol" "HOL subgoals sent to MESON_TAC" [
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1347
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1348
{name = "Coder_4_0",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1349
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1350
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1351
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1352
   x = y \/ ~{x . (EXT_POINT . x . y)} \/ ~{y . (EXT_POINT . x . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1353
(!x y. x = y \/ {x . (EXT_POINT . x . y)} \/ {y . (EXT_POINT . x . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1354
(!x y. x = y \/ ~(x . (EXT_POINT . x . y) = y . (EXT_POINT . x . y))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1355
(!x y. ~{x} \/ ~(x = y) \/ {y}) /\ ~{existential . (K . falsity)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1356
{existential . (K . truth)} /\ ~{universal . (K . falsity)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1357
{universal . (K . truth)} /\ ~{falsity} /\ {truth} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1358
(!x y z. ~(APPEND . x . y = APPEND . z . y) \/ x = z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1359
(!x y z. ~(APPEND . x . y = APPEND . x . z) \/ y = z) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1360
{wf_encoder . p . e} /\ (!x. e . x = f . x \/ ~{p . x}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1361
{wf_encoder . p . f} /\ {p . q} /\ {p . q'} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1362
APPEND . (f . q) . r = APPEND . (f . q') . r' /\ q = q' /\ ~(r' = r) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1363
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1364
{name = "DeepSyntax_47",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1365
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1366
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1367
(!x y z v. ~(x = y) \/ ~(z = v) \/ int_add x z = int_add y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1368
(!x y. ~(x = y) \/ int_neg x = int_neg y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1369
(!x y. ~(x = y) \/ int_of_num x = int_of_num y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1370
(!x y z v. ~(x = y) \/ ~(z = v) \/ int_lt y v \/ ~int_lt x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1371
(!x y z v. ~(x = y) \/ ~(z = v) \/ eval_form y v \/ ~eval_form x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1372
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1373
(!x y z v.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1374
   int_lt (int_add x y) (int_add z v) \/ ~int_lt x z \/ ~int_lt y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1375
(!x. int_add x (int_of_num 0) = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1376
(!x. int_add x (int_neg x) = int_of_num 0) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1377
(!x y z. int_add x (int_add y z) = int_add (int_add x y) z) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1378
int_lt (int_neg d) (int_of_num 0) /\ eval_form g x /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1379
int_lt (int_add x d) i /\ ~int_lt x i ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1380
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1381
{name = "divides_9",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1382
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1383
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1384
(!x y z v. ~(x = y) \/ ~(z = v) \/ x * z = y * v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1385
(!x y z v. ~(x = y) \/ ~(z = v) \/ divides y v \/ ~divides x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1386
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1387
(!x y z. x * (y * z) = x * y * z) /\ (!x y. x * y = y * x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1388
(!x y. ~divides x y \/ y = gv1556 x y * x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1389
(!x y z. divides x y \/ ~(y = z * x)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1390
divides gv1546 gv1547 /\ ~divides gv1546 (gv1547 * gv1548) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1391
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1392
{name = "Encode_28",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1393
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1394
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1395
(!x y z v. ~(x = y) \/ ~(z = v) \/ MOD x z = MOD y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1396
(!x y z v. ~(x = y) \/ ~(z = v) \/ x * z = y * v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1397
(!x y z v. ~(x = y) \/ ~(z = v) \/ x + z = y + v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1398
(!x y. ~(x = y) \/ NUMERAL x = NUMERAL y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1399
(!x y. ~(x = y) \/ BIT2 x = BIT2 y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1400
(!x y z v. ~(x = y) \/ ~(z = v) \/ EXP x z = EXP y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1401
(!x y z v. ~(x = y) \/ ~(z = v) \/ DIV x z = DIV y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1402
(!x y. ~(x = y) \/ BIT1 x = BIT1 y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1403
(!x y z v. ~(x = y) \/ ~(z = v) \/ y < v \/ ~(x < z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1404
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1405
(!x y. x * y = y * x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1406
(!x y z. MOD (MOD x (y * z)) y = MOD x y \/ ~(0 < y) \/ ~(0 < z)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1407
(!x.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1408
   MOD x (NUMERAL (BIT2 ZERO)) = 0 \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1409
   MOD x (NUMERAL (BIT2 ZERO)) = NUMERAL (BIT1 ZERO)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1410
MOD
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1411
  (DIV x (NUMERAL (BIT2 ZERO)) * NUMERAL (BIT2 ZERO) +
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1412
   MOD x (NUMERAL (BIT2 ZERO)))
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1413
  (NUMERAL (BIT2 ZERO) * EXP (NUMERAL (BIT2 ZERO)) m) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1414
MOD
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1415
  (DIV y (NUMERAL (BIT2 ZERO)) * NUMERAL (BIT2 ZERO) +
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1416
   MOD y (NUMERAL (BIT2 ZERO)))
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1417
  (NUMERAL (BIT2 ZERO) * EXP (NUMERAL (BIT2 ZERO)) m) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1418
0 < EXP (NUMERAL (BIT2 ZERO)) m /\ 0 < NUMERAL (BIT2 ZERO) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1419
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1420
   ~(MOD (x * NUMERAL (BIT2 ZERO) + MOD (x) (NUMERAL (BIT2 ZERO)))
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1421
       (NUMERAL (BIT2 ZERO)) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1422
     MOD (y * NUMERAL (BIT2 ZERO) + MOD (y) (NUMERAL (BIT2 ZERO)))
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1423
       (NUMERAL (BIT2 ZERO)))) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1424
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1425
{name = "euclid_4",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1426
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1427
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1428
(!x y z v. ~(x = y) \/ ~(z = v) \/ x * z = y * v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1429
(!x y z v. ~(x = y) \/ ~(z = v) \/ divides y v \/ ~divides x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1430
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1431
(!x y z. x * (y * z) = x * y * z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1432
(!x y. ~divides x y \/ y = x * gv5371 x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1433
(!x y z. divides x y \/ ~(y = x * z)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1434
divides gv5316 gv5317 /\ divides gv5315 gv5316 /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1435
~divides gv5315 gv5317 ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1436
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1437
{name = "euclid_8",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1438
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1439
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1440
(!x y z v. ~(x = y) \/ ~(z = v) \/ x * z = y * v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1441
(!x y z v. ~(x = y) \/ ~(z = v) \/ divides y v \/ ~divides x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1442
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1443
(!x y. x * y = y * x) /\ (!x y z. x * (y * z) = x * y * z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1444
(!x y. ~divides x y \/ y = x * gv7050 x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1445
(!x y z. divides x y \/ ~(y = x * z)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1446
divides gv7000 gv7001 /\ ~divides gv7000 (gv7002 * gv7001) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1447
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1448
{name = "extra_arith_6",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1449
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1450
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1451
(!x y z v. ~(x = y) \/ ~(z = v) \/ x * z = y * v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1452
(!x y. ~(x = y) \/ SUC x = SUC y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1453
(!x y z v. ~(x = y) \/ ~(z = v) \/ y < v \/ ~(x < z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1454
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1455
(!x y z. ~(SUC x * y = SUC x * z) \/ y = z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1456
(!x y z. SUC x * y = SUC x * z \/ ~(y = z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1457
(!x y z. x * (y * z) = x * y * z) /\ (!x y. x * y = y * x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1458
SUC n * b = q * (SUC n * a) /\ 0 < SUC n /\ ~(b = q * a) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1459
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1460
{name = "extra_real_5",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1461
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1462
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1463
~{existential . (K . falsity)} /\ {existential . (K . truth)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1464
~{universal . (K . falsity)} /\ {universal . (K . truth)} /\ ~{falsity} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1465
{truth} ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1466
(!x y z v.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1467
   {real_lt . x . (sup . P)} \/ ~{P . y} \/ ~{real_lt . x . y} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1468
   ~{P . z} \/ ~{real_lte . (gv6327 . v) . v}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1469
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1470
   ~{real_lt . x . (sup . P)} \/ {P . (gv6327 . x)} \/ ~{P . y} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1471
   ~{real_lte . (gv6327 . z) . z}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1472
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1473
   ~{real_lt . x . (sup . P)} \/ {real_lt . x . (gv6327 . x)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1474
   ~{P . y} \/ ~{real_lte . (gv6327 . z) . z}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1475
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1476
   ~{real_lt . x . (sup . P)} \/ {real_lt . x . (gv6327 . x)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1477
   ~{P . y} \/ {P . (gv6327 . z)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1478
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1479
   ~{real_lt . x . (sup . P)} \/ {P . (gv6327 . x)} \/ ~{P . y} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1480
   {P . (gv6327 . z)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1481
(!x y z v.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1482
   {real_lt . x . (sup . P)} \/ ~{P . y} \/ ~{real_lt . x . y} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1483
   ~{P . z} \/ {P . (gv6327 . v)}) /\ {P . x} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1484
(!x. {real_lte . x . z} \/ ~{P . x}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1485
(!x.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1486
   {real_lt . (gv6328 . x) . (gv6329 . x)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1487
   {real_lt . (gv6328 . x) . x}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1488
(!x. {P . (gv6329 . x)} \/ {real_lt . (gv6328 . x) . x}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1489
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1490
   ~{real_lt . (gv6328 . x) . y} \/ ~{P . y} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1491
   ~{real_lt . (gv6328 . x) . x}) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1492
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1493
{name = "gcd_19",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1494
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1495
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1496
(!x y z v. ~(x = y) \/ ~(z = v) \/ x + z = y + v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1497
(!x y z v. ~(x = y) \/ ~(z = v) \/ x * z = y * v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1498
(!x y. ~(x = y) \/ NUMERAL x = NUMERAL y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1499
(!x y. ~(x = y) \/ BIT1 x = BIT1 y) /\ (!x y. ~(x = y) \/ SUC x = SUC y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1500
(!x y z v. ~(x = y) \/ ~(z = v) \/ y <= v \/ ~(x <= z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1501
(!x y z v. ~(x = y) \/ ~(z = v) \/ divides y v \/ ~divides x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1502
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1503
(!x y z. x * (y + z) = x * y + x * z) /\ (!x y. x + SUC y = SUC (x + y)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1504
(!x y. SUC x + y = SUC (x + y)) /\ (!x. x + 0 = x) /\ (!x. 0 + x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1505
(!x y. x * SUC y = x + x * y) /\ (!x y. SUC x * y = x * y + y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1506
(!x. x * NUMERAL (BIT1 ZERO) = x) /\ (!x. NUMERAL (BIT1 ZERO) * x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1507
(!x. x * 0 = 0) /\ (!x. 0 * x = 0) /\ (!x y z. x + (y + z) = x + y + z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1508
(!x y z. divides x y \/ ~divides x z \/ ~divides x (z + y)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1509
~(x + z <= x) /\ divides c (d * SUC x) /\ divides c (d * SUC (x + z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1510
~divides c (d * z) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1511
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1512
{name = "gcd_20",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1513
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1514
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1515
(!x y z v. ~(x = y) \/ ~(z = v) \/ x + z = y + v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1516
(!x y z v. ~(x = y) \/ ~(z = v) \/ x * z = y * v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1517
(!x y. ~(x = y) \/ NUMERAL x = NUMERAL y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1518
(!x y. ~(x = y) \/ BIT1 x = BIT1 y) /\ (!x y. ~(x = y) \/ SUC x = SUC y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1519
(!x y z v. ~(x = y) \/ ~(z = v) \/ y <= v \/ ~(x <= z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1520
(!x y z v. ~(x = y) \/ ~(z = v) \/ divides y v \/ ~divides x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1521
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1522
(!x y z. x * (y + z) = x * y + x * z) /\ (!x y. x + SUC y = SUC (x + y)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1523
(!x y. SUC x + y = SUC (x + y)) /\ (!x. x + 0 = x) /\ (!x. 0 + x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1524
(!x y. x * SUC y = x + x * y) /\ (!x y. SUC x * y = x * y + y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1525
(!x. x * NUMERAL (BIT1 ZERO) = x) /\ (!x. NUMERAL (BIT1 ZERO) * x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1526
(!x. x * 0 = 0) /\ (!x. 0 * x = 0) /\ (!x y z. x + (y + z) = x + y + z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1527
(!x y z. divides x y \/ ~divides x z \/ ~divides x (z + y)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1528
y <= y + z /\ divides c (d * SUC (y + z)) /\ divides c (d * SUC y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1529
~divides c (d * z) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1530
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1531
{name = "gcd_21",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1532
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1533
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1534
(!x y z v. ~(x = y) \/ ~(z = v) \/ x + z = y + v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1535
(!x y z v. ~(x = y) \/ ~(z = v) \/ x * z = y * v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1536
(!x y. ~(x = y) \/ NUMERAL x = NUMERAL y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1537
(!x y. ~(x = y) \/ BIT1 x = BIT1 y) /\ (!x y. ~(x = y) \/ SUC x = SUC y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1538
(!x y z v. ~(x = y) \/ ~(z = v) \/ divides y v \/ ~divides x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1539
(!x y z v. ~(x = y) \/ ~(z = v) \/ y <= v \/ ~(x <= z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1540
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1541
(!x y z. x * (y + z) = x * y + x * z) /\ (!x y. x + SUC y = SUC (x + y)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1542
(!x y. SUC x + y = SUC (x + y)) /\ (!x. x + 0 = x) /\ (!x. 0 + x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1543
(!x y. x * SUC y = x + x * y) /\ (!x y. SUC x * y = x * y + y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1544
(!x. x * NUMERAL (BIT1 ZERO) = x) /\ (!x. NUMERAL (BIT1 ZERO) * x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1545
(!x. x * 0 = 0) /\ (!x. 0 * x = 0) /\ (!x y z. x + (y + z) = x + y + z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1546
(!x y z. divides x y \/ ~divides x z \/ ~divides x (z + y)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1547
divides c (d * SUC y) /\ y <= y + z /\ divides c (d * SUC (y + z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1548
~divides c (d * z) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1549
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1550
{name = "int_arith_6",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1551
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1552
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1553
(!x y z v. ~(x = y) \/ ~(z = v) \/ int_mul x z = int_mul y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1554
(!x y. ~(x = y) \/ int_of_num x = int_of_num y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1555
(!x y z v. ~(x = y) \/ ~(z = v) \/ int_lt y v \/ ~int_lt x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1556
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1557
(!x y. int_mul x y = int_mul y x) /\ (!x. ~int_lt x x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1558
(!x y z. ~(int_mul x y = int_mul z y) \/ y = int_of_num 0 \/ x = z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1559
(!x y z. int_mul x y = int_mul z y \/ ~(y = int_of_num 0)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1560
(!x y z. int_mul x y = int_mul z y \/ ~(x = z)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1561
int_lt (int_of_num 0) gv1085 /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1562
int_mul gv1085 gv1086 = int_mul gv1085 gv1087 /\ ~(gv1086 = gv1087) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1563
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1564
{name = "int_arith_139",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1565
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1566
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1567
(!x y z v. ~(x = y) \/ ~(z = v) \/ int_add x z = int_add y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1568
(!x y. ~(x = y) \/ int_of_num x = int_of_num y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1569
(!x y z v. ~(x = y) \/ ~(z = v) \/ int_le y v \/ ~int_le x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1570
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1571
(!x. int_add (int_of_num 0) x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1572
(!x y z v.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1573
   int_le (int_add x y) (int_add z v) \/ ~int_le x z \/ ~int_le y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1574
(!x y z. int_add x (int_add y z) = int_add (int_add x y) z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1575
(!x y. int_add x y = int_add y x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1576
(!x y z. ~int_le (int_add x y) (int_add x z) \/ int_le y z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1577
(!x y z. int_le (int_add x y) (int_add x z) \/ ~int_le y z) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1578
int_le x y /\ int_le (int_of_num 0) (int_add c x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1579
~int_le (int_of_num 0) (int_add c y) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1580
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1581
{name = "llist_69",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1582
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1583
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1584
(!x y. ~(x = y) \/ LTL x = LTL y) /\ (!x y. ~(x = y) \/ SOME x = SOME y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1585
(!x y. ~(x = y) \/ LHD x = LHD y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1586
(!x y z v. ~(x = y) \/ ~(z = v) \/ LCONS x z = LCONS y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1587
(!x y. ~(x = y) \/ g x = g y) /\ (!x y. ~(x = y) \/ THE x = THE y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1588
(!x y z v. ~(x = y) \/ ~(z = v) \/ LNTH z x = LNTH v y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1589
(!x y z v. ~(x = y) \/ ~(z = v) \/ LDROP z x = LDROP v y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1590
(!x y. ~(x = y) \/ SUC x = SUC y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1591
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1592
(!x y z. ~(x = LCONS y z) \/ LTL x = SOME z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1593
(!x y z. ~(x = LCONS y z) \/ LHD x = SOME y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1594
(!x y z. x = LCONS y z \/ ~(LHD x = SOME y) \/ ~(LTL x = SOME z)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1595
LTL (g (LCONS LNIL t)) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1596
SOME (g (LCONS (THE (LTL (THE (LNTH n t)))) (THE (LDROP (SUC n) t)))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1597
LHD (g (LCONS LNIL t)) = SOME (THE (LHD (THE (LNTH n t)))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1598
LHD (g t) = SOME (THE (LHD (THE (LNTH n t)))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1599
LTL (g t) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1600
SOME (g (LCONS (THE (LTL (THE (LNTH n t)))) (THE (LDROP (SUC n) t)))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1601
~(g (LCONS LNIL t) = g t) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1602
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1603
{name = "MachineTransition_0",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1604
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1605
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1606
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1607
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1608
   x = y \/ ~{x . (EXT_POINT . x . y)} \/ ~{y . (EXT_POINT . x . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1609
(!x y. x = y \/ {x . (EXT_POINT . x . y)} \/ {y . (EXT_POINT . x . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1610
(!x y. x = y \/ ~(x . (EXT_POINT . x . y) = y . (EXT_POINT . x . y))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1611
(!x y. ~{x} \/ ~(x = y) \/ {y}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1612
(!x y z v. ~(x = y) \/ ~(z = v) \/ x . z = y . v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1613
~{existential . (K . falsity)} /\ {existential . (K . truth)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1614
~{universal . (K . falsity)} /\ {universal . (K . truth)} /\ ~{falsity} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1615
{truth} /\ Eq = equality /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1616
(!x y z. ~{Next . x . y . z} \/ {x . (pair . (gv940 . x . y . z) . z)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1617
(!x y z. ~{Next . x . y . z} \/ {y . (gv940 . x . y . z)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1618
(!x y z v. {Next . x . y . z} \/ ~{y . v} \/ ~{x . (pair . v . z)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1619
(!x y z. ~{Prev . x . y . z} \/ {y . (gv935 . x . y . z)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1620
(!x y z. ~{Prev . x . y . z} \/ {x . (pair . z . (gv935 . x . y . z))}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1621
(!x y z v. {Prev . x . y . z} \/ ~{x . (pair . z . v)} \/ ~{y . v}) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1622
{Next . gv914 . (Eq . gv915) . gv916} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1623
~{Prev . gv914 . (Eq . gv916) . gv915} ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1624
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1625
{name = "MachineTransition_2_1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1626
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1627
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1628
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1629
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1630
   x = y \/ ~{x . (EXT_POINT . x . y)} \/ ~{y . (EXT_POINT . x . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1631
(!x y. x = y \/ {x . (EXT_POINT . x . y)} \/ {y . (EXT_POINT . x . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1632
(!x y. x = y \/ ~(x . (EXT_POINT . x . y) = y . (EXT_POINT . x . y))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1633
(!x y. ~{x} \/ ~(x = y) \/ {y}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1634
(!x y z v. ~(x = y) \/ ~(z = v) \/ x . z = y . v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1635
~{existential . (K . falsity)} /\ {existential . (K . truth)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1636
~{universal . (K . falsity)} /\ {universal . (K . truth)} /\ ~{falsity} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1637
{truth} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1638
(!x y z. ReachIn . x . (Next . x . y) . z = ReachIn . x . y . (SUC . z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1639
(!x y z. ~{Next . x . y . z} \/ {x . (pair . (gv5488 . x . y . z) . z)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1640
(!x y z. ~{Next . x . y . z} \/ {y . (gv5488 . x . y . z)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1641
(!x y z v. {Next . x . y . z} \/ ~{y . v} \/ ~{x . (pair . v . z)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1642
(!x y z. ReachIn . x . y . (SUC . z) = Next . x . (ReachIn . x . y . z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1643
(!x y. ReachIn . x . y . 0 = y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1644
{ReachIn . R . (Next . R . B) . gv5278 . state} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1645
(!x. ~{ReachIn . R . B . gv5278 . x} \/ ~{R . (pair . x . state)}) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1646
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1647
{name = "MachineTransition_52",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1648
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1649
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1650
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1651
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1652
   x = y \/ ~{x . (EXT_POINT . x . y)} \/ ~{y . (EXT_POINT . x . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1653
(!x y. x = y \/ {x . (EXT_POINT . x . y)} \/ {y . (EXT_POINT . x . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1654
(!x y. x = y \/ ~(x . (EXT_POINT . x . y) = y . (EXT_POINT . x . y))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1655
(!x y. ~{x} \/ ~(x = y) \/ {y}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1656
(!x y z v. ~(x = y) \/ ~(z = v) \/ x . z = y . v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1657
~{existential . (K . falsity)} /\ {existential . (K . truth)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1658
~{universal . (K . falsity)} /\ {universal . (K . truth)} /\ ~{falsity} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1659
{truth} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1660
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1661
   {(<=) . (gv7028 . x . y . z) . (add . x . (NUMERAL . (BIT1 . ZERO)))} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1662
   z . (add . x . (NUMERAL . (BIT1 . ZERO))) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1663
   y . (add . x . (NUMERAL . (BIT1 . ZERO)))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1664
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1665
   ~(x . (gv7028 . y . z . x) = z . (gv7028 . y . z . x)) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1666
   x . (add . y . (NUMERAL . (BIT1 . ZERO))) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1667
   z . (add . y . (NUMERAL . (BIT1 . ZERO)))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1668
(!x y z v.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1669
   ~(x . (gv7028 . y . z . x) = z . (gv7028 . y . z . x)) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1670
   x . v = z . v \/ ~{(<=) . v . y}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1671
(!x y z v.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1672
   {(<=) . (gv7028 . x . y . z) . (add . x . (NUMERAL . (BIT1 . ZERO)))} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1673
   z . v = y . v \/ ~{(<=) . v . x}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1674
(!x y z v.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1675
   ~{(<=) . x . (add . y . (NUMERAL . (BIT1 . ZERO)))} \/ z . x = v . x \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1676
   ~(z . (gv7027 . y . v . z) = v . (gv7027 . y . v . z)) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1677
   ~(z . (add . y . (NUMERAL . (BIT1 . ZERO))) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1678
     v . (add . y . (NUMERAL . (BIT1 . ZERO))))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1679
(!x y z v.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1680
   ~{(<=) . x . (add . y . (NUMERAL . (BIT1 . ZERO)))} \/ z . x = v . x \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1681
   {(<=) . (gv7027 . y . v . z) . y} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1682
   ~(z . (add . y . (NUMERAL . (BIT1 . ZERO))) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1683
     v . (add . y . (NUMERAL . (BIT1 . ZERO))))) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1684
({FinPath . (pair . R . s) . f2 . n} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1685
 ~{FinPath . (pair . R . s) . f1 . n} \/ ~(f1 . gv7034 = f2 . gv7034)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1686
(~{FinPath . (pair . R . s) . f2 . n} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1687
 {FinPath . (pair . R . s) . f1 . n} \/ ~(f1 . gv7034 = f2 . gv7034)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1688
(~{FinPath . (pair . R . s) . f2 . n} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1689
 {FinPath . (pair . R . s) . f1 . n} \/ {(<=) . gv7034 . n}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1690
({FinPath . (pair . R . s) . f2 . n} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1691
 ~{FinPath . (pair . R . s) . f1 . n} \/ {(<=) . gv7034 . n}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1692
(!x.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1693
   f1 . x = f2 . x \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1694
   ~{(<=) . x . (add . n . (NUMERAL . (BIT1 . ZERO)))}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1695
{FinPath . (pair . R . s) . f2 . n} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1696
{R . (pair . (f2 . n) . (f2 . (add . n . (NUMERAL . (BIT1 . ZERO)))))} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1697
~{FinPath . (pair . R . s) . f1 . n} ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1698
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1699
{name = "measure_138",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1700
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1701
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1702
(!x y z. ~SUBSET x y \/ IN z y \/ ~IN z x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1703
(!x y. SUBSET x y \/ IN (gv122874 x y) x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1704
(!x y. SUBSET x y \/ ~IN (gv122874 x y) y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1705
(!x. sigma_algebra (sigma x)) /\ (!x y z. ~IN x (INTER y z) \/ IN x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1706
(!x y z. ~IN x (INTER y z) \/ IN x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1707
(!x y z. IN x (INTER y z) \/ ~IN x y \/ ~IN x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1708
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1709
   ~sigma_algebra x \/ IN (BIGUNION y) x \/ ~countable y \/ ~SUBSET y x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1710
(!x y. ~sigma_algebra x \/ IN (COMPL y) x \/ ~IN y x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1711
(!x. ~sigma_algebra x \/ IN EMPTY x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1712
(!x.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1713
   sigma_algebra x \/ ~IN EMPTY x \/ ~IN (COMPL (gv122851 x)) x \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1714
   SUBSET (gv122852 x) x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1715
(!x.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1716
   sigma_algebra x \/ ~IN EMPTY x \/ IN (gv122851 x) x \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1717
   SUBSET (gv122852 x) x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1718
(!x.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1719
   sigma_algebra x \/ ~IN EMPTY x \/ IN (gv122851 x) x \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1720
   countable (gv122852 x)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1721
(!x.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1722
   sigma_algebra x \/ ~IN EMPTY x \/ ~IN (COMPL (gv122851 x)) x \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1723
   countable (gv122852 x)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1724
(!x.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1725
   sigma_algebra x \/ ~IN EMPTY x \/ IN (gv122851 x) x \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1726
   ~IN (BIGUNION (gv122852 x)) x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1727
(!x.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1728
   sigma_algebra x \/ ~IN EMPTY x \/ ~IN (COMPL (gv122851 x)) x \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1729
   ~IN (BIGUNION (gv122852 x)) x) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1730
SUBSET c (INTER p (sigma a)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1731
(!x. IN (BIGUNION x) p \/ ~countable x \/ ~SUBSET x (INTER p (sigma a))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1732
SUBSET a p /\ IN EMPTY p /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1733
(!x. IN (COMPL x) p \/ ~IN x (INTER p (sigma a))) /\ countable c /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1734
~IN (BIGUNION c) (sigma a) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1735
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1736
{name = "Omega_13",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1737
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1738
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1739
(!x y z v. ~(x = y) \/ ~(z = v) \/ int_mul x z = int_mul y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1740
(!x y. ~(x = y) \/ int_of_num x = int_of_num y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1741
(!x y z v. ~(x = y) \/ ~(z = v) \/ evalupper y v \/ ~evalupper x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1742
(!x y z v. ~(x = y) \/ ~(z = v) \/ int_lt y v \/ ~int_lt x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1743
(!x y z v. ~(x = y) \/ ~(z = v) \/ int_le y v \/ ~int_le x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1744
(!x y z v. ~(x = y) \/ ~(z = v) \/ y < v \/ ~(x < z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1745
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1746
(!x y. ~int_le x y \/ int_lt x y \/ x = y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1747
(!x y. int_le x y \/ ~int_lt x y) /\ (!x y. int_le x y \/ ~(x = y)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1748
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1749
   int_lt x y \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1750
   ~int_lt (int_mul (int_of_num z) x) (int_mul (int_of_num z) y) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1751
   ~(0 < z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1752
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1753
   ~int_lt x y \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1754
   int_lt (int_mul (int_of_num z) x) (int_mul (int_of_num z) y) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1755
   ~(0 < z)) /\ (!x y z. int_lt x y \/ ~int_le x z \/ ~int_lt z y) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1756
(!x y. evalupper x uppers \/ ~evalupper y uppers \/ ~int_lt x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1757
int_le (int_mul (int_of_num p_1) x) p_2 /\ evalupper x uppers /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1758
int_lt y x /\ 0 < p_1 /\ ~int_le (int_mul (int_of_num p_1) y) p_2 ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1759
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1760
{name = "Omega_71",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1761
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1762
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1763
(!x y z v. ~(x = y) \/ ~(z = v) \/ int_mul x z = int_mul y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1764
(!x y. ~(x = y) \/ int_of_num x = int_of_num y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1765
(!x y z v. ~(x = y) \/ ~(z = v) \/ x * z = y * v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1766
(!x y z v. ~(x = y) \/ ~(z = v) \/ int_add x z = int_add y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1767
(!x y. ~(x = y) \/ NUMERAL x = NUMERAL y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1768
(!x y. ~(x = y) \/ BIT1 x = BIT1 y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1769
(!x y z v. ~(x = y) \/ ~(z = v) \/ (x, z) = (y, v)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1770
(!x y z v. ~(x = y) \/ ~(z = v) \/ evallower y v \/ ~evallower x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1771
(!x y z v. ~(x = y) \/ ~(z = v) \/ y < v \/ ~(x < z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1772
(!x y z v. ~(x = y) \/ ~(z = v) \/ rshadow_row v y \/ ~rshadow_row z x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1773
(!x y z v.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1774
   ~(x = y) \/ ~(z = v) \/ dark_shadow_cond_row v y \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1775
   ~dark_shadow_cond_row z x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1776
(!x y z v. ~(x = y) \/ ~(z = v) \/ int_le y v \/ ~int_le x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1777
(!x y z v. ~(x = y) \/ ~(z = v) \/ EVERY y v \/ ~EVERY x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1778
(!x y z v. ~(x = y) \/ ~(z = v) \/ int_lt y v \/ ~int_lt x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1779
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1780
(!x y. int_mul x y = int_mul y x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1781
(!x y z. int_mul x (int_mul y z) = int_mul (int_mul x y) z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1782
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1783
   int_le x y \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1784
   ~int_le (int_mul (int_of_num z) x) (int_mul (int_of_num z) y) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1785
   ~(0 < z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1786
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1787
   ~int_le x y \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1788
   int_le (int_mul (int_of_num z) x) (int_mul (int_of_num z) y) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1789
   ~(0 < z)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1790
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1791
   evallower (gv6249 x y z) lowers \/ ~(0 < y) \/ ~evallower x lowers \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1792
   ~rshadow_row (y, z) lowers \/ ~dark_shadow_cond_row (y, z) lowers) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1793
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1794
   int_le (int_mul (int_of_num x) (gv6249 y x z)) z \/ ~(0 < x) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1795
   ~evallower y lowers \/ ~rshadow_row (x, z) lowers \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1796
   ~dark_shadow_cond_row (x, z) lowers) /\ 0 < c /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1797
int_le R (int_mul (int_of_num d) x) /\ evallower x lowers /\ 0 < d /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1798
EVERY fst_nzero lowers /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1799
int_le (int_mul (int_of_num c) R) (int_mul (int_of_num d) L) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1800
rshadow_row (c, L) lowers /\ dark_shadow_cond_row (c, L) lowers /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1801
(!x.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1802
   ~int_lt (int_mul (int_of_num d) L)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1803
      (int_mul (int_of_num (c * d))
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1804
         (int_add x (int_of_num (NUMERAL (BIT1 ZERO))))) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1805
   ~int_lt (int_mul (int_of_num (c * d)) x) (int_mul (int_of_num c) R)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1806
int_le (int_mul (int_of_num c) y) L /\ evallower y lowers /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1807
int_le (int_mul (int_of_num (c * d)) y) (int_mul (int_of_num d) L) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1808
int_le (int_mul (int_of_num c) R) (int_mul (int_of_num (c * d)) x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1809
int_lt (int_mul (int_of_num (c * d)) y) (int_mul (int_of_num c) R) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1810
0 < c * d /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1811
int_le (int_mul (int_of_num c) R) (int_mul (int_of_num (c * d)) j) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1812
int_le (int_mul (int_of_num (c * d)) j) (int_mul (int_of_num d) L) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1813
int_le (int_mul (int_mul (int_of_num c) (int_of_num d)) j)
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1814
  (int_mul (int_of_num d) L) /\ ~int_le (int_mul (int_of_num c) j) L ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1815
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1816
{name = "pred_set_1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1817
 comments = ["Small problem that's hard for ordered resolution"],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1818
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1819
(!x y z. ~(x <= y) \/ p z y \/ ~p z x) /\ (!x y. x <= y \/ ~p (a x y) y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1820
(!x y. x <= y \/ p (a x y) x) /\ (!x y z. ~p x (y * z) \/ p x z) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1821
(!x y z. ~p x (y * z) \/ p x y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1822
(!x y z. p x (y * z) \/ ~p x y \/ ~p x z) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1823
b <= c /\ b <= d /\ ~(b <= c * d) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1824
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1825
{name = "pred_set_54_1",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1826
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1827
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1828
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1829
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1830
   x = y \/ ~{x . (EXT_POINT . x . y)} \/ ~{y . (EXT_POINT . x . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1831
(!x y. x = y \/ {x . (EXT_POINT . x . y)} \/ {y . (EXT_POINT . x . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1832
(!x y. x = y \/ ~(x . (EXT_POINT . x . y) = y . (EXT_POINT . x . y))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1833
(!x y. ~{x} \/ ~(x = y) \/ {y}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1834
(!x y z v. ~(x = y) \/ ~(z = v) \/ x . z = y . v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1835
~{existential . (K . falsity)} /\ {existential . (K . truth)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1836
~{universal . (K . falsity)} /\ {universal . (K . truth)} /\ ~{falsity} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1837
{truth} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1838
(!x y z. ~{IN . x . (INSERT . y . z)} \/ x = y \/ {IN . x . z}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1839
(!x y z. {IN . x . (INSERT . y . z)} \/ ~(x = y)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1840
(!x y z. {IN . x . (INSERT . y . z)} \/ ~{IN . x . z}) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1841
(!x y z. f . x . (f . y . z) = f . y . (f . x . z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1842
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1843
   ITSET . f . (INSERT . x . y) . z =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1844
   ITSET . f . (DELETE . y . x) . (f . x . z) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1845
   ~{less_than . (CARD . y) . v} \/ ~{FINITE . y}) /\ v = CARD . s /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1846
{FINITE . s} /\ REST . (INSERT . x . s) = t /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1847
CHOICE . (INSERT . x . s) = y /\ ~{IN . y . t} /\ ~{IN . x . s} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1848
INSERT . x . s = INSERT . y . t /\ ~(x = y) /\ ~{IN . x . t} ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1849
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1850
{name = "prob_44",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1851
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1852
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1853
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1854
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1855
   x = y \/ ~{x . (EXT_POINT . x . y)} \/ ~{y . (EXT_POINT . x . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1856
(!x y. x = y \/ {x . (EXT_POINT . x . y)} \/ {y . (EXT_POINT . x . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1857
(!x y. x = y \/ ~(x . (EXT_POINT . x . y) = y . (EXT_POINT . x . y))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1858
(!x y. ~{x} \/ ~(x = y) \/ {y}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1859
(!x y z v. ~(x = y) \/ ~(z = v) \/ x . z = y . v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1860
~{existential . (K . falsity)} /\ {existential . (K . truth)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1861
~{universal . (K . falsity)} /\ {universal . (K . truth)} /\ ~{falsity} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1862
{truth} ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1863
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1864
   ~{IN . x . (prefix_set . x')} \/ ~{IN . x . (prefix_set . (x))} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1865
   ~{IN . y . c} \/ ~{IN . (gv24939 . y) . (prefix_set . (x))} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1866
   ~{IN . (gv24939 . y) . (prefix_set . y)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1867
   ~{IN . (gv24940 . z) . (prefix_set . z)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1868
   ~{IN . (gv24940 . z) . (prefix_set . x')} \/ ~{IN . z . c}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1869
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1870
   ~{IN . x . (prefix_set . x')} \/ ~{IN . x . (prefix_set . (x))} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1871
   ~{IN . y . c} \/ {IN . (gv24939 . y) . (prefix_set . (x))} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1872
   {IN . (gv24939 . y) . (prefix_set . y)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1873
   ~{IN . (gv24940 . z) . (prefix_set . z)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1874
   ~{IN . (gv24940 . z) . (prefix_set . x')} \/ ~{IN . z . c}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1875
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1876
   ~{IN . x . (prefix_set . x')} \/ ~{IN . x . (prefix_set . (x))} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1877
   ~{IN . y . c} \/ {IN . (gv24939 . y) . (prefix_set . (x))} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1878
   {IN . (gv24939 . y) . (prefix_set . y)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1879
   {IN . (gv24940 . z) . (prefix_set . z)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1880
   {IN . (gv24940 . z) . (prefix_set . x')} \/ ~{IN . z . c}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1881
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1882
   ~{IN . x . (prefix_set . x')} \/ ~{IN . x . (prefix_set . (x))} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1883
   ~{IN . y . c} \/ ~{IN . (gv24939 . y) . (prefix_set . (x))} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1884
   ~{IN . (gv24939 . y) . (prefix_set . y)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1885
   {IN . (gv24940 . z) . (prefix_set . z)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1886
   {IN . (gv24940 . z) . (prefix_set . x')} \/ ~{IN . z . c}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1887
{IN . x' . c} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1888
{IN . (PREIMAGE . ((o) . SND . f) . s) . (events . bern)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1889
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1890
   f . x =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1891
   pair . (FST . (f . (prefix_seq . y))) . (sdrop . (LENGTH . y) . x) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1892
   ~{IN . y . c} \/ ~{IN . x . (prefix_set . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1893
{IN . ((o) . SND . f) .
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1894
 (measurable . (events . bern) . (events . bern))} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1895
{countable . (range . ((o) . FST . f))} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1896
{IN . ((o) . FST . f) . (measurable . (events . bern) . UNIV)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1897
{prefix_cover . c} /\ {IN . s . (events . bern)} /\ {IN . x . c} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1898
({IN . x'' . (prefix_set . x)} \/ {IN . x'' . (prefix_set . x')}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1899
(~{IN . x'' . (prefix_set . x)} \/ ~{IN . x'' . (prefix_set . x')}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1900
{IN . x''' . (prefix_set . x)} /\ {IN . x''' . (prefix_set . x')} ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1901
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1902
{name = "prob_53",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1903
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1904
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1905
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1906
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1907
   x = y \/ ~{x . (EXT_POINT . x . y)} \/ ~{y . (EXT_POINT . x . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1908
(!x y. x = y \/ {x . (EXT_POINT . x . y)} \/ {y . (EXT_POINT . x . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1909
(!x y. x = y \/ ~(x . (EXT_POINT . x . y) = y . (EXT_POINT . x . y))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1910
(!x y. ~{x} \/ ~(x = y) \/ {y}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1911
(!x y z v. ~(x = y) \/ ~(z = v) \/ x . z = y . v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1912
~{existential . (K . falsity)} /\ {existential . (K . truth)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1913
~{universal . (K . falsity)} /\ {universal . (K . truth)} /\ ~{falsity} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1914
{truth} ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1915
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1916
   ~{IN . x . (prefix_set . x''')} \/ ~{IN . x . (prefix_set . x'')} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1917
   ~{IN . y . c} \/ ~{IN . (gv39280 . y) . (prefix_set . x'')} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1918
   ~{IN . (gv39280 . y) . (prefix_set . y)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1919
   ~{IN . (gv39280 . z) . (prefix_set . z)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1920
   ~{IN . (gv39280 . z) . (prefix_set . x''')} \/ ~{IN . z . c}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1921
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1922
   ~{IN . x . (prefix_set . x''')} \/ ~{IN . x . (prefix_set . x'')} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1923
   ~{IN . y . c} \/ {IN . (gv39280 . y) . (prefix_set . x'')} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1924
   {IN . (gv39280 . y) . (prefix_set . y)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1925
   ~{IN . (gv39280 . z) . (prefix_set . z)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1926
   ~{IN . (gv39280 . z) . (prefix_set . x''')} \/ ~{IN . z . c}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1927
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1928
   ~{IN . x . (prefix_set . x''')} \/ ~{IN . x . (prefix_set . x'')} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1929
   ~{IN . y . c} \/ {IN . (gv39280 . y) . (prefix_set . x'')} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1930
   {IN . (gv39280 . y) . (prefix_set . y)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1931
   {IN . (gv39280 . z) . (prefix_set . z)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1932
   {IN . (gv39280 . z) . (prefix_set . x''')} \/ ~{IN . z . c}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1933
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1934
   ~{IN . x . (prefix_set . x''')} \/ ~{IN . x . (prefix_set . x'')} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1935
   ~{IN . y . c} \/ ~{IN . (gv39280 . y) . (prefix_set . x'')} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1936
   ~{IN . (gv39280 . y) . (prefix_set . y)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1937
   {IN . (gv39280 . z) . (prefix_set . z)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1938
   {IN . (gv39280 . z) . (prefix_set . x''')} \/ ~{IN . z . c}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1939
{IN . x''' . c} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1940
{IN . (PREIMAGE . ((o) . SND . f) . x') . (events . bern)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1941
{IN . x' . (events . bern)} /\ {prefix_cover . c} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1942
{IN . ((o) . FST . f) . (measurable . (events . bern) . UNIV)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1943
{countable . (range . ((o) . FST . f))} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1944
{IN . ((o) . SND . f) .
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1945
 (measurable . (events . bern) . (events . bern))} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1946
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1947
   f . x =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1948
   pair . (FST . (f . (prefix_seq . y))) . (sdrop . (LENGTH . y) . x) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1949
   ~{IN . y . c} \/ ~{IN . x . (prefix_set . y)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1950
{IN . (PREIMAGE . ((o) . FST . f) . x) . (events . bern)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1951
{IN . x'' . c} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1952
({IN . x'''' . (prefix_set . x'')} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1953
 {IN . x'''' . (prefix_set . x''')}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1954
(~{IN . x'''' . (prefix_set . x'')} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1955
 ~{IN . x'''' . (prefix_set . x''')}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1956
{IN . x''''' . (prefix_set . x'')} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1957
{IN . x''''' . (prefix_set . x''')} ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1958
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1959
{name = "prob_extra_22",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1960
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1961
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1962
~{existential . (K . falsity)} /\ {existential . (K . truth)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1963
~{universal . (K . falsity)} /\ {universal . (K . truth)} /\ ~{falsity} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1964
{truth} ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1965
{P . x} /\ (!x. {real_lte . x . z} \/ ~{P . x}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1966
(!x y z v.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1967
   {real_lt . x . (sup . P)} \/ ~{P . y} \/ ~{real_lt . x . y} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1968
   ~{P . z} \/ ~{real_lte . (gv13960 . v) . v}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1969
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1970
   ~{real_lt . x . (sup . P)} \/ {P . (gv13960 . x)} \/ ~{P . y} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1971
   ~{real_lte . (gv13960 . z) . z}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1972
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1973
   ~{real_lt . x . (sup . P)} \/ {real_lt . x . (gv13960 . x)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1974
   ~{P . y} \/ ~{real_lte . (gv13960 . z) . z}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1975
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1976
   ~{real_lt . x . (sup . P)} \/ {real_lt . x . (gv13960 . x)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1977
   ~{P . y} \/ {P . (gv13960 . z)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1978
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1979
   ~{real_lt . x . (sup . P)} \/ {P . (gv13960 . x)} \/ ~{P . y} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1980
   {P . (gv13960 . z)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1981
(!x y z v.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1982
   {real_lt . x . (sup . P)} \/ ~{P . y} \/ ~{real_lt . x . y} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1983
   ~{P . z} \/ {P . (gv13960 . v)}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1984
(!x.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1985
   {real_lt . (gv13925 . x) . (gv13926 . x)} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1986
   {real_lt . (gv13925 . x) . x}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1987
(!x. {P . (gv13926 . x)} \/ {real_lt . (gv13925 . x) . x}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1988
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1989
   ~{real_lt . (gv13925 . x) . y} \/ ~{P . y} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1990
   ~{real_lt . (gv13925 . x) . x}) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1991
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1992
{name = "root2_2",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1993
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1994
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1995
(!x y z v. ~(x = y) \/ ~(z = v) \/ x * z = y * v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1996
(!x y. ~(x = y) \/ NUMERAL x = NUMERAL y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1997
(!x y. ~(x = y) \/ BIT2 x = BIT2 y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1998
(!x y z v. ~(x = y) \/ ~(z = v) \/ EXP x z = EXP y v) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  1999
(!x y z v. ~(x = y) \/ ~(z = v) \/ y < v \/ ~(x < z)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2000
(!x y. ~(x = y) \/ EVEN y \/ ~EVEN x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2001
(!x y z. ~(x = y) \/ ~(x = z) \/ y = z) /\ (!x. x = x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2002
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2003
   ~(EXP (NUMERAL (BIT2 ZERO) * x) (NUMERAL (BIT2 ZERO)) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2004
     NUMERAL (BIT2 ZERO) * EXP y (NUMERAL (BIT2 ZERO))) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2005
   NUMERAL (BIT2 ZERO) * EXP x (NUMERAL (BIT2 ZERO)) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2006
   EXP y (NUMERAL (BIT2 ZERO))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2007
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2008
   EXP (NUMERAL (BIT2 ZERO) * x) (NUMERAL (BIT2 ZERO)) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2009
   NUMERAL (BIT2 ZERO) * EXP y (NUMERAL (BIT2 ZERO)) \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2010
   ~(NUMERAL (BIT2 ZERO) * EXP x (NUMERAL (BIT2 ZERO)) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2011
     EXP y (NUMERAL (BIT2 ZERO)))) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2012
(!x. ~EVEN x \/ x = NUMERAL (BIT2 ZERO) * gv4671 x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2013
(!x y. EVEN x \/ ~(x = NUMERAL (BIT2 ZERO) * y)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2014
(!x y. ~EVEN (x * y) \/ EVEN x \/ EVEN y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2015
(!x y. EVEN (x * y) \/ ~EVEN x) /\ (!x y. EVEN (x * y) \/ ~EVEN y) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2016
(!x. EXP x (NUMERAL (BIT2 ZERO)) = x * x) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2017
(!x. EVEN (NUMERAL (BIT2 ZERO) * x)) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2018
EXP (NUMERAL (BIT2 ZERO) * k) (NUMERAL (BIT2 ZERO)) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2019
NUMERAL (BIT2 ZERO) * EXP n (NUMERAL (BIT2 ZERO)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2020
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2021
   ~(EXP x (NUMERAL (BIT2 ZERO)) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2022
     NUMERAL (BIT2 ZERO) * EXP y (NUMERAL (BIT2 ZERO))) \/ x = 0 \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2023
   ~(x < NUMERAL (BIT2 ZERO) * k)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2024
(!x y.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2025
   ~(EXP x (NUMERAL (BIT2 ZERO)) =
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2026
     NUMERAL (BIT2 ZERO) * EXP y (NUMERAL (BIT2 ZERO))) \/ y = 0 \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2027
   ~(x < NUMERAL (BIT2 ZERO) * k)) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2028
(!x. ~(n = NUMERAL (BIT2 ZERO) * x)) ==> F`},
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2029
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2030
{name = "TermRewriting_13",
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2031
 comments = [],
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2032
 goal = `
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2033
~{existential . (K . falsity)} /\ {existential . (K . truth)} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2034
~{universal . (K . falsity)} /\ {universal . (K . truth)} /\ ~{falsity} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2035
{truth} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2036
(!x y z v.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2037
   ~{RTC . x . y . z} \/ {RTC . x . v . z} \/ ~{RTC . x . v . y}) ==>
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2038
{WCR . R} /\ {SN . R} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2039
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2040
   ~{RTC . R . x . y} \/ ~{RTC . R . x . z} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2041
   {RTC . R . y . (gv1300 . x . z . y)} \/ ~{TC . R . (x) . x}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2042
(!x y z.
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2043
   ~{RTC . R . x . y} \/ ~{RTC . R . x . z} \/
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2044
   {RTC . R . z . (gv1300 . x . z . y)} \/ ~{TC . R . (x) . x}) /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2045
{RTC . R . x . y} /\ {RTC . R . x . z} /\ {R . x . y1} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2046
{RTC . R . y1 . y} /\ {R . x . z1} /\ {RTC . R . z1 . z} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2047
{RTC . R . y1 . x0} /\ {RTC . R . z1 . x0} /\ {TC . R . x . y1} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2048
{TC . R . x . z1} /\ {RTC . R . y . y2} /\ {RTC . R . x0 . y2} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2049
{RTC . R . z . z2} /\ {RTC . R . x0 . z2} /\ {TC . R . x . x0} /\
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2050
(!x. ~{RTC . R . y . x} \/ ~{RTC . R . z . x}) ==> F`}
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2051
6f9c9899f99f new version of the Metis files
blanchet
parents:
diff changeset
  2052
];