Converting Complex Numbers to Polar Form- Step-by-Step
What Polar Form Actually Is
Every complex number lives in two worlds. The rectangular form (a + bi) tells you where it sits on the plane. The polar form tells you how far away it is and which direction it's pointing.
Polar form looks like this: r∠θ or re^(iθ). No, that's not a typo. Yes, Euler's number shows up here. That's just how math works.
You need this form for multiplication, division, and anything involving powers or roots. Multiply two complex numbers in rectangular form and you're doing distributive property hell. Do it in polar form and you just multiply magnitudes, add angles. Simple.
The Two Forms Side by Side
Before we convert, let's be clear about what we're working with:
- Rectangular: a + bi (horizontal + vertical displacement)
- Polar: r∠θ (distance + angle from origin)
The same point. Two different descriptions. Your calculator probably has a mode for switching between them.
Finding the Modulus (r)
The modulus is just the distance from the origin. You already know this formula from Pythagorean theorem:
r = √(a² + b²)
That's it. No tricks. Square both components, add them, take the square root.
r is always positive. It doesn't care about sign. Distance is distance.
Finding the Argument (θ)
The argument is the angle. This is where people get confused because there's more than one correct answer.
Basic formula:
θ = arctan(b/a)
But arctan only gives you half the picture. It doesn't know which quadrant your point actually sits in.
Quadrant Corrections
- Quadrant I (a>0, b>0): θ = arctan(b/a) — use it directly
- Quadrant II (a<0, b>0): θ = π + arctan(b/a) — add π
- Quadrant III (a<0, b<0): θ = π + arctan(b/a) — add π
- Quadrant IV (a>0, b<0): θ = 2π + arctan(b/a) — add 2π (or subtract)
Most textbooks want angles between 0 and 2π. Some want -π to π. Check what your instructor or problem set expects.
Step-by-Step Conversion
Here's the actual process:
- Identify a and b from your rectangular form
- Calculate r = √(a² + b²)
- Calculate the basic angle using arctan(b/a)
- Adjust for the correct quadrant
- Write your answer as r∠θ
Let's do a real example.
Example: Convert 3 + 4i to Polar Form
Step 1: a = 3, b = 4
Step 2: r = √(3² + 4²) = √(9 + 16) = √25 = 5
Step 3: Basic angle = arctan(4/3) ≈ 0.927 radians (53.13°)
Step 4: Point (3, 4) is in Quadrant I, so no adjustment needed
Answer: 5∠53.13° or 5∠0.927
You can verify: 5 × cos(53.13°) ≈ 3, and 5 × sin(53.13°) ≈ 4. ✓
Example: Convert -3 + √3 i to Polar Form
Step 1: a = -3, b = √3
Step 2: r = √((-3)² + (√3)²) = √(9 + 3) = √12 = 2√3
Step 3: Basic angle = arctan(√3 / -3) = arctan(-0.577) ≈ -0.523 radians
Step 4: Point (-3, √3) is in Quadrant II. Add π: -0.523 + 3.142 ≈ 2.618 radians
Answer: 2√3∠2.618
Polar Form vs Rectangular Form
Here's when each one makes your life easier:
| Operation | Rectangular (a + bi) | Polar (r∠θ) |
|---|---|---|
| Addition/Subtraction | Easy — just add/subtract real and imaginary parts | Pain — convert to rectangular first |
| Multiplication | Messy — FOIL, deal with i² = -1 | Easy — multiply r values, add θ values |
| Division | Messy — rationalize denominators | Easy — divide r values, subtract θ values |
| Powers (z^n) | Brute force or binomial expansion | De Moivre's theorem — (r∠θ)^n = r^n∠nθ |
| Roots | Don't even try | De Moivre's theorem in reverse — n solutions |
If you're multiplying or dividing, convert to polar. If you're adding or subtracting, stay in rectangular. That's the rule.
Getting Started: Quick Reference
When you need to convert:
- Run r = √(a² + b²) — that's your magnitude
- Run θ = arctan(b/a) — that's your starting angle
- Fix θ based on where (a, b) actually sits:
- Top-right: use θ as-is
- Top-left or bottom-left: add π
- Bottom-right: add 2π (or use negative angle)
- Check your answer: r × cos(θ) should equal a, r × sin(θ) should equal b
That's the whole process. Practice with three or four problems and it'll click. The quadrant corrections trip people up initially, but you stop thinking about them after the first 10 conversions.