3. Complex Numbers

Complex Basics

Arithmetic with complex numbers, conjugates, modulus and argument, and geometric interpretation on the complex plane.

Complex Basics

Hey students! šŸ‘‹ Welcome to one of the most fascinating topics in further mathematics - complex numbers! In this lesson, we'll explore how mathematicians extended the number system beyond real numbers to solve equations that seemed impossible. You'll learn to perform arithmetic with complex numbers, understand conjugates, calculate modulus and argument, and visualize these numbers geometrically on the complex plane. By the end of this lesson, you'll see how complex numbers aren't just mathematical curiosities, but powerful tools used in engineering, physics, and computer science! šŸš€

The Birth of Complex Numbers

Complex numbers emerged from a simple yet profound question: what happens when we try to solve equations like $x^2 + 1 = 0$? šŸ¤” In the real number system, this equation has no solution because no real number squared gives us -1. But mathematicians refused to accept this limitation!

A complex number is written in the form $z = a + bi$, where $a$ and $b$ are real numbers, and $i$ is the imaginary unit defined as $i = \sqrt{-1}$. Here, $a$ is called the real part (often written as Re(z)), and $b$ is called the imaginary part (written as Im(z)). Don't let the word "imaginary" fool you - these numbers are just as valid and useful as real numbers!

For example, in the complex number $3 + 4i$, the real part is 3 and the imaginary part is 4. If $b = 0$, we get a purely real number, and if $a = 0$, we get a purely imaginary number like $5i$.

The fundamental property of $i$ is that $i^2 = -1$. This simple definition opens up an entire new world of mathematics! From this, we can derive that $i^3 = i^2 \cdot i = -1 \cdot i = -i$ and $i^4 = i^2 \cdot i^2 = (-1)(-1) = 1$. Notice how the powers of $i$ cycle every four steps! šŸ”„

Arithmetic Operations with Complex Numbers

Performing arithmetic with complex numbers follows familiar algebraic rules, but with the special property that $i^2 = -1$.

Addition and Subtraction: We simply combine like terms. For complex numbers $z_1 = a + bi$ and $z_2 = c + di$:

  • Addition: $z_1 + z_2 = (a + c) + (b + d)i$
  • Subtraction: $z_1 - z_2 = (a - c) + (b - d)i$

For example: $(3 + 4i) + (2 - 5i) = 5 - i$ and $(3 + 4i) - (2 - 5i) = 1 + 9i$.

Multiplication: We use the distributive property, remembering that $i^2 = -1$:

$(a + bi)(c + di) = ac + adi + bci + bdi^2 = ac + adi + bci - bd = (ac - bd) + (ad + bc)i$

Let's try $(3 + 4i)(2 - 5i) = 6 - 15i + 8i - 20i^2 = 6 - 7i + 20 = 26 - 7i$.

Division: This is trickier! We multiply both numerator and denominator by the conjugate of the denominator to eliminate the imaginary part from the bottom.

Complex Conjugates and Their Properties

The complex conjugate of $z = a + bi$ is $\overline{z} = a - bi$ (sometimes written as $z^*$). Notice how we simply change the sign of the imaginary part! ✨

Complex conjugates have amazing properties:

  • $z + \overline{z} = 2a$ (always real!)
  • $z \cdot \overline{z} = (a + bi)(a - bi) = a^2 - abi + abi - b^2i^2 = a^2 + b^2$ (also real!)
  • $\overline{z_1 + z_2} = \overline{z_1} + \overline{z_2}$
  • $\overline{z_1 \cdot z_2} = \overline{z_1} \cdot \overline{z_2}$

This property makes division possible: $\frac{z_1}{z_2} = \frac{z_1 \cdot \overline{z_2}}{z_2 \cdot \overline{z_2}} = \frac{z_1 \cdot \overline{z_2}}{|z_2|^2}$

Modulus and Argument

The modulus (or absolute value) of a complex number $z = a + bi$ is $|z| = \sqrt{a^2 + b^2}$. This represents the distance from the origin to the point $(a, b)$ in the complex plane - it's just Pythagoras' theorem! šŸ“

For example, $|3 + 4i| = \sqrt{3^2 + 4^2} = \sqrt{9 + 16} = \sqrt{25} = 5$.

The argument of a complex number is the angle $\theta$ that the line from the origin to the point makes with the positive real axis, measured counterclockwise. We write this as $\arg(z) = \theta$.

To find the argument:

  • If $z = a + bi$ with $a > 0$: $\theta = \arctan(\frac{b}{a})$
  • If $a < 0$: $\theta = \arctan(\frac{b}{a}) + \pi$
  • If $a = 0$ and $b > 0$: $\theta = \frac{\pi}{2}$
  • If $a = 0$ and $b < 0$: $\theta = -\frac{\pi}{2}$

The argument is typically given in radians and is often restricted to $(-\pi, \pi]$.

Geometric Interpretation on the Complex Plane

Here's where complex numbers become truly beautiful! šŸŽØ We can represent any complex number $z = a + bi$ as a point $(a, b)$ on a coordinate plane called the complex plane or Argand diagram. The horizontal axis represents real parts, and the vertical axis represents imaginary parts.

This geometric representation reveals why complex numbers are so powerful:

  • Addition corresponds to vector addition - you literally add the displacement vectors!
  • The modulus is the distance from the origin
  • The argument is the angle from the positive real axis
  • Multiplication has a beautiful geometric interpretation: multiply the moduli and add the arguments!

Real-world applications are everywhere! Engineers use complex numbers to analyze AC electrical circuits, where voltage and current have both magnitude and phase. In signal processing, complex numbers represent waveforms. Computer graphics use them for rotations and transformations. Even quantum mechanics relies heavily on complex numbers! šŸ”¬

Consider the complex number $z = 3 + 4i$. On the complex plane, this appears at point $(3, 4)$. Its modulus is 5 (the distance to the origin), and its argument is $\arctan(\frac{4}{3}) \approx 0.927$ radians or about 53.1°.

Conclusion

Complex numbers extend our number system to solve previously impossible equations, opening doors to advanced mathematics and real-world applications. You've learned to perform arithmetic operations, work with conjugates, calculate modulus and argument, and visualize these numbers geometrically. The complex plane transforms abstract algebraic operations into intuitive geometric transformations, making complex numbers not just computational tools but visual concepts that bridge algebra and geometry.

Study Notes

• Complex number form: $z = a + bi$ where $a$ is real part, $b$ is imaginary part, $i = \sqrt{-1}$

• Powers of i cycle: $i^1 = i$, $i^2 = -1$, $i^3 = -i$, $i^4 = 1$

• Addition: $(a + bi) + (c + di) = (a + c) + (b + d)i$

• Multiplication: $(a + bi)(c + di) = (ac - bd) + (ad + bc)i$

• Complex conjugate: $\overline{a + bi} = a - bi$

• Modulus formula: $|z| = |a + bi| = \sqrt{a^2 + b^2}$

• Argument: $\arg(z) = \arctan(\frac{b}{a})$ (with quadrant adjustments)

• Division using conjugates: $\frac{z_1}{z_2} = \frac{z_1 \cdot \overline{z_2}}{|z_2|^2}$

• Key conjugate properties: $z \cdot \overline{z} = |z|^2$, $z + \overline{z} = 2\text{Re}(z)$

• Complex plane: Real axis (horizontal), imaginary axis (vertical)

• Geometric interpretation: Point $(a,b)$ represents $a + bi$

• Modulus-argument form: $z = |z|(\cos\theta + i\sin\theta)$ where $\theta = \arg(z)$

Practice Quiz

5 questions to test your understanding

Complex Basics — AS-Level Further Mathematics | A-Warded