Get the inverse cosine of a value, in radians.
=ACOS(number)
| Parameter | Description |
|---|---|
number |
The value to get the inverse cosine of. The number must be between -1 and 1 inclusive. |
The ACOS function returns the inverse cosine of a value. Input to the arc-cosine function must be between -1 and 1, inclusive. Geometrically, given th
=ACOS(0.5) // Returns 1.047 radians
To convert the result from radians to degrees, multiply the result by 180/PI() or use the DEGREES function. For example, to convert the result of ACOS
=ACOS(0.5)*180/PI() // Returns 60 degrees
=DEGREES(ACOS(0.5)) // Returns 60 degrees