TPTP Problem File: NUM002-1.p

View Solutions - Solve Problem

%--------------------------------------------------------------------------
% File     : NUM002-1 : TPTP v8.2.0. Released v1.0.0.
% Domain   : Number Theory
% Problem  : (X - Y) + Z = X + (Z - Y)
% Version  : [LS74] (equality) axioms : Especial.
% English  :

% Refs     : [Cha70] Chang (1970), The Unit Proof and the Input Proof in Th
%          : [LS74]  Lawrence & Starkey (1974), Experimental Tests of Resol
%          : [WM76]  Wilson & Minker (1976), Resolution, Refinements, and S
% Source   : [SPRFN]
% Names    : Example 10b [Cha70]
%          : ls29 [LS74]
%          : Problem 29 [LS74]
%          : ls29 [WM76]

% Status   : Unsatisfiable
% Rating   : 0.00 v5.3.0, 0.05 v5.2.0, 0.08 v5.1.0, 0.06 v5.0.0, 0.00 v2.2.1, 0.33 v2.1.0, 0.17 v2.0.0
% Syntax   : Number of clauses     :   13 (   8 unt;   0 nHn;   6 RR)
%            Number of literals    :   23 (   0 equ;  11 neg)
%            Maximal clause size   :    3 (   1 avg)
%            Maximal term depth    :    3 (   1 avg)
%            Number of predicates  :    1 (   1 usr;   0 prp; 2-2 aty)
%            Number of functors    :    5 (   5 usr;   3 con; 0-2 aty)
%            Number of variables   :   35 (   0 sgn)
% SPC      : CNF_UNS_RFO_NEQ_HRN

% Comments : The axioms are OK, even though symmetry and some substitution
%            axioms are missing.
%--------------------------------------------------------------------------
%----Include additive algebra axioms
include('Axioms/NUM002-0.ax').
%--------------------------------------------------------------------------
cnf(prove_equation,negated_conjecture,
    ~ equalish(add(subtract(a,b),c),add(a,subtract(c,b))) ).

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