SIN() calculates the sine of an angle, where the input is specified in radians. This trigonometric function is useful for mathematical calculations, signal processing, and various scientific applications. The sine function returns values between -1 and 1, representing the y-coordinate of a point on the unit circle.
SIN(number)
SIN() returns a numeric value between -1 and 1
// Sine of 0 radians
SIN(0) = 0
// Sine of π radians
SIN(PI()) = 0
// Sine of π/2 radians
SIN(PI()/2) = 1
// Sine of 100 radians
SIN(100) = -0.5064
// Additional examples
SIN(PI()/6) = 0.5 // Sine of 30 degrees
SIN(PI()/4) = 0.7071 // Sine of 45 degrees
SIN(PI()/3) = 0.8660 // Sine of 60 degrees