IB Maths AA HL Topic 1 — Number & Algebra Paper 1 & 2 HL only ~10 min read

Complex Roots of Polynomials

Now that you know how to handle complex numbers, here’s a satisfying payoff: every polynomial equation has a full set of solutions, as long as you allow complex numbers. A quadratic with no real roots? It’s got two complex ones. A cubic that only crosses the x-axis once? The two missing roots are complex, and they come as a pair. The pattern that makes all this work is one of the prettiest results in HL maths: when a polynomial has real coefficients, complex roots always show up in conjugate pairs. Once you trust this rule, solving polynomials becomes a clean, step-by-step process — even when imaginary numbers are hiding in the middle of the equation.

📘 What you need to know

When does a quadratic have complex roots?

You already know that a quadratic az² + bz + c = 0 has its discriminant Δ = b² − 4ac. The three cases:

Discriminant decides the root types Δ > 0 → two distinct real roots
Δ = 0 → one real repeated root
Δ < 0 → two complex conjugate roots

The negative-discriminant case is the new territory. Before complex numbers, you’d write “no real solutions” and stop. Now you finish the job using i.

A handy check: substitute your complex roots back into the original equation. If everything cancels to 0 + 0i, you’ve solved it correctly. If you get something else, there’s an arithmetic slip somewhere.

The conjugate-pair rule

Here’s the rule that makes complex roots tractable. Whenever a polynomial has real coefficients, any complex root brings its conjugate along for the ride.

Complex Conjugate Root Theorem if z1 = p + qi is a root of a polynomial with real coefficients,
then z2 = pqi is also a root.
Complex roots come in mirror-image pairs
Re Im z₁ = p + qi z₂ = p − qi mirror z₃ = k a real root a cubic with real coefficients: one complex pair (mirrored) + one real root

🤔 Why must complex roots come in pairs?

Think of a polynomial P(z) with real coefficients. If you plug in z = p + qi and the result is 0, then taking the complex conjugate of both sides gives P(pqi) = 0 too — because the conjugate of any real coefficient is itself, so the whole polynomial structure is preserved. The conjugate has to be a root if the original is.

Important caveat:   the conjugate-pair rule only works when all coefficients of the polynomial are real. If a coefficient itself is complex (e.g. (3 + i)z² + …), the rule fails — complex roots may appear without their conjugates.

How many roots does a polynomial have?

The Fundamental Theorem of Algebra tells you exactly: a polynomial of degree n has exactly n roots in the complex numbers, counting repeated roots separately. Some are real, others complex — but the total always equals the degree.

Counting roots by degree degree 2 (quadratic) → 2 roots
degree 3 (cubic) → 3 roots
degree 4 (quartic) → 4 roots
degree nn roots

For a polynomial with real coefficients, since complex roots come in pairs, the number of complex roots must be even. Combine this with the total count, and you can predict the structure straight from the degree:

Cubic (degree 3, real coefficients):   either 3 real roots  or  1 real root + 1 complex conjugate pair. Never two complex roots without a third — the pair always comes together.

Factoring a quadratic with complex roots

Once you’ve solved a quadratic and found its complex roots z1 and z2, you can write the quadratic in factored form:

Factored form az² + bz + c = a(zz1)(zz2)

If the leading coefficient a = 1, this becomes simply (zz1)(zz2). Multiplying out the conjugate-pair factors gives a beautiful identity:

Conjugate-pair expansion (z − (p + qi))(z − (pqi)) = z² − 2pz + (p² + q²)
Notice that the answer is a quadratic with real coefficients. That’s no coincidence — the imaginary parts cancel by the difference-of-squares pattern. This identity is gold: any time you have two conjugate roots, you can build their real quadratic factor in one line.

Building a quadratic when you’re given one root

A common exam type: “given that p + qi is a root of z² + Bz + C = 0, find the values of B and C“. The recipe:

🧭 Recipe — find a quadratic from one complex root

  1. Use the conjugate-pair rule — if p + qi is a root, so is pqi.
  2. Multiply the factors (z − (p+qi))(z − (pqi)) using the identity from above.
  3. Read off B = −2p and C = p² + q².

Solving a cubic given one root

Cubics with real coefficients can be cracked in two situations: when you’re given a real root, or when you’re given a complex one. Either way, the approach is to find a factor and divide it out.

🧭 Recipe — solve a cubic given one complex root

  1. Use the conjugate to find the second root — if p + qi is a root, then pqi is too.
  2. Build the quadratic factor using (z − (p+qi))(z − (pqi)) = z² − 2pz + (p² + q²).
  3. Divide the cubic by the quadratic factor (using polynomial division or comparing coefficients).
  4. Solve the linear quotient to find the third (real) root.
Coefficient-comparison shortcut:   instead of doing polynomial division, you can multiply (az + b)(z² + Bz + C) and equate with the original cubic to find the linear factor’s coefficients quickly. Often faster than long division.

Higher-degree polynomials

The same logic extends to quartics (degree 4), quintics, and beyond. If you’re given two complex roots of a quartic, the conjugate-pair rule gives you four roots total — so you can immediately build two quadratic factors and multiply them together.

For example, if 1 + i and 4 + 5i are both roots of a quartic with real coefficients, then 1 − i and 4 − 5i are also roots. The quartic factors as:

(z − (1+i))(z − (1−i))(z − (4+5i))(z − (4−5i))
= (z² − 2z + 2)(z² − 8z + 41)

Worked examples

WE 1

Solve a quadratic with complex roots

Solve z² − 4z + 13 = 0, giving your answers in Cartesian form.

Step 1: Identify a, b, c a = 1,   b = −4,   c = 13 Step 2: Discriminant check b² − 4ac = 16 − 52 = −36  (negative → complex roots) Step 3: Apply the quadratic formula z = (4 ± √(−36)) / 2 √(−36) = 6i z = (4 ± 6i) / 2 = 2 ± 3i z₁ = 2 + 3i,   z₂ = 2 − 3i notice the roots are conjugates of each other — guaranteed because the coefficients are real
WE 2

Factor a quadratic into complex linear factors

Factor z² − 6z + 25 into the form (zz1)(zz2) where z1, z2 are complex.

Step 1: Solve to find the roots z = (6 ± √(36 − 100)) / 2 = (6 ± √(−64)) / 2 = (6 ± 8i) / 2 = 3 ± 4i Step 2: Write the factored form using these roots z₁ = 3 + 4i,   z₂ = 3 − 4i z² − 6z + 25 = (z − 3 − 4i)(z − 3 + 4i) check: expanding gives z² − (3+4i+3−4i)z + (3+4i)(3−4i) = z² − 6z + (9 + 16) = z² − 6z + 25 ✓
WE 3

Find the quadratic from one complex root

Given that 1 + 4i is a root of z² + Bz + C = 0, where B, C ∈ ℝ, find the values of B and C.

Step 1: Conjugate-pair rule — second root is 1 − 4i factors: (z − (1+4i))(z − (1−4i)) Step 2: Apply the conjugate-pair identity (with p=1, q=4) = z² − 2(1)z + (1² + 4²) = z² − 2z + 17 Step 3: Compare with z² + Bz + C B = −2,   C = 17 B = −2,   C = 17 the identity z² − 2pz + (p²+q²) is your friend — it skips the manual expansion
WE 4

Solve a cubic given one complex root

Given that 3 + 2i is a root of z³ − 5z² + 19z − 39 = 0, find the other two roots.

Step 1: Conjugate is also a root second root: z₂ = 3 − 2i Step 2: Build quadratic factor (p=3, q=2) z² − 2(3)z + (3² + 2²) = z² − 6z + 13 Step 3: Divide cubic by z² − 6z + 13 to get linear factor (az + b) (az + b)(z² − 6z + 13) = z³ − 5z² + 19z − 39 comparing z³ coefficient: a = 1 comparing constant: 13b = −39 → b = −3 linear factor: (z − 3) Step 4: Solve linear factor z − 3 = 0 → z = 3 roots: 3 + 2i,   3 − 2i,   3 comparing leading and constant coefficients is faster than full polynomial long division
WE 5

Quartic with two complex roots given

Given that 2 + i and 1 − 3i are both roots of a quartic P(z) with real coefficients and leading coefficient 1, write down all four roots and find P(z).

Step 1: Conjugate-pair rule gives the other two roots 2 + i is a root → 2 − i is also a root 1 − 3i is a root → 1 + 3i is also a root Step 2: Build two quadratic factors using the identity first pair (p=2, q=1): z² − 4z + (4 + 1) = z² − 4z + 5 second pair (p=1, q=3): z² − 2z + (1 + 9) = z² − 2z + 10 Step 3: Multiply the two quadratics (z² − 4z + 5)(z² − 2z + 10) = z⁴ − 2z³ + 10z² − 4z³ + 8z² − 40z + 5z² − 10z + 50 = z⁴ − 6z³ + 23z² − 50z + 50 P(z) = z⁴ − 6z³ + 23z² − 50z + 50 all four roots: 2 ± i and 1 ± 3i — the conjugate rule gives you the missing two for free
WE 6

Find a missing coefficient

The cubic z³ + 4z² + kz + 50 = 0 has 1 + 3i as a root, where k ∈ ℝ. Find the value of k.

Step 1: Conjugate is also a root → 1 − 3i quadratic factor: z² − 2z + (1 + 9) = z² − 2z + 10 Step 2: Express cubic as (z² − 2z + 10)(z + c) for some real c expand: (z² − 2z + 10)(z + c) = z³ + cz² − 2z² − 2cz + 10z + 10c = z³ + (c − 2)z² + (10 − 2c)z + 10c Step 3: Compare with z³ + 4z² + kz + 50 z² coefficient: c − 2 = 4 → c = 6 constant: 10c = 50 ✓ (consistency check) z coefficient: 10 − 2c = 10 − 12 = −2 k = −2 use one comparison to find c, then plug into the z-coefficient to find k — clean and quick

💡 Top tips

⚠ Common mistakes

Complex roots of polynomials are where complex numbers earn their place in algebra. The conjugate-pair rule is the single most useful fact in this section — it turns “we’re given one root” into “we now have two roots”, which is enough to crack most exam questions in one or two steps. The next note brings out one of the most powerful results in HL maths: De Moivre’s theorem, which lets you take any power of a complex number in a single line, no matter how large the exponent.

Need help with Complex Roots of Polynomials?

Get 1-on-1 help from an IB examiner who knows exactly what Paper 1 & 2 are looking for.

Book Free Session →