ACOS

ACOS(number)

Returns the angle in radians for a given cosine ratio.

numberThe cosine ratio.

REMARKS
* For an illustrated example refer to the Trigonometric Functions page.
* This function always returns an angle between 0 and PI.
* If "number" is not numeric, then #VALUE! is returned.
* If "number" > 1, then #NUM! is returned.
* If "number" < -1, then #NUM! is returned.
* To convert a number from degrees to radians, multiply it by PI/180.
* To convert a number from radians to degrees, multiply it by 180/PI.
* You can use the COS function to return the cosine ratio for an angle.
* You can use the SIN function to return the sine ratio for an angle.
* You can use the TAN function to return the tangent ratio for an angle.
* You can use the ASIN function to return the angle in radians for a given sine ratio.
* You can use the ATAN function to return the angle in radians for a given tangent ratio.
* You can use the RADIANS function to convert from degrees to radians.
* You can use the DEGREES function to convert from radians to degrees.
* You can use the ACOT function to return the arc-cotangent.
* For the Microsoft documentation refer to support.microsoft.com

 A
1=ACOS(-1) = 3.142
2=ACOS(-0.5) = 2.094
3=ACOS(0) = 1.571
4=ACOS(0.5) = 1.047
5=ACOS(1) = 0
6=ACOS(1.01) = #NUM!
7=ACOS(0.5)*180/PI() = 60
8=DEGREES(ACOS(0.5)) = 60
9=ACOS(COS(0.5)) = 0.5
10=ACOS("text") = #VALUE!

1 - What is the angle in radians for a cosine ratio of -1. This is PI.
2 - What is the angle in radians for a cosine ratio of -0.5.
3 - What is the angle in radians for a cosine ratio of 0. This is PI/2.
4 - What is the angle in radians for a cosine ratio of 0.5.
5 - What is the angle in radians for a cosine ratio of 1.
6 - When number is >1.
7 - What is the angle in degrees for a cosine ratio of 0.5.
8 - What is the angle in degrees for a cosine ratio of 0.5.
9 - What is the inverse of cosine.
10 - When number is not numeric.

© 2025 Better Solutions Limited. All Rights Reserved. © 2025 Better Solutions Limited Top