TPTP Problem File: SWX206-1.p
View Solutions
- Solve Problem
%------------------------------------------------------------------------------
% File : SWX206-1 : TPTP v9.3.0. Released v9.3.0.
% Domain : Software Verification
% Problem : Faulty property about addition of natural numbers
% Version : Especial.
% English :
% Refs : [CST26] Claessen et al. (2026), Email to Geoff Sutcliffe
% Source : [CST26]
% Names : Nat_plus_not_idem.p [CST26]
% Status : Unsatisfiable
% Rating : 0.17 v9.3.0
% Syntax : Number of clauses : 13 ( 13 unt; 0 nHn; 3 RR)
% Number of literals : 13 ( 13 equ; 1 neg)
% Maximal clause size : 1 ( 1 avg)
% Maximal term depth : 4 ( 2 avg)
% Number of predicates : 1 ( 0 usr; 0 prp; 2-2 aty)
% Number of functors : 9 ( 9 usr; 3 con; 0-2 aty)
% Number of variables : 13 ( 4 sgn)
% SPC : CNF_UNS_RFO_PEQ_UEQ
% Comments :
%------------------------------------------------------------------------------
cnf(axiom,axiom,
impl(btrue,Q) = Q ).
cnf(axiom_001,axiom,
impl(bfalse,Q) = btrue ).
cnf(axiom_002,axiom,
x2(z,Y) = Y ).
cnf(axiom_003,axiom,
x2(s(N),Y) = s(x2(N,Y)) ).
cnf(axiom_004,axiom,
plus_not_idem(X) = impl(eq(x2(X,X),X),eq2(btrue,bfalse)) ).
cnf(axiom_005,axiom,
eq2(bfalse,btrue) = bfalse ).
cnf(axiom_006,axiom,
eq2(btrue,bfalse) = bfalse ).
cnf(axiom_007,axiom,
eq(s(X),s(Y)) = eq(X,Y) ).
cnf(axiom_008,axiom,
eq(z,s(X)) = bfalse ).
cnf(axiom_009,axiom,
eq(s(X),z) = bfalse ).
cnf(axiom_010,axiom,
eq(X,X) = btrue ).
cnf(axiom_011,axiom,
eq2(X,X) = btrue ).
cnf(goal,negated_conjecture,
eq2(plus_not_idem(X),bfalse) != btrue ).
%------------------------------------------------------------------------------