Complex Numbers Made Practical: Arithmetic, Modulus, and the Polar Form
A working guide to complex number arithmetic — add and multiply a + bi, find modulus and argument, switch to polar form, and see where engineers use it.
Complex Numbers Made Practical: Arithmetic, Modulus, and the Polar Form
The first time I met i, I treated it as a typo that the textbook refused to fix. A number whose square is −1 felt like cheating. It took an actual circuit-analysis homework set for the penny to drop: a complex number is not one strange quantity, it is two ordinary numbers carrying both a size and a direction. Once I started thinking of a + bi as a point on a plane rather than an algebraic curiosity, every operation stopped being a rule to memorize and turned into something I could draw.
This guide walks through the arithmetic that actually shows up in coursework and in signal work: how addition and multiplication behave, how to read the modulus and argument, and why the polar form is the one engineers reach for. Every example here you can reproduce in the complex number calculator, which shows the Cartesian, polar, and Euler forms side by side so you never have to translate by hand.
What a + bi Actually Is
A complex number splits into a real part a and an imaginary part b, written a + bi. Plot a on the horizontal axis and b on the vertical axis and you get a single point — or, more usefully, an arrow from the origin to that point. That arrow has a length and an angle, which is exactly why complex numbers model anything that has both a magnitude and a phase: an AC voltage, a sound wave, a rotating mechanical part.
The real numbers are just the special case where b = 0, sitting on the horizontal axis. The number i itself is the point (0, 1) — one unit straight up. That single picture, an arrow on a plane, is enough to predict how the arithmetic behaves before you compute a single digit.
Adding and Subtracting
Addition is the boring-but-honest part, and that is a feature. You add the real parts and the imaginary parts separately:
(a + bi) + (c + di) = (a + c) + (b + d)i
So (3 + 4i) + (1 − 2i) = 4 + 2i. Geometrically this is vector addition — put the two arrows head to tail and the sum is the arrow from the origin to the new tip. Subtraction works identically with the signs flipped. There is no twist here, no rotation, nothing surprising. Save your attention for multiplication, where the interesting behavior lives.
Multiplication: Where the Magic Hides
Multiplication is where complex numbers earn their keep. You expand the product like any pair of binomials, then use the defining fact that i² = −1:
(a + bi)(c + di) = (ac − bd) + (ad + bc)i
The −bd term is the whole story — it comes from bi · di = bd·i² = −bd. Without that minus sign you would just have ordinary polynomial multiplication; with it, multiplying two arrows does something geometric that addition never does.
Try the cleanest case: multiply any number by i. Take 3 + 4i and multiply by i:
(3 + 4i)(0 + 1i) = (3·0 − 4·1) + (3·1 + 4·0)i = −4 + 3i
Plot both arrows. The point (3, 4) became (−4, 3) — a perfect 90-degree counterclockwise rotation, same length, just spun a quarter turn. That is not a coincidence. Multiplying by i always rotates by 90 degrees, and this single observation is one of the most useful intuitions in the whole subject.
Modulus and Argument: Size and Direction
To read the size and direction of an arrow you need two measurements. The modulus is the length, found with the Pythagorean theorem:
modulus = |a + bi| = √(a² + b²)
So |3 + 4i| = √(9 + 16) = √25 = 5. The classic 3-4-5 triangle shows up the moment you start plotting complex numbers.
The argument is the angle the arrow makes with the positive real axis, computed with atan2(b, a) so the quadrant comes out right. By convention the principal value lives in (−π, π], which means arg(1) = 0, arg(i) = π/2, and arg(−1) = π. Watch the sign carefully: the negative real axis takes +π, not −π. Treating the argument as a smooth continuous function and writing arg(−1) = −π is a common slip, and it bites you later if you chain a logarithm onto the result.
Together, modulus and argument pin down the number completely — and they are precisely the polar coordinates of that point on the plane.
The Polar Form, and Why Engineers Live in It
Once you have a length r and an angle θ, you can write the same number as r∠θ (polar) or r·e^(iθ) (Euler form). They describe the identical point as a + bi; for example 3 + 4i = 5∠53.13° = 5·e^(i·0.927).
Here is the payoff. Multiplication, which is messy in Cartesian form, is trivial in polar form: the moduli multiply and the arguments add. A 90-degree rotation by i is just "multiply length by 1, add 90 degrees to the angle." De Moivre's theorem extends this to powers — raising a number to the nth power means raising the modulus to the n and multiplying the angle by n. Want all n of the nth roots? Spread them evenly around a circle. The geometry does the algebra for you.
That is exactly why electrical engineers represent AC signals as phasors — complex numbers in polar form. A voltage with an amplitude and a phase angle is one complex number; combining sources, computing impedance, and tracking phase shifts all reduce to complex arithmetic instead of trigonometric identity gymnastics. The same machinery runs underneath the Fourier transform that lets a signal-processing pipeline pull a single frequency out of a noisy recording. Control theory, optics, quantum mechanics — all of them lean on the fact that e^(iθ) is a rotation.
A Full Worked Example
Let me close the loop with one complete calculation. Take z₁ = 2 + 3i and z₂ = 1 − 4i, and find both their product and the modulus of that product.
First the product, using (ac − bd) + (ad + bc)i with a = 2, b = 3, c = 1, d = −4:
ac − bd = (2)(1) − (3)(−4) = 2 + 12 = 14
ad + bc = (2)(−4) + (3)(1) = −8 + 3 = −5
z₁ · z₂ = 14 − 5i
Now the modulus of the result with √(a² + b²):
|14 − 5i| = √(14² + (−5)²) = √(196 + 25) = √221 ≈ 14.866
You can sanity-check this against the polar rule, since the modulus of a product equals the product of the moduli: |z₁| = √(4 + 9) = √13 and |z₂| = √(1 + 16) = √17, so √13 · √17 = √221. The two routes agree, which is the kind of cross-check that catches a dropped sign before it reaches your exam paper. If you would rather solve z² + z + 1 = 0 and watch a conjugate pair of complex roots fall out, the quadratic equation solver handles that side of the story.
Where to Go From Here
Complex numbers reward you for thinking geometrically. When a calculation feels opaque in a + bi form, switch to polar and ask what is happening to the length and the angle — the multiplication usually becomes obvious. Add and subtract componentwise, multiply with the (ac − bd) + (ad + bc)i rule, read off √(a² + b²) for size and atan2(b, a) for direction, and you have covered the operations that ninety percent of coursework and engineering work actually demand. The rest is practice, and a calculator that shows all three forms at once so the equivalences stop feeling like translation and start feeling like the same thing said three ways.
Made by Toolora · Updated 2026-06-13