/

Polar to Rectangular Calculator – Convert Polar & Rectangular Coordinates

Polar to Rectangular Calculator - Convert Polar & Rectangular Coordinates
Coordinate Converter

Polar to Rectangular Calculator

Convert polar coordinates (r, θ) to rectangular (x, y) and back — with step-by-step working, quadrant-correct atan2 handling, degree/radian toggle, and complex number polar form conversion.

Polar ↔ Rectangular Coordinate Converter
Enter values below to see live preview
Distance from origin (r ≥ 0)
In selected unit below
Angle unit:
Q1: r=5, θ=53.13°
Q2: r=5, θ=126.87°
Q3: r=5, θ=−126.87°
Q4: r=5, θ=−53.13°
r=1, θ=0°
r=1, θ=90°
r=3, θ=π/3 rad
r=2, θ=π rad
Error

Conversion Result

x
y
Verification — Round-trip Check ✓
Step-by-Step Working
Complex Number Polar Form Converter

Convert complex numbers between rectangular form a + bi and polar form r·cis(θ) / r·e. Same math as coordinate conversion — applied to the complex plane.

Complex Number: a + bi ↔ r·cis(θ)
a — Real part
b — Imaginary part
Common Angles — Polar ↔ Rectangular Reference Table

Click any row to load that angle into the converter instantly.

θ (deg)θ (rad)r x = r·cos(θ)y = r·sin(θ)Quadrant

Polar vs Rectangular Coordinates — What's the Difference?

This polar to rectangular calculator converts between two fundamental coordinate systems used throughout mathematics, physics, and engineering. Understanding both systems — and when to use each one — is essential for calculus, complex analysis, and physics.

Rectangular coordinates (x, y) — also called Cartesian coordinates — locate a point by its horizontal distance x from the origin and vertical distance y. They are natural for algebraic equations and linear motion.

Polar coordinates (r, θ) locate a point by its radial distance r from the origin and the angle θ it makes with the positive x-axis. They are natural for circular motion, waves, and anything with rotational symmetry.

Polar (r, θ) ↔ Rectangular (x, y) x = r·cos(θ)    y = r·sin(θ)    r = √(x²+y²)    θ = atan2(y, x)
PropertyRectangular (x, y)Polar (r, θ)
Locates byHorizontal + vertical distanceDistance + angle from origin
Natural forLines, polygons, linear equationsCircles, spirals, rotations
Unique representationYesNo (θ + 2π same point)
Circle equationx² + y² = r²r = constant (simple!)
Used inAlgebra, linear algebraCalculus, physics, complex analysis

How to Convert Polar to Rectangular — Step-by-Step

The polar to rectangular conversion uses basic trigonometry. For a point at distance r from the origin at angle θ, its horizontal component is r·cos(θ) and its vertical component is r·sin(θ).

x = r · cos(θ)     y = r · sin(θ) These are the polar form to rectangular form formulas — memorise both

Example 1 — Q1 Point: Polar (5, 53.13°) → Rectangular

  1. Given: r = 5, θ = 53.13°
  2. x = r·cos(θ) = 5·cos(53.13°) = 5 × 0.6 = 3
  3. y = r·sin(θ) = 5·sin(53.13°) = 5 × 0.8 = 4
  4. Rectangular: (3, 4) — in Q1 (both positive) ✓
  5. Verify: √(3² + 4²) = √25 = 5 = r ✓

Example 2 — Q2 Point: Polar (5, 126.87°) → Rectangular

  1. Given: r = 5, θ = 126.87°
  2. x = 5·cos(126.87°) = 5 × (−0.6) = −3
  3. y = 5·sin(126.87°) = 5 × 0.8 = 4
  4. Rectangular: (−3, 4) — in Q2 (x neg, y pos) ✓

Example 3 — Radians: Polar (2, π/3) → Rectangular

  1. Given: r = 2, θ = π/3 ≈ 1.0472 rad
  2. x = 2·cos(π/3) = 2 × 0.5 = 1
  3. y = 2·sin(π/3) = 2 × (√3/2) = √3 ≈ 1.7321
  4. Rectangular: (1, √3)

How to Convert Rectangular to Polar — Step-by-Step

The rectangular to polar conversion uses the Pythagorean theorem for r and the atan2 function for θ. Using plain atan(y/x) instead of atan2(y, x) is one of the most common errors in coordinate conversion.

r = √(x² + y²)     θ = atan2(y, x) atan2 gives the correct angle for ALL four quadrants — never use plain atan(y/x)

⚠️ atan2 vs atan — Critical Distinction: atan(y/x) only returns −90° to 90° (Q1 and Q4 only). For a Q2 point like (−3, 4): atan(4/−3) = atan(−1.333) ≈ −53.13° — WRONG! atan2(4, −3) ≈ 126.87° — CORRECT! Always use atan2 for quadrant-correct results.

Example 1 — Q1: Rectangular (3, 4) → Polar

  1. r = √(x² + y²) = √(9 + 16) = √25 = 5
  2. θ = atan2(4, 3) ≈ 53.13° (0.9273 rad)
  3. Polar: (5, 53.13°)

Example 2 — Q2: Rectangular (−3, 4) → Polar

  1. r = √(9 + 16) = 5
  2. θ = atan2(4, −3) ≈ 126.87°
  3. Note: atan(4/−3) = −53.13° — wrong quadrant! atan2 gives correct 126.87°
  4. Polar: (5, 126.87°)

Example 3 — Q3: Rectangular (−3, −4) → Polar

  1. r = √(9 + 16) = 5
  2. θ = atan2(−4, −3) ≈ −126.87° (or 233.13°)
  3. Polar: (5, −126.87°)

Example 4 — Axes: Rectangular (0, 5) → Polar

  1. r = √(0 + 25) = 5
  2. θ = atan2(5, 0) = 90°
  3. Polar: (5, 90°)

Polar Form of Complex Numbers

Every complex number a + bi corresponds to a point (a, b) in the complex plane. Its polar form expresses the same number using the modulus r (distance from origin) and argument θ (angle with positive real axis).

a + bi = r·cis(θ) = r·e^(iθ) = r(cos θ + i·sin θ) r = √(a²+b²) = modulus    θ = atan2(b,a) = argument

The three notations — r·cis(θ), r·e^(iθ), and r(cos θ + i·sin θ) — are all equivalent. The exponential form r·e^(iθ) is most compact and most useful for multiplication and powers of complex numbers.

Example: 3 + 4i in Polar Form

  1. a = 3, b = 4
  2. r = √(3² + 4²) = √25 = 5
  3. θ = atan2(4, 3) ≈ 53.13° (0.9273 rad)
  4. Polar form: 5·cis(53.13°) = 5·e^(i·0.9273)

Why polar form is powerful: Multiplying complex numbers: r₁·r₂ and θ₁+θ₂ (multiply moduli, add arguments). Powers: (r·cis(θ))ⁿ = rⁿ·cis(nθ). De Moivre's theorem. Roots: find all nth roots geometrically spaced around a circle.

Common Mistakes — Quadrant Errors and Degree/Radian Mix-ups

❌ Mistake 1 — Using atan instead of atan2

  • Point (−3, 4) is in Q2 → correct θ ≈ 126.87°
  • ❌ atan(4/−3) = atan(−1.333) ≈ −53.13° — wrong quadrant!
  • ✅ atan2(4, −3) ≈ 126.87° — correct!
  • Fix: Always use atan2(y, x) — pass x and y separately, not y/x as a single ratio.

❌ Mistake 2 — Degree/Radian Mix-up

  • ❌ cos(90) in radians = cos(90 rad) ≈ −0.448 — treating degrees as radians
  • ✅ cos(90°) = cos(π/2 rad) = 0 — correct
  • Fix: Always check your calculator's mode. Convert degrees to radians: multiply by π/180.

❌ Mistake 3 — Negative r

  • r is always ≥ 0. If your calculation gives r < 0, use |r| and add 180° to θ.
  • ❌ Polar (−5, 30°) — r cannot be negative in standard form
  • ✅ Equivalent standard form: (5, 210°) — same point!

❌ Mistake 4 — Forgetting Angle Periodicity

  • The same point has infinitely many polar representations: (r, θ) = (r, θ+360°) = (r, θ+720°)…
  • Standard convention: θ in (−180°, 180°] or [0°, 360°)
  • This calculator uses (−180°, 180°] — the standard mathematical convention.

❌ Mistake 5 — Points on the Axes

  • On positive x-axis: (r, 0) = (r, 0°) — cos is 1, sin is 0
  • On positive y-axis: (r, 90°) — cos is 0, sin is 1
  • At origin: r = 0, θ is undefined (any angle works)
  • atan2(0, 0) is technically undefined — this calculator handles it gracefully.

Worked Examples — All Four Quadrants

Rectangular (x, y)r = √(x²+y²) θ = atan2(y,x)Quadrant
(3, 4)553.13°Q1
(−3, 4)5126.87°Q2
(−3, −4)5−126.87°Q3
(3, −4)5−53.13°Q4
(1, 0)1+x axis
(0, 1)190°+y axis
(−1, 0)1180°−x axis
(0, −1)1−90°−y axis
(1, 1)√245°Q1
(5, 0)5+x axis

Frequently Asked Questions

How do you convert polar to rectangular coordinates?
Use x = r·cos(θ) and y = r·sin(θ). For example, polar (5, 53.13°) gives x = 5·cos(53.13°) = 3 and y = 5·sin(53.13°) = 4, so rectangular (3, 4).
How do you convert rectangular to polar coordinates?
Use r = √(x² + y²) and θ = atan2(y, x). The atan2 function correctly handles all four quadrants. For example, rectangular (−3, 4) gives r = 5 and θ = atan2(4, −3) ≈ 126.87°.
What is the difference between atan and atan2?
atan(y/x) only returns −90° to 90°, missing Q2 and Q3. atan2(y, x) takes both arguments separately and returns the correct angle for all four quadrants (−180° to 180°). Always use atan2 for polar conversion.
What is polar form of a complex number?
A complex number a + bi can be written as r·cis(θ) = r·e^(iθ), where r = √(a²+b²) is the modulus and θ = atan2(b, a) is the argument. For 3+4i: r = 5, θ ≈ 53.13°, so 5·cis(53.13°).
Can r be negative in polar coordinates?
In standard polar coordinates r ≥ 0. Some textbooks allow negative r where (−r, θ) = (r, θ+180°). This calculator uses r ≥ 0 and outputs θ in (−180°, 180°].
How do you convert degrees to radians?
Multiply by π/180. So 90° = π/2 ≈ 1.5708 rad, 180° = π ≈ 3.1416 rad, 45° = π/4 ≈ 0.7854 rad. To convert radians to degrees, multiply by 180/π.
What quadrant is a point in?
Q1: x > 0, y > 0 (0° to 90°). Q2: x < 0, y > 0 (90° to 180°). Q3: x < 0, y < 0 (−180° to −90°). Q4: x > 0, y < 0 (−90° to 0°). atan2 automatically identifies the correct quadrant.
What is r in polar coordinates?
r is the radial distance — the straight-line distance from the origin to the point, equal to √(x² + y²). It is always non-negative. In complex number context, r is called the modulus or absolute value.

Related Calculators

Quick Formulas
x = r · cos(θ) Polar → Rectangular (x)
y = r · sin(θ) Polar → Rectangular (y)
r = √(x² + y²) Rectangular → Polar (r)
θ = atan2(y, x) Rectangular → Polar (θ)
deg = rad × 180/π Radians to Degrees
rad = deg × π/180 Degrees to Radians
r = √(a² + b²) Complex modulus
a + bi = r·e^(iθ) Complex polar form
Quick Examples
(5, 53.13°) → (3, 4)
(5, 126.87°) → (−3, 4)
(3, 4) → r=5, θ=53.13°
(−3, 4) → r=5, θ=126.87°
(−3,−4) → r=5, θ=−126.87°
(1, 90°) → (0, 1)
(2, π/3) → (1, √3)
(1, 1) → r=√2, θ=45°
Key Angles
θ (deg) cos θ sin θ

Share This Tool

Share the Polar to Rectangular Calculator!

Free chemistry, physics, biology & math calculators with step-by-step solutions. Trusted by 100,000+ students. Solve any science problem instantly!

Newsletter

Subscribe to our Newsletter to be updated. We promise not to spam.

Copyright © 2026 SciSolveLab. All Rights Reserved

Scroll to Top