TPTP Problem File: MGT098+1.p

View Solutions - Solve Problem

%--------------------------------------------------------------------------
% File     : MGT098+1 : TPTP v9.3.1. Bugfixed v9.3.1.
% Domain   : Management
% Problem  : claim shape_point in_closed(v400,v600,v600)
% Version  : Especial.
% English  : shape_point: in_closed(X,V,V) iff X=V.
%            v400 != v600 so in_closed(v400,v600,v600) is false.

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

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

% Comments : CSA - wrong verdict claim, countermodel exists.
%          : Flip of corresponding THM problem.
% Bugfixes : v9.3.1 - $distinct expanded to inequalities.
%--------------------------------------------------------------------------
include('Axioms/MGT002+0.ax').
include('Axioms/MGT002+2.ax').
include('Axioms/MGT002+6.ax').
%--------------------------------------------------------------------------
%----Named constants and ordering 
fof(val_v400,axiom,
    val(v400) ).

fof(val_v600,axiom,
    val(v600) ).

fof(ord_v400_v600,axiom,
    less(v400,v600) ).

fof(distinct,axiom,
    v400 != v600 ).

%----Conjecture (WRONG - countermodel exists) 
fof(odrl736,conjecture,
    in_closed(v400,v600,v600) ).

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