MathBored

Essential Math Primer
← Back to Primer Overview
R67 • Lesson 97 of 105

Introduction to Complex Numbers

The imaginary unit i, complex number operations, and why they exist

Reserve & Extensions • K-12

Prerequisites: H35

Key Concepts

  • complex numbers
  • imaginary unit
  • i
  • real and imaginary parts

Introduction to Complex Numbers

For centuries, mathematicians dismissed the square root of negative numbers as impossible. Then they asked: "What if we just invented a number whose square is −1?" That invention -- the imaginary unit i -- unlocked an entire new number system that now powers electrical engineering, quantum physics, and signal processing.

The Imaginary Unit

i = √(−1)     so     i2 = −1

With this definition, we can now take the square root of any negative number:

√(−a) = i√a    (for a > 0)

Examples: √(−9) = 3i,   √(−7) = i√7,   √(−16) = 4i.

Complex Number Form

A complex number has the form:

a + bi

where a is the real part and b is the imaginary part (both are real numbers).

Complex NumberReal Part (a)Imaginary Part (b)
3 + 2i32
−4i0−4
770
−1 + i−11

Notice that every real number is a complex number (with b = 0).

Arithmetic with Complex Numbers

Adding/Subtracting: Combine real parts and imaginary parts separately.

Worked Example 1: Addition and Subtraction

(3 + 4i) + (2 − 7i) = (3 + 2) + (4 − 7)i = 5 − 3i

(6 − i) − (2 + 5i) = (6 − 2) + (−1 − 5)i = 4 − 6i

Multiplying: Use FOIL, then replace i2 with −1.

Worked Example 2: Multiplication

(3 + 2i)(1 − 4i)

= 3(1) + 3(−4i) + 2i(1) + 2i(−4i)

= 3 − 12i + 2i − 8i2

= 3 − 10i − 8(−1)

= 3 − 10i + 8

= 11 − 10i

Complex Conjugates

The conjugate of a + bi is a − bi. Multiplying a complex number by its conjugate always produces a real number:

(a + bi)(a − bi) = a2 + b2

Worked Example 3: Solving x2 + 1 = 0

x2 + 1 = 0

x2 = −1

x = ±√(−1) = ±i

The solutions are x = i and x = −i. Notice these are conjugates of each other. Complex solutions to polynomial equations with real coefficients always come in conjugate pairs.

Common Mistake

Never write √(−4) · √(−9) = √36) = 6. The rule √a · √b = √(ab) only works when a and b are non-negative. Instead: √(−4) · √(−9) = 2i · 3i = 6i2 = −6.

Powers of i Cycle

i1 = i,   i2 = −1,   i3 = −i,   i4 = 1,   i5 = i,   ... The pattern repeats every 4. To find in, divide n by 4 and use the remainder: remainder 0 gives 1, remainder 1 gives i, remainder 2 gives −1, remainder 3 gives −i.

Practice Problems

1. Simplify: √(−50)

Solution

√(−50) = i√50 = i · 5√2 = 5i√2

2. Compute: (5 + 3i) + (−2 + 7i)

Solution

(5 − 2) + (3 + 7)i = 3 + 10i

3. Multiply: (2 + i)(2 − i)

Solution

This is a conjugate pair: 22 + 12 = 4 + 1 = 5. (A real number, as expected.)

4. Simplify: i23

Solution

23 / 4 = 5 remainder 3. So i23 = i3 = −i.

5. Solve: x2 + 9 = 0

Solution

x2 = −9, so x = ±√(−9) = ±3i. Solutions: x = 3i and x = −3i.

Summary

Overview