The real number system is insufficient to solve equations like x2 + 1 = 0. By introducing the imaginary unit i, where i2 = -1, we extend real numbers to complex numbers, unlocking solutions to all polynomial equations.
---
Complex Numbers
Key formulas
Equality: a + ib = c + id if and only if a = c and b = d.
- Powers of i:
- i1 = i, i2 = −1, i3 = −i, i4 = 1 (cycle of period 4)
To find in: divide n by 4; use the remainder.
---
Operations
Addition: (a + ib) + (c + id) = (a+c) + i(b+d)
Subtraction: (a + ib) − (c + id) = (a−c) + i(b−d)
Multiplication: (a + ib)(c + id) = (ac − bd) + i(ad + bc)
Division: (a+ib)/(c+id) = [(a+ib)(c−id)] / (c2+d2)
---
Modulus and Conjugate
Key formulas
Key properties: |z1 · z2| = |z1| · |z2|; |z1/z2| = |z1|/|z2|.
---
Argand Plane
A complex number a + ib is represented by the point (a, b) on the Argand plane (complex plane). The argument (or angle) θ satisfies tan θ = b/a.
Polar form: z = r(cos θ + i sin θ), where r = |z| and θ = arg(z).
---
Quadratic Equations
- For a quadratic ax2 + bx + c = 0 (a ≠ 0), the discriminant is D = b2 − 4ac.
- D > 0: Two distinct real roots.
- D = 0: Two equal real roots (x = −b/2a).
- D < 0: Two complex conjugate roots x = (−b ± i·√(|D|)) / 2a.
---
Worked Examples
Compute i35.
35 = 4×8 + 3, so i35 = i3 = −i.
Express (3 + 2i)(1 − i) in a + ib form.
= 3 − 3i + 2i − 2i2 = 3 − i + 2 = 5 − i.
Find |3 − 4i|.
|3 − 4i| = √(9 + 16) = √(25) = 5.
Write 1/(2 + 3i) in a + ib form.
Multiply numerator and denominator by the conjugate (2 − 3i): (2−3i)/(4+9) = 2/13 − 3i/13.
Find the conjugate of (2 + 3i)/(1 − i).
First simplify: (2+3i)(1+i)/((1)2+(1)2) = (2+2i+3i+3i2)/2 = (2+5i−3)/2 = (−1+5i)/2. Conjugate = (−1−5i)/2.
Solve x2 + 4 = 0 over C.
x2 = −4, so x = ±2i.
Solve x2 − 4x + 13 = 0.
D = 16 − 52 = −36. x = (4 ± √(−36))/2 = (4 ± 6i)/2 = 2 ± 3i.
---
Common mistakes
- Forgetting i2 = −1 during multiplication (writing i2 = 1 is a common error).
- Not multiplying by the conjugate correctly when simplifying a/z.
- Confusing the modulus |z| with the imaginary part Im(z).
---
Summary
Complex numbers extend real numbers by introducing i. All standard algebraic operations apply. Every quadratic equation has solutions in C. The Argand plane gives a geometric interpretation.