Coterminal Angle Calculator - Find Coterminal Angles
Find coterminal angles for any input in degrees, radians, or gradians. Generate multiple positive and negative coterminals and the standard position angle.
Enter any angle, choose a unit, set how many coterminal angles you want, then click Calculate to see all results.
Coterminal Angle Calculator - Find Coterminal Angles
Find coterminal angles for any input in degrees, radians, or gradians. Generate multiple positive and negative coterminals and the standard position angle.
Supports decimal numbers and negative values
Generate 1–5 coterminal angles in each direction
About the coterminal angle calculator
Two angles are coterminal if they share the same terminal side when drawn in standard position — that is, when their initial side lies along the positive x-axis. Any angle θ has infinitely many coterminal angles, generated by adding or subtracting complete rotations: θ + 360°n for any integer n (in degrees), θ + 2πn (in radians), or θ + 400n (in gradians). Every complete rotation returns the terminal side to the same position, so all these angles are geometrically equivalent.
Coterminal angles are a foundational concept in trigonometry because all the trigonometric functions are periodic: their values repeat after every full rotation. When you evaluate sin(405°), the result is the same as sin(45°) because 405° = 45° + 360°. This periodicity means that to find the value of any trigonometric function at any angle, you only need to know its values in a single period — typically 0° to 360°.
The standard position angle (also called the reference angle or the angle reduced to [0°, 360°)) is found by computing θ mod 360° and adjusting for negative values. For example, −30° has a standard position angle of 330°, and 750° has a standard position angle of 30°. This is the smallest non-negative angle that is coterminal with the original angle.
In practice, coterminal angles appear throughout engineering and physics. Electric motors and turbines rotate continuously, and their angular position is naturally described modulo 360°. In computer graphics, rotation animations must handle angles that exceed 360° without visual glitches, which requires reasoning about coterminal equivalence. In navigation, compass bearings repeat every 360°, and heading 030° is coterminal with 390°. GPS and inertial navigation systems must track accumulated rotation — the actual number of full turns — separately from the current angular position.
This calculator generates both positive and negative coterminals so you can see the full bidirectional family of equivalent angles. The count selector lets you generate 1 to 5 coterminals in each direction.
Coterminal angle examples
Common angles with their coterminal families.
| Input angle | Coterminals (first positive & negative) | Notes |
|---|---|---|
| 45° (degrees) | +405°, +765° / −315°, −675° | Add or subtract 360° multiples. Standard position angle is also 45°. |
| −30° (degrees) | +330°, +690° / −390°, −750° | Negative angles work just like positive ones. The standard position angle is 330° (= −30° + 360°). |
| π/3 radians (≈1.0472) | 7π/3, 13π/3 / −5π/3, −11π/3 | Radian coterminals add or subtract 2π ≈ 6.2832 each time. |
| 150g (gradians) | 550g, 950g / −250g, −650g | Gradian coterminals add or subtract 400g (one full rotation) each step. |
How to use the coterminal angle calculator
- Enter the initial angle in the 'Initial Angle' field. Decimal numbers and negative angles are both supported.
- Select the unit of your angle: Degrees, Radians, or Gradians.
- Choose how many coterminal angles you want (1–5) by clicking the count buttons.
- Click 'Calculate Coterminal Angles'. The results panel shows the standard position angle plus the requested positive and negative coterminals.
- Use the example buttons to load preset angles and explore the pattern of coterminal generation.
Coterminal angle FAQ
What are coterminal angles?
Coterminal angles are angles in standard position that share the same terminal side. They differ by one or more complete rotations — 360° in degrees, 2π in radians, or 400 in gradians. Because a complete rotation returns the terminal ray to the same position, an infinite family of coterminal angles exists for any given angle: 45°, 405°, 765°, −315°, and so on are all coterminal.
How do I find the standard position angle?
Compute θ mod 360° (for degrees) and adjust to ensure the result is non-negative: standard = ((θ mod 360) + 360) mod 360. For example, −30 mod 360 = −30, so add 360 to get 330°. For radians, use θ mod 2π with the same adjustment. This gives the smallest non-negative angle coterminal with the original.
Are coterminal angles always equal in trigonometric value?
Yes — all six trigonometric functions (sin, cos, tan, cot, sec, csc) have the same value at coterminal angles. This follows directly from their periodicity. For example, sin(405°) = sin(45°) = √2/2, and cos(−30°) = cos(330°) = √3/2. This property is what allows trigonometric equations to have infinitely many solutions.
What is the difference between coterminal and supplementary angles?
Supplementary angles sum to 180° (or π radians), while coterminal angles differ by a multiple of 360° (2π). They are completely different concepts: supplementary angles are defined by their sum, while coterminal angles are defined by having the same terminal side. For example, 50° and 130° are supplementary (50 + 130 = 180), but they are definitely not coterminal.
Why do some calculators only give angles between 0° and 360°?
Many applications only need the standard position angle — the unique coterminal angle in [0°, 360°). This representation is sufficient for evaluating trigonometric functions, since you can always reduce any angle to this range first. However, when tracking physical rotation (such as the total angle turned by a motor shaft), the actual accumulated value matters and cannot be reduced.
How are coterminal angles used in programming?
In game development and computer graphics, rotations accumulate over time and can exceed 360°. Using the modulo operation to normalize angles to [0°, 360°) keeps values manageable. However, for animations interpolating between two rotations, it is important to find the shortest path (the coterminal angle closest to the starting position) to avoid spinning the wrong way around. Coterminal angle reasoning is therefore central to smooth rotation interpolation algorithms.