COS() calculates the cosine of an angle specified in radians. The cosine function returns a value between -1 and 1, representing the ratio of the adjacent side to the hypotenuse in a right triangle. This function is commonly used in trigonometric calculations, geometry, and physics.
COS(number)
COS() returns a numeric value between -1 and 1
COS(0) = 1 (cosine of 0 radians)
COS(PI()) = -1 (cosine of π radians)
COS(PI()/2) = 0 (cosine of π/2 radians)
COS(100) = 0.8623 (cosine of 100 radians)
COS(PI()/4) = 0.7071 (cosine of π/4 radians)
COS(PI()/3) = 0.5 (cosine of π/3 radians)
COS(2*PI()) = 1 (cosine of 2π radians)