Question
If , find 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
Modulus:
Argument:
So
De Moivre’s theorem:
,
A complex number raised to the 6th power gives a real number — because the argument multiplied by 6 gives a full rotation (), 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 th power means multiplying the argument by and raising the modulus to the th power. This turns a messy algebraic expansion into simple arithmetic on angles.
Without polar form, computing would require expanding a binomial with 7 terms. With polar form, we just compute and .
Alternative Method — Step-by-Step Squaring
Compute , then , then :
Notice . This means is a cube root of . In JEE, if the argument is a simple fraction of (like , , ), 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 , the point lies in the first quadrant, so directly. But for (second quadrant), the argument is , not . Always check which quadrant the complex number lies in before computing the argument.