Convert rectangular (Cartesian) coordinates (x, y) to polar coordinates (r, θ).
Convert rectangular (Cartesian) coordinates (x, y) to polar coordinates (r, θ).
The x-coordinate (horizontal distance).
The y-coordinate (vertical distance).
Rectangular to polar conversion uses r = √(x² + y²) for the radial distance and θ = atan2(y, x) for the angle.
How this calculator works
Rectangular to polar conversion uses r = √(x² + y²) for the radial distance and θ = atan2(y, x) for the angle.
Common questions about this calculator