TPTP Problem File: LCL181-2.p

View Solutions - Solve Problem

%--------------------------------------------------------------------------
% File     : LCL181-2 : TPTP v8.2.0. Released v1.0.0.
% Domain   : Logic Calculi (Propositional)
% Problem  : Principia Mathematica 2.15
% Version  : [Pel86] axioms.
% English  : Judged by [SRM73] to be the 'hardest' of the first 52 theorems
%            of [WR27].

% Refs     : [WR27]  Whitehead & Russell (1927), Principia Mathematica
%          : [SRM73] Siklossy et al. (1973), Breadth First Search: Some Sur
%          : [Pel86] Pelletier (1986), Seventy-five Problems for Testing Au
% Source   : [Pel86]
% Names    : Pelletier 4 [Pel86]

% Status   : Unsatisfiable
% Rating   : 0.00 v4.1.0, 0.20 v3.7.0, 0.25 v3.5.0, 0.00 v3.3.0, 0.33 v3.2.0, 0.00 v2.0.0
% Syntax   : Number of clauses     :    4 (   2 unt;   1 nHn;   4 RR)
%            Number of literals    :    6 (   0 equ;   4 neg)
%            Maximal clause size   :    2 (   1 avg)
%            Maximal term depth    :    0 (   0 avg)
%            Number of predicates  :    2 (   2 usr;   2 prp; 0-0 aty)
%            Number of functors    :    0 (   0 usr;   0 con; --- aty)
%            Number of variables   :    0 (   0 sgn)
% SPC      : CNF_UNS_PRP

% Comments :
% Bugfixes : v1.1.1 - Renamed from SYN042-1.
%--------------------------------------------------------------------------
cnf(clause_1,negated_conjecture,
    ( p
    | q ) ).

cnf(clause_2,negated_conjecture,
    ( ~ q
    | ~ p ) ).

cnf(clause_3,negated_conjecture,
    ~ q ).

cnf(clause_4,negated_conjecture,
    ~ p ).

%--------------------------------------------------------------------------