math.acosh

Full name
math.acosh
Library
math
Syntax

math.acosh(x)

Description

The math.acosh function returns the hyperbolic arccosine of the number passed as an argument.

The hyperbolic arccosine function has the following graph:

Hyperbolic arccosine function
Parameters
  • x: Number from which to obtain the hyperbolic arccosine.
Result

The math.acosh function returns a real number.

Examples

We can obtain the hyperbolic arccosine of the number 4 with the following code:

math.acosh (4)
2.0634370688955608
Submitted by admin on Thu, 02/11/2021 - 08:35