The coterminal angle calculator finds all the angles that finish in the same place as yours. Two angles are coterminal when their terminal sides land on the identical ray from the origin, which happens exactly when they differ by a whole number of full turns. 45°, 405° and −315° are all coterminal, and every trigonometric function returns precisely the same value at all three — same magnitude, same sign, no adjustment of any kind.
Arb Digital keeps this page distinct from the angle converter, which changes an angle's units between degrees, radians and gradians. Coterminal angles are angle geometry: the same rotation described by different numbers within one unit system. It is also distinct from the reference angle calculator, which finds the acute angle governing function magnitudes — a related but genuinely different question, covered below.
What This Coterminal Angle Calculator Does
Enter any angle and it returns the standard-position angle — the unique coterminal angle between 0° and 360° — as the headline result, since that is what most problems actually want. Alongside it you get the largest negative coterminal angle, the number of full turns that had to be removed or added to reach standard position, the radian equivalent, and the quadrant.
The list at the bottom shows as many coterminal angles as you ask for in each direction, positive and negative, so the pattern is visible rather than abstract. There are infinitely many, and seeing several either side of the standard angle makes clear that they form an arithmetic sequence stepping by 360°, not an arbitrary collection.
How to Use It
- Enter the angle. Negatives and very large values are the interesting cases and are handled directly.
- Select degrees or radians. A full turn is 360° or 2π radians, and the calculator steps by whichever you choose.
- Choose how many to list in each direction — three is usually enough to see the pattern.
- Read the standard angle, the one between 0° and 360° that most textbook answers require.
- Use the negative equivalent when your context measures rotation clockwise, as many engineering conventions do.
The Formula: How It's Calculated
Every angle coterminal with θ is given by θ + 360°n, where n is any integer — positive, negative or zero. In radians the same rule is θ + 2πn. That is the entire definition, and everything else is bookkeeping about which n you want.
To find the standard-position angle, take the remainder of θ divided by 360° and, if it comes out negative, add 360° once. Working the loaded example: 480° divided by 360° leaves a remainder of 120°, so the standard angle is 120° and one full turn was removed. The largest negative coterminal angle is 120 − 360 = −240°. A negative input works the same way: −150° has a remainder of −150, so add 360° to reach 210°, the standard-position angle. And a larger case: 1,110° minus three full turns of 360° is 1,110 − 1,080 = 30°. The Wolfram MathWorld entry on angles covers the underlying definitions of angular position.
Coterminal or Reference? The Distinction That Matters
These two ideas sit next to each other in every textbook and are constantly swapped. The difference is precise and consequential.
Coterminal angles are genuinely the same direction. Every trigonometric function agrees exactly, sign included. sin 405° and sin 45° are both √2⁄2. You can substitute one for the other anywhere without changing a thing.
Reference angles are a different direction with matching magnitudes. The reference angle for 210° is 30°, but sin 210° = −1⁄2 while sin 30° = +1⁄2. The magnitudes match, the signs do not, and the quadrant supplies the difference.
In practice you often use both, in a fixed order: reduce to the standard coterminal angle first, then take the reference angle of that. Reversing the order loses the quadrant information, and with it the sign. Our reference angle calculator handles the second step, and the unit circle calculator shows both ideas geometrically on the same picture.
Why Negative Coterminal Angles Are Useful
A negative angle means clockwise rotation, and many real conventions measure that way. Compass bearings, screw threads, some CNC coordinate systems and several robotics frameworks all treat one direction as negative. Being able to say that 300° anticlockwise and 60° clockwise are the same final position is often the difference between a machine turning the short way and the long way — the same rotation to arrive at, but four fifths less travel.
This is also why the "largest negative coterminal" output is here as a first-class result rather than an afterthought. Given a standard angle of 300°, the negative equivalent −60° is frequently the more useful description. In animation and motion control, choosing the coterminal representation closest to zero is the standard way to make a rotation take the shortest path instead of spinning most of the way round.
When Coterminal Angles Are Not Interchangeable
Everything above rests on one fact: the six trigonometric functions cannot tell 390° from 30°. Both give a sine of one half, because sine depends only on where the terminal side points. That is exactly why coterminal reduction is safe inside a trigonometric expression, and exactly why it is unsafe outside one.
The information the functions discard is the number of complete turns taken to get there — the winding number. An angle of 30° is a thirtieth-of-a-turn nudge; 390° is a full revolution plus that nudge; −330° is most of a turn in the opposite direction. Trigonometrically identical, physically three different journeys. A valve stem turned 390° has been opened and closed once on the way; a wheel that has rotated 750° has covered two circumferences of ground, not thirty degrees' worth. Reduce those to 30° before the distance is computed and the answer is wrong by a factor of twenty-five.
The practical rule is to reduce late, never early. Keep the raw accumulated angle as the quantity you store and integrate, and apply the coterminal reduction only at the moment you feed it into a sine, a cosine or a display. Systems that need both keep them separately: a wrapped angle in 0°–360° for orientation, plus an integer turn count for how far the thing has actually travelled. Multi-turn absolute encoders are built precisely around that split, and so are the gear trains behind analogue odometers.
The same caution applies to totals. Winding angles do not respect the reduction either — three successive 150° turns are 450° of work, not 90°. If your quantity is an amount of rotation rather than a direction, treat coterminal angles as different numbers that merely happen to look alike.
Angle Wrapping in Code and Instruments
Coterminal reduction has a working name in software: angle wrapping or normalisation, keeping a running angle inside a fixed range as it accumulates. A rotating shaft's encoder, a gyroscope's heading, a game character's facing direction — each accumulates rotation indefinitely, and something must fold the value back into 0°–360° or −180°–180° before it is used or displayed.
The classic bug is in the difference between two angles. A heading of 359° and a target of 1° are two degrees apart, but naive subtraction gives −358°, and a controller acting on that will turn almost the whole way round. The fix is to take the difference, then wrap it into −180°–180° using exactly the coterminal rule this calculator applies. Note also that the modulo operator in most languages returns a negative result for a negative input, which is why an explicit "add a full turn if negative" step is required — the same step described in the formula section above. If you need the trigonometric values once the angle is wrapped, the trigonometric functions calculator evaluates all six, and the arctan calculator covers the two-argument form used to compute headings in the first place. The NIST Digital Library of Mathematical Functions states the periodicity relations that make all of this valid.
Arb Digital publishes hundreds of free tools across maths, geometry, finance and unit conversion. No sign-up, no limits, nothing stored.
Browse All Free Tools Contact Arb DigitalCommon Mistakes to Avoid
- Adding 180° instead of 360° — half a turn gives the opposite direction, not a coterminal angle. Only whole turns preserve the terminal side.
- Trusting a negative modulo result — most languages return −150 for −150 mod 360. Add a full turn to bring it into range.
- Confusing coterminal with reference angles — coterminal angles share sign as well as magnitude; reference angles do not.
- Subtracting raw angles across the wrap point — 359° and 1° differ by 2°, not 358°. Wrap the difference before using it.
- Using 360 as the full turn in radians — a full turn is 2π there, roughly 6.2832, and mixing the two silently corrupts every result.
Related Free Tools From Arb Digital
Take the next step with the reference angle calculator, see the geometry on the unit circle calculator, evaluate functions with the trigonometric functions calculator, change units with the angle converter, compute headings with the arctan calculator, or browse the full free online tools hub.
Frequently Asked Questions
Angles that share the same terminal side, meaning they finish in the same direction. They differ by a whole number of full turns — 360° in degrees or 2π in radians — and every trigonometric function gives identical values for all of them.
Add or subtract 360° as many times as needed. The general formula is θ + 360°n for any integer n, or θ + 2πn in radians.
Infinitely many, one for every integer number of turns in each direction. Only one of them lies between 0° and 360°, and that one is called the standard-position angle.
Subtract one full turn: 480 − 360 = 120°. That is the standard-position angle. The largest negative coterminal angle is 120 − 360 = −240°.
No. Coterminal angles point in the same direction and give identical function values including sign. A reference angle is the acute angle to the x‑axis and matches only the magnitude, with the quadrant determining the sign.
Yes. A negative angle simply measures rotation clockwise. For a standard angle of 120°, −240° is coterminal and often the more convenient description in engineering contexts.
Add or subtract 2π instead of 360°. For example, π⁄4 is coterminal with 9π⁄4 and with −7π⁄4. Switch this calculator's unit selector to radians to work directly in them.
This tool is provided for education and reference. Verify any result used in engineering, robotics or navigation work against an independent calculation.