No history yet

Complex Numbers

Beyond the Number Line

For a long time, mathematicians were stumped by a simple question: what is the square root of -1? On the familiar number line, there's no answer. Squaring a positive number gives a positive result, and squaring a negative number also gives a positive result. There's no real number that, when multiplied by itself, equals -1.

So, mathematicians invented one. They called it ii.

imaginary unit

noun

The number ii, defined as the principal square root of -1. It has the property that i2=1i^2 = -1.

This new number, ii, doesn't live on the number line with numbers like 2, -5, or π\pi. It's something different. By combining this imaginary unit with the real numbers we already know, we create a new set of numbers called complex numbers.

Lesson image

A complex number, typically written as zz, has the standard form:

z=a+biz = a + bi

Here, aa is the real part and bb is the imaginary part. Both aa and bb are just regular real numbers. For example, in the complex number 3+4i3 + 4i, the real part is 3 and the imaginary part is 4.

Working with Complex Numbers

Doing arithmetic with complex numbers is straightforward. For addition and subtraction, you just combine the real parts and the imaginary parts separately. Think of ii as a variable like xx.

Addition: (a+bi)+(c+di)=(a+c)+(b+d)i(a + bi) + (c + di) = (a+c) + (b+d)i Subtraction: (a+bi)(c+di)=(ac)+(bd)i(a + bi) - (c + di) = (a-c) + (b-d)i

For example, to add (3+2i)(3 + 2i) and (1+5i)(1 + 5i), you add the real parts (3+1=43+1=4) and the imaginary parts (2+5=72+5=7). The result is 4+7i4 + 7i.

Multiplication works like multiplying two binomials in algebra, with one extra step: whenever you see an i2i^2, you replace it with -1.

(a+bi)(c+di)=ac+adi+bci+bdi2 =ac+(ad+bc)i+bd(1) =(acbd)+(ad+bc)i\begin{aligned} (a+bi)(c+di) &= ac + adi + bci + bdi^2 \ &= ac + (ad+bc)i + bd(-1) \ &= (ac-bd) + (ad+bc)i \end{aligned}

Division is a bit more clever. To divide complex numbers, we want to remove the imaginary part from the denominator. We do this by multiplying the top and bottom of the fraction by the complex conjugate of the denominator.

complex conjugate

noun

The complex conjugate of a complex number a+bia + bi is abia - bi. It is denoted as zˉ\bar{z}.

Let's see it in action. To compute 2+3i45i\frac{2+3i}{4-5i}, we multiply the numerator and denominator by the conjugate of the denominator, which is 4+5i4+5i.

2+3i45i=2+3i45i4+5i4+5i=(2)(4)+(2)(5i)+(3i)(4)+(3i)(5i)42(5i)2=8+10i+12i+15i21625i2=8+22i151625(1)=7+22i41=741+2241i\begin{aligned} \frac{2+3i}{4-5i} &= \frac{2+3i}{4-5i} \cdot \frac{4+5i}{4+5i} \\ &= \frac{(2)(4) + (2)(5i) + (3i)(4) + (3i)(5i)}{4^2 - (5i)^2} \\ &= \frac{8 + 10i + 12i + 15i^2}{16 - 25i^2} \\ &= \frac{8 + 22i - 15}{16 - 25(-1)} \\ &= \frac{-7 + 22i}{41} = -\frac{7}{41} + \frac{22}{41}i \end{aligned}

A New Perspective

Since a complex number has two parts (real and imaginary), we can't place it on a simple number line. Instead, we use a two-dimensional plane called the complex plane, also known as an Argand diagram. The horizontal axis is the real axis, and the vertical axis is the imaginary axis.

A complex number z=a+biz = a + bi is plotted as the point (a,b)(a, b).

Lesson image

Looking at the number on a plane opens up a new way to describe it. Instead of using rectangular coordinates (a,b)(a, b), we can use polar coordinates (r,θ)(r, \theta).

  • rr is the distance from the origin to the point, called the modulus or magnitude. It's calculated using the Pythagorean theorem: r=z=a2+b2r = |z| = \sqrt{a^2 + b^2}.
  • θ\theta is the angle the line from the origin to the point makes with the positive real axis, called the argument.

This gives us the polar form of a complex number: z=r(cosθ+isinθ)z = r(\cos\theta + i\sin\theta).

This polar form is made even more elegant by a stunning relationship discovered by Leonhard Euler.

Euler's Formula: eiθ=cosθ+isinθe^{i\theta} = \cos\theta + i\sin\theta

This incredible formula connects the exponential function exe^x, trigonometric functions, and the imaginary unit. Using it, we can write any complex number in a very compact exponential form: z=reiθz = re^{i\theta}.

This form is especially powerful for multiplication and division. To multiply two complex numbers, you multiply their moduli and add their arguments. To divide, you divide their moduli and subtract their arguments.

z1z2=(r1eiθ1)(r2eiθ2)=r1r2ei(θ1+θ2)z_1 z_2 = (r_1 e^{i\theta_1})(r_2 e^{i\theta_2}) = r_1 r_2 e^{i(\theta_1 + \theta_2)}

Let's check your understanding of these new numbers.

Quiz Questions 1/6

What fundamental problem in mathematics led to the invention of the imaginary unit, ii?

Quiz Questions 2/6

What is the sum of the complex numbers (53i)(5 - 3i) and (2+7i)(-2 + 7i)?

Complex numbers provide a richer mathematical landscape, allowing us to solve problems that are impossible using only real numbers. They are a fundamental tool in fields like engineering, physics, and signal processing.