Polar Coordinates Calculator
Convert points between Cartesian x, y coordinates and polar radius, angle coordinates in degrees.
About polar coordinates
Polar coordinate examples
| Input | Converted result | Explanation |
|---|---|---|
| Cartesian (3, 4) | Polar (5, 53.130102°) | A 3-4-5 right triangle fixes the radius. |
| Polar (10, 90°) | Cartesian (0, 10) | A right angle points along the positive y-axis. |
| Cartesian (-1, -1) | Polar (1.414214, 225°) | Both negative coordinates place the point in quadrant three. |
How to convert coordinates
- Choose Cartesian to polar or Polar to Cartesian.
- Enter both coordinates, using degrees for the polar angle.
- Select Convert coordinates to apply the trigonometric formulas.
- Read the radius and angle or the resulting x and y coordinates.
Polar coordinates FAQ
What do r and theta mean?
The radius r is the distance from the origin to the point. Theta is the direction measured counterclockwise from the positive x-axis.
Does the calculator use degrees or radians?
Angle inputs and outputs use degrees for readability. The calculator converts degrees to radians internally when evaluating sine and cosine.
Why is atan2 used instead of inverse tangent?
A simple inverse tangent cannot distinguish points in opposite quadrants with the same y divided by x ratio. Atan2 examines both signs and returns the correct direction.
Can an angle be greater than 360 degrees?
Such an angle represents additional full turns and remains mathematically valid. Cartesian-to-polar results are normalized to the standard range from zero through less than 360 degrees.
Why must radius be nonnegative?
A negative radius can always be rewritten as a positive radius with the angle rotated by 180 degrees. Requiring a nonnegative value keeps each displayed result in a familiar convention.