Skip to main content

Complex Numbers

The Imaginary Unit

Definition

The imaginary unit ii is defined as the number satisfying i2=1i^2 = -1. Equivalently, i=1i = \sqrt{-1}. From this definition:

i0=1,i1=i,i2=1,i3=i,i4=1i^0 = 1, \quad i^1 = i, \quad i^2 = -1, \quad i^3 = -i, \quad i^4 = 1

The powers of ii are cyclic with period 44: in=inmod4i^n = i^{n \bmod 4}.

Motivation

The equation x2+1=0x^2 + 1 = 0 has no real solutions. Extending {R}\mathbb{'\{'}R{'\}'} to include ii yields the field of complex numbers, in which every polynomial has a root (the Fundamental Theorem of Algebra).


Complex Numbers

Definition

A complex number zz is an ordered pair of real numbers written in Cartesian (standard) form:

z=a+bi,a,b{R}z = a + bi, \quad a, b \in \mathbb{'\{'}R{'\}'}

Here a=Re(z)a = \mathrm{Re}(z) is the real part and b=Im(z)b = \mathrm{Im}(z) is the imaginary part. The set of all complex numbers is denoted {C}\mathbb{'\{'}C{'\}'}.

A complex number is purely real if b=0b = 0 and purely imaginary if a=0a = 0. Two complex numbers are equal if and only if their real and imaginary parts are equal.

Complex Arithmetic

Addition. (a+bi)+(c+di)=(a+c)+(b+d)i(a + bi) + (c + di) = (a + c) + (b + d)i

Multiplication. Expand and use i2=1i^2 = -1:

(a+bi)(c+di)=(acbd)+(ad+bc)i(a + bi)(c + di) = (ac - bd) + (ad + bc)i

Division. Multiply numerator and denominator by the complex conjugate of the denominator:

a+bic+di=(a+bi)(cdi)(c+di)(cdi)=(ac+bd)+(bcad)ic2+d2\frac{a + bi}{c + di} = \frac{(a + bi)(c - di)}{(c + di)(c - di)} = \frac{(ac + bd) + (bc - ad)i}{c^2 + d^2}

Complex Conjugate

The complex conjugate of z=a+biz = a + bi is zˉ=abi\bar{z} = a - bi.

Properties:

  • zzˉ=a2+b2=z2z\bar{z} = a^2 + b^2 = |z|^2
  • z1+z2=zˉ1+zˉ2\overline{z_1 + z_2} = \bar{z}_1 + \bar{z}_2
  • z1z2=zˉ1zˉ2\overline{z_1 z_2} = \bar{z}_1 \cdot \bar{z}_2
  • zˉˉ=z\bar{\bar{z}} = z
  • z{R}    z=zˉz \in \mathbb{'\{'}R{'\}'} \iff z = \bar{z}

The Argand Diagram

Representation

A complex number z=a+biz = a + bi is represented as the point (a,b)(a, b) in the complex plane (Argand diagram). The horizontal axis is the real axis, and the vertical axis is the imaginary axis.

Modulus

The modulus (absolute value) of z=a+biz = a + bi is the distance from the origin to (a,b)(a, b):

z=a2+b2|z| = \sqrt{a^2 + b^2}

Properties:

  • z0|z| \ge 0, with equality iff z=0z = 0
  • z1z2=z1z2|z_1 z_2| = |z_1|\,|z_2|
  • z1z2=z1z2\left|\dfrac{z_1}{z_2}\right| = \dfrac{|z_1|}{|z_2|}, z20z_2 \ne 0
  • z1+z2z1+z2|z_1 + z_2| \le |z_1| + |z_2| (triangle inequality)

Argument

The argument of z=a+biz = a + bi is the angle θ\theta measured from the positive real axis to the line segment joining the origin to zz, measured anticlockwise:

θ=arg(z)=arctan ⁣(ba)\theta = \arg(z) = \arctan\!\left(\frac{b}{a}\right)

The principal argument, denoted Arg(z)\mathrm{Arg}(z), is restricted to (π,π](-\pi, \pi].

Quadrant-aware calculation:

Conditionarg(z)\arg(z)
a>0a \gt 0arctan(b/a)\arctan(b/a)
a<0,b0a \lt 0, b \ge 0arctan(b/a)+π\arctan(b/a) + \pi
a<0,b<0a \lt 0, b \lt 0arctan(b/a)π\arctan(b/a) - \pi
a=0,b>0a = 0, b \gt 0π/2\pi/2
a=0,b<0a = 0, b \lt 0π/2-\pi/2

Modulus-Argument (Polar) Form

Definition

Every nonzero complex number can be written as:

z=r(cosθ+isinθ)=rcis  θz = r(\cos\theta + i\sin\theta) = r\,\mathrm{cis}\;\theta

where r=zr = |z| and θ=arg(z)\theta = \arg(z). The notation cis  θ\mathrm{cis}\;\theta abbreviates cosθ+isinθ\cos\theta + i\sin\theta.

Conversion

Polar to Cartesian:

a=rcosθ,b=rsinθa = r\cos\theta, \quad b = r\sin\theta

Cartesian to Polar:

r=a2+b2,θ=arg(z)(usingquadranttable)r = \sqrt{a^2 + b^2}, \quad \theta = \arg(z) \mathrm{ (using quadrant table)}

Multiplication and Division in Polar Form

These operations are dramatically simpler in polar form:

z1z2=r1r2cis(θ1+θ2)z_1 z_2 = r_1 r_2\,\mathrm{cis}(\theta_1 + \theta_2)

z1z2=r1r2cis(θ1θ2),z20\frac{z_1}{z_2} = \frac{r_1}{r_2}\,\mathrm{cis}(\theta_1 - \theta_2), \quad z_2 \ne 0

Multiplication: multiply moduli, add arguments. Division: divide moduli, subtract arguments.

Powers in Polar Form

zn=rncis(nθ)z^n = r^n\,\mathrm{cis}(n\theta)


De Moivre's Theorem

Statement

For any integer nn and any complex number z=rcis  θz = r\,\mathrm{cis}\;\theta:

(cosθ+isinθ)n=cos(nθ)+isin(nθ)(\cos\theta + i\sin\theta)^n = \cos(n\theta) + i\sin(n\theta)

Proof by Induction (Positive Integers)

Base case (n=1n = 1): Trivially true.

Inductive step: Assume (cosθ+isinθ)k=cos(kθ)+isin(kθ)(\cos\theta + i\sin\theta)^k = \cos(k\theta) + i\sin(k\theta). Then:

(cosθ+isinθ)k+1=(cosθ+isinθ)(coskθ+isinkθ)(\cos\theta + i\sin\theta)^{k+1} = (\cos\theta + i\sin\theta)(\cos k\theta + i\sin k\theta)

=cosθcoskθsinθsinkθ+i(cosθsinkθ+sinθcoskθ)= \cos\theta\cos k\theta - \sin\theta\sin k\theta + i(\cos\theta\sin k\theta + \sin\theta\cos k\theta)

=cos((k+1)θ)+isin((k+1)θ)= \cos((k+1)\theta) + i\sin((k+1)\theta)

by the angle addition formulas.

Applications

Expanding cos(nθ)\cos(n\theta) and sin(nθ)\sin(n\theta) in terms of cosθ\cos\theta and sinθ\sin\theta:

Using the binomial theorem on (cosθ+isinθ)n(\cos\theta + i\sin\theta)^n and equating real and imaginary parts:

cos(nθ)+isin(nθ)=k=0n(nk)cosnkθ(isinθ)k\cos(n\theta) + i\sin(n\theta) = \sum_{k=0}^{n} \binom{n}{k} \cos^{n-k}\theta \cdot (i\sin\theta)^k

Example. For n=3n = 3:

cos3θ=4cos3θ3cosθ\cos 3\theta = 4\cos^3\theta - 3\cos\theta sin3θ=3sinθ4sin3θ\sin 3\theta = 3\sin\theta - 4\sin^3\theta

Multiple-angle identities of any order can be derived this way.


Roots of Complex Numbers

nn-th Roots

The nn-th roots of a complex number z=rcis  θz = r\,\mathrm{cis}\;\theta are:

wk=r1/ncis ⁣(θ+2kπn),k=0,1,2,,n1w_k = r^{1/n}\,\mathrm{cis}\!\left(\frac{\theta + 2k\pi}{n}\right), \quad k = 0, 1, 2, \ldots, n - 1

These nn roots are equally spaced on a circle of radius r1/nr^{1/n}, centred at the origin, with angular separation 2πn\dfrac{2\pi}{n}.

Roots of Unity

The nn-th roots of unity are the solutions to zn=1z^n = 1:

ωk=cis ⁣(2kπn),k=0,1,,n1\omega_k = \mathrm{cis}\!\left(\frac{2k\pi}{n}\right), \quad k = 0, 1, \ldots, n - 1

Properties:

  • ω0=1\omega_0 = 1 is always a root.
  • The roots are symmetric about the real axis (complex conjugate pairs for non-real roots).
  • The sum of all nn-th roots of unity is 00.
  • The product of all nn-th roots of unity is (1)n+1(-1)^{n+1}.

Example. The cube roots of unity (n=3n = 3):

ω0=1,ω1=cis ⁣(2π3)=12+32i,ω2=cis ⁣(4π3)=1232i\omega_0 = 1, \quad \omega_1 = \mathrm{cis}\!\left(\frac{2\pi}{3}\right) = -\frac{1}{2} + \frac{\sqrt{3}}{2}i, \quad \omega_2 = \mathrm{cis}\!\left(\frac{4\pi}{3}\right) = -\frac{1}{2} - \frac{\sqrt{3}}{2}i

Note: 1+ω1+ω2=01 + \omega_1 + \omega_2 = 0.

Sum of Roots of a Quadratic

If α\alpha and β\beta are the roots of az2+bz+c=0az^2 + bz + c = 0 with a0a \ne 0:

α+β=ba,αβ=ca\alpha + \beta = -\frac{b}{a}, \quad \alpha\beta = \frac{c}{a}

These follow directly from expanding a(zα)(zβ)=0a(z - \alpha)(z - \beta) = 0.


Euler's Formula

Statement

eiθ=cosθ+isinθe^{i\theta} = \cos\theta + i\sin\theta

This unifies exponential, trigonometric, and complex number theory. Substituting θ=π\theta = \pi yields Euler's identity:

eiπ+1=0e^{i\pi} + 1 = 0

Consequences

Complex exponential form:

z=reiθz = re^{i\theta}

Exponential laws apply directly:

z1z2=r1r2ei(θ1+θ2),zn=rneinθz_1 z_2 = r_1 r_2\,e^{i(\theta_1 + \theta_2)}, \qquad z^n = r^n\,e^{in\theta}

Derivation of trig identities. From eiθ=cosθ+isinθe^{i\theta} = \cos\theta + i\sin\theta and eiθ=cosθisinθe^{-i\theta} = \cos\theta - i\sin\theta:

cosθ=eiθ+eiθ2,sinθ=eiθeiθ2i\cos\theta = \frac{e^{i\theta} + e^{-i\theta}}{2}, \qquad \sin\theta = \frac{e^{i\theta} - e^{-i\theta}}{2i}


Common Pitfalls

  1. Argument quadrant errors. arctan(b/a)\arctan(b/a) alone does not determine the correct quadrant. Always check the signs of aa and bb and adjust by π\pi when the point lies in the second or third quadrant.

  2. Conjugate distribution. z1+z2=zˉ1+zˉ2\overline{z_1 + z_2} = \bar{z}_1 + \bar{z}_2 but z1z2zˉ1zˉ2\overline{z_1 z_2} \ne \bar{z}_1 \cdot \bar{z}_2 is wrong -- it IS zˉ1zˉ2\bar{z}_1 \cdot \bar{z}_2. The error is thinking conjugation distributes over all operations differently; it distributes correctly over addition and multiplication.

  3. Missing roots. An nn-th degree equation has exactly nn roots (counting multiplicity) in {C}\mathbb{'\{'}C{'\}'}. When finding nn-th roots, always generate all nn values by varying kk.

  4. Modulus of a product. z1z2=z1z2|z_1 z_2| = |z_1|\,|z_2|, but z1+z2z1+z2|z_1 + z_2| \ne |z_1| + |z_2| in general (equality holds only when z1z_1 and z2z_2 have the same argument).

  5. Polar form of zero. z=0z = 0 has no well-defined argument and cannot be expressed in polar form rcis  θr\,\mathrm{cis}\;\theta since r=0r = 0.

  6. De Moivre's theorem scope. De Moivre's theorem as stated holds for integer exponents. For non-integer exponents, use rneinθr^n e^{in\theta}, but note that the result is multi-valued.


Practice Problems

Problem 1

Express z=13iz = 1 - \sqrt{3}\,i in polar form and compute z5z^5.

Problem 2

Find all complex solutions to z3=8iz^3 = -8i.

Problem 3

Prove that cos4θ=8cos4θ8cos2θ+1\cos 4\theta = 8\cos^4\theta - 8\cos^2\theta + 1 using De Moivre's theorem.

Problem 4

If z=2+3iz = 2 + 3i, express 1z\dfrac{1}{z} in the form a+bia + bi.

Problem 5

Find the fourth roots of 1616 and show that their sum is 00.

Problem 6

Solve z2+(2+4i)z+(1+6i)=0z^2 + (2 + 4i)z + (-1 + 6i) = 0.

Problem 7

Prove that for any complex number zz, z+zˉ=2Re(z)z + \bar{z} = 2\mathrm{Re}(z) and zzˉ=2iIm(z)z - \bar{z} = 2i\,\mathrm{Im}(z).

Problem 8

The complex numbers z1z_1 and z2z_2 satisfy z1=3|z_1| = 3, z2=5|z_2| = 5, and z1z2=7|z_1 - z_2| = 7. Find z1+z2|z_1 + z_2|.

Answers to Selected Problems

Problem 1: z=1+3=2|z| = \sqrt{1 + 3} = 2. Since a=1>0a = 1 \gt 0 and b=3<0b = -\sqrt{3} \lt 0, arg(z)=π/3\arg(z) = -\pi/3. So z=2cis(π/3)z = 2\,\mathrm{cis}(-\pi/3). z5=25cis(5π/3)=32cis(π/3)=32 ⁣(12+32i)=16+163iz^5 = 2^5\,\mathrm{cis}(-5\pi/3) = 32\,\mathrm{cis}(\pi/3) = 32\!\left(\dfrac{1}{2} + \dfrac{\sqrt{3}}{2}i\right) = 16 + 16\sqrt{3}\,i.

Problem 2: 8i=8cis(π/2)=8cis(3π/2)-8i = 8\,\mathrm{cis}(-\pi/2) = 8\,\mathrm{cis}(3\pi/2). zk=81/3cis ⁣(3π/2+2kπ3)=2cis ⁣(π2+2kπ3)z_k = 8^{1/3}\,\mathrm{cis}\!\left(\dfrac{3\pi/2 + 2k\pi}{3}\right) = 2\,\mathrm{cis}\!\left(\dfrac{\pi}{2} + \dfrac{2k\pi}{3}\right) for k=0,1,2k = 0, 1, 2. z0=2cis(π/2)=2iz_0 = 2\,\mathrm{cis}(\pi/2) = 2i, z1=2cis(7π/6)=3iz_1 = 2\,\mathrm{cis}(7\pi/6) = -\sqrt{3} - i, z2=2cis(11π/6)=3iz_2 = 2\,\mathrm{cis}(11\pi/6) = \sqrt{3} - i.

Problem 3: By De Moivre: cos4θ+isin4θ=(cosθ+isinθ)4\cos 4\theta + i\sin 4\theta = (\cos\theta + i\sin\theta)^4. Expanding by binomial theorem: cos4θ+4icos3θsinθ6cos2θsin2θ4icosθsin3θ+sin4θ\cos^4\theta + 4i\cos^3\theta\sin\theta - 6\cos^2\theta\sin^2\theta - 4i\cos\theta\sin^3\theta + \sin^4\theta. Equating real parts: cos4θ=cos4θ6cos2θsin2θ+sin4θ\cos 4\theta = \cos^4\theta - 6\cos^2\theta\sin^2\theta + \sin^4\theta. Using sin2θ=1cos2θ\sin^2\theta = 1 - \cos^2\theta: cos4θ=cos4θ6cos2θ(1cos2θ)+(1cos2θ)2=8cos4θ8cos2θ+1\cos 4\theta = \cos^4\theta - 6\cos^2\theta(1-\cos^2\theta) + (1-\cos^2\theta)^2 = 8\cos^4\theta - 8\cos^2\theta + 1.

Problem 4: 1z=zˉzzˉ=23i4+9=23i13=213313i\dfrac{1}{z} = \dfrac{\bar{z}}{z\bar{z}} = \dfrac{2 - 3i}{4 + 9} = \dfrac{2 - 3i}{13} = \dfrac{2}{13} - \dfrac{3}{13}i.

Problem 5: 16=16cis(0)16 = 16\,\mathrm{cis}(0). Fourth roots: wk=2cis(kπ/2)w_k = 2\,\mathrm{cis}(k\pi/2) for k=0,1,2,3k = 0, 1, 2, 3. Roots: 2,  2i,  2,  2i2, \; 2i, \; -2, \; -2i. Sum: 2+2i22i=02 + 2i - 2 - 2i = 0.

Problem 8: z1+z22+z1z22=2(z12+z22)|z_1 + z_2|^2 + |z_1 - z_2|^2 = 2(|z_1|^2 + |z_2|^2) (parallelogram law). z1+z22=2(9+25)49=6849=19|z_1 + z_2|^2 = 2(9 + 25) - 49 = 68 - 49 = 19. So z1+z2=19|z_1 + z_2| = \sqrt{19}.


Worked Examples

Worked Example: Division in Polar Form

Express z1z2\dfrac{z_1}{z_2} in Cartesian form where z1=4cis ⁣(2π3)z_1 = 4\,\mathrm{cis}\!\left(\dfrac{2\pi}{3}\right) and z2=2cis ⁣(π6)z_2 = 2\,\mathrm{cis}\!\left(\dfrac{\pi}{6}\right).

Solution

In polar form:

z1z2=42cis ⁣(2π3π6)=2cis ⁣(π2)=2(cosπ2+isinπ2)=2(0+i)=2i\frac{z_1}{z_2} = \frac{4}{2}\,\mathrm{cis}\!\left(\frac{2\pi}{3} - \frac{\pi}{6}\right) = 2\,\mathrm{cis}\!\left(\frac{\pi}{2}\right) = 2\left(\cos\frac{\pi}{2} + i\sin\frac{\pi}{2}\right) = 2(0 + i) = 2i

Converting to Cartesian form: 0+2i0 + 2i.

Worked Example: Solving a Quadratic with Complex Coefficients

Solve z2+(13i)z+(4+3i)=0z^2 + (1 - 3i)z + (4 + 3i) = 0.

Solution

Using the quadratic formula z=b±b24ac2az = \dfrac{-b \pm \sqrt{b^2 - 4ac}}{2a}:

Δ=(13i)24(1)(4+3i)=16i91612i=2418i\Delta = (1 - 3i)^2 - 4(1)(4 + 3i) = 1 - 6i - 9 - 16 - 12i = -24 - 18i

Find 2418i\sqrt{-24 - 18i}. Let 2418i=a+bi\sqrt{-24 - 18i} = a + bi where a,b{R}a, b \in \mathbb{'\{'}R{'\}'}. Then a2b2=24a^2 - b^2 = -24 and 2ab=182ab = -18, so b=9/ab = -9/a.

Substituting: a281/a2=24    a4+24a281=0a^2 - 81/a^2 = -24 \implies a^4 + 24a^2 - 81 = 0. Let u=a2u = a^2: u2+24u81=0    u=24±576+3242=24±302u^2 + 24u - 81 = 0 \implies u = \dfrac{-24 \pm \sqrt{576 + 324}}{2} = \dfrac{-24 \pm 30}{2}. Since u=a20u = a^2 \ge 0: u=3u = 3, so a=3a = \sqrt{3} (taking a>0a \gt 0) and b=9/3=33b = -9/\sqrt{3} = -3\sqrt{3}.

Thus Δ=333i\sqrt{\Delta} = \sqrt{3} - 3\sqrt{3}\,i.

z=(13i)±(333i)2z = \frac{-(1 - 3i) \pm (\sqrt{3} - 3\sqrt{3}\,i)}{2}

z1=1+3i+333i2=1+32+3332iz_1 = \dfrac{-1 + 3i + \sqrt{3} - 3\sqrt{3}\,i}{2} = \dfrac{-1 + \sqrt{3}}{2} + \dfrac{3 - 3\sqrt{3}}{2}i

z2=1+3i3+33i2=132+3+332iz_2 = \dfrac{-1 + 3i - \sqrt{3} + 3\sqrt{3}\,i}{2} = \dfrac{-1 - \sqrt{3}}{2} + \dfrac{3 + 3\sqrt{3}}{2}i

Worked Example: Using De Moivre to Derive a Trig Identity

Use De Moivre's theorem to express cos5θ\cos 5\theta as a polynomial in cosθ\cos\theta.

Solution

By De Moivre: cos5θ+isin5θ=(cosθ+isinθ)5\cos 5\theta + i\sin 5\theta = (\cos\theta + i\sin\theta)^5.

Expanding by the binomial theorem:

(cosθ+isinθ)5=cos5θ+5icos4θsinθ10cos3θsin2θ10icos2θsin3θ+5cosθsin4θ+isin5θ(\cos\theta + i\sin\theta)^5 = \cos^5\theta + 5i\cos^4\theta\sin\theta - 10\cos^3\theta\sin^2\theta - 10i\cos^2\theta\sin^3\theta + 5\cos\theta\sin^4\theta + i\sin^5\theta

Equating real parts:

cos5θ=cos5θ10cos3θsin2θ+5cosθsin4θ\cos 5\theta = \cos^5\theta - 10\cos^3\theta\sin^2\theta + 5\cos\theta\sin^4\theta

Using sin2θ=1cos2θ\sin^2\theta = 1 - \cos^2\theta:

cos5θ=cos5θ10cos3θ(1cos2θ)+5cosθ(1cos2θ)2\cos 5\theta = \cos^5\theta - 10\cos^3\theta(1 - \cos^2\theta) + 5\cos\theta(1 - \cos^2\theta)^2

=cos5θ10cos3θ+10cos5θ+5cosθ10cos3θ+5cos5θ= \cos^5\theta - 10\cos^3\theta + 10\cos^5\theta + 5\cos\theta - 10\cos^3\theta + 5\cos^5\theta

=16cos5θ20cos3θ+5cosθ= 16\cos^5\theta - 20\cos^3\theta + 5\cos\theta

Worked Example: Fifth Roots of a Complex Number

Find all fifth roots of 16+163i-16 + 16\sqrt{3}\,i.

Solution

Express in polar form: z=16+163iz = -16 + 16\sqrt{3}\,i. Modulus: z=256+768=1024=32|z| = \sqrt{256 + 768} = \sqrt{1024} = 32. Since a=16<0a = -16 \lt 0 and b=163>0b = 16\sqrt{3} \gt 0: arg(z)=arctan ⁣(16316)+π=arctan(3)+π=π3+π=2π3\arg(z) = \arctan\!\left(\dfrac{16\sqrt{3}}{-16}\right) + \pi = \arctan(-\sqrt{3}) + \pi = -\dfrac{\pi}{3} + \pi = \dfrac{2\pi}{3}.

So z=32cis ⁣(2π3)z = 32\,\mathrm{cis}\!\left(\dfrac{2\pi}{3}\right).

The fifth roots are:

wk=321/5cis ⁣(2π/3+2kπ5)=2cis ⁣(2π+6kπ15),k=0,1,2,3,4w_k = 32^{1/5}\,\mathrm{cis}\!\left(\frac{2\pi/3 + 2k\pi}{5}\right) = 2\,\mathrm{cis}\!\left(\frac{2\pi + 6k\pi}{15}\right), \quad k = 0, 1, 2, 3, 4

w0=2cis ⁣(2π15)w_0 = 2\,\mathrm{cis}\!\left(\dfrac{2\pi}{15}\right), w1=2cis ⁣(8π15)w_1 = 2\,\mathrm{cis}\!\left(\dfrac{8\pi}{15}\right), w2=2cis ⁣(14π15)w_2 = 2\,\mathrm{cis}\!\left(\dfrac{14\pi}{15}\right), w3=2cis ⁣(20π15)=2cis ⁣(4π3)=13iw_3 = 2\,\mathrm{cis}\!\left(\dfrac{20\pi}{15}\right) = 2\,\mathrm{cis}\!\left(\dfrac{4\pi}{3}\right) = -1 - \sqrt{3}\,i, w4=2cis ⁣(26π15)=2cis ⁣(4π15)w_4 = 2\,\mathrm{cis}\!\left(\dfrac{26\pi}{15}\right) = 2\,\mathrm{cis}\!\left(-\dfrac{4\pi}{15}\right).

These five roots lie on a circle of radius 22, equally spaced by 2π5\dfrac{2\pi}{5}.


Additional Common Pitfalls

  • Forgetting to convert to polar before using De Moivre. De Moivre's theorem requires the form rcis  θr\,\mathrm{cis}\;\theta. Attempting to raise a+bia + bi to a power directly without conversion leads to algebraic errors.

  • Square root of a complex number gives two values. Every nonzero complex number has exactly two square roots. When solving Δ\sqrt{\Delta} in the quadratic formula with complex coefficients, both signs must be considered.

  • Principal argument range. Arg(z)(π,π]\mathrm{Arg}(z) \in (-\pi, \pi]. If De Moivre produces an argument outside this range, add or subtract 2π2\pi to normalise. For example, cis ⁣(7π4)\mathrm{cis}\!\left(\dfrac{7\pi}{4}\right) is preferred over cis ⁣(π4)\mathrm{cis}\!\left(-\dfrac{\pi}{4}\right) in some contexts, but both are valid.

  • Conjugate pair errors in polynomials. If a+bia + bi is a root of a polynomial with real coefficients, then abia - bi is also a root. Forgetting this symmetry loses information about the polynomial.

  • Modulus of a sum vs. sum of moduli. z1+z2z1+z2|z_1 + z_2| \le |z_1| + |z_2| with equality only when z1z_1 and z2z_2 point in the same direction. Computing z1+z2|z_1 + z_2| as z1+z2|z_1| + |z_2| is almost always wrong.


Exam-Style Problems

Problem 9

Given z=3+4iz = 3 + 4i and w=12iw = 1 - 2i, find z2w|z^2 w| and arg(z2w)\arg(z^2 w).

Problem 10

If z2i=z+4|z - 2i| = |z + 4| and arg(z)=π4\arg(z) = \dfrac{\pi}{4}, find zz in Cartesian form.

Problem 11

Express sin3θ\sin 3\theta purely in terms of sinθ\sin\theta using De Moivre's theorem.

Problem 12

The complex numbers α\alpha and β\beta are roots of z24z+13=0z^2 - 4z + 13 = 0. Show that α3+β3=10\alpha^3 + \beta^3 = -10.

Problem 13

Find the locus of points zz in the complex plane satisfying z34i=2z+1+2i|z - 3 - 4i| = 2|z + 1 + 2i|.

Problem 14

Find all solutions to z4+z2+1=0z^4 + z^2 + 1 = 0 and represent them on an Argand diagram.

Problem 15

Prove that z1+z22+z1z22=2(z12+z22)|z_1 + z_2|^2 + |z_1 - z_2|^2 = 2(|z_1|^2 + |z_2|^2) for all z1,z2{C}z_1, z_2 \in \mathbb{'\{'}C{'\}'} (parallelogram law).

Answers to Additional Problems

Problem 9: z=5|z| = 5, w=5|w| = \sqrt{5}. z2w=z2w=255|z^2 w| = |z|^2|w| = 25\sqrt{5}. arg(z)=arctan(4/3)\arg(z) = \arctan(4/3), arg(w)=arctan(2)\arg(w) = \arctan(-2). arg(z2w)=2arctan(4/3)+arctan(2)\arg(z^2 w) = 2\arctan(4/3) + \arctan(-2). Since z2=(3+4i)2=7+24iz^2 = (3+4i)^2 = -7 + 24i and z2w=(7+24i)(12i)=7+14i+24i+48=41+38iz^2 w = (-7+24i)(1-2i) = -7 + 14i + 24i + 48 = 41 + 38i. z2w=412+382=1681+1444=3125=255|z^2 w| = \sqrt{41^2 + 38^2} = \sqrt{1681 + 1444} = \sqrt{3125} = 25\sqrt{5}. Confirmed. arg(z2w)=arctan(38/41)0.747  rad\arg(z^2 w) = \arctan(38/41) \approx 0.747\;\mathrm{rad}.

Problem 10: Let z=x+yiz = x + yi with x>0x \gt 0, y>0y \gt 0 (since arg(z)=π/4\arg(z) = \pi/4), and y=xy = x. z2i2=x2+(x2)2=2x24x+4|z - 2i|^2 = x^2 + (x-2)^2 = 2x^2 - 4x + 4. z+42=(x+4)2+x2=2x2+8x+16|z + 4|^2 = (x+4)^2 + x^2 = 2x^2 + 8x + 16. Setting equal: 2x24x+4=2x2+8x+16    12x=12    x=12x^2 - 4x + 4 = 2x^2 + 8x + 16 \implies -12x = 12 \implies x = -1. But x>0x \gt 0 is required. This gives no solution in the principal argument range. Rechecking: arg(z)=π/4    z=t(1+i)\arg(z) = \pi/4 \implies z = t(1 + i) for t>0t \gt 0. t+ti2i2=t2+(t2)2=2t24t+4|t + ti - 2i|^2 = t^2 + (t-2)^2 = 2t^2 - 4t + 4. t+ti+42=(t+4)2+t2=2t2+8t+16|t + ti + 4|^2 = (t+4)^2 + t^2 = 2t^2 + 8t + 16. 2t24t+4=2t2+8t+16    t=12t^2 - 4t + 4 = 2t^2 + 8t + 16 \implies t = -1. No positive solution exists. The locus circle and ray do not intersect.

Problem 11: From De Moivre, equating imaginary parts: sin3θ=3cos2θsinθsin3θ=3(1sin2θ)sinθsin3θ=3sinθ4sin3θ\sin 3\theta = 3\cos^2\theta\sin\theta - \sin^3\theta = 3(1 - \sin^2\theta)\sin\theta - \sin^3\theta = 3\sin\theta - 4\sin^3\theta.

Problem 12: α+β=4\alpha + \beta = 4 and αβ=13\alpha\beta = 13. α3+β3=(α+β)33αβ(α+β)=643(13)(4)=64156=92\alpha^3 + \beta^3 = (\alpha + \beta)^3 - 3\alpha\beta(\alpha + \beta) = 64 - 3(13)(4) = 64 - 156 = -92. Note: the problem statement claims 10-10, but the correct answer is 92-92. This demonstrates the importance of always verifying claims.

Problem 13: Let z=x+yiz = x + yi. z(3+4i)2=(x3)2+(y4)2|z - (3+4i)|^2 = (x-3)^2 + (y-4)^2. z(12i)2=(x+1)2+(y+2)2|z - (-1-2i)|^2 = (x+1)^2 + (y+2)^2. Setting (x3)2+(y4)2=4[(x+1)2+(y+2)2](x-3)^2 + (y-4)^2 = 4[(x+1)^2 + (y+2)^2]: x26x+9+y28y+16=4x2+8x+4+4y2+16y+16x^2 - 6x + 9 + y^2 - 8y + 16 = 4x^2 + 8x + 4 + 4y^2 + 16y + 16. 3x214x3y224y+5=0-3x^2 - 14x - 3y^2 - 24y + 5 = 0. x2+y2+143x+8y=53x^2 + y^2 + \dfrac{14}{3}x + 8y = \dfrac{5}{3}. Completing squares: (x+73)2+(y+4)2=53+499+16=2009\left(x + \dfrac{7}{3}\right)^2 + (y + 4)^2 = \dfrac{5}{3} + \dfrac{49}{9} + 16 = \dfrac{200}{9}. This is a circle with centre (73,4)\left(-\dfrac{7}{3}, -4\right) and radius 1023\dfrac{10\sqrt{2}}{3}.

Problem 14: z4+z2+1=0z^4 + z^2 + 1 = 0. Let u=z2u = z^2: u2+u+1=0    u=1±3i2u^2 + u + 1 = 0 \implies u = \dfrac{-1 \pm \sqrt{3}\,i}{2}. So z2=cis ⁣(2π3)z^2 = \mathrm{cis}\!\left(\dfrac{2\pi}{3}\right) or z2=cis ⁣(2π3)z^2 = \mathrm{cis}\!\left(-\dfrac{2\pi}{3}\right). z=±cis ⁣(π3)z = \pm\,\mathrm{cis}\!\left(\dfrac{\pi}{3}\right) or z=±cis ⁣(π3)z = \pm\,\mathrm{cis}\!\left(-\dfrac{\pi}{3}\right). The four roots are ±12±32i\pm\dfrac{1}{2} \pm \dfrac{\sqrt{3}}{2}i, which are the primitive 6th roots of unity.

Problem 15: z1+z22=(z1+z2)(z1+z2)=(z1+z2)(zˉ1+zˉ2)=z12+z1zˉ2+zˉ1z2+z22|z_1 + z_2|^2 = (z_1 + z_2)\overline{(z_1 + z_2)} = (z_1 + z_2)(\bar{z}_1 + \bar{z}_2) = |z_1|^2 + z_1\bar{z}_2 + \bar{z}_1 z_2 + |z_2|^2. Similarly, z1z22=z12z1zˉ2zˉ1z2+z22|z_1 - z_2|^2 = |z_1|^2 - z_1\bar{z}_2 - \bar{z}_1 z_2 + |z_2|^2. Adding: z1+z22+z1z22=2z12+2z22=2(z12+z22)|z_1 + z_2|^2 + |z_1 - z_2|^2 = 2|z_1|^2 + 2|z_2|^2 = 2(|z_1|^2 + |z_2|^2).


If You Get These Wrong, Revise:

  • Trigonometric identities → Review the trigonometry section for angle addition and double-angle formulas
  • Polar coordinates and argument calculation → Review ./complex-numbers (section on Argument)
  • Binomial theorem expansion → Review algebra and series topics
  • Polynomial roots and Vieta's formulas → Review ./complex-numbers (section on Sum of Roots)

For the A-Level Further Maths treatment of this topic, see Complex Numbers.