Converter

Angle Converter

Convert between degrees, radians, gradians, turns, minutes of arc, and seconds of arc. See sine, cosine, and tangent of any angle.

Quick Answer

90 degrees = pi/2 radians = 100 gradians = 0.25 turns = 5,400 arcmin = 324,000 arcsec. Use our converter for any angle.

deg
45
rad
0.78539816
grad
50
turns
0.12500000
arcmin
2700
arcsec
162000

Trigonometric Values

sin
0.70710678
cos
0.70710678
tan
1.0000000

About This Tool

The Angle Converter is a versatile tool for mathematicians, engineers, programmers, surveyors, astronomers, and students who need to convert angles between different measurement systems. It supports six angle units (degrees, radians, gradians, turns, minutes of arc, and seconds of arc) and additionally displays the trigonometric values (sine, cosine, and tangent) for any angle you enter, making it a dual-purpose converter and trig calculator.

Why Multiple Angle Units Exist

Different angle measurement systems evolved for different practical needs. Degrees originated in ancient Babylon, where the base-60 number system led to dividing a circle into 360 parts. This choice persists because 360 has many divisors (1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 18, 20, 24, 30, 36, 40, 45, 60, 72, 90, 120, 180, 360), making it easy to divide a circle into equal parts. Radians emerged from mathematics as the natural angle unit, where one radian is the angle subtended by an arc equal in length to the radius. This makes calculus formulas elegant: the derivative of sin(x) is simply cos(x) when x is in radians. Gradians were created during the French Revolution as part of the metric system, dividing a right angle into 100 parts for decimal convenience in surveying.

Radians in Mathematics and Programming

Radians are the standard unit in virtually all mathematical and scientific computing. A full circle equals 2*pi radians (approximately 6.28318), a half circle equals pi radians, and a right angle equals pi/2 radians. The key advantage of radians is that they make derivative and integral formulas for trigonometric functions clean: d/dx sin(x) = cos(x) only works when x is in radians. In programming, every standard math library uses radians for its trigonometric functions. JavaScript Math.sin(), Python math.sin(), C math.h sin(), and Java Math.sin() all expect radians. Forgetting to convert degrees to radians is one of the most common bugs in graphics programming, game development, and scientific computing.

Minutes and Seconds of Arc in Navigation and Astronomy

The sexagesimal subdivision of degrees into 60 minutes and 3,600 seconds provides fine angular resolution without decimals. One nautical mile was historically defined as one minute of arc along a meridian of the Earth, directly linking angular measurement to surface distance. GPS coordinates use degrees, minutes, and seconds (DMS) format alongside decimal degrees. In astronomy, arcminutes and arcseconds describe the apparent size of celestial objects: the full Moon spans about 31 arcminutes, Jupiter appears as 30-50 arcseconds across, and the Hubble Space Telescope resolves details as small as 0.05 arcseconds. Telescope resolution is fundamentally limited by aperture and wavelength, expressed in arcseconds by the Dawes limit formula.

Trigonometric Values

Our tool goes beyond pure angle conversion by computing sine, cosine, and tangent for any input angle. These three fundamental trigonometric functions relate angles to ratios of sides in a right triangle and are essential across engineering, physics, computer graphics, and signal processing. The sine function gives the ratio of the opposite side to the hypotenuse, cosine gives adjacent over hypotenuse, and tangent gives opposite over adjacent. We handle the special case where tangent is undefined (at 90 degrees, 270 degrees, etc., where cosine equals zero) by displaying "undefined" rather than an error. All values are computed using the JavaScript Math library, which provides IEEE 754 double-precision floating point accuracy.

Practical Applications

Angle conversion arises in diverse fields. In construction and carpentry, miter saw angles are in degrees, but roof pitch calculations may use gradians or ratios. In robotics and CNC machining, angles may be specified in degrees or radians depending on the controller. In navigation, bearings use degrees while great-circle calculations use radians. In photography, field of view is expressed in degrees. In military applications, the mil (not included here, but approximately 6,283.2 per circle) subdivides angles for artillery targeting. Our tool covers the most universally used angle units and their trigonometric values to serve the broadest range of practical needs.

Common Reference Angles

Memorizing a few key angle equivalents helps build intuition. Zero degrees equals zero radians, zero gradians, and zero turns. Thirty degrees equals pi/6 radians (0.5236), with sin=0.5, cos=0.866, tan=0.577. Forty-five degrees equals pi/4 radians (0.7854), with sin=cos=0.7071 and tan=1. Sixty degrees equals pi/3 radians (1.0472), with sin=0.866, cos=0.5, tan=1.732. Ninety degrees equals pi/2 radians (1.5708), 100 gradians, and 0.25 turns, with sin=1, cos=0, tan=undefined. These reference points serve as sanity checks when performing angle conversions in the field or verifying calculator results.

Frequently Asked Questions

How do I convert degrees to radians?
To convert degrees to radians, multiply by pi/180 (approximately 0.01745329). For example, 180 degrees equals pi radians (approximately 3.14159), 90 degrees equals pi/2 radians (approximately 1.5708), and 45 degrees equals pi/4 radians (approximately 0.7854). The radian is the SI unit for angles and is the natural unit used in calculus, physics, and most mathematical functions. Programming languages typically require angles in radians for trigonometric functions, making this conversion essential for software development.
What are gradians and who uses them?
Gradians (also called gons or grads) divide a right angle into 100 parts, making a full circle 400 gradians. This means 1 gradian equals 0.9 degrees. Gradians were introduced during the French Revolution as part of the metric system and are still used primarily in surveying, mining, and civil engineering in continental Europe. The advantage of gradians is that slope calculations become simpler: a 1% slope is approximately 1 gradian. Many scientific calculators have a GRA or GRAD mode for this unit. While less common than degrees or radians, gradians remain an ISO-recognized angle unit.
What are minutes and seconds of arc?
Minutes and seconds of arc subdivide degrees, similar to how time is divided. One degree equals 60 minutes of arc (arcminutes, symbol: single prime), and one arcminute equals 60 seconds of arc (arcseconds, symbol: double prime). So one degree contains 3,600 arcseconds. These units are essential in astronomy (star positions, telescope resolution), navigation (latitude/longitude coordinates), and surveying. For example, GPS coordinates are often expressed as degrees, minutes, and seconds (e.g., 40 degrees 26 minutes 46 seconds North). The average human eye can resolve about 1 arcminute, which is the basis for the 20/20 vision standard.
What is a turn and when is it used?
A turn (also called a revolution, cycle, or full rotation) equals 360 degrees, 2*pi radians, or 400 gradians. It represents one complete rotation around a circle. Turns are used in rotational mechanics (revolutions per minute, or RPM), signal processing (cycles per second), and some mathematical contexts where they simplify formulas. The tau movement in mathematics advocates using tau (2*pi, approximately 6.2832) instead of pi as the fundamental circle constant, which effectively makes 1 turn = 1 tau radians. Some programming languages and graphics APIs accept angles in turns (0 to 1) for simplicity.
Why does my calculator give different trig results?
The most common cause is that your calculator is set to the wrong angle mode. Scientific calculators typically have DEG (degrees), RAD (radians), and GRAD (gradians) modes. If you enter 90 expecting degrees but the calculator is in radian mode, you will get sin(90 rad) = 0.894 instead of sin(90 deg) = 1. Always check your calculator mode before performing trigonometric calculations. Our tool shows sine, cosine, and tangent values for any input, automatically handling the conversion so you can verify your calculator results or use our values directly.
How are angles used in programming and game development?
In programming, angles are used for rotations, trigonometry, physics simulations, and graphics. Most math libraries (C/C++ math.h, JavaScript Math, Python math) expect radians for sin(), cos(), and tan() functions. CSS uses degrees for transform: rotate(). Game engines vary: Unity uses degrees for inspector values but radians internally; Unreal uses degrees throughout. WebGL and OpenGL use radians. When porting code between frameworks, angle conversion errors are a common source of bugs. Our converter helps verify values during development and debugging.