Rectangular form is easy to add; polar form is easy to multiply and raise to powers — De Moivre's theorem is why the switch is worth it.
Polar form
Any complex number z=a+bi can be written using its modulus r and argument θ:
z=r(cosθ+isinθ),r=a2+b2,θ=arctan(ab)(adjusted for quadrant)
The quadrant adjustment matters — the raw arctangent only returns values in (−2π,2π), so you must add π when a<0.
De Moivre’s theorem
Polar form makes exponentiation almost trivial:
zn=rn(cos(nθ)+isin(nθ))
Compare this to expanding (a+bi)n directly with the binomial theorem — polar form avoids that entirely.
Roots of unity and nth roots
The n complex nth roots of unity are evenly spaced around the unit circle:
ωk=cos(n2πk)+isin(n2πk),k=0,1,…,n−1
They always sum to zero (for n≥2) — a fact worth remembering, since it frequently shortens problems that ask for a sum over all roots. To find all nth roots of a general complex number, convert to polar form and divide the argument (plus multiples of 2π) byn.
Worked example
Problem: Find all solutions to z3=−8.
Solution: Write −8 in polar form: r=8, θ=π (since −8 is on the negative real axis). The cube roots have modulus 81/3=2 and arguments 3π+2πk for k=0,1,2:
θ0=3π,θ1=π,θ2=35π
So the three roots are 2(cos3π+isin3π)=1+i3, 2(cosπ+isinπ)=−2, and 2(cos35π+isin35π)=1−i3.
Practice problems
1.Write z=−1+i in polar form.
2.Use De Moivre’s theorem to compute (cos30°+isin30°)6.