Complex number operations — addition to De Moivre's theorem progression

medium CBSE JEE-MAIN 3 min read

Question

If z=1+i3z = 1 + i\sqrt{3}, find z6z^6 using De Moivre’s theorem.

(JEE Main 2024 pattern — converting to polar form is the key step)


Operation Hierarchy

flowchart TD
    A["Complex Number Problem"] --> B{Operation type?}
    B -->|Add/Subtract| C["Work in a + ib form"]
    B -->|Multiply/Divide| D{Simple or repeated?}
    B -->|Power/Root| E["Convert to polar form"]
    D -->|Simple product| D1["FOIL method or conjugate"]
    D -->|Repeated product| D2["Polar form is faster"]
    E --> F["z = r(cos theta + i sin theta)"]
    F --> G["De Moivre: z^n = r^n(cos n*theta + i sin n*theta)"]
    G --> H["Convert back to a + ib"]

Solution — Step by Step

z=1+i3z = 1 + i\sqrt{3}

Modulus: r=z=12+(3)2=1+3=2r = |z| = \sqrt{1^2 + (\sqrt{3})^2} = \sqrt{1 + 3} = 2

Argument: θ=tan1(31)=π3\theta = \tan^{-1}\left(\dfrac{\sqrt{3}}{1}\right) = \dfrac{\pi}{3}

So z=2(cosπ3+isinπ3)z = 2\left(\cos\dfrac{\pi}{3} + i\sin\dfrac{\pi}{3}\right)

De Moivre’s theorem: (r(cosθ+isinθ))n=rn(cosnθ+isinnθ)(r(\cos\theta + i\sin\theta))^n = r^n(\cos n\theta + i\sin n\theta)

z6=26(cos6π3+isin6π3)=64(cos2π+isin2π)z^6 = 2^6\left(\cos\frac{6\pi}{3} + i\sin\frac{6\pi}{3}\right) = 64(\cos 2\pi + i\sin 2\pi)

cos2π=1\cos 2\pi = 1, sin2π=0\sin 2\pi = 0

z6=64\boxed{z^6 = 64}

A complex number raised to the 6th power gives a real number — because the argument π/3\pi/3 multiplied by 6 gives a full rotation (2π2\pi), landing back on the real axis.


Why This Works

De Moivre’s theorem works because multiplication in polar form is elegant: multiply moduli, add arguments. Raising to the nnth power means multiplying the argument by nn and raising the modulus to the nnth power. This turns a messy algebraic expansion into simple arithmetic on angles.

Without polar form, computing (1+i3)6(1 + i\sqrt{3})^6 would require expanding a binomial with 7 terms. With polar form, we just compute 262^6 and 6×π/36 \times \pi/3.


Alternative Method — Step-by-Step Squaring

Compute z2z^2, then z4=(z2)2z^4 = (z^2)^2, then z6=z4z2z^6 = z^4 \cdot z^2:

z2=(1+i3)2=1+2i33=2+2i3z^2 = (1 + i\sqrt{3})^2 = 1 + 2i\sqrt{3} - 3 = -2 + 2i\sqrt{3}

z3=z2z=(2+2i3)(1+i3)=22i3+2i36=8z^3 = z^2 \cdot z = (-2 + 2i\sqrt{3})(1 + i\sqrt{3}) = -2 - 2i\sqrt{3} + 2i\sqrt{3} - 6 = -8

z6=(z3)2=(8)2=64z^6 = (z^3)^2 = (-8)^2 = 64

Notice z3=8z^3 = -8. This means zz is a cube root of 8-8. In JEE, if the argument is a simple fraction of π\pi (like π/3\pi/3, π/4\pi/4, π/6\pi/6), De Moivre’s theorem usually gives a clean answer. If you get a messy decimal, recheck your argument calculation.


Common Mistake

The most frequent error: getting the argument wrong. For z=1+i3z = 1 + i\sqrt{3}, the point lies in the first quadrant, so θ=π/3\theta = \pi/3 directly. But for z=1+i3z = -1 + i\sqrt{3} (second quadrant), the argument is 2π/32\pi/3, not π/3\pi/3. Always check which quadrant the complex number lies in before computing the argument.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next