Python Tutorial Python Advanced Python References Python Libraries

Python math - asinh() Function



The Python math.asinh() function returns inverse hyperbolic sine of a value. The inverse hyperbolic sine of x is defined as:

asinh

Syntax

math.asinh(x)

Parameters

x Required. Specify the value.

Return Value

Returns the inverse hyperbolic sine of a value.

Example:

In the example below, asinh() function is used to find out the inverse hyperbolic sine of a value.

import math

print(math.asinh(0))
print(math.asinh(2))
print(math.asinh(4))
print(math.asinh(-4))

The output of the above code will be:

0.0
1.4436354751788103
2.0947125472611012
-2.0947125472611012

❮ Python Math Module