ACOT Function

Excel Functions › Math & Trig

Excel 2013+ Math & Trig

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


Quick answer:
=DEGREES(ACOT(1)) angle whose cotangent is 1 = 45 degrees

Syntax

=ACOT(number)
ArgumentDescription
numberRequiredThe cotangent value (any real number). ACOT returns the angle in radians, between 0 and π.

How to use it

ACOT is the inverse of COT: give it a cotangent value and it returns the angle in radians. It accepts any real number and always returns an angle between 0 and π (0 to 180 degrees):

=ACOT(1) // pi/4 radians = 0.7854
=DEGREES(ACOT(1)) // = 45 degrees
=DEGREES(ACOT(0)) // = 90 degrees

Note that =ACOT(0) returns π/2 (90 degrees), and as the input grows large the angle approaches 0. ACOT was added in Excel 2013; in older versions you can compute it as =PI()/2 - ATAN(number).

No COT? No problem: if you are on a version before Excel 2013, =PI()/2 - ATAN(x) gives the same arccotangent result as ACOT(x).

Try it: interactive demo

Live demo

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

Result:

Practice workbook

📊
Download the free ACOT 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

What versions of Excel have ACOT?
ACOT was introduced in Excel 2013. In earlier versions use the equivalent =PI()/2 - ATAN(number).
Why does ACOT(1) return 0.7854?
That is π/4 radians (45 degrees), the angle whose cotangent is 1. Wrap it in DEGREES(ACOT(1)) to read 45.
What does ACOT(0) return?
=ACOT(0) returns π/2 radians (90 degrees). Unlike COT, ACOT is defined at 0.
What angle range does ACOT return?
Always between 0 and π radians (0 to 180 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: COT · ATAN · ACOTH · DEGREES · TAN · ASIN