SIN Function
Returns the sine of an angle given in radians.
Syntax
Parameters
| Parameter | Description | Required |
|---|---|---|
| number | The angle, in radians, for which you want the sine. | Required |
Basic Example
Sine of 30 degrees
=SIN(RADIANS(30))RADIANS(30) converts to π/6; the sine of π/6 is 0.5.
Advanced Examples
Example 1: Sine of π/2
Quarter turn.Use PI()/2.
=SIN(PI()/2)Example 2: Sine of 0
Baseline check.Sine of zero radians.
=SIN(0)How SIN Works
SIN computes the sine of an angle measured in radians. The function is periodic with period 2π, so SIN(x) = SIN(x + 2πk) for any integer k.
Important Notes & Limitations
The angle must be in radians; degrees must be converted with RADIANS or PI()/180.
Results are approximate due to floating-point math.
SIN cannot directly take degrees.
Common Errors & Fixes
Unexpected valueAngle supplied in degrees instead of radians.Fix: Wrap the angle in RADIANS() or multiply by PI()/180.
#VALUE!Non-numeric argument.Fix: Supply a numeric angle.
Download Practice File
SIN
sinPractice SIN with Real Data
Download a sample CSV file with pre-populated data and practice exercises for the SIN function. Works in both Excel and Google Sheets.
File format: CSV (comma-separated values) - opens in Excel, Google Sheets, and all spreadsheet apps