TPTP Problem File: MED007+1.p

View Solutions - Solve Problem

%------------------------------------------------------------------------------
% File     : MED007+1 : TPTP v8.2.0. Released v3.2.0.
% Domain   : Medicine
% Problem  : Unsuccessful s1-qilt27 treatment next step
% Version  : [HLB05] axioms : Especial.
% English  : After unsuccessful treatment with single oral anti-diabetic for
%            patients with QI less than 27 medical management moves to next
%            step.

% Refs     : [HLB05] Hommersom et al. (2005), Automated Theorem Proving for
%          : [Hom06] Hommersom (2006), Email to G. Sutcliffe
% Source   : [Hom06]
% Names    :

% Status   : Theorem
% Rating   : 0.00 v8.1.0, 0.07 v7.5.0, 0.24 v7.4.0, 0.06 v7.3.0, 0.14 v7.2.0, 0.17 v7.1.0, 0.00 v7.0.0, 0.07 v6.3.0, 0.00 v6.2.0, 0.18 v6.1.0, 0.32 v6.0.0, 0.25 v5.5.0, 0.50 v5.4.0, 0.48 v5.3.0, 0.52 v5.2.0, 0.29 v5.0.0, 0.35 v4.1.0, 0.44 v4.0.1, 0.42 v4.0.0, 0.45 v3.7.0, 0.33 v3.5.0, 0.25 v3.4.0, 0.33 v3.3.0, 0.67 v3.2.0
% Syntax   : Number of formulae    :   41 (   1 unt;   0 def)
%            Number of atoms       :  201 (   0 equ)
%            Maximal formula atoms :   30 (   4 avg)
%            Number of connectives :  244 (  84   ~;  34   |;  51   &)
%                                         (   0 <=>;  75  =>;   0  <=;   0 <~>)
%            Maximal formula depth :   12 (   6 avg)
%            Maximal term depth    :    1 (   1 avg)
%            Number of predicates  :   20 (  20 usr;   0 prp; 1-2 aty)
%            Number of functors    :    1 (   1 usr;   1 con; 0-0 aty)
%            Number of variables   :   96 (  92   !;   4   ?)
% SPC      : FOF_THM_RFO_NEQ

% Comments :
%------------------------------------------------------------------------------
include('Axioms/MED001+0.ax').
include('Axioms/MED001+1.ax').
%------------------------------------------------------------------------------
fof(transs1s2_qilt27,conjecture,
    ( ( s1(n0)
      & ! [X0] :
          ( gt(n0,X0)
         => conditionhyper(X0) )
      & ~ bcapacitysn(n0)
      & qilt27(n0) )
   => ? [X0] :
        ( ~ gt(n0,X0)
        & s2(X0)
        & ! [X1] :
            ( gt(X0,X1)
           => conditionhyper(X1) )
        & ( bcapacityne(X0)
          | bcapacityex(X0) ) ) ) ).

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