Predefined Functions – sinh

Function name: sinh – Sinus hyperbolicus
Synopsis: sinh(x)


Input data type Output data type
real real
complex complex
quaternion unsupported

Description:

ChaosPro automatically detects the input data type.

In order to calculate sinh(x) (x = any real number) ChaosPro performs the following calculation:

  sinh (x) = 0.5 * ( exp(x) - exp(-x) )    

In order to calculate sinh(z) (z = any complex number) ChaosPro performs the following calculation:

  sinh(z)=sinh(x)*cos(y)+i*cosh(x)*sin(y)  

where cosh(x) (x = any real number) is defined as:

  cosh (x) = 0.5 * ( exp(x) + exp(-x) )  

sinh