complex numbers

Complex Numbers

Last Updated:

Written by:

Time to read:

For centuries, mathematicians were stumped by a simple problem: What is the square root of a negative number? Since any number multiplied by itself (positive or negative) results in a positive value, the equation x2 = -1 seemed impossible.

Enter the Complex Number. Far from being “imaginary” in the sense of being fake, complex numbers are essential tools in modern physics, engineering, and computer graphics.

What is a Complex Number?

A complex number is written in the form:

z = a + bi

Where:

a = Real part denoted by Re z
b = Imaginary part denoted by Im z
i = Imaginary unit

The imaginary unit is defined as:

i² = −1

Example:

3 + 4i
Real part = 3
Imaginary part = 4i

The Imaginary unit (i)

The imaginary unit allows us to represent the square root of −1.

i = √−1

Powers of i follow a repeating cycle:

i¹ = i
i² = −1
i³ = −i
i⁴ = 1

Then the pattern repeats:

i⁵ = i
i⁶ = −1
i⁷ = −i
i⁸ = 1

This cycle repeats every 4 powers.

In general, for any integer k:

i⁴ᵏ = 1

i⁴ᵏ⁺¹ = i

i⁴ᵏ⁺² = −1

i⁴ᵏ⁺³ = −i

The Modulus and the Conjugate of a Complex Number

Let z = a + ib be a complex number. Then the modulus of z, denoted by |z|, is defined as:

|z| = √(a² + b²)

The conjugate of z, denoted by z, is defined as:

z = a − ib


Examples

|3 + i| = √(3² + 1²) = √10

|2 − 5i| = √(2² + (−5)²) = √29

3 + i = 3 − i

2 − 5i = 2 + 5i

−3i − 5 = 3i − 5


Multiplicative Inverse

The multiplicative inverse of a non-zero complex number z is:

z−1 = 1 / (a + ib)

= a/(a² + b²) − i·b/(a² + b²)

= (a − ib)/(a² + b²)

= z / |z|²


Important Result

z × z = |z|²


Properties

For any two complex numbers z₁ and z₂:

  1. |z₁ z₂| = |z₁| |z₂|
  2. |z₁ / z₂| = |z₁| / |z₂|   (provided z₂ ≠ 0)
  3. z₁ z₂ = z₁ z₂
  4. z₁ ± z₂ = z₁ ± z₂
  5. z₁ / z₂ = z₁ / z₂   (provided z₂ ≠ 0)

Visualising the Complex Plane or Argand Plane

Unlike real numbers, which sit on a single line, complex numbers require two dimensions. We use the Complex Plane (Argand Diagram):

  1. Horizontal Axis (x): The Real part (a).
  2. Vertical Axis (y): The Imaginary part (bi).

Example: 3 + 4i is plotted 3 units right and 4 units up.

The plane having a complex number assigned to each of its point is called the complex plane or the Argand plane

complex plane

The Argument (𝛳) in Complex Numbers

In the context of complex numbers, 𝛳(theta) represents the argument, often written mathematically as arg(z)

The argument is the angle formed between the positive Real axis (the right side of the horizontal line) and the line connecting the origin to your complex number.

When defining a point in the complex plane:

  • The Modulus (r) tells you how far the point is from the center (origin).
  • The Argument (𝛳) tells you which direction to point.

It is a crucial part of writing complex numbers in polar form. Instead of standard rectangular coordinates (a + bi), polar form looks like:

z = r(cos 𝛳 + i sin 𝛳)

z = r eiᶿ (Euler’s Formula)

To calculate 𝛳, basic trigonometry can be used based on the real part (a) and the imaginary part (b):

tan 𝛳 = b/a

For example, if z = 3+4i :

Real part (a) = 3

Imaginary part (b) = 4

tan 𝛳 = b/a = 4/3

𝛳 = 53.1°

Conjugate of Complex Number in Argand Plane

The representation of a complex number z = x + iy and its conjugate z = x – iy in the Argand plane are, respectively, the points P (x, y) and Q (x, – y). Geometrically, the point (x, – y) is the mirror image of the point (x, y) on the real
axis.

Conjugate of Complex Number in Argand Plane

Algebra of Complex Numbers

In this section, we develop the algebra of complex numbers

  1. Addition of two complex numbers

Letz1=a+ibz_1 = a + ib

andz2=c+idz_2 = c + id

be any two complex numbers.

Then the sum of z1z_1​ and z2z_2 is defined asz1+z2=(a+c)+i(b+d)z_1 + z_2 = (a + c) + i(b + d)

Thus, the sum of two complex numbers is again a complex number.

Example

(2+3i)+(6+5i)(2 + 3i) + (-6 + 5i) =(26)+i(3+5)= (2 – 6) + i(3 + 5)=4+8i= -4 + 8i

Properties of Addition of Complex Numbers

The addition of complex numbers satisfies the following properties:

(i) Closure Law

The sum of two complex numbers is always a complex number.z1+z2z_1 + z_2

is a complex number for all complex numbers z1z_1​ and z2z_2

(ii) Commutative Law

For any two complex numbers z1z_1 and z2z_2,z1+z2=z2+z1z_1 + z_2 = z_2 + z_1

(iii) Associative Law

For any three complex numbers z1,z2,z3z_1, z_2, z_3(z1+z2)+z3=z1+(z2+z3)(z_1 + z_2) + z_3 = z_1 + (z_2 + z_3)

(iv) Existence of Additive Identity

There exists a complex number0+i00 + i0

denoted simply as 0, called the additive identity or zero complex number, such thatz+0=zz + 0 = z

for every complex number zz.

(v) Existence of Additive Inverse

For every complex numberz=a+ibz = a + ib

there exists a complex numbera+i(b)-a + i(-b)

denoted byz-z

This number is called the additive inverse (or negative) of zz

Thus,z+(z)=0z + (-z) = 0z+(−z)=0

which gives the additive identity.

2. Subtraction of Two Complex Numbers:

Given any two complex numbers z₁ and z₂ , the difference z₁ − z₂ is defined as:

z₁ − z₂ = z₁ + (−z₂)

Examples

Example 1

(6 + 3i) − (2 − i)

= (6 + 3i) + (−2 + i)
= 4 + 4i

Example 2

(2 − i) − (6 + 3i)

= (2 − i) + (−6 − 3i)
= −4 − 4i

3. Multiplication of Two Complex Numbers

Let

z₁ = a + ib
z₂ = c + id

be any two complex numbers.

The product z₁z₂ is defined as:

z₁z₂ = (ac − bd) + i(ad + bc)

Example:

(3 + i5)(2 + i6)

= (3 × 2 − 5 × 6) + i(3 × 6 + 5 × 2)

= −24 + i28

Properties of Multiplication of Complex Numbers

1. Closure Law

The product of two complex numbers is also a complex number.

If z₁ and z₂ are complex numbers, then
z₁z₂ is also a complex number.

2. Commutative Law

For any two complex numbers z₁ and z₂:

z₁z₂ = z₂z₁

3. Associative Law

For any three complex numbers z₁, z₂, z₃:

(z₁z₂)z₃ = z₁(z₂z₃)

4. Multiplicative Identity

There exists a complex number

1 + 0i (denoted as 1)

such that for every complex number z:

z × 1 = z

5. Multiplicative Inverse

For every non-zero complex number

z = a + ib (where a ≠ 0 or b ≠ 0)

there exists a complex number:

1/z = a/(a² + b²) − i b/(a² + b²)

This number is called the multiplicative inverse of z.

It satisfies:

z × (1/z) = 1

6. Distributive Law

For any three complex numbers z₁, z₂, z₃:

(a) z₁(z₂ + z₃) = z₁z₂ + z₁z₃

(b) (z₁ + z₂)z₃ = z₁z₃ + z₂z₃

4. Division of Two Complex Numbers:

Given any two complex numbers z1z_1​ and z2z_2​, where z20z_2 \neq 0, the quotient z1z2\frac{z_1}{z_2} is defined byz1z2=z1×1z2\frac{z_1}{z_2} = z_1 \times \frac{1}{z_2}

Example

Letz1=6+3iandz2=2iz_1 = 6 + 3i \quad \text{and} \quad z_2 = 2 – i

Step 1: Write the Division

z1z2=6+3i2i\frac{z_1}{z_2} = \frac{6 + 3i}{2 – i}

Step 2: Find the Multiplicative Inverse of the Denominator

12i=222+(1)2+i(1)22+(1)2\frac{1}{2-i} = \frac{2}{2^2 + (-1)^2} + i\frac{-(-1)}{2^2 + (-1)^2}=25+i5= \frac{2}{5} + \frac{i}{5}=2+i5= \frac{2+i}{5}

Step 3: Multiply

z1z2=(6+3i)(2+i5)\frac{z_1}{z_2} = (6+3i)\left(\frac{2+i}{5}\right)

Step 4: Expand

(6+3i)(2+i)(6+3i)(2+i)=12+6i+6i+3i2= 12 + 6i + 6i + 3i^2=12+12i3= 12 + 12i – 3=9+12i= 9 + 12i

Step 5: Final Answer

z1z2=9+12i5\frac{z_1}{z_2} = \frac{9 + 12i}{5}

or95+125i\frac{9}{5} + \frac{12}{5}i

Equality of Complex Numbers

Two complex numbers are equal if their real parts and imaginary parts are equal.

Ifa+ib=c+ida + ib = c + id

then

  • a=ca = c
  • b=db = d

Why Do They Matter?

It’s easy to think these are theoretical, but they drive our modern world:

  • Electrical Engineering: Essential for calculating AC circuits and impedance.
  • Fluid Dynamics: Used to model airflow over airplane wings.
  • Quantum Physics: The Schrödinger equation relies on complex numbers.
  • Fractals: The Mandelbrot Set is generated through iterations of complex numbers.