TPTP Problem File: MGT072+1.p

View Solutions - Solve Problem

%--------------------------------------------------------------------------
% File     : MGT072+1 : TPTP v9.3.1. Released v9.3.0.
% Domain   : Management
% Problem  : axis_conflict hypothesis set is self-consistent 
% Version  : Especial.
% English  : The ordering n0<n5<n10<n15 with axis_conflict(n0,n5,n10,n15) 
%            is satisfiable - the hypotheses of NFV001 do not self-
%            contradict.

% Refs     : [MC+26] Mustafa et al. (2026), Axis Decomposition for ODRL
% Source   : [MC+26]
% Names    : NFV001-SAT+1.p [MC+26]

% Status   : Satisfiable
% Rating   : 0.33 v9.3.0
% Syntax   : Number of formulae    :   41 (  12 unt;   0 def)
%            Number of atoms       :  109 (  24 equ)
%            Maximal formula atoms :    7 (   2 avg)
%            Number of connectives :   75 (   7   ~;  10   |;  29   &)
%                                         (  17 <=>;  12  =>;   0  <=;   0 <~>)
%            Maximal formula depth :   13 (   5 avg)
%            Maximal term depth    :    2 (   1 avg)
%            Number of predicates  :   15 (  14 usr;   0 prp; 1-9 aty)
%            Number of functors    :    8 (   8 usr;   7 con; 0-2 aty)
%            Number of variables   :  102 ( 100   !;   2   ?)
% SPC      : FOF_SAT_RFO_SEQ

% Comments : SAT companion for NFV001+1.p.
%          : Confirms axis_conflict hypothesis is consistent
%--------------------------------------------------------------------------
include('Axioms/MGT002+0.ax').
include('Axioms/MGT002+2.ax').
include('Axioms/MGT002+6.ax').
%--------------------------------------------------------------------------
fof(order_0_5,axiom,
    less(n0,n5) ).

fof(order_5_10,axiom,
    less(n5,n10) ).

fof(order_10_15,axiom,
    less(n10,n15) ).

fof(conflict_hyp,axiom,
    axis_conflict(n0,n5,n10,n15) ).

%----No conjecture - model finder confirms consistency.
fof(sat_witness,axiom,
    less(n0,n15) ).

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