BACK TO JUST ENOUGH MATH
03.02/LESSON
BEGINNER12 MIN READ

COMPLEX NUMBERS WITHOUT THE FEAR

The Argand plane, Euler’s formula, and why multiplying by i is secretly a 90-degree rotation.

In the last lesson, our example vectors only used ordinary real numbers. But recall from Module 1, Lesson 5, that a qubit needs phase — the "longitude" angle phi — and Module 1, Lesson 1, hinted that phase is "which way something is spinning," suggesting rotation is baked into it. Plain real numbers, sitting on a single number line, have no room to represent "spinning" — they can only get bigger, smaller, or flip sign.

Complex numbers are the mathematical tool that adds exactly the missing ingredient: a second dimension for numbers to live in, which turns out to be exactly what's needed to encode phase. This lesson builds complex numbers from the ground up — no physics required, just an extension of the number line you already know.


Where Complex Numbers Come From

You already know that some equations have no solution using ordinary ("real") numbers. For example: what number, multiplied by itself, gives -1? No positive number works (), and no negative number works either (, still not -1). Mathematicians simply defined a new number to fill this gap, called i:

That's it. i isn't mystical — it's a symbol representing "the square root of -1," defined purely so that the equation x^2 = -1 has a solution. Once you accept this one definition, an entire consistent system of arithmetic follows from it.

Complex Number

A complex number is a number written in the form a + bi, where a and b are ordinary real numbers. "a" is called the real part, and "b" (the number multiplying i) is called the imaginary part. For example, 3 + 4i is a complex number with real part 3 and imaginary part 4.

'IMAGINARY' IS A HISTORICAL ACCIDENT

The name "imaginary number" was originally used as an insult by Rene Descartes in the 1600s, who considered these numbers fictitious. The name stuck even after mathematicians fully accepted them as just as legitimate and useful as any other number. Don't let the name make them feel less real or less usable — in quantum computing, they are not an optional add-on, they are load-bearing.


The Argand Plane — Complex Numbers as Points

Just as we pictured a real number as a point on a single number line, we picture a complex number a + bi as a point on a 2D plane: the horizontal axis is the real part, and the vertical axis is the imaginary part. This picture is called the Argand plane (or "complex plane").

Worked Example: Plotting a Few Complex Numbers

  • 2 + 3i → point at (2, 3) on the Argand plane.
  • -1 + 1i → point at (-1, 1).
  • 4 + 0i = 4 → point at (4, 0) — an ordinary real number is just a complex number with zero imaginary part, sitting exactly on the horizontal axis.
  • 0 + 1i = i → point at (0, 1) — sitting exactly on the vertical axis.

Arithmetic with Complex Numbers

Addition — add real parts together, add imaginary parts together:

Multiplication — expand like ordinary algebra (FOIL), then simplify using i^2 = -1:

Worked Example: Multiplying by i, Repeatedly

We're back where we started, after 4 multiplications by i.

Why This Matters: Multiplying by i Is a 90° Rotation

Plot the four results above on the Argand plane: 1 sits at (1,0); i sits at (0,1); -1 sits at (-1,0); -i sits at (0,-1). Plotting these four points, you'll notice they sit at the 3 o'clock, 12 o'clock, 9 o'clock, and 6 o'clock positions of a circle — each multiplication by i rotates the point 90° counterclockwise around the origin.

This is the single most important fact about complex numbers for this entire course: multiplying by a complex number can represent a rotation. This is exactly the mathematical machinery behind the "phase" (phi, longitude) introduced in Module 1 — phase is encoded using complex numbers precisely because complex number multiplication naturally rotates things.


The Modulus (Length) of a Complex Number

Just like a 2D vector has a length, a complex number a + bi has a modulus (its distance from the origin on the Argand plane), computed the exact same way, via the Pythagorean theorem:

Worked Example: Modulus of 3 + 4i

Worked Example: Modulus of i

Notice i has modulus 1 — it sits exactly on the unit circle of the Argand plane, which is why repeatedly multiplying by it just rotates around that circle without ever changing distance from the origin.


Polar Form: Writing a Complex Number Using an Angle

Instead of writing a complex number as a + bi ("rectangular form"), we can write it using its modulus and an angle — "polar form." This connects directly to the phi angle from Module 1. The key formula, called Euler's formula, states:

Here, e is Euler's number (). This is a genuinely deep mathematical result belonging to calculus — we won't derive it, but we will use it constantly, so let's build strong intuition: represents a point on the unit circle, at angle measured counterclockwise from the positive real axis.

Worked Example: Confirming Euler's Formula at Known Angles

At :

At :

At :

At :

This confirms it: the phase angle phi from Module 1's Bloch sphere is literally the angle inside this expression. When we build the full mathematical qubit state in Lesson 9, this exact term will appear in the formula.


The Complex Conjugate

One last tool, needed starting in Lesson 4: the complex conjugate of a + bi, written , is found by simply flipping the sign of the imaginary part:

Worked Example

A useful fact we'll rely on soon: multiplying a complex number by its own conjugate always gives a real, non-negative number equal to the modulus squared:

Worked Example

This exact trick — multiplying something by its own conjugate to get a real, squared-length number — is precisely how quantum mechanics converts complex-number amplitudes into real-number probabilities, used directly in Lesson 5 and Lesson 9.


Practice Questions

Test your understanding


KEY TAKEAWAYS

Remember these points

A complex number a + bi is a point on a 2D plane (the Argand plane) with a real part a and imaginary part b, where

Complex numbers add and multiply using ordinary algebra rules, with the extra simplification

Multiplying by i rotates a point 90 degrees counterclockwise around the origin — multiplying by complex numbers in general can represent rotation

Euler's formula, , describes a point on the unit circle at angle φ — this is the exact same phase angle introduced geometrically in Module 1's Bloch sphere

The modulus measures distance from the origin, and multiplying a number by its own complex conjugate always yields a real, non-negative number equal to the modulus squared — the exact mechanism used to convert quantum amplitudes into real probabilities