SIN Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel SIN function returns the sine of an angle. Excel measures angles in radians, so degrees must be converted with RADIANS or π first.


Quick answer:
=SIN(RADIANS(30)) sine of 30 degrees = 0.5

Syntax

=SIN(number)
ArgumentDescription
numberRequiredThe angle in radians whose sine you want. Convert degrees with RADIANS(deg) or deg*PI()/180.

How to use it

The most common mistake is feeding SIN a number of degrees. Excel expects radians, so wrap the angle in RADIANS():

=SIN(RADIANS(30)) // 30 deg = 0.5
=SIN(RADIANS(90)) // 90 deg = 1
=SIN(PI()/6) // pi/6 radians = 0.5

SIN pairs with COS and TAN for the other ratios, and with ASIN for the inverse (which returns an angle in radians — wrap it in DEGREES to read it back as degrees).

Why isn't SIN(PI()) exactly 0? PI() is a finite decimal approximation of π, so =SIN(PI()) returns roughly 1.2E-16 — effectively zero, just limited by floating-point precision.

Try it: interactive demo

Live demo

Enter an angle in degrees — the demo converts it with RADIANS and returns the sine.

Result:

Practice workbook

📊
Download the free SIN practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

Why does SIN(30) not give 0.5?
Excel reads the argument as radians, so =SIN(30) is the sine of 30 radians (about -0.988). For 30 degrees use =SIN(RADIANS(30)).
How do I convert degrees to radians?
Use RADIANS(deg), or multiply by π/180: deg*PI()/180. Both give the same result.
What is the inverse of SIN?
ASIN returns the angle (in radians) whose sine is a given value. Wrap it in DEGREES to read the angle in degrees.
Why isn't SIN(PI()) exactly zero?
PI() is a finite approximation of π, so SIN(PI()) returns about 1.2E-16 — effectively 0, limited by floating-point precision.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: COS · TAN · ASIN · RADIANS · DEGREES · PI