Convert a point in the Cartesian plane to its equal polar coordinates with this polar coordinate calculator. Polar coordinates also take place in the x-y plane but are represented by a radius and angle, as shown in the diagram below.

Polar Coordinates Calculator

Enter any 2 values to calculate the missing variables


Related Calculators

Polar Coordinates Conversion Guide

Polar coordinates describe a point by its distance from the origin and its direction from the positive x-axis. This is often the most natural way to represent circular motion, rotation, vectors, and geometry centered around a point.

Key Formulas

Conversion Formula When to Use It
Cartesian to polar
r = \sqrt{x^2 + y^2}
\theta = \operatorname{atan2}(y, x)
Use when the x- and y-coordinates are known and you want radius and angle.
Polar to Cartesian
x = r\cos(\theta)
y = r\sin(\theta)
Use when the radius and angle are known and you want the rectangular coordinates.
Degrees and radians
\theta_{\text{rad}} = \theta_{\text{deg}}\cdot \frac{\pi}{180}
\theta_{\text{deg}} = \theta_{\text{rad}}\cdot \frac{180}{\pi}
Use when you need to switch the angle unit used by the calculator or problem.
Equivalent polar forms
\left(r,\theta\right) \equiv \left(r,\theta + 2\pi k\right) \equiv \left(-r,\theta + \pi + 2\pi k\right),\; k \in \mathbb{Z}
The same point can be written with many different angles, and even with a negative radius.

How to Convert a Point

  1. Find the radius using the distance from the origin.
  2. Find the angle using the signs of both x and y so the quadrant is correct.
  3. Convert the angle to degrees or radians if needed.
  4. Remember that multiple polar representations can describe the same point.

The angle formula is best written with atan2, not just arctan of y divided by x. A basic arctangent can lose quadrant information, while atan2 uses both coordinates and correctly places the angle in Quadrant I, II, III, or IV.

Quadrant Guide

Quadrant Sign of x Sign of y Angle Range
I Positive Positive 0ยฐ to 90ยฐ
II Negative Positive 90ยฐ to 180ยฐ
III Negative Negative 180ยฐ to 270ยฐ
IV Positive Negative 270ยฐ to 360ยฐ

Quick Conversion Examples

Cartesian Point Polar Form Notes
(1, 0) r = 1, ฮธ = 0ยฐ Point lies on the positive x-axis.
(0, 1) r = 1, ฮธ = 90ยฐ Point lies on the positive y-axis.
(-1, 0) r = 1, ฮธ = 180ยฐ Point lies on the negative x-axis.
(0, -1) r = 1, ฮธ = 270ยฐ Also commonly written as โˆ’90ยฐ.
(3, 4) r = 5, ฮธ โ‰ˆ 53.13ยฐ A classic right-triangle conversion.
(-3, 4) r = 5, ฮธ โ‰ˆ 126.87ยฐ Same radius as (3, 4), different quadrant.

Practical Notes

  • At the origin: when both coordinates are zero, the radius is zero and the angle is not unique.
  • Angle conventions vary: some results are shown from 0ยฐ to 360ยฐ, while others use negative angles for clockwise rotation.
  • Radius units stay the same: if x and y are in meters, then r is also in meters.
  • Polar coordinates are not unique: adding a full turn gives the same point.
  • Negative radius is valid: it represents the same point as a positive radius with the angle shifted by half a turn.

Common Questions

Why use polar coordinates instead of Cartesian coordinates?
They are often simpler for circles, rotation, angles, vectors, and any problem with radial symmetry.
Why does the angle sometimes come out negative?
A negative angle is still correct. It simply means the direction was measured clockwise instead of counterclockwise.
Can one point have more than one polar form?
Yes. The same location can be written with different angles, and it can also be written with a negative radius and a shifted angle.
What is the most reliable way to find the angle?
Use the two-coordinate angle function so the result lands in the correct quadrant without manual adjustment.