Polar ↔ Cartesian Coordinate Converter
Convert (x, y) ↔ (r, θ). Polar: r = √(x²+y²), θ = atan2(y, x). Cartesian: x = r·cos θ, y = r·sin θ.
Result
How to use this calculator
- Pick direction. Cartesian-to-polar takes (x, y) and returns (r, θ).
- Polar-to-Cartesian takes (r, θ in degrees) and returns (x, y).
- The angle-unit selector switches the displayed θ between degrees and radians.
About this calculator
Two coordinate systems for the same plane. Cartesian (x, y) — perpendicular axes, intuitive for rectangular shapes. Polar (r, θ) — radius from origin + angle from positive x-axis, intuitive for circular shapes and rotation. Conversions: r = √(x²+y²); θ = atan2(y, x) — uses the TWO-argument arctangent so the quadrant is preserved (regular atan(y/x) loses the sign distinction between quadrants II/IV and I/III). x = r·cos θ; y = r·sin θ. Polar is the natural form for orbits, spirals, antenna patterns, and complex-number magnitude/phase representation; Cartesian is the natural form for translation, regular grids, and most CAD work.
Frequently asked
Why atan2 instead of atan(y/x)?+
Is r ever negative?+
What's the angle convention?+
Source?+
Related calculators
More tools you might like
Hand-picked tools that pair well with this one — same audience, same intent.
Compute sin(x) for any angle in degrees or radians.
Compute cos(x) for any angle.
d = √(Δx² + Δy² [+ Δz²]). Pythagorean distance in the plane or 3-space.
a² + b² = c². Solve for hypotenuse or missing leg of a right triangle.
tan⁻¹(x) — find the angle whose tangent is x. Range (−90°, 90°).
Convert between 30 major world currencies using a snapshotted static rate table — clearly marked, not live.