Complex Numbers: Common Mistakes and Fixes (9)

hard 3 min read

Question

Find all complex numbers zz satisfying z2=8+6iz^2 = 8 + 6i. A student writes z=8+6iz = \sqrt{8 + 6i} and stops. Why is that incomplete?

Solution — Step by Step

Let z=a+biz = a + bi. Then z2=a2b2+2abiz^2 = a^2 - b^2 + 2abi. Equate to 8+6i8 + 6i:

a2b2=8,2ab=6ab=3a^2 - b^2 = 8, \qquad 2ab = 6 \Rightarrow ab = 3
a2+b2=z2=8+6i=64+36=10a^2 + b^2 = |z|^2 = |8 + 6i| = \sqrt{64 + 36} = 10

Add to the first equation: 2a2=18a2=9a=±32a^2 = 18 \Rightarrow a^2 = 9 \Rightarrow a = \pm 3.

Subtract: 2b2=2b2=1b=±12b^2 = 2 \Rightarrow b^2 = 1 \Rightarrow b = \pm 1.

But ab=3>0ab = 3 > 0, so aa and bb have the same sign. Two solutions:

z=3+iorz=3iz = 3 + i \quad \text{or} \quad z = -3 - i

Writing "z=8+6iz = \sqrt{8 + 6i}" picks out only one of the two roots. Every nonzero complex number has exactly two square roots, differing by a sign — analogous to how 4=±2\sqrt{4} = \pm 2 in the equation x2=4x^2 = 4. The radical symbol in the complex world is multivalued unless you specify a branch.

z=3+iz = 3 + i or z=3iz = -3 - i.

Why This Works

Every nonzero complex number ww has exactly nn distinct nn-th roots, equally spaced on a circle of radius w1/n|w|^{1/n} in the complex plane. For n=2n = 2, the two roots are diametrically opposite — so they differ only by a sign.

The trick of using z2=z2|z|^2 = |z^2| adds a third equation that combines linearly with the first to crack a2a^2 and b2b^2 cleanly without quadratic-in-bb algebra.

Alternative Method

Polar form: 8+6i=10eiθ8 + 6i = 10\, e^{i\theta} where tanθ=3/4\tan\theta = 3/4, cosθ=4/5\cos\theta = 4/5, sinθ=3/5\sin\theta = 3/5. Square roots: 10eiθ/2\sqrt{10}\, e^{i\theta/2} and 10ei(θ/2+π)\sqrt{10}\, e^{i(\theta/2 + \pi)}. Use half-angle identities: cos(θ/2)=(1+4/5)/2=3/10\cos(\theta/2) = \sqrt{(1+4/5)/2} = 3/\sqrt{10}, sin(θ/2)=1/10\sin(\theta/2) = 1/\sqrt{10}. So one root is 10(3/10+i/10)=3+i\sqrt{10}(3/\sqrt{10} + i/\sqrt{10}) = 3 + i. The other is (3+i)=3i-(3+i) = -3 - i. Same answer.

Common Mistake

The deeper mistake: treating \sqrt{} in the complex plane like \sqrt{} on real positives. The principal square root convention works for w|w| (which is real and non-negative), but doesn’t directly extend to ww itself. Always solve z2=wz^2 = w as an equation, not as a radical evaluation. Two answers, every time.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next