Every complex number $z = a + bi$ corresponds to a unique point $(a, b)$ in the plane: $a$ along the horizontal real axis, $b$ along the vertical imaginary axis.
The binomial form $a+bi$ is the natural form for addition and subtraction, and it can still handle multiplication and division: treat $i$ like a variable, then replace $i^2$ with $-1$ wherever it appears.
Instead of describing $z$ by its horizontal and vertical parts, polar form describes it by its distance from the origin, $r = |z|$, and its direction, $\theta = \arctan\left(\dfrac{b}{a}\right)$, adjusted for the quadrant of $z$ (section 04).
Five rays extend from the origin, from the horizontal axis up to the vertical, one for each landmark angle between 0 and $\pi/2$. Pick one of the five rays as your angle $\theta$, then:
This is the step most often needed to turn a binomial form into an exponential one.
The conjugate of $z = a+bi$ flips the sign of the imaginary part: $\bar z = a - bi$. Geometrically, it is the reflection of $z$ across the real axis.
Powers and roots are effortless in exponential form, since raising to a power just scales the angle.
| Binomial | Exponential | |
|---|---|---|
| Written as | $a + bi$ | $re^{i\theta}$ |
| Parameters | real part, imaginary part | modulus, argument |
| Best for | addition, subtraction | multiplication, powers, roots |
| Multiplying | expand and use $i^2=-1$ | multiply moduli, add exponents |
| Example | $1 + \sqrt3\,i$ | $2e^{i\pi/3}$ |