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.
Trigonometric Values
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.