SIN Function
SIN Function

SIN Function

Returns the sine of an angle expressed in radians. SIN is used in trigonometry, coordinate geometry, waveform modeling, and component calculations.

ExcelClash Team
PUBLISHED

Summary

The Excel SIN function returns the sine of an angle. Microsoft documents one critical requirement: the input angle must be supplied in radians, not degrees. That matters because most worksheet users think in degrees, and a direct formula such as =SIN(30) does not mean "sine of 30 degrees" to Excel.

In worksheet terms, SIN is usually used to derive the vertical component of a vector, a slope, or a rotating position. It also appears in periodic formulas such as waveform modeling, where a sine curve describes oscillation over time. The function therefore sits at the intersection of trigonometry, geometry, and simulation work.

SIN is more specialized than ordinary business math, but it becomes important in geometry, wave behavior, and engineering-style models. It helps the workbook convert an angle into a trigonometric ratio that can be reused in calculations involving cycles, movement, or right-triangle relationships.

Purpose

Return the sine of an angle

Calculates the trigonometric sine for an angle expressed in radians. Common in component decomposition and periodic models.

Return Value

A value from -1 to 1

Returns the sine of the supplied angle. The result oscillates between -1 and 1.

Syntax

=SIN(number)

The single argument is the angle in radians. If the source data is in degrees, convert it first with RADIANS() or multiply by PI()/180. In most business and engineering worksheets, the explicit RADIANS() wrapper is easier to read and audit later.

Arguments

  • number - [Required] The angle in radians whose sine should be returned.

Degree and Radian Handling

The main source of error with SIN is unit mismatch, not the trigonometry itself. Excel is internally consistent here: if the input is in radians, the result is correct. If the input is actually a degree measure but is passed directly, the result is mathematically correct for the wrong angle.

Angle Correct Excel Pattern Expected Result
0 degrees =SIN(RADIANS(0)) 0
30 degrees =SIN(RADIANS(30)) 0.5
90 degrees =SIN(RADIANS(90)) 1
pi radians =SIN(PI()) approximately 0

For imported data, it is good practice to establish the unit before building the formula. A correct sine calculation built on the wrong angular unit is still a wrong result in business terms.

Using SIN

A frequent use of SIN is resolving a length into its vertical component. If a ramp, cable, or vector has a known magnitude and an angle measured from the horizontal, multiplying that magnitude by the sine of the angle gives the vertical part. This pattern is fundamental in trigonometric decomposition.

SIN also appears in periodic models. A formula such as =SIN(2*PI()*frequency*time) produces a normalized sine wave. Even if the workbook is not doing electrical or mechanical analysis, this pattern can still be useful for cyclical modeling, seasonality experiments, or synthetic test signals.

  • Convert degree input before calling SIN.
  • Use SIN when you need the vertical component associated with an angle.
  • Combine SIN with PI in periodic formulas that model oscillation.

Example 1 - Find the Sine of 0 Radians

This is a clean baseline case. At 0 radians, the sine value is 0, which makes it a useful reference point for verifying that the formula structure is correct before more complex inputs are introduced.

This is a helpful starting example because the expected answer is simple and familiar. It gives the learner one easy checkpoint before moving into degree conversion and applied geometry.

=SIN(0)
// Result = 0
Check Answer
Challenge #1
Target: Sheet1!D2

In cell D2, find the sine of 0 radians.

Example 2 - Find the Sine of 90 Degrees

Because the input is given in degrees, conversion is required. The formula first transforms 90 degrees into radians and then evaluates the sine. This example is useful because the expected result is well known and easy to verify.

This is also the key unit lesson in the post. It shows that the formula can still use degree-based thinking, but the value must be converted before SIN can read it correctly.

=SIN(RADIANS(90))
// Result = 1
Check Answer
Challenge #2
Target: Sheet1!D3

In cell D3, find the sine of 90 degrees after converting it to radians.

Example 3 - Find the Sine of 30 Degrees

Thirty degrees is another standard checkpoint. Its sine is 0.5, so the result confirms both the trigonometric value and the correctness of the degree-to-radian conversion.

This helps reinforce the same rule from a second familiar angle. The learner can focus on the conversion pattern while also seeing a standard trig value they may already know.

=SIN(RADIANS(30))
// Result = 0.5
Check Answer
Challenge #3
Target: Sheet1!D4

In cell D4, find the sine of 30 degrees after converting it to radians.

Example 4 - Calculate a Vertical Component

This is the practical pattern many users actually need. A length of 15 at an angle of 10 degrees has a vertical component equal to 15 multiplied by the sine of 10 degrees. The function is not returning a ratio in isolation here; it is turning that ratio into a physical or geometric component.

This is where the function starts to feel useful in real work. The sine result becomes part of a larger formula that translates an angle and a length into a measurable vertical amount.

=B5*SIN(RADIANS(C5))
// B5 = 15, C5 = 10
// Result is about 2.6
Check Answer
Challenge #4
Target: Sheet1!D5

In cell D5, calculate the vertical component for the ramp length in B5 and angle in C5.

One final detail is floating-point precision. Values that should theoretically equal zero, such as SIN(PI()), may return a very small scientific-notation residue instead of exact zero. That is normal numerical behavior, and if necessary it can be cleaned with ROUND.

  • SIN expects radians, not degrees.
  • The result always stays between -1 and 1.
  • Use COS for the horizontal component when the same angle is measured from the horizontal axis.

Conclusion Recap

SIN becomes much easier once one rule is clear: Excel expects radians, not degrees. That was the most important idea in this lesson, because many wrong SIN results come from using the right function with the wrong angle unit.

The examples then showed what SIN is actually good for. You can check standard trig values like 30 or 90 degrees after conversion, and you can use the result in a more practical formula to get a vertical component from a known length and angle.

  • Summary: SIN returns the sine of an angle in radians.
  • Syntax: =SIN(number).
  • Key behavior: Degree inputs must be converted before use.
  • Practical usage: Vertical components, trigonometric ratios, and periodic formulas.
Tactical Arena
Share SIN Function!

Tell your friends about this post

Discussion

ExcelClash is an interactive platform designed to level up your Excel skills through real-world exercises and challenges. Sharpen your logic, solve real spreadsheet problems, and learn faster.

© 2026 ExcelClash, Inc. All rights reserved.