Cal11 calculator

Does Excel Calculate Sine in Degrees

Reviewed by Calculator Editorial Team

Excel's trigonometric functions like SIN, COS, and TAN work with radians by default, which can be confusing for users more comfortable with degrees. This guide explains how Excel handles degree measurements and how to properly use trigonometric functions.

How Excel Handles Trigonometry

Excel's trigonometric functions (SIN, COS, TAN, ASIN, ACOS, ATAN) use radians as their default unit of measurement. This is different from most scientific calculators and programming languages that use degrees by default.

For example, if you enter =SIN(90) in Excel, it will not return 1 (which would be the sine of 90 degrees), but rather a very small number close to 0, because Excel interprets 90 as 90 radians.

Remember: 1 radian ≈ 57.2958 degrees. So 90 degrees is approximately 1.5708 radians.

Converting Degrees to Radians

To use degrees with Excel's trigonometric functions, you need to convert your degree measurement to radians first. The conversion formula is:

Radians = Degrees × (π / 180)

Excel provides the PI() function to get the value of π (pi). So you can use:

=DEGREES × (PI() / 180)

For example, to calculate the sine of 90 degrees:

=SIN(90 × (PI() / 180))

This will correctly return 1.

Using the SIN Function

The SIN function in Excel returns the sine of a given angle in radians. Here's how to use it properly with degrees:

  1. Enter your angle in degrees
  2. Convert it to radians using the formula above
  3. Pass the radian value to the SIN function

For example, to calculate the sine of 30 degrees:

=SIN(30 × (PI() / 180))

This will return approximately 0.5.

Excel also provides a DEGREES function that converts radians to degrees, and a RADIANS function that converts degrees to radians. These can simplify your calculations:

=SIN(RADIANS(30))

Common Mistakes

Many Excel users make these common mistakes when working with trigonometric functions:

  • Entering angles directly in degrees without conversion
  • Forgetting to convert back to degrees if needed
  • Using the wrong trigonometric function for the problem
  • Not accounting for the periodicity of trigonometric functions

Always double-check your units and ensure you're using the correct conversion formulas.

Practical Example

Let's calculate the height of a building using trigonometry. Suppose you're standing 50 meters away from a building and measure the angle of elevation to the top of the building as 15 degrees.

To find the height (h) of the building:

h = distance × TAN(angle)

In Excel, you would enter:

=50 × TAN(RADIANS(15))

This calculation would give you approximately 13.76 meters.

FAQ

Does Excel have a degrees mode for trigonometric functions?
No, Excel's trigonometric functions always use radians. You must convert degrees to radians before using these functions.
How do I convert radians back to degrees in Excel?
Use the DEGREES function: =DEGREES(radian_value)
What if I enter a negative angle in degrees?
The conversion to radians will work the same way, but be aware that trigonometric functions are periodic with a period of 2π radians (360 degrees).
Can I use degrees directly with Excel's trigonometric functions?
No, you must always convert degrees to radians first. Excel does not have a built-in degrees mode for trigonometric calculations.
What if I need to work with very small angles in degrees?
The conversion to radians will still work, but be aware of potential precision issues with very small numbers.