When the discriminant is negative, you used to stop and say "no real solutions." Complex numbers let you keep going. They show up everywhere in advanced math β polynomial roots, electrical engineering, quantum mechanics. For competition math, you mainly need the basics: arithmetic, modulus, and the conjugate root theorem.
The imaginary unit: $ i = \sqrt{-1} $, so $ i^2 = -1 $
A complex number has the form $ a + bi $, where:
Real numbers are complex numbers with $b = 0$. Pure imaginary numbers have $a = 0$.
The powers of i cycle every 4:
Trick: $ i^n = i^{n \mod 4} $. For $ i^{37} $: 37 mod 4 = 1, so $ i^{37} = i^1 = i $.
Combine real parts and imaginary parts separately:
$ (a + bi) + (c + di) = (a + c) + (b + d)i $
$ (a + bi) - (c + di) = (a - c) + (b - d)i $
Example: $ (3 + 2i) + (1 - 4i) = 4 - 2i $
FOIL like binomials, then simplify $i^2 = -1$:
$ (a + bi)(c + di) = ac + adi + bci + bdi^2 = (ac - bd) + (ad + bc)i $
Example: $ (2 + 3i)(1 - i) = 2 - 2i + 3i - 3i^2 = 2 + i + 3 = 5 + i $
The conjugate of $ a + bi $ is $ a - bi $ (flip the sign of the imaginary part).
Notation: $ \overline{a + bi} = a - bi $
Key property: Multiplying a complex number by its conjugate gives a real number:
$ (a + bi)(a - bi) = a^2 - (bi)^2 = a^2 - b^2i^2 = a^2 + b^2 $
This is the difference of squares pattern, and it's how you divide complex numbers.
Multiply numerator and denominator by the conjugate of the denominator (like rationalizing):
$ \frac{a + bi}{c + di} = \frac{a + bi}{c + di} \times \frac{c - di}{c - di} = \frac{(ac + bd) + (bc - ad)i}{c^2 + d^2} $
Result: real denominator, standard $a + bi$ form.
The modulus (or magnitude) of $ z = a + bi $ is its distance from the origin in the complex plane:
\[ |z| = |a + bi| = \sqrt{a^2 + b^2} \]
Properties:
If a polynomial has real coefficients and $ a + bi $ is a root, then its conjugate $ a - bi $ is also a root.
Complex roots come in conjugate pairs!
Useful for factoring: if you know one complex root, you automatically know another. Multiply $(x - (a+bi))(x - (a-bi)) = x^2 - 2ax + (a^2 + b^2)$ to get a real quadratic factor.
Pattern: Powers of i cycle every 4.
$ i^1 = i $, $ i^2 = -1 $, $ i^3 = -i $, $ i^4 = 1 $
Step 1: Find 42 mod 4.
$ 42 \div 4 = 10 $ remainder $ 2 $
$ 42 \mod 4 = 2 $
Step 2: $ i^{42} = i^2 = -1 $
In $a + bi$ form: $ -1 + 0i $
So $ a = -1 $, $ b = 0 $
$ a + b = -1 + 0 = -1 $
Answer: -1
Step 1: FOIL (First, Outer, Inner, Last).
\[ (2 + i)(3 + 4i) = 2(3) + 2(4i) + i(3) + i(4i) \]
Step 2: Simplify each term.
$ = 6 + 8i + 3i + 4i^2 $
Step 3: Replace $i^2$ with $-1$ and combine like terms.
$ = 6 + 11i + 4(-1) $
$ = 6 + 11i - 4 $
$ = 2 + 11i $
Step 4: $ a = 2 $, $ b = 11 $
$ a + b = 2 + 11 = 13 $
Answer: 13
Modulus formula: $ |a + bi| = \sqrt{a^2 + b^2} $
Step 1: Identify $a = 3$, $b = 4$.
Step 2: Apply formula.
\[ |3 + 4i| = \sqrt{3^2 + 4^2} = \sqrt{9 + 16} = \sqrt{25} = 5 \]
Intuition: This is the 3-4-5 right triangle! In the complex plane, the point (3, 4) is 5 units away from the origin.
Check with conjugate: $ (3+4i)(3-4i) = 9 + 16 = 25 = 5^2 = |z|^2 $. β
Answer: 5