Cos
COS Function¶
The COS function in Excel returns the cosine of a given angle. This function expects the angle to be provided in radians. If you have an angle in degrees and need to convert it to radians, you can use the RADIANS function.
Syntax:¶
COS(number)
- number: The angle in radians for which you want the cosine.
Examples:¶
=COS(0)would return1, since the cosine of 0 radians is 1.- If you have an angle of 60 degrees and want to find its cosine, you can combine the
RADIANSandCOSfunctions:=COS(RADIANS(60))would return0.5.
Note: Trigonometric functions like
COScan be instrumental in engineering, physics, and other fields where calculations involving angles and circular motion are required.