TSTP Solution File: HEN007-4 by LEO-II---1.7.0

View Problem - Process Solution

%------------------------------------------------------------------------------
% File     : LEO-II---1.7.0
% Problem  : HEN007-4 : TPTP v8.1.0. Released v1.0.0.
% Transfm  : none
% Format   : tptp
% Command  : leo --timeout %d --proofoutput 1 --foatp e --atp e=./eprover %s

% Computer : n021.cluster.edu
% Model    : x86_64 x86_64
% CPU      : Intel(R) Xeon(R) CPU E5-2620 v4 2.10GHz
% Memory   : 8042.1875MB
% OS       : Linux 3.10.0-693.el7.x86_64
% CPULimit : 300s
% WCLimit  : 600s
% DateTime : Sat Jul 16 12:57:22 EDT 2022

% Result   : Unsatisfiable 25.31s 25.51s
% Output   : CNFRefutation 25.31s
% Verified : 
% SZS Type : Refutation
%            Derivation depth      :   12
%            Number of leaves      :   23
% Syntax   : Number of formulae    :   99 (  72 unt;   7 typ;   0 def)
%            Number of atoms       :  343 ( 133 equ;   0 cnn)
%            Maximal formula atoms :    3 (   3 avg)
%            Number of connectives :  513 (  56   ~;  63   |;   0   &; 394   @)
%                                         (   0 <=>;   0  =>;   0  <=;   0 <~>)
%            Maximal formula depth :   10 (   3 avg)
%            Number of types       :    2 (   0 usr)
%            Number of type conns  :    4 (   4   >;   0   *;   0   +;   0  <<)
%            Number of symbols     :   10 (   7 usr;   7 con; 0-2 aty)
%            Number of variables   :  153 (   0   ^ 153   !;   0   ?; 153   :)

% Comments : 
%------------------------------------------------------------------------------
thf(tp_a,type,
    a: $i ).

thf(tp_b,type,
    b: $i ).

thf(tp_c,type,
    c: $i ).

thf(tp_divide,type,
    divide: $i > $i > $i ).

thf(tp_identity,type,
    identity: $i ).

thf(tp_less_equal,type,
    less_equal: $i > $i > $o ).

thf(tp_zero,type,
    zero: $i ).

thf(1,axiom,
    ! [X: $i,Y: $i,Z: $i] :
      ( ~ ( less_equal @ ( divide @ X @ Y ) @ Z )
      | ( less_equal @ ( divide @ X @ Z ) @ Y ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',property_of_divide1) ).

thf(2,axiom,
    ! [X: $i,Y: $i,Z: $i] :
      ( ~ ( less_equal @ X @ Y )
      | ~ ( less_equal @ Y @ Z )
      | ( less_equal @ X @ Z ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',transitivity_of_less_equal) ).

thf(3,axiom,
    ( ( divide @ a @ zero )
    = a ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',x_divide_zero_is_x) ).

thf(4,axiom,
    ! [X: $i] :
      ( ( divide @ X @ X )
      = zero ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',x_divide_x_is_zero) ).

thf(5,axiom,
    ! [X: $i] :
      ( ( divide @ zero @ X )
      = zero ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',zero_divide_anything_is_zero) ).

thf(6,axiom,
    ! [X: $i] :
      ( ( divide @ X @ identity )
      = zero ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',everything_divide_id_is_zero) ).

thf(7,axiom,
    ! [X: $i] : ( less_equal @ X @ identity ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',identity_is_largest) ).

thf(8,axiom,
    ! [X: $i,Y: $i] :
      ( ~ ( less_equal @ X @ Y )
      | ~ ( less_equal @ Y @ X )
      | ( X = Y ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',less_equal_and_equal) ).

thf(9,axiom,
    ! [X: $i] : ( less_equal @ zero @ X ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',zero_is_smallest) ).

thf(10,axiom,
    ! [X: $i,Z: $i,Y: $i] : ( less_equal @ ( divide @ ( divide @ X @ Z ) @ ( divide @ Y @ Z ) ) @ ( divide @ ( divide @ X @ Y ) @ Z ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',quotient_property) ).

thf(11,axiom,
    ! [X: $i,Y: $i] : ( less_equal @ ( divide @ X @ Y ) @ X ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',quotient_smaller_than_numerator) ).

thf(12,axiom,
    ! [X: $i,Y: $i] :
      ( ( ( divide @ X @ Y )
       != zero )
      | ( less_equal @ X @ Y ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',quotient_less_equal2) ).

thf(13,axiom,
    ! [X: $i,Y: $i] :
      ( ~ ( less_equal @ X @ Y )
      | ( ( divide @ X @ Y )
        = zero ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',quotient_less_equal1) ).

thf(14,axiom,
    less_equal @ a @ b,
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',a_LE_b) ).

thf(15,conjecture,
    $false,
    file('no conjecture given, we try to refute the axioms',dummy_conjecture) ).

thf(16,negated_conjecture,
    $false = $false,
    inference(negate_conjecture,[status(cth)],[15]) ).

thf(17,negated_conjecture,
    ~ ( less_equal @ ( divide @ c @ b ) @ ( divide @ c @ a ) ),
    file('/export/starexec/sandbox/benchmark/theBenchmark.p',prove_c_divide_b_LE_c_divide_a) ).

thf(18,plain,
    $false = $false,
    inference(unfold_def,[status(thm)],[16]) ).

thf(19,plain,
    ( ( ! [X: $i,Y: $i,Z: $i] :
          ( ~ ( less_equal @ ( divide @ X @ Y ) @ Z )
          | ( less_equal @ ( divide @ X @ Z ) @ Y ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[1]) ).

thf(20,plain,
    ( ( ! [X: $i,Y: $i,Z: $i] :
          ( ~ ( less_equal @ X @ Y )
          | ~ ( less_equal @ Y @ Z )
          | ( less_equal @ X @ Z ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[2]) ).

thf(21,plain,
    ( ( ( divide @ a @ zero )
      = a )
    = $true ),
    inference(unfold_def,[status(thm)],[3]) ).

thf(22,plain,
    ( ( ! [X: $i] :
          ( ( divide @ X @ X )
          = zero ) )
    = $true ),
    inference(unfold_def,[status(thm)],[4]) ).

thf(23,plain,
    ( ( ! [X: $i] :
          ( ( divide @ zero @ X )
          = zero ) )
    = $true ),
    inference(unfold_def,[status(thm)],[5]) ).

thf(24,plain,
    ( ( ! [X: $i] :
          ( ( divide @ X @ identity )
          = zero ) )
    = $true ),
    inference(unfold_def,[status(thm)],[6]) ).

thf(25,plain,
    ( ( ! [X: $i] : ( less_equal @ X @ identity ) )
    = $true ),
    inference(unfold_def,[status(thm)],[7]) ).

thf(26,plain,
    ( ( ! [X: $i,Y: $i] :
          ( ~ ( less_equal @ X @ Y )
          | ~ ( less_equal @ Y @ X )
          | ( X = Y ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[8]) ).

thf(27,plain,
    ( ( ! [X: $i] : ( less_equal @ zero @ X ) )
    = $true ),
    inference(unfold_def,[status(thm)],[9]) ).

thf(28,plain,
    ( ( ! [X: $i,Z: $i,Y: $i] : ( less_equal @ ( divide @ ( divide @ X @ Z ) @ ( divide @ Y @ Z ) ) @ ( divide @ ( divide @ X @ Y ) @ Z ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[10]) ).

thf(29,plain,
    ( ( ! [X: $i,Y: $i] : ( less_equal @ ( divide @ X @ Y ) @ X ) )
    = $true ),
    inference(unfold_def,[status(thm)],[11]) ).

thf(30,plain,
    ( ( ! [X: $i,Y: $i] :
          ( ( ( divide @ X @ Y )
           != zero )
          | ( less_equal @ X @ Y ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[12]) ).

thf(31,plain,
    ( ( ! [X: $i,Y: $i] :
          ( ~ ( less_equal @ X @ Y )
          | ( ( divide @ X @ Y )
            = zero ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[13]) ).

thf(32,plain,
    ( ( less_equal @ a @ b )
    = $true ),
    inference(unfold_def,[status(thm)],[14]) ).

thf(33,plain,
    ( ( ~ ( less_equal @ ( divide @ c @ b ) @ ( divide @ c @ a ) ) )
    = $true ),
    inference(unfold_def,[status(thm)],[17]) ).

thf(34,plain,
    ( ( ~ $false )
    = $true ),
    inference(polarity_switch,[status(thm)],[18]) ).

thf(35,plain,
    ( ( ! [X: $i,Y: $i] :
          ( ~ ( less_equal @ X @ Y )
          | ! [Z: $i] :
              ( ~ ( less_equal @ Y @ Z )
              | ( less_equal @ X @ Z ) ) ) )
    = $true ),
    inference(extcnf_combined,[status(esa)],[20]) ).

thf(36,plain,
    ( ( ! [X: $i,Y: $i] :
          ( ( ( divide @ X @ Y )
           != zero )
          | ( less_equal @ X @ Y ) ) )
    = $true ),
    inference(extcnf_combined,[status(esa)],[30]) ).

thf(37,plain,
    ( ( ~ ( less_equal @ ( divide @ c @ b ) @ ( divide @ c @ a ) ) )
    = $true ),
    inference(copy,[status(thm)],[33]) ).

thf(38,plain,
    ( ( less_equal @ a @ b )
    = $true ),
    inference(copy,[status(thm)],[32]) ).

thf(39,plain,
    ( ( ! [X: $i,Y: $i] :
          ( ~ ( less_equal @ X @ Y )
          | ( ( divide @ X @ Y )
            = zero ) ) )
    = $true ),
    inference(copy,[status(thm)],[31]) ).

thf(40,plain,
    ( ( ! [X: $i,Y: $i] :
          ( ( ( divide @ X @ Y )
           != zero )
          | ( less_equal @ X @ Y ) ) )
    = $true ),
    inference(copy,[status(thm)],[36]) ).

thf(41,plain,
    ( ( ! [X: $i,Y: $i] : ( less_equal @ ( divide @ X @ Y ) @ X ) )
    = $true ),
    inference(copy,[status(thm)],[29]) ).

thf(42,plain,
    ( ( ! [X: $i,Z: $i,Y: $i] : ( less_equal @ ( divide @ ( divide @ X @ Z ) @ ( divide @ Y @ Z ) ) @ ( divide @ ( divide @ X @ Y ) @ Z ) ) )
    = $true ),
    inference(copy,[status(thm)],[28]) ).

thf(43,plain,
    ( ( ! [X: $i] : ( less_equal @ zero @ X ) )
    = $true ),
    inference(copy,[status(thm)],[27]) ).

thf(44,plain,
    ( ( ! [X: $i,Y: $i] :
          ( ~ ( less_equal @ X @ Y )
          | ~ ( less_equal @ Y @ X )
          | ( X = Y ) ) )
    = $true ),
    inference(copy,[status(thm)],[26]) ).

thf(45,plain,
    ( ( ! [X: $i] : ( less_equal @ X @ identity ) )
    = $true ),
    inference(copy,[status(thm)],[25]) ).

thf(46,plain,
    ( ( ! [X: $i] :
          ( ( divide @ X @ identity )
          = zero ) )
    = $true ),
    inference(copy,[status(thm)],[24]) ).

thf(47,plain,
    ( ( ! [X: $i] :
          ( ( divide @ zero @ X )
          = zero ) )
    = $true ),
    inference(copy,[status(thm)],[23]) ).

thf(48,plain,
    ( ( ! [X: $i] :
          ( ( divide @ X @ X )
          = zero ) )
    = $true ),
    inference(copy,[status(thm)],[22]) ).

thf(49,plain,
    ( ( ( divide @ a @ zero )
      = a )
    = $true ),
    inference(copy,[status(thm)],[21]) ).

thf(50,plain,
    ( ( ! [X: $i,Y: $i] :
          ( ~ ( less_equal @ X @ Y )
          | ! [Z: $i] :
              ( ~ ( less_equal @ Y @ Z )
              | ( less_equal @ X @ Z ) ) ) )
    = $true ),
    inference(copy,[status(thm)],[35]) ).

thf(51,plain,
    ( ( ! [X: $i,Y: $i,Z: $i] :
          ( ~ ( less_equal @ ( divide @ X @ Y ) @ Z )
          | ( less_equal @ ( divide @ X @ Z ) @ Y ) ) )
    = $true ),
    inference(copy,[status(thm)],[19]) ).

thf(52,plain,
    ( ( ~ $false )
    = $true ),
    inference(copy,[status(thm)],[34]) ).

thf(53,plain,
    ( ( less_equal @ ( divide @ c @ b ) @ ( divide @ c @ a ) )
    = $false ),
    inference(extcnf_not_pos,[status(thm)],[37]) ).

thf(54,plain,
    ! [SV1: $i] :
      ( ( ! [SY22: $i] :
            ( ~ ( less_equal @ SV1 @ SY22 )
            | ( ( divide @ SV1 @ SY22 )
              = zero ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[39]) ).

thf(55,plain,
    ! [SV2: $i] :
      ( ( ! [SY23: $i] :
            ( ( ( divide @ SV2 @ SY23 )
             != zero )
            | ( less_equal @ SV2 @ SY23 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[40]) ).

thf(56,plain,
    ! [SV3: $i] :
      ( ( ! [SY24: $i] : ( less_equal @ ( divide @ SV3 @ SY24 ) @ SV3 ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[41]) ).

thf(57,plain,
    ! [SV4: $i] :
      ( ( ! [SY25: $i,SY26: $i] : ( less_equal @ ( divide @ ( divide @ SV4 @ SY25 ) @ ( divide @ SY26 @ SY25 ) ) @ ( divide @ ( divide @ SV4 @ SY26 ) @ SY25 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[42]) ).

thf(58,plain,
    ! [SV5: $i] :
      ( ( less_equal @ zero @ SV5 )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[43]) ).

thf(59,plain,
    ! [SV6: $i] :
      ( ( ! [SY27: $i] :
            ( ~ ( less_equal @ SV6 @ SY27 )
            | ~ ( less_equal @ SY27 @ SV6 )
            | ( SV6 = SY27 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[44]) ).

thf(60,plain,
    ! [SV7: $i] :
      ( ( less_equal @ SV7 @ identity )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[45]) ).

thf(61,plain,
    ! [SV8: $i] :
      ( ( ( divide @ SV8 @ identity )
        = zero )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[46]) ).

thf(62,plain,
    ! [SV9: $i] :
      ( ( ( divide @ zero @ SV9 )
        = zero )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[47]) ).

thf(63,plain,
    ! [SV10: $i] :
      ( ( ( divide @ SV10 @ SV10 )
        = zero )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[48]) ).

thf(64,plain,
    ! [SV11: $i] :
      ( ( ! [SY28: $i] :
            ( ~ ( less_equal @ SV11 @ SY28 )
            | ! [SY29: $i] :
                ( ~ ( less_equal @ SY28 @ SY29 )
                | ( less_equal @ SV11 @ SY29 ) ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[50]) ).

thf(65,plain,
    ! [SV12: $i] :
      ( ( ! [SY30: $i,SY31: $i] :
            ( ~ ( less_equal @ ( divide @ SV12 @ SY30 ) @ SY31 )
            | ( less_equal @ ( divide @ SV12 @ SY31 ) @ SY30 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[51]) ).

thf(66,plain,
    $false = $false,
    inference(extcnf_not_pos,[status(thm)],[52]) ).

thf(67,plain,
    ! [SV13: $i,SV1: $i] :
      ( ( ~ ( less_equal @ SV1 @ SV13 )
        | ( ( divide @ SV1 @ SV13 )
          = zero ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[54]) ).

thf(68,plain,
    ! [SV14: $i,SV2: $i] :
      ( ( ( ( divide @ SV2 @ SV14 )
         != zero )
        | ( less_equal @ SV2 @ SV14 ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[55]) ).

thf(69,plain,
    ! [SV15: $i,SV3: $i] :
      ( ( less_equal @ ( divide @ SV3 @ SV15 ) @ SV3 )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[56]) ).

thf(70,plain,
    ! [SV16: $i,SV4: $i] :
      ( ( ! [SY32: $i] : ( less_equal @ ( divide @ ( divide @ SV4 @ SV16 ) @ ( divide @ SY32 @ SV16 ) ) @ ( divide @ ( divide @ SV4 @ SY32 ) @ SV16 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[57]) ).

thf(71,plain,
    ! [SV17: $i,SV6: $i] :
      ( ( ~ ( less_equal @ SV6 @ SV17 )
        | ~ ( less_equal @ SV17 @ SV6 )
        | ( SV6 = SV17 ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[59]) ).

thf(72,plain,
    ! [SV18: $i,SV11: $i] :
      ( ( ~ ( less_equal @ SV11 @ SV18 )
        | ! [SY33: $i] :
            ( ~ ( less_equal @ SV18 @ SY33 )
            | ( less_equal @ SV11 @ SY33 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[64]) ).

thf(73,plain,
    ! [SV19: $i,SV12: $i] :
      ( ( ! [SY34: $i] :
            ( ~ ( less_equal @ ( divide @ SV12 @ SV19 ) @ SY34 )
            | ( less_equal @ ( divide @ SV12 @ SY34 ) @ SV19 ) ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[65]) ).

thf(74,plain,
    ! [SV13: $i,SV1: $i] :
      ( ( ( ~ ( less_equal @ SV1 @ SV13 ) )
        = $true )
      | ( ( ( divide @ SV1 @ SV13 )
          = zero )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[67]) ).

thf(75,plain,
    ! [SV14: $i,SV2: $i] :
      ( ( ( ( ( divide @ SV2 @ SV14 )
           != zero ) )
        = $true )
      | ( ( less_equal @ SV2 @ SV14 )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[68]) ).

thf(76,plain,
    ! [SV20: $i,SV16: $i,SV4: $i] :
      ( ( less_equal @ ( divide @ ( divide @ SV4 @ SV16 ) @ ( divide @ SV20 @ SV16 ) ) @ ( divide @ ( divide @ SV4 @ SV20 ) @ SV16 ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[70]) ).

thf(77,plain,
    ! [SV17: $i,SV6: $i] :
      ( ( ( ~ ( less_equal @ SV6 @ SV17 ) )
        = $true )
      | ( ( ~ ( less_equal @ SV17 @ SV6 )
          | ( SV6 = SV17 ) )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[71]) ).

thf(78,plain,
    ! [SV18: $i,SV11: $i] :
      ( ( ( ~ ( less_equal @ SV11 @ SV18 ) )
        = $true )
      | ( ( ! [SY33: $i] :
              ( ~ ( less_equal @ SV18 @ SY33 )
              | ( less_equal @ SV11 @ SY33 ) ) )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[72]) ).

thf(79,plain,
    ! [SV21: $i,SV19: $i,SV12: $i] :
      ( ( ~ ( less_equal @ ( divide @ SV12 @ SV19 ) @ SV21 )
        | ( less_equal @ ( divide @ SV12 @ SV21 ) @ SV19 ) )
      = $true ),
    inference(extcnf_forall_pos,[status(thm)],[73]) ).

thf(80,plain,
    ! [SV13: $i,SV1: $i] :
      ( ( ( less_equal @ SV1 @ SV13 )
        = $false )
      | ( ( ( divide @ SV1 @ SV13 )
          = zero )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[74]) ).

thf(81,plain,
    ! [SV14: $i,SV2: $i] :
      ( ( ( ( divide @ SV2 @ SV14 )
          = zero )
        = $false )
      | ( ( less_equal @ SV2 @ SV14 )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[75]) ).

thf(82,plain,
    ! [SV17: $i,SV6: $i] :
      ( ( ( less_equal @ SV6 @ SV17 )
        = $false )
      | ( ( ~ ( less_equal @ SV17 @ SV6 )
          | ( SV6 = SV17 ) )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[77]) ).

thf(83,plain,
    ! [SV18: $i,SV11: $i] :
      ( ( ( less_equal @ SV11 @ SV18 )
        = $false )
      | ( ( ! [SY33: $i] :
              ( ~ ( less_equal @ SV18 @ SY33 )
              | ( less_equal @ SV11 @ SY33 ) ) )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[78]) ).

thf(84,plain,
    ! [SV21: $i,SV19: $i,SV12: $i] :
      ( ( ( ~ ( less_equal @ ( divide @ SV12 @ SV19 ) @ SV21 ) )
        = $true )
      | ( ( less_equal @ ( divide @ SV12 @ SV21 ) @ SV19 )
        = $true ) ),
    inference(extcnf_or_pos,[status(thm)],[79]) ).

thf(85,plain,
    ! [SV6: $i,SV17: $i] :
      ( ( ( ~ ( less_equal @ SV17 @ SV6 ) )
        = $true )
      | ( ( SV6 = SV17 )
        = $true )
      | ( ( less_equal @ SV6 @ SV17 )
        = $false ) ),
    inference(extcnf_or_pos,[status(thm)],[82]) ).

thf(86,plain,
    ! [SV11: $i,SV22: $i,SV18: $i] :
      ( ( ( ~ ( less_equal @ SV18 @ SV22 )
          | ( less_equal @ SV11 @ SV22 ) )
        = $true )
      | ( ( less_equal @ SV11 @ SV18 )
        = $false ) ),
    inference(extcnf_forall_pos,[status(thm)],[83]) ).

thf(87,plain,
    ! [SV21: $i,SV19: $i,SV12: $i] :
      ( ( ( less_equal @ ( divide @ SV12 @ SV19 ) @ SV21 )
        = $false )
      | ( ( less_equal @ ( divide @ SV12 @ SV21 ) @ SV19 )
        = $true ) ),
    inference(extcnf_not_pos,[status(thm)],[84]) ).

thf(88,plain,
    ! [SV6: $i,SV17: $i] :
      ( ( ( less_equal @ SV17 @ SV6 )
        = $false )
      | ( ( SV6 = SV17 )
        = $true )
      | ( ( less_equal @ SV6 @ SV17 )
        = $false ) ),
    inference(extcnf_not_pos,[status(thm)],[85]) ).

thf(89,plain,
    ! [SV11: $i,SV22: $i,SV18: $i] :
      ( ( ( ~ ( less_equal @ SV18 @ SV22 ) )
        = $true )
      | ( ( less_equal @ SV11 @ SV22 )
        = $true )
      | ( ( less_equal @ SV11 @ SV18 )
        = $false ) ),
    inference(extcnf_or_pos,[status(thm)],[86]) ).

thf(90,plain,
    ! [SV11: $i,SV22: $i,SV18: $i] :
      ( ( ( less_equal @ SV18 @ SV22 )
        = $false )
      | ( ( less_equal @ SV11 @ SV22 )
        = $true )
      | ( ( less_equal @ SV11 @ SV18 )
        = $false ) ),
    inference(extcnf_not_pos,[status(thm)],[89]) ).

thf(91,plain,
    $false = $true,
    inference(fo_atp_e,[status(thm)],[38,90,88,87,81,80,76,69,66,63,62,61,60,58,53,49]) ).

thf(92,plain,
    $false,
    inference(solved_all_splits,[solved_all_splits(join,[])],[91]) ).

%------------------------------------------------------------------------------
%----ORIGINAL SYSTEM OUTPUT
% 0.03/0.12  % Problem  : HEN007-4 : TPTP v8.1.0. Released v1.0.0.
% 0.03/0.13  % Command  : leo --timeout %d --proofoutput 1 --foatp e --atp e=./eprover %s
% 0.13/0.35  % Computer : n021.cluster.edu
% 0.13/0.35  % Model    : x86_64 x86_64
% 0.13/0.35  % CPU      : Intel(R) Xeon(R) CPU E5-2620 v4 @ 2.10GHz
% 0.13/0.35  % Memory   : 8042.1875MB
% 0.13/0.35  % OS       : Linux 3.10.0-693.el7.x86_64
% 0.13/0.35  % CPULimit : 300
% 0.13/0.35  % WCLimit  : 600
% 0.13/0.35  % DateTime : Fri Jul  1 12:57:29 EDT 2022
% 0.13/0.35  % CPUTime  : 
% 0.13/0.36  
% 0.13/0.36   No.of.Axioms: 15
% 0.13/0.36  
% 0.13/0.36   Length.of.Defs: 0
% 0.13/0.36  
% 0.13/0.36   Contains.Choice.Funs: false
% 0.13/0.36  (rf:0,axioms:15,ps:3,u:6,ude:true,rLeibEQ:true,rAndEQ:true,use_choice:true,use_extuni:true,use_extcnf_combined:true,expand_extuni:false,foatp:e,atp_timeout:600,atp_calls_frequency:10,ordering:none,proof_output:1,protocol_output:false,clause_count:17,loop_count:0,foatp_calls:0,translation:fof_full)....
% 25.31/25.51  
% 25.31/25.51  ********************************
% 25.31/25.51  *   All subproblems solved!    *
% 25.31/25.51  ********************************
% 25.31/25.51  % SZS status Unsatisfiable for /export/starexec/sandbox/benchmark/theBenchmark.p : (rf:0,axioms:15,ps:3,u:6,ude:true,rLeibEQ:true,rAndEQ:true,use_choice:true,use_extuni:true,use_extcnf_combined:true,expand_extuni:false,foatp:e,atp_timeout:74,atp_calls_frequency:10,ordering:none,proof_output:1,protocol_output:false,clause_count:91,loop_count:0,foatp_calls:1,translation:fof_full)
% 25.31/25.52  
% 25.31/25.52  %**** Beginning of derivation protocol ****
% 25.31/25.52  % SZS output start CNFRefutation
% See solution above
% 25.31/25.52  
% 25.31/25.52  %**** End of derivation protocol ****
% 25.31/25.52  %**** no. of clauses in derivation: 92 ****
% 25.31/25.52  %**** clause counter: 91 ****
% 25.31/25.52  
% 25.31/25.52  % SZS status Unsatisfiable for /export/starexec/sandbox/benchmark/theBenchmark.p : (rf:0,axioms:15,ps:3,u:6,ude:true,rLeibEQ:true,rAndEQ:true,use_choice:true,use_extuni:true,use_extcnf_combined:true,expand_extuni:false,foatp:e,atp_timeout:74,atp_calls_frequency:10,ordering:none,proof_output:1,protocol_output:false,clause_count:91,loop_count:0,foatp_calls:1,translation:fof_full)
%------------------------------------------------------------------------------