TPTP Problem File: SWX186-1.p

View Solutions - Solve Problem

%------------------------------------------------------------------------------
% File     : SWX186-1 : TPTP v9.3.0. Released v9.3.0.
% Domain   : Software Verification
% Problem  : A faulty property of the function drop
% Version  : Especial.
% English  :

% Refs     : [CST26] Claessen et al. (2026), Email to Geoff Sutcliffe
% Source   : [CST26]
% Names    : Definitions_prop_drop_inj2.p [CST26]

% Status   : Unsatisfiable
% Rating   : 0.00 v9.3.0
% Syntax   : Number of clauses     :   19 (  17 unt;   0 nHn;   3 RR)
%            Number of literals    :   21 (  21 equ;   3 neg)
%            Maximal clause size   :    2 (   1 avg)
%            Maximal term depth    :    4 (   1 avg)
%            Number of predicates  :    1 (   0 usr;   0 prp; 2-2 aty)
%            Number of functors    :   12 (  12 usr;   4 con; 0-3 aty)
%            Number of variables   :   32 (  14 sgn)
% SPC      : CNF_UNS_RFO_PEQ_NUE

% Comments :
%------------------------------------------------------------------------------
cnf(axiom,axiom,
    impl(btrue,Q) = Q ).

cnf(axiom_001,axiom,
    impl(bfalse,Q) = btrue ).

cnf(axiom_002,axiom,
    drop(s(Z),nil) = nil ).

cnf(axiom_003,axiom,
    drop(s(Z),cons(X2,X3)) = drop(Z,X3) ).

cnf(axiom_004,axiom,
    drop(z,Y) = Y ).

cnf(axiom_005,axiom,
    prop_drop_inj2(X,Y,Z) = impl(eq(drop(X,Y),drop(X,Z)),eq(Y,Z)) ).

cnf(axiom_006,axiom,
    eq3(bfalse,btrue) = bfalse ).

cnf(axiom_007,axiom,
    eq3(btrue,bfalse) = bfalse ).

cnf(axiom_008,axiom,
    eq2(s(X),s(Y)) = eq2(X,Y) ).

cnf(axiom_009,axiom,
    eq2(s(X),z) = bfalse ).

cnf(axiom_010,axiom,
    eq2(z,s(X)) = bfalse ).

cnf(axiom_011,axiom,
    eq(X,X) = btrue ).

cnf(axiom_012,axiom,
    eq2(X,X) = btrue ).

cnf(axiom_013,axiom,
    eq3(X,X) = btrue ).

cnf(axiom_014,axiom,
    ( eq2(X,Z) != bfalse
    | eq(cons(X,Y),cons(Z,X2)) = bfalse ) ).

cnf(axiom_015,axiom,
    ( eq2(X,Z) != btrue
    | eq(cons(X,Y),cons(Z,X2)) = eq(Y,X2) ) ).

cnf(axiom_016,axiom,
    eq(nil,cons(X,Y)) = bfalse ).

cnf(axiom_017,axiom,
    eq(cons(X,Y),nil) = bfalse ).

cnf(goal,negated_conjecture,
    eq3(prop_drop_inj2(X,Y,Z),bfalse) != btrue ).

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