VOOZH about

URL: https://www.geeksforgeeks.org/python/python-math-acosh-function/

⇱ Python - math.acosh() function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python - math.acosh() function

Last Updated : 28 May, 2020
Math module contains a number of functions which is used for mathematical operations. The math.acosh() function returns the hyperbolic arc cosine value of a number. The value passed in this function should be greater than or equal to 1.
Syntax: math.acosh(x) Parameter:This method accepts only single parameters.
  • x :This parameter is the value to be passed to acosh()
Returns:This function returns the hyperbolic arc cosine value of a number.
Below examples illustrate the use of above function: Example 1: Output:
2.6339157938496336
4.718419142372879
1.5447131178707394
0.0
Example 2:
Output:
Input_Array : 
 [1. 1.30584843 1.61169686 1.91754528 2.22339371 2.52924214
 2.83509057 3.14093899 3.44678742 3.75263585 4.05848428 4.3643327
 4.67018113 4.97602956 5.28187799 5.58772641 5.89357484 6.19942327
 6.5052717 6.81112012 7.11696855 7.42281698 7.72866541 8.03451384
 8.34036226 8.64621069 8.95205912 9.25790755 9.56375597 9.8696044 ]

Output_Array : 
 [0.0, 0.7634351653684978, 1.0562772501126303, 1.2679873925813194, 1.4372757745859863, 
1.5794735761470122, 1.7025573669627803, 1.8113067645313763, 1.9088495232436826,
1.997360544554533, 2.07842113836573, 2.1532211217708626, 2.2226804635542514, 
2.287526464855001, 2.348344844358015, 2.405614746886384, 2.4597334430301796, 
2.51103419200721, 2.559799438447933, 2.6062707446710016, 2.6506563890658725, 
2.693137263795659, 2.7338715120762482, 2.7729982170653664, 2.8106403673544613, 
2.8469072638299315, 2.8818964902724367, 2.9156955397451294, 2.9483831668303044, 
2.9800305196125625]
👁 Image
Comment