Acot
ACOT Function¶
The ACOT function in Excel returns the arc cotangent (or inverse cotangent) of a number. The result, in radians, is
between 0 and π for positive numbers, or between -π and 0 for negative numbers. Essentially, it's the angle
whose cotangent is the specified number.
Syntax:¶
ACOT(number)
- number: This is a required argument. It represents the cotangent value for which you want to calculate the inverse cotangent.
Examples:¶
=ACOT(1)would return an angle in radians, approximately 0.7854 (or 45° when converted to degrees).=ACOT(0)would return π/2 (approximately 1.5708 radians, or 90°).=ACOT(-1)would return an angle in radians, approximately -0.7854 (or -45° when converted to degrees).=ACOT(A1)would return the arc cotangent of the number in cell A1.
Note: If you want the result in degrees instead of radians, you can use the formula
=DEGREES(ACOT(number)).