Lesson 3 / 5 · 11 min read
Complex Numbers
Meet $i$, do arithmetic in the complex plane, and find the roots quadratics hide.
Why we invent i
No real number squared gives −1. So we invent one and call it i:
i2=−1i=−1
A complex number has the form a+bi, where a and b are real.
- a is the real part.
- b is the imaginary part.
Examples: 3+2i, −5−i, and 7 (which is 7+0i — every real number is also complex).
Powers of i cycle
i1=i,i2=−1,i3=−i,i4=1,i5=i, …
To compute in, divide n by 4 and use the remainder.
Example. i27: 27÷4=6 remainder 3, so i27=i3=−i.
Arithmetic
Add/subtract by combining real with real and imaginary with imaginary.
(3+2i)+(1−5i)=4−3i
Multiply like binomials, then replace i2 with −1.
(2+3i)(1−4i)=2−8i+3i−12i2=2−5i+12=14−5i
Complex conjugates
The conjugate of a+bi is a−bi. Multiplying a complex number by its conjugate gives a real result:
(a+bi)(a−bi)=a2−(bi)2=a2+b2
That's how you divide complex numbers — multiply top and bottom by the conjugate of the bottom.
Example. 2−i3+i. Multiply by 2+i2+i:
(2−i)(2+i)(3+i)(2+i)=4+16+3i+2i+i2=55+5i=1+i
Quadratics with complex roots
When the discriminant b2−4ac is negative, the quadratic formula gives complex roots.
Example. x2−2x+5=0. Discriminant: 4−20=−16.
x=22±−16=22±4i=1±2i
For real-coefficient polynomials, complex roots always come in conjugate pairs.
Key takeaways
- i2=−1. A complex number a+bi has a real and imaginary part.
- Powers of i cycle through i,−1,−i,1.
- Multiply complex numbers like binomials; replace i2 with −1.
- Divide by multiplying top and bottom by the conjugate of the denominator.
- Quadratics with negative discriminant have a conjugate pair of complex roots.