Complex Numbers in Polar Form: Operations
🧠 What is it & Why is it Useful?
Complex Polar Form expresses a complex number using its magnitude (r) and angle (θ) from the positive real axis: z = r(cos θ + i sin θ) or, more compactly, z = r cis θ. This form is incredibly powerful for multiplication, division, and exponentiation of complex numbers. Instead of messy algebra with the standard a+bi form, polar form lets you multiply magnitudes and add angles, making calculations much cleaner and more intuitive.
📝 Step-by-Step Guide
- Convert to Polar Form: For a complex number z = a + bi, find its magnitude r = √(a² + b²) and its argument θ = arg(z) = tan⁻¹(b/a) (mind the quadrant!).
- Apply Polar Operations:
- Multiplication: (r₁ cis θ₁) * (r₂ cis θ₂) = (r₁r₂) cis (θ₁ + θ₂)
- Division: (r₁ cis θ₁) ÷ (r₂ cis θ₂) = (r₁/r₂) cis (θ₁ - θ₂)
- De Moivre's Theorem (Powers): (r cis θ)ⁿ = rⁿ cis (nθ)
- Convert Back (if needed): Use the expanded form r(cos θ + i sin θ) to get back to standard a+bi form.
🔢 Visual Examples
Example 1: Multiplication
Let z₁ = √3 + i and z₂ = 1 + i. Find z₁ * z₂.
- Convert z₁: r₁ = √((√3)² + 1²) = 2, θ₁ = π/6. So, z₁ = 2 cis(π/6).
- Convert z₂: r₂ = √(1² + 1²) = √2, θ₂ = π/4. So, z₂ = √2 cis(π/4).
- Multiply: z₁z₂ = (2 * √2) cis(π/6 + π/4) = 2√2 cis(5π/12).
Example 2: De Moivre's Theorem
Find (1 + i)⁸ using polar form.
- Convert: 1 + i has r = √2 and θ = π/4. So, (1 + i) = √2 cis(π/4).
- Apply Theorem: (√2 cis(π/4))⁸ = (√2)⁸ cis(8 * π/4) = 16 cis(2π).
- Simplify: cis(2π) = cos(2π) + i sin(2π) = 1. Therefore, (1 + i)⁸ = 16.
⚠️ Common Mistakes
- Incorrect Argument (θ): Forgetting to check the quadrant of your complex number when using tan⁻¹(b/a). A number like -1 - i is in the third quadrant, so its argument is -π + π/4 = -3π/4, not π/4.
- Misapplying Rules: Adding angles during multiplication is correct. Do not multiply them! Similarly, subtract angles for division.
- Angle Simplification: Always simplify your final angle, preferably to a value between -π and π or 0 and 2π.
💡 Tips & Tricks
- Memory Aid: "Multiply Magnitudes, Add Angles" and "Divide Magnitudes, Subtract Angles."
- Unit Circle is Key: Being fluent with the unit circle makes finding cos θ and sin θ for your final answer much faster.
- Euler's Form: Remember that "cis θ" is equivalent to e^(iθ). This is the foundation for De Moivre's Theorem and makes the rules easier to remember.
🎯 Practice Suggestions
To master polar operations:
- Start by practicing conversion from rectangular (a+bi) to polar form and back.
- Move on to simple multiplication and division problems with given polar coordinates.
- Challenge yourself with powers and roots (like finding cube roots of unity) using De Moivre's Theorem.
- Look for past exam questions on complex numbers – they almost always require polar operations for higher powers.