TPTP Problem File: MSC022_2.p

View Solutions - Solve Problem

%------------------------------------------------------------------------------
% File     : MSC022_2 : TPTP v8.2.0. Released v5.0.0.
% Domain   : Miscellaneous
% Problem  : Celcius 37 to Fahrenheit conversion
% Version  : Especial.
% English  :

% Refs     :
% Source   : [TPTP]
% Names    :

% Status   : Theorem
% Rating   : 0.12 v8.1.0, 0.25 v7.5.0, 0.30 v7.4.0, 0.50 v7.0.0, 0.29 v6.4.0, 0.67 v6.3.0, 0.29 v6.2.0, 0.12 v6.1.0, 0.22 v6.0.0, 0.29 v5.5.0, 0.33 v5.4.0, 0.38 v5.3.0, 0.70 v5.2.0, 0.67 v5.1.0, 0.40 v5.0.0
% Syntax   : Number of formulae    :    3 (   1 unt;   1 typ;   0 def)
%            Number of atoms       :    3 (   1 equ)
%            Maximal formula atoms :    2 (   1 avg)
%            Number of connectives :    1 (   0   ~;   0   |;   0   &)
%                                         (   0 <=>;   1  =>;   0  <=;   0 <~>)
%            Maximal formula depth :    4 (   3 avg)
%            Maximal term depth    :    3 (   1 avg)
%            Number arithmetic     :    8 (   0 atm;   2 fun;   3 num;   3 var)
%            Number of types       :    2 (   0 usr;   1 ari)
%            Number of type conns  :    2 (   1   >;   1   *;   0   +;   0  <<)
%            Number of predicates  :    2 (   1 usr;   0 prp; 2-2 aty)
%            Number of functors    :    5 (   0 usr;   3 con; 0-2 aty)
%            Number of variables   :    3 (   2   !;   1   ?;   3   :)
% SPC      : TF0_THM_EQU_ARI

% Comments :
%------------------------------------------------------------------------------
tff(celsius_fahrenheit_temperature_conversion_type,type,
    celsius_fahrenheit_temperature_conversion: ( $real * $real ) > $o ).

tff(celsius_fahrenheit_temperature_conversion,axiom,
    ! [C: $real,F: $real] :
      ( ( $sum($product(1.8,C),32.0) = F )
     => celsius_fahrenheit_temperature_conversion(C,F) ) ).

tff(celsius_37_to_fahrenheit,conjecture,
    ? [F: $real] : celsius_fahrenheit_temperature_conversion(37.0,F) ).

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