ACOS Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel ACOS function returns the arccosine (inverse cosine) of a number — the angle whose cosine is that value. The result is in radians, from 0 to π.


Quick answer:
=DEGREES(ACOS(0)) angle whose cosine is 0 = 90 degrees

Syntax

=ACOS(number)
ArgumentDescription
numberRequiredThe cosine value, which must be between -1 and 1. ACOS returns the angle in radians, from 0 to π.

How to use it

ACOS is the inverse of COS: it takes a cosine value and returns the angle. The angle is in radians and always lands between 0 and π (0 to 180 degrees):

=ACOS(0) // pi/2 radians = 1.5708
=DEGREES(ACOS(0)) // = 90 degrees
=DEGREES(ACOS(1)) // = 0 degrees

The input must be between -1 and 1 inclusive; anything outside that range returns #NUM!. Note =ACOS(1) is 0 and =DEGREES(ACOS(-1)) is 180.

ASIN and ACOS are complementary: for any valid value, ASIN(x) + ACOS(x) equals π/2 radians (90 degrees).

Try it: interactive demo

Live demo

Pick a ACOS example to see the formula and its result.

Result:

Practice workbook

📊
Download the free ACOS practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

Why does ACOS(0) return 1.5708 and not 90?
ACOS returns the angle in radians; 1.5708 is π/2 radians. Use =DEGREES(ACOS(0)) to get 90.
What input range does ACOS accept?
Between -1 and 1 inclusive, the full range of cosine. Outside that range it returns #NUM!.
What range of angles does ACOS return?
Always between 0 and π radians (0 to 180 degrees), unlike ASIN which spans −90 to 90.
How are ASIN and ACOS related?
They are complementary: ASIN(x) + ACOS(x) = PI()/2 for any valid x, i.e. the two angles always add to 90 degrees.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: COS · ASIN · ATAN · DEGREES · RADIANS · ACOSH