Get secant of an angle
=SEC(number)
| Parameter | Description |
|---|---|
number |
The angle in radians for which you want the secant. |
The SEC function returns the secant of an angle provided in radians. In geometric terms, the secant of a right-triangle's angle is equal to the ratio
=SEC(PI()/6) // Returns 1.514
To supply an angle to SEC in degrees, multiply the angle by PI()/180 or use the RADIANS function to convert to radians. For example, to get the COT of
=SIN(60*PI()/180)
=SIN(RADIANS(60))
The graph of SEC, shown above, visualizes the output of the function for angles from 0 to a full rotation. The function has two vertical asymptotes at
=SEC(angle)=1/COS(angle)