Polar to Rectangular Coordinates Converter
Convert between polar (r, θ) and rectangular (x, y) coordinates. Bidirectional conversion with quadrant visualization, unit circle reference, and batch table.
Convert rectangular (x, y) to polar (r, θ) coordinates in degrees, radians, or gradians. Quadrant detection, batch mode, visual plot, and reference table.
| Quadrant | x sign | y sign | θ range (degrees) | θ range (radians) |
|---|---|---|---|---|
| I | + | + | 0° – 90° | 0 – π/2 |
| II | − | + | 90° – 180° | π/2 – π |
| III | − | − | 180° – 270° | π – 3π/2 |
| IV | + | − | 270° – 360° | 3π/2 – 2π |
| x | y | r | θ (degrees) |
|---|---|---|---|
| 1.0000 | 0.0000 | 1.0000 | 0.00° |
| 0.8660 | 0.5000 | 1.0000 | 30.00° |
| 0.7071 | 0.7071 | 1.0000 | 45.00° |
| 0.5000 | 0.8660 | 1.0000 | 60.00° |
| 0.0000 | 1.0000 | 1.0000 | 90.00° |
| -1.0000 | 0.0000 | 1.0000 | 180.00° |
| 0.0000 | -1.0000 | 1.0000 | 270.00° |
| 3.0000 | 4.0000 | 5.0000 | 53.13° |
| 5.0000 | 12.0000 | 13.0000 | 67.38° |
| -3.0000 | 4.0000 | 5.0000 | 126.87° |
The **Rectangular to Polar Calculator** converts Cartesian coordinates (x, y) to polar form (r, θ) with support for degrees, radians, and gradians. It computes the radius r = √(x² + y²) and the angle θ = atan2(y, x), normalizing the result to the [0°, 360°) range.
Every conversion displays all three angle units simultaneously so you never need to convert between systems manually. The calculator identifies which quadrant — or axis — the point lies in and displays a clean SVG coordinate plot showing the point, the radius line, and the angle arc. A quadrant sign-reference table highlights the current quadrant, making it easy to verify that signs and ranges are correct.
A batch conversion mode lets you convert multiple (x, y) pairs at once. Enter one pair per line, separated by commas, and the page generates a complete table of polar coordinates. This is useful for converting data sets, lab results, or grouped homework problems.
The common conversions reference table lists the most frequently encountered coordinate pairs — unit-circle points at 0°, 30°, 45°, 60°, 90°, 180°, 270°, and classic Pythagorean pairs like (3, 4) and (5, 12). Preset buttons load standard test points, and adjustable decimal precision from 0 to 10 places rounds every output consistently.
Use this page when you need to move from Cartesian coordinates to magnitude-and-angle form with the quadrant handled correctly. It is useful for coordinate geometry, complex numbers, vectors, and engineering problems where the angle convention matters.
r = √(x² + y²). θ = atan2(y, x), normalized to [0°, 360°). Radians: θ_rad = θ° × π/180. Gradians: θ_grad = θ° × 10/9.Result: r = 5, θ ≈ 53.13°, θ ≈ 0.9273 rad
Using x=3, y=4, the calculator returns r = 5, θ ≈ 53.13°, θ ≈ 0.9273 rad. This example mirrors the calculator's live computation flow and is useful for checking manual steps and unit handling.
The same point can be described either as horizontal and vertical offsets or as a distance and direction. Polar form is often the more natural description for vectors, phasors, rotations, and complex numbers because it separates magnitude from angle.
Start with the radius r to confirm the point's distance from the origin, then check the angle in your preferred unit. The quadrant and plot help confirm that the direction matches the signs of x and y, especially when the point lies in Quadrants II, III, or IV.
To verify the conversion by hand, compute r = √(x² + y²) first, then compare your angle estimate against the reported atan2 result. If the raw arctangent gives the wrong quadrant, use the sign pattern of x and y to adjust it before comparing with the normalized answer.
Last updated:
atan2(y, x) is a two-argument arctangent function that returns the angle in the correct quadrant, unlike atan(y/x) which cannot distinguish between opposite quadrants. It returns values in (−π, π].
Use x = r·cos(θ) and y = r·sin(θ). CalcBee has a dedicated Polar to Rectangular calculator for this.
Gradians (also called gons) divide a full circle into 400 parts instead of 360 degrees or 2π radians. A right angle is 100 gradians. They are used in some European surveying systems.
atan2 returns values in (−π, π], which means negative angles for y < 0. Normalizing to [0°, 360°) provides a single, unambiguous representation for every direction.
Yes. A complex number z = x + yi can be written in polar form as z = r·(cos θ + i sin θ) = r·e^(iθ). The r computed here is the modulus |z| and θ is the argument.
At (0, 0), r = 0 and the angle θ is mathematically undefined. The calculator shows 0° by convention (the atan2 function returns 0 for this case).
Convert between polar (r, θ) and rectangular (x, y) coordinates. Bidirectional conversion with quadrant visualization, unit circle reference, and batch table.
Convert a complex number from rectangular form a + bi to trigonometric (polar) form r(cos θ + i sin θ). Shows modulus, argument, exponential form, quadrant, reciprocal, and De Moivre powers.
Convert a complex number from polar/trigonometric form r(cos θ + i sin θ) to rectangular form a + bi. Shows real part, imaginary part, Euler form, conjugate, and quadrant.