Logo
Published on

Advanced Applications of Complex Numbers

Authors
  • avatar
    Name
    Vu Hung
    Twitter

Problem Statement

Complex numbers are not just for solving polynomials. They are a universal language used in higher-level mathematical proofs and real-world engineering.

For instance, the Triangle Inequality (z1+z2z1+z2|z_1 + z_2| \le |z_1| + |z_2|), which is a fundamental concept in metric spaces, is a direct generalisation of the real number case, visualised perfectly via vector addition on the Argand plane. Furthermore, De Moivre's theorem can be rigorously proven using Mathematical Induction.

Outside the classroom, complex numbers are used extensively in:

  • Signal Processing: The Fast Fourier Transform (FFT), used in audio production, Wi-Fi, and JPEG compression, relies entirely on complex numbers to decompose signals into sine waves.
  • Electrical Engineering: AC circuit analysis uses complex numbers (impedance) to model resistance and reactance simultaneously.
  • Computer Graphics: Multiplying by a complex number is a highly efficient way to compute 2D rotations in game engines.

Let's look at how complex numbers are used to model a physical 2D rotation, an application heavily used in digital graphic design.

Consider a point in 2D space represented by the complex number z=3+4iz = 3 + 4i. We want to rotate this point counter-clockwise around the origin by 9090^\circ (π2\frac{\pi}{2} radians).

(a) Multiplying a complex number by ii rotates it. Perform the algebraic multiplication i×zi \times z to find the new coordinate zz'.

(b) Prove that this multiplication represents a 9090^\circ rotation by using the polar form (modulus-argument form) of zz and ii.

(c) State the Triangle Inequality for complex numbers, and geometrically explain what it means using vectors on the Argand plane.


Hints

  • Part (a): Distribute the ii into 3+4i3 + 4i. Remember that i2=1i^2 = -1.
  • Part (b): Express ii in polar form (rcisθr \text{cis}\theta). Then express zz in polar form (let z=Rcisαz = R \text{cis}\alpha). Use the rule that when multiplying complex numbers, you multiply their moduli and add their arguments.
  • Part (c): The Triangle Inequality is z1+z2z1+z2|z_1 + z_2| \le |z_1| + |z_2|. Think of z1z_1 and z2z_2 as vectors forming two sides of a triangle. The sum z1+z2z_1 + z_2 is the third side. What does basic geometry say about the lengths of the sides of a triangle?

Solutions

Part (a): Algebraic Rotation

  1. We have z=3+4iz = 3 + 4i.
  2. Multiply by ii: z=i×(3+4i)z' = i \times (3 + 4i)
  3. Distribute: z=3i+4i2z' = 3i + 4i^2
  4. Substitute i2=1i^2 = -1: z=3i+4(1)=4+3iz' = 3i + 4(-1) = -4 + 3i
  5. The new point is (4,3)(-4, 3).

Part (b): Proving Rotation via Polar Form

  1. Express ii in polar form. It lies on the positive imaginary axis, 1 unit from the origin. i=1cis(π2)i = 1 \text{cis} \left(\frac{\pi}{2}\right)
  2. Express zz in general polar form: z=Rcis(α)z = R \text{cis}(\alpha)
  3. Multiply them together using polar multiplication rules (multiply moduli, add arguments): z=i×z=[1cis(π2)]×[Rcis(α)]z' = i \times z = \left[ 1 \text{cis} \left(\frac{\pi}{2}\right) \right] \times \left[ R \text{cis}(\alpha) \right] z=(1×R)cis(α+π2)z' = (1 \times R) \text{cis} \left(\alpha + \frac{\pi}{2}\right) z=Rcis(α+π2)z' = R \text{cis} \left(\alpha + \frac{\pi}{2}\right)
  4. The new complex number zz' has the exact same modulus (RR) as the original number zz, meaning its distance from the origin hasn't changed.
  5. The new argument is exactly π2\frac{\pi}{2} greater than the original argument.
  6. Therefore, multiplying by ii physically rotates any complex number by exactly 9090^\circ counter-clockwise without altering its scale.

Part (c): The Triangle Inequality

  1. The Triangle Inequality states: z1+z2z1+z2|z_1 + z_2| \le |z_1| + |z_2|
  2. Geometric Explanation: On the Argand plane, complex numbers add like vectors (head-to-tail).
    • z1|z_1| is the length of the first vector.
    • z2|z_2| is the length of the second vector.
    • z1+z2|z_1 + z_2| is the length of the resultant vector (the diagonal of the parallelogram they form).
  3. These three vectors form a triangle. A fundamental theorem of geometry states that the length of any single side of a triangle must be less than or equal to the sum of the lengths of the other two sides.
  4. Therefore, the "straight line" distance z1+z2|z_1 + z_2| must be shorter than (or equal to) the path taken by walking along z1|z_1| and then along z2|z_2|. Equality only holds if z1z_1 and z2z_2 are parallel and point in the same direction.

Takeaways

  • Multiplication is Rotation: While addition of complex numbers is a translation (sliding), multiplication is inherently a rotation and a scaling. This is why complex numbers are the premier math tool for computer graphics engines.
  • Geometric Intuition for Algebra: Abstract algebraic inequalities like z1+z2z1+z2|z_1 + z_2| \le |z_1| + |z_2| become painfully obvious once you translate them into visual geometry on the complex plane.
  • The Deep Links: The HSC syllabus introduces complex numbers via quadratics, but their true power lies in Fourier analysis, abstract algebra, and quantum mechanics.

Further Readings


Connect with me

If you found this real-world application of complex numbers fascinating, there is plenty more on Vu's Maths Hub. My booklets dive deep into how these mathematical principles govern the world around us. Connect with me on LinkedIn to discuss the intersection of maths and engineering, and subscribe to my Substack for detailed articles. Check out my YouTube channel for step-by-step problem solving!