Home >>Python math Module >Python math.acosh() Method
Python math.acosh() Method returns the hyperbolic arc cosine value of the given number in radians must be greater than or equal to 1.
Syntax:math.acosh(x)
Parameter | Description |
---|---|
x | It is Required a number to find the hyperbolic arc cosine of and is returns the Type error. |
import math
print (math.acosh(9))
print (math.acosh(47))
print (math.acosh(4.25))
print (math.acosh(1))
import math
x = 1
print("math.acosh(",x,"): ", math.acosh(x))
x = 1.9
print("math.acosh(",x,"): ", math.acosh(x))
x = 8
print("math.acosh(",x,"): ", math.acosh(x))
x = 11.27
print("math.acosh(",x,"): ", math.acosh(x))