Complex numbers
| English | Chinese | Pinyin |
|---|---|---|
| complex number | 复数 | fù shù |
| real part | 实部 | shí bù |
| imaginary part | 虚部 | xū bù |
| conjugate | 共轭 | gòng è |
| modulus | 绝对值 | jué duì zhí |
| argument | 辐角 | fú jiǎo |
| Argand diagram | 阿干图 | ā gàn tú |
| polar form | 极坐标形式 | jí zuò biāo xíng shì |
| discriminant | 判别式 | pàn bié shì |
The number that doesn't exist
- What is $\sqrt{-1}$? For centuries, mathematicians said it doesn't exist. Then they discovered that pretending it does — calling it $i$ — unlocks solutions to equations that otherwise have none.
- Complex numbers 复数 extend the number line into a plane, and they're essential for electrical engineering, quantum mechanics, and signal processing.
Complex numbers
- A complex number is $z = x + iy$, where $i^2 = -1$ — $x$ is the real part 实部, $y$ the imaginary part 虚部.
- The conjugate 共轭 $z^* = x - iy$. Real-coefficient polynomials have non-real roots in conjugate pairs.
- The modulus 绝对值 $|z| = \sqrt{x^2 + y^2}$; the argument 辐角 is the angle from the positive real axis.
Worked example. $z = 3 + 4i$. Modulus $= \sqrt{9 + 16} = 5$. Conjugate $= 3 - 4i$.
$i^2 = -1$, not $1$. When multiplying complex numbers, remember that $i^2 = -1$. For example, $(2+i)(3+i) = 6 + 2i + 3i + i^2 = 6 + 5i - 1 = 5 + 5i$.

Self-similar patterns like Romanesco arise from iterating in the complex plane
The Argand diagram
z = x + yi
Plot a complex number as a point: its distance from O is the modulus, its angle is the argument.
What is the modulus of the complex number 3 + 4i?
|z| = √(3² + 4²) = √(9 + 16) = √25 = 5.
The conjugate of z = 5 + 2i is:
The conjugate flips the sign of the imaginary part: z* = 5 − 2i.
What is the value of i²?
By definition of the imaginary unit, i² = −1.
(2 + i)(3 + i) = a + bi. What is a (the real part)?
(2+i)(3+i) = 6 + 2i + 3i + i² = 6 + 5i − 1 = 5 + 5i. Real part = 5.
Argand diagram 阿干图 and polar form 极坐标形式
- Plot $z$ as a point on an Argand diagram (real axis horizontal, imaginary axis vertical).

On an Argand diagram, the modulus |z| is the distance from the origin and the argument is the angle θ.
- Polar form: $z = r(\cos\theta + i\sin\theta) = re^{i\theta}$ — multiplying multiplies moduli and adds arguments.
Division using the conjugate
- To divide, multiply top and bottom by the conjugate of the bottom.
- Example: $\dfrac{3+i}{1-i} = \dfrac{(3+i)(1+i)}{(1-i)(1+i)} = \dfrac{3+3i+i+i^2}{1+1} = \dfrac{2+4i}{2} = 1 + 2i$.
(3+i)/(1−i) = a + bi. What is b (the imaginary part)?
Multiply by (1+i)/(1+i): (3+i)(1+i)/2 = (3+3i+i−1)/2 = (2+4i)/2 = 1+2i. Imaginary part = 2.
Solving equations with complex roots
- A quadratic with negative discriminant 判别式 has complex roots: $x^2 + 4 = 0 \Rightarrow x = \pm 2i$.
- Real-coefficient polynomials always have non-real roots in conjugate pairs: if $a + bi$ is a root, so is $a - bi$.
allow_no_figure: Complex number arithmetic and the Argand diagram are algebraic/geometric concepts that are effectively conveyed through notation and worked examples.
- Besides Cartesian and polar forms, find square roots of a complex number and sketch loci (e.g. $|z-a|=r$).
If a polynomial with real coefficients has root 2 + 3i, it must also have root 2 − 3i.
Real-coefficient polynomials always have non-real roots in conjugate pairs.
You've got it
- $z = x + iy$, $i^2 = -1$; conjugate $z^* = x - iy$; modulus $|z| = \sqrt{x^2+y^2}$
- plot on the Argand diagram; polar form $z = re^{i\theta}$
- divide by multiplying top and bottom by the bottom's conjugate