Cartesian to Polar Converter

Convert Cartesian coordinates (x, y) to polar form (r, θ) with options for degrees or radians and both raw and normalized angles.

Inputs

How to Use This Converter

Enter the x and y coordinates for your point, choose degrees or radians, then click Calculate (or let the inputs update automatically). The results panel shows the radius and both the raw and normalized angles so you can plug values into math, engineering, or graphics workflows.

If you already have polar data, use the opposite tool at Polar to Cartesian to go back.

Methodology

We compute the radius as √(x² + y²) and the angle with atan2(y, x) so every quadrant, including x = 0, is handled correctly. The normalized value adds 360° or 2π to any negative angle, matching the selected unit.
Results use standard math functions and are for reference. If you need production-grade precision, double-check the values in your calculator or programming environment.

Full original guide (expanded)

Convert any 2D point (x, y) into polar form (r, θ). Choose degrees or radians, and get both the raw angle (from atan2) and a normalized 0–360° version.

When x and y are supplied, the converter uses the atan2 function so your angle is correct for every quadrant. The results panel echoes r and two angle representations so you can copy whichever works best.

Need the opposite? Try Polar to Cartesian.

FAQ

Why is my angle negative?

This is normal. Points in Quadrant IV (below the x-axis, x > 0, y < 0) have negative angles if you use atan2. Use the normalized value for a 0–360° representation.

What if x = 0?

atan2 handles it correctly. If x = 0 and y > 0, θ = 90° (π/2). If x = 0 and y < 0, θ = 270° (3π/2) in the normalized form.

What if the point is the origin?

If x = 0 and y = 0, then r = 0 and the angle is technically undefined. Here we set θ = 0 for convenience.

About this tool

Designed to match math, engineering, and programming conventions. Uses atan2, supports both angle units, and shows the normalized angle so you can copy it directly into your work.

Related Math & Conversions

Formulas
Radius
r = √(x² + y²)
Raw angle
θ = atan2(y, x)
Degrees conversion
θdeg = θ × 180 / π
Normalized angle
θnorm = θ (if θ ≥ 0); θnorm = θ + 360° or θ + 2π (if θ < 0)
Citations

Polar to Cartesian — calcdomain.com · Accessed 2026-01-19
https://calcdomain.com/polar-to-cartesian

Changelog
  • 0.1.0-draft — 2026-01-19: Initial audit spec draft generated from the extracted HTML (review required).
  • 0.1.0-draft — 2026-01-19: Verify formulas match the calculator engine and express them clearly.
  • 0.1.0-draft — 2026-01-19: Confirm cited sources are authoritative and relevant to polar conversions.
Verified by Ugo Candido Last Updated: 2026-01-19 Version 0.1.0-draft
Version 1.5.0