The RADIANS function in Google Sheets converts an angle value from degrees to radians, which is the unit expected by most trigonometric functions in Sheets. If you're working with angles measured in degrees but need to feed them into SIN, COS, or other trig functions, RADIANS handles the conversion for you. Dive into our comprehensive guide to master its application.
Parameters
angle: The angle, in degrees, that you want to convert to radians.
Step-by-Step Tutorial
-
Converting degrees to radians:
- Example:
=RADIANS(180) - Result:
3.14159...(π)
- Example:
-
Using
RADIANSinside a trig function:- Example:
=SIN(RADIANS(90)) - Result:
1
- Example:
Use Cases and Scenarios
- Trigonometric Calculations: Convert degree-based angle inputs before using them in
SIN,COS, orTAN. - Engineering and Physics: Perform calculations that require radian measurements, such as rotational mechanics.
- Geometry Problems: Translate angle measurements between degrees and radians for geometric formulas.
Related Functions
DEGREES: Converts an angle from radians to degrees.SIN: Returns the sine of an angle provided in radians.COS: Returns the cosine of an angle provided in radians.
Related Articles
No related articles available for the RADIANS function.