No history yet

Complex Operations Forms

Multiplying and Dividing

You already know that multiplying complex numbers in rectangular form works a lot like multiplying binomials. We just use FOIL (First, Outer, Inner, Last) and remember that i2=1i^2 = -1.

For example, to multiply (3+2i)(3 + 2i) by (14i)(1 - 4i): (3)(1)+(3)(4i)+(2i)(1)+(2i)(4i)(3)(1) + (3)(-4i) + (2i)(1) + (2i)(-4i) =312i+2i8i2= 3 - 12i + 2i - 8i^2 =310i8(1)= 3 - 10i - 8(-1) =1110i= 11 - 10i

Division is a bit trickier. We can't just divide term by term. The goal is to remove the imaginary unit, ii, from the denominator. To do this, we use a clever tool called the complex conjugate., a powerful concept first explored by the Irish mathematician William Rowan Hamilton.

Clearing the Denominator

The complex conjugate of a number a+bia + bi is simply abia - bi. You just flip the sign of the imaginary part. The magic happens when you multiply a complex number by its conjugate. The imaginary parts cancel out, leaving a real number.

(a+bi)(abi)=a2abi+abib2i2=a2+b2(a+bi)(a-bi) = a^2 - abi + abi - b^2i^2 = a^2 + b^2

To divide two complex numbers, you multiply both the numerator and the denominator by the conjugate of the denominator. This clears the ii from the bottom, leaving a standard rectangular form.

Let's try dividing (4+i)(4 + i) by (23i)(2 - 3i).

4+i23i=4+i23i2+3i2+3i\frac{4+i}{2-3i} = \frac{4+i}{2-3i} \cdot \frac{2+3i}{2+3i}
(4+i)(2+3i)(23i)(2+3i)=8+12i+2i+3i222+32\frac{(4+i)(2+3i)}{(2-3i)(2+3i)} = \frac{8 + 12i + 2i + 3i^2}{2^2 + 3^2}
8+14i34+9=5+14i13\frac{8 + 14i - 3}{4 + 9} = \frac{5 + 14i}{13}
513+1413i\frac{5}{13} + \frac{14}{13}i

This method always works, but it can be tedious. There is a more elegant way to think about multiplication and division, which starts with visualising the numbers.

A New Perspective

Instead of just treating complex numbers as algebraic expressions, we can plot them on a two-dimensional plane. This visual representation is called an .. The horizontal axis represents the real part, and the vertical axis represents the imaginary part. The number a+bia + bi corresponds to the point (a,b)(a, b).

This geometric view reveals two key properties of any complex number (other than 0): its distance from the origin and its angle relative to the positive real axis. The distance is called the modulus, written as rr or z|z|. The angle is the argument, written as θ\theta or arg(z)arg(z).

Modulus

noun

The distance of a complex number from the origin on the Argand diagram. For a complex number z=a+biz = a + bi, the modulus is z=a2+b2|z| = \sqrt{a^2 + b^2}.

Argument

noun

The angle, typically in radians, that the vector from the origin to the complex number makes with the positive real axis. For z=a+biz = a + bi, the argument is θ=atan2(b,a)\theta = \text{atan2}(b, a).

Together, the modulus and argument define a complex number's polar form. Instead of using coordinates (a,b)(a, b), we use a distance and an angle (r,θ)(r, \theta).

From Rectangular to Polar

Knowing aa and bb lets us find rr and θ\theta. Conversely, knowing rr and θ\theta lets us find aa and bb using basic trigonometry.

a=rcos(θ)a = r \cos(\theta) b=rsin(θ)b = r \sin(\theta)

Substituting these into z=a+biz = a + bi gives us the polar form:

z=r(cosθ+isinθ)z = r(\cos\theta + i\sin\theta)

Let's convert z=1+3iz = 1 + \sqrt{3}i to polar form.

First, find the modulus rr:

r=z=12+(3)2=1+3=4=2r = |z| = \sqrt{1^2 + (\sqrt{3})^2} = \sqrt{1 + 3} = \sqrt{4} = 2

Next, find the argument θ\theta:

θ=arctan(31)=π3 radians (or 60°)\theta = \arctan\left(\frac{\sqrt{3}}{1}\right) = \frac{\pi}{3} \text{ radians (or 60°)}

So, the polar form of 1+3i1 + \sqrt{3}i is 2(cos(π/3)+isin(π/3))2(\cos(\pi/3) + i\sin(\pi/3)).

This might seem like more work, but it makes multiplication and division incredibly simple.

The Elegance of Polar Form

When we multiply two complex numbers in polar form, we multiply their moduli and add their arguments.

Multiplication: the new complex number can be obtained by adding the arguments (angles) and multiplying the moduli (lengths).

If z1=r1(cosθ1+isinθ1)z_1 = r_1(\cos\theta_1 + i\sin\theta_1) and z2=r2(cosθ2+isinθ2)z_2 = r_2(\cos\theta_2 + i\sin\theta_2), then:

z1z2=r1r2[cos(θ1+θ2)+isin(θ1+θ2)]z_1 z_2 = r_1 r_2 [\cos(\theta_1 + \theta_2) + i\sin(\theta_1 + \theta_2)]

For division, we divide the moduli and subtract the arguments.

z1z2=r1r2[cos(θ1θ2)+isin(θ1θ2)]\frac{z_1}{z_2} = \frac{r_1}{r_2} [\cos(\theta_1 - \theta_2) + i\sin(\theta_1 - \theta_2)]

Geometrically, this is powerful. Multiplying a complex number by z2z_2 scales its length by a factor of r2r_2 and rotates it counter-clockwise by an angle of θ2\theta_2. Division is the reverse: it scales by 1/r21/r_2 and rotates clockwise by θ2\theta_2.

This approach turns complex calculations into simple arithmetic and geometric transformations, which is essential for more advanced topics like De Moivre's theorem and Euler's formula.