TPTP Problem File: GRA120-1.p

View Solutions - Solve Problem

%------------------------------------------------------------------------------
% File     : GRA120-1 : TPTP v9.3.1. Released v9.3.0.
% Domain   : Graph Theory
% Problem  : Ramsey number r(3,4) = 9
% Version  : Especial.
% English  : The Ramsey property that if an undirected graph has at least
%            R(m,n) vertices, then it must have either an m-clique or an
%            n-anticlique.

% Refs     : [Ram30] Ramsey (1930), On a Problem of Formal Logic
%          : [Kal24] Kalizyk (2024), Email to G. Sutcliffe
% Source   : [Kal24]
% Names    : r_3_4_9 [Kal24]

% Status   : Unsatisfiable
% Rating   : 0.25 v9.3.0
% Syntax   : Number of clauses     :   39 (  36 unt;   2 nHn;  38 RR)
%            Number of literals    :   56 (  45 equ;  40 neg)
%            Maximal clause size   :   12 (   1 avg)
%            Maximal term depth    :    1 (   1 avg)
%            Number of predicates  :    2 (   1 usr;   0 prp; 2-2 aty)
%            Number of functors    :    9 (   9 usr;   9 con; 0-0 aty)
%            Number of variables   :    9 (   0 sgn)
% SPC      : CNF_UNS_EPR_SEQ_NHN

% Comments :
%------------------------------------------------------------------------------
cnf(rsym,axiom,
    ( ~ r(X,Y)
    | r(Y,X) ) ).

cnf(rno3cl,axiom,
    ( X = Y
    | X = Z
    | Y = Z
    | ~ r(X,Y)
    | ~ r(X,Z)
    | ~ r(Y,Z) ) ).

cnf(rno4acl,axiom,
    ( X = Y
    | X = Z
    | Y = Z
    | X = W
    | Y = W
    | Z = W
    | r(X,Y)
    | r(X,Z)
    | r(Y,Z)
    | r(X,W)
    | r(Y,W)
    | r(Z,W) ) ).

cnf(v0nv1,axiom,
    v0 != v1 ).

cnf(v0nv2,axiom,
    v0 != v2 ).

cnf(v1nv2,axiom,
    v1 != v2 ).

cnf(v0nv3,axiom,
    v0 != v3 ).

cnf(v1nv3,axiom,
    v1 != v3 ).

cnf(v2nv3,axiom,
    v2 != v3 ).

cnf(v0nv4,axiom,
    v0 != v4 ).

cnf(v1nv4,axiom,
    v1 != v4 ).

cnf(v2nv4,axiom,
    v2 != v4 ).

cnf(v3nv4,axiom,
    v3 != v4 ).

cnf(v0nv5,axiom,
    v0 != v5 ).

cnf(v1nv5,axiom,
    v1 != v5 ).

cnf(v2nv5,axiom,
    v2 != v5 ).

cnf(v3nv5,axiom,
    v3 != v5 ).

cnf(v4nv5,axiom,
    v4 != v5 ).

cnf(v0nv6,axiom,
    v0 != v6 ).

cnf(v1nv6,axiom,
    v1 != v6 ).

cnf(v2nv6,axiom,
    v2 != v6 ).

cnf(v3nv6,axiom,
    v3 != v6 ).

cnf(v4nv6,axiom,
    v4 != v6 ).

cnf(v5nv6,axiom,
    v5 != v6 ).

cnf(v0nv7,axiom,
    v0 != v7 ).

cnf(v1nv7,axiom,
    v1 != v7 ).

cnf(v2nv7,axiom,
    v2 != v7 ).

cnf(v3nv7,axiom,
    v3 != v7 ).

cnf(v4nv7,axiom,
    v4 != v7 ).

cnf(v5nv7,axiom,
    v5 != v7 ).

cnf(v6nv7,axiom,
    v6 != v7 ).

cnf(v0nv8,axiom,
    v0 != v8 ).

cnf(v1nv8,axiom,
    v1 != v8 ).

cnf(v2nv8,axiom,
    v2 != v8 ).

cnf(v3nv8,axiom,
    v3 != v8 ).

cnf(v4nv8,axiom,
    v4 != v8 ).

cnf(v5nv8,axiom,
    v5 != v8 ).

cnf(v6nv8,axiom,
    v6 != v8 ).

cnf(v7nv8,axiom,
    v7 != v8 ).

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