TPTP Problem File: ANA136_1.p

View Solutions - Solve Problem

%------------------------------------------------------------------------------
% File     : ANA136_1 : TPTP v8.2.0. Released v8.2.0.
% Domain   : Number theory
% Problem  : const_mul_lim_-93_47_x
% Version  : Especial.
% English  : lim(-93/47 f(x)) = -93/47 lim(f(x))

% Refs     : [Sch22] Schoisswohl (2022), Email to G. Sutcliffe
%          : [KK+23] Korovin et al. (2023), ALASCA: Reasoning in Quantified
% Source   : [Sch22]
% Names    : const_mul_lim_-93_47_x.smt2 [Sch22]

% Status   : Theorem
% Rating   : 1.00 v8.2.0
% Syntax   : Number of formulae    :    5 (   0 unt;   3 typ;   0 def)
%            Number of atoms       :   22 (   2 equ)
%            Maximal formula atoms :   11 (  11 avg)
%            Number of connectives :   26 (   6   ~;   0   |;   8   &)
%                                         (   0 <=>;  12  =>;   0  <=;   0 <~>)
%            Maximal formula depth :   11 (  11 avg)
%            Maximal term depth    :    6 (   2 avg)
%            Number arithmetic     :   98 (  20 atm;  44 fun;  28 num;   6 var)
%            Number of types       :    1 (   0 usr;   1 ari)
%            Number of type conns  :    1 (   1   >;   0   *;   0   +;   0  <<)
%            Number of predicates  :    3 (   0 usr;   0 prp; 2-2 aty)
%            Number of functors    :   10 (   3 usr;   5 con; 0-2 aty)
%            Number of variables   :    6 (   4   !;   2   ?;   6   :)
% SPC      : TF0_THM_EQU_ARI

% Comments : Translated from SMT UFLRA by SMTtoTPTP.
%------------------------------------------------------------------------------
%% Declarations:
tff(f,type,
    f: $real > $real ).

tff(a,type,
    a: $real ).

tff(l,type,
    l: $real ).

%% Assertions:
%% ∀ epsilon:Real ((0.0 < epsilon) ⇒ ∃ delta:Real ((0.0 < delta) ∧ ∀ x:Real ((¬(x = a) ∧ ((if ((x - a) ≥ 0.0) (x - a) else -(x - a)) < delta)) ⇒ ((if ((f(x) - l) ≥ 0.0) (f(x) - l) else -(f(x) - l)) < epsilon))))
tff(formula_1,axiom,
    ! [Epsilon: $real] :
      ( $less(0.0,Epsilon)
     => ? [Delta: $real] :
          ( $less(0.0,Delta)
          & ! [X: $real] :
              ( ( ( X != a )
                & ( $greatereq($difference(X,a),0.0)
                 => $less($difference(X,a),Delta) )
                & ( ~ $greatereq($difference(X,a),0.0)
                 => $less($uminus($difference(X,a)),Delta) ) )
             => ( ( $greatereq($difference(f(X),l),0.0)
                 => $less($difference(f(X),l),Epsilon) )
                & ( ~ $greatereq($difference(f(X),l),0.0)
                 => $less($uminus($difference(f(X),l)),Epsilon) ) ) ) ) ) ).

%% ∀ epsilon:Real ((0.0 < epsilon) ⇒ ∃ delta:Real ((0.0 < delta) ∧ ∀ x:Real ((¬(x = a) ∧ ((if ((x - a) ≥ 0.0) (x - a) else -(x - a)) < delta)) ⇒ ((if (((-(93.0 / 47.0) * f(x)) - (-(93.0 / 47.0) * l)) ≥ 0.0) ((-(93.0 / 47.0) * f(x)) - (-(93.0 / 47.0) * l)) else -((-(93.0 / 47.0) * f(x)) - (-(93.0 / 47.0) * l))) < epsilon))))
tff(formula_2,conjecture,
    ! [Epsilon: $real] :
      ( $less(0.0,Epsilon)
     => ? [Delta: $real] :
          ( $less(0.0,Delta)
          & ! [X: $real] :
              ( ( ( X != a )
                & ( $greatereq($difference(X,a),0.0)
                 => $less($difference(X,a),Delta) )
                & ( ~ $greatereq($difference(X,a),0.0)
                 => $less($uminus($difference(X,a)),Delta) ) )
             => ( ( $greatereq($difference($product($uminus($quotient(93.0,47.0)),f(X)),$product($uminus($quotient(93.0,47.0)),l)),0.0)
                 => $less($difference($product($uminus($quotient(93.0,47.0)),f(X)),$product($uminus($quotient(93.0,47.0)),l)),Epsilon) )
                & ( ~ $greatereq($difference($product($uminus($quotient(93.0,47.0)),f(X)),$product($uminus($quotient(93.0,47.0)),l)),0.0)
                 => $less($uminus($difference($product($uminus($quotient(93.0,47.0)),f(X)),$product($uminus($quotient(93.0,47.0)),l))),Epsilon) ) ) ) ) ) ).

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