Get the cotangent of an angle.
=COT(number)
| Parameter | Description |
|---|---|
number |
The angle provided in radians. |
The Excel COT function returns the cotangent of an angle provided in radians. In geometric terms, the cotangent of an angle returns the ratio of the l
=COT(PI()/6) // Returns 1.732
To supply an angle to COT in degrees, multiply the angle by PI()/180 or use the RADIANS function to convert to radians. For example, to get the COT of
=COT(60*PI()/180)
=COT(RADIANS(60))
The graph of COT, shown above, visualizes the output of the function for angles from 0 to a full rotation. The function has vertical asymptotes at the
=COT(angle)=1/TAN(angle)