Python math.asinh() – Arc / Inverse Hyperbolic Sine

Contents

Python math.asinh()

math.asinh(x) function returns the arc hyperbolic sine of x.

asinh(x) = log(x + sqrt(x^2 + 1))

Syntax

The syntax to call asinh() function is

math.asinh(x)

where

ParameterRequiredDescription
xYesA numeric value.

Examples

In the following example, we find the inverse hyperbolic sine of 20, using asinh() function of math module.

Python Program

import math

x = 20
result = math.asinh(x)
print('asinh(x) :', result)
Run Code Copy

Output

asinh(x) : 3.6895038689889055

Summary

In this Python Examples tutorial, we learned the syntax of, and examples for math.asinh() function.

Related Tutorials

Code copied to clipboard successfully 👍