Skip to main content

Complex Number Polar Form Calculator

Mathematics - Complex Number Polar Form

Complex Number Polar Form Calculator

Convert complex numbers between rectangular (a + bi) and polar form (r∠θ) with step-by-step explanation. Calculate the modulus and argument, learn Euler's formula r·e^(iθ), and understand the geometric interpretation on the complex plane.

Convert Between Rectangular and Polar Form

Enter a complex number in rectangular form (a + bi) to convert to polar form, or enter the modulus and argument to convert back. Click Calculate for step-by-step working.

Result will appear here.
Note: Polar form represents a complex number by its distance from the origin (modulus r) and angle from the positive real axis (argument θ). The three equivalent notations are: r(cos θ + i sin θ), r∠θ, and r·e^(iθ) (Euler's formula).

Complex Number Polar Form – Complete Explanation

Polar form represents a complex number using its distance from the origin (modulus r) and its angle from the positive real axis (argument θ). While rectangular form (a + bi) is ideal for addition and subtraction, polar form simplifies multiplication, division, and exponentiation — revealing the deep geometric meaning of complex operations.

Polar Form Representations

z = r(cos θ + i sin θ)    Trigonometric form
z = r∠θ                    Angle notation (engineering)
z = r·e                 Exponential form (Euler)

Where r = |z| = √(a² + b²) and θ = arg(z) = atan2(b, a).

1. What Is Polar Form?

Polar form answers the question: "What are the magnitude and direction of this complex number?" Just as polar coordinates describe a point by its distance and angle from the origin, polar form describes a complex number by its modulus and argument.

Key facts:

  • r ≥ 0: The modulus is always non-negative (distance cannot be negative).
  • θ is measured from the positive real axis: Counterclockwise is positive, clockwise is negative.
  • θ is not unique: Adding or subtracting 360° (2π rad) gives the same direction. The principal argument is usually in (-180°, 180°] or [0, 360°).
  • r = 0 gives the origin: When r = 0, the argument is undefined — all angles point to the origin.

2. Rectangular to Polar Conversion

To convert from a + bi to polar form r(cos θ + i sin θ):

  1. Calculate the modulus: r = √(a² + b²) — the distance from the origin.
  2. Calculate the argument: θ = atan2(b, a) — the angle from the positive real axis.
    • atan2 handles all quadrants correctly, unlike ordinary arctan(b/a).
  3. Write the polar form: z = r(cos θ + i sin θ) or r∠θ or r·e^(iθ).

3. Polar to Rectangular Conversion

To convert from polar form r(cos θ + i sin θ) back to a + bi:

  1. Calculate the real part: a = r × cos θ.
  2. Calculate the imaginary part: b = r × sin θ.
  3. Write the rectangular form: z = a + bi.

4. Step-by-Step Examples

Example 1: 3 + 4i to Polar Form

Convert 3 + 4i to polar form.

Step 1: Calculate modulus r:
        r = √(3² + 4²) = √(9 + 16) = √25 = 5

Step 2: Calculate argument θ:
        θ = atan2(4, 3) = 53.13° (≈ 0.9273 rad)
        Located in Quadrant I

Step 3: Write polar forms:
        • Trigonometric: 5(cos 53.13° + i sin 53.13°)
        • Angle notation: 5∠53.13°
        • Exponential: 5e^(i0.9273)

Verification:
        5 × cos 53.13° = 5 × 0.6 = 3.0 ✓
        5 × sin 53.13° = 5 × 0.8 = 4.0 ✓

Example 2: -1 + i to Polar Form

Convert -1 + i to polar form.

Step 1: r = √((-1)² + 1²) = √(1 + 1) = √2 ≈ 1.414

Step 2: θ = atan2(1, -1) = 135° (≈ 2.356 rad)
        Located in Quadrant II (real part negative, imaginary positive)

Step 3: Polar forms:
        • √2(cos 135° + i sin 135°)
        • √2∠135°
        • √2 e^(i2.356)

Result: -1 + i = √2(cos 135° + i sin 135°)

5. More Conversion Examples

z = 5 (real number): r = 5, θ = 0° → 5(cos 0° + i sin 0°) = 5∠0°

z = -3i (pure imaginary): r = 3, θ = -90° → 3(cos(-90°) + i sin(-90°)) = 3∠-90°

z = -2 - 2i: r = √8 = 2√2, θ = -135° → 2√2∠-135°

z = 1 + i√3: r = 2, θ = 60° → 2(cos 60° + i sin 60°) = 2∠60°

6. Euler's Formula: r·e^(iθ)

Euler's formula is one of the most beautiful equations in mathematics, connecting trigonometry with complex exponentials:

Euler's Formula

e = cos θ + i sin θ

Therefore: z = r·e

This compact form simplifies multiplication, division, and exponentiation dramatically.

Special cases of Euler's formula:

• e^(i0) = cos 0 + i sin 0 = 1

• e^(iπ/2) = cos 90° + i sin 90° = i

• e^(iπ) = cos 180° + i sin 180° = -1 (Euler's identity!)

• e^(i3π/2) = cos 270° + i sin 270° = -i

• e^(i2π) = cos 360° + i sin 360° = 1

7. Argument and Quadrants

The argument θ depends on which quadrant the complex number lies in:

Quadrant I (a > 0, b ≥ 0): θ = arctan(b/a), range: 0° to 90°

Quadrant II (a ≤ 0, b > 0): θ = arctan(b/a) + 180°, range: 90° to 180°

Quadrant III (a < 0, b ≤ 0): θ = arctan(b/a) + 180° (or -180° to -90°), range: -180° to -90°

Quadrant IV (a ≥ 0, b < 0): θ = arctan(b/a) + 360° (or simply negative), range: -90° to 0°

atan2 vs arctan: Ordinary arctan(b/a) only gives angles in (-90°, 90°) and can't distinguish between opposite quadrants. The atan2(b, a) function correctly handles all four quadrants and is the standard method for computing the argument.

8. Multiplication in Polar Form

One of the biggest advantages of polar form is how it simplifies complex multiplication:

Multiplication in Polar Form

If z₁ = r₁eiθ₁ and z₂ = r₂eiθ₂:

z₁ × z₂ = r₁r₂ ei(θ₁ + θ₂)

Multiply the moduli, ADD the arguments. Multiplication = scaling + rotation!

Example: Multiply 2(cos 30° + i sin 30°) × 3(cos 45° + i sin 45°)

r = 2 × 3 = 6

θ = 30° + 45° = 75°

Result: 6(cos 75° + i sin 75°)

9. Common Mistakes to Avoid

  • Using arctan instead of atan2: arctan(b/a) fails when a is negative or zero. Always use atan2(b, a) which correctly handles all quadrants.
  • Forgetting the angle unit: Trigonometric functions in calculators typically use radians or degrees — be consistent and know which mode you're in.
  • Giving negative modulus: The modulus r is always ≥ 0. If you get a negative value, take the absolute value and add 180° to the argument.
  • Confusing rectangular and polar forms: (3, 4) in rectangular is 3+4i. (5, 53.13°) in polar is 5∠53.13°. They represent the same number but are different representations.
  • Not simplifying the argument to the principal value: θ = 380° should be simplified to 20° (subtract 360°).

10. Real-World Applications

  • Electrical Engineering: AC circuit analysis uses phasors (polar form) to represent sinusoidal voltages and currents, making impedance calculations straightforward.
  • Signal Processing: The Fourier transform represents signals as sums of complex exponentials in polar form — magnitude = amplitude, argument = phase.
  • Control Systems: Bode plots use polar form to display frequency response — the modulus gives gain and the argument gives phase shift.
  • Physics: Wave interference and diffraction patterns are elegantly described using polar form addition of complex amplitudes.
  • Computer Graphics: Rotation in 2D is multiplication by e^(iθ) in polar form — much simpler than rotation matrices.

11. Practice Problems with Solutions

Problem 1: Convert 1 + i to polar form.

Solution: r = √2 ≈ 1.414, θ = 45° → √2(cos 45° + i sin 45°) = √2∠45°

Problem 2: Convert 5∠53.13° to rectangular form.

Solution: a = 5 cos 53.13° = 3, b = 5 sin 53.13° = 4 → 3 + 4i

Problem 3: What is 2e^(iπ/3) in rectangular form?

Solution: a = 2 cos 60° = 1, b = 2 sin 60° = √3 → 1 + i√3

Problem 4: Multiply 2∠30° × 3∠45° using polar form.

Solution: r = 2×3 = 6, θ = 30°+45° = 75° → 6∠75°

12. Tips for Mastering Polar Form

  • Memorize the three equivalent notations: r(cos θ + i sin θ), r∠θ, and r·e^(iθ).
  • Use atan2(b, a) — never plain arctan(b/a) — to calculate the argument correctly.
  • For multiplication, multiply the moduli and add the arguments — this is the key advantage of polar form.
  • For division, divide the moduli and subtract the arguments.
  • Draw a quick sketch on the complex plane to verify which quadrant your angle should be in.
  • Memorize Euler's identity: e^(iπ) + 1 = 0 — it connects five fundamental constants.

13. Final Thoughts

Polar form reveals the hidden geometry of complex numbers — transforming abstract algebraic expressions into magnitudes and directions on the complex plane. What appears as a complicated multiplication in rectangular form becomes a simple multiplication of lengths and addition of angles in polar form. This is the key insight: complex multiplication is rotation and scaling in disguise.

Master the conversion between rectangular and polar forms, understand Euler's formula, and you'll have a powerful geometric intuition for complex arithmetic. Use this calculator to verify your manual conversions, but practice until switching between forms becomes natural and the geometric meaning becomes clear.