Seamlessly switch between polar (r, θ) and Cartesian (x, y) systems.
Select the conversion type, enter your coordinates, and get instant, accurate results. Use the tooltips for guidance on each input.
Explore common scenarios to understand how the calculator works.
A standard conversion from a polar coordinate with a positive angle.
r: 5
θ: 53.13 (degrees)
A standard conversion from a Cartesian coordinate in the first quadrant.
x: 3
y: 4
Using radians for the angle, a common unit in higher-level mathematics.
r: 10
θ: 0.785398 (radians)
Converting from the third quadrant, where both x and y are negative.
x: -1
y: -1
atan2(y, x)
function is preferred over atan(y/x)
as it correctly handles all four quadrants.atan2(y, x)
atan(y/x)
. This function only returns values between -90° and +90°, failing to distinguish between diagonally opposite quadrants (e.g., I and III). The atan2(y, x)
function considers the signs of both x and y to return the correct angle in the full 360° range, which is why it's essential for accurate conversions.