Rectangular to Polar Coordinates Calculator
Convert rectangular (Cartesian) coordinates (x, y) to polar coordinates (r, θ).
Rectangular (Cartesian) to Polar Coordinate Conversion Mathematics
Rectangular to polar calculator converts Cartesian coordinates (x, y) to polar coordinates (r, θ), computing radius and angle.
Polar coordinates describe a point by its distance from the origin (r) and angle from the positive x-axis (θ), rather than by horizontal/vertical offsets. The radius comes directly from the Pythagorean theorem; the angle uses the two-argument arctangent (atan2) to correctly handle all four quadrants.
- 1Enter the x and y coordinates of a point.
- 2View the equivalent polar radius (r) and angle (θ) in degrees.
Convert the rectangular point (3, 4) into polar coordinates.
Frequently Asked Questions (FAQ)
Regular arctan(y/x) only returns values between -90° and 90°, so it can't tell (3,4) apart from (-3,-4) — atan2(y,x) uses the signs of both x and y separately to correctly determine which of the four quadrants the point is in.
Use x = r × cos(θ) and y = r × sin(θ) — the reverse transformation.
Top Similar Tools (Math)
Explore more tools in Math (83+ more calculators available)
Browse our complete directory with category filters, formulas, and verified engines.