What Are Complex Numbers?
A complex number combines a real part and an imaginary part. The imaginary unit i satisfies i² = −1, which has no solution among real numbers alone. Any complex number z can be written as:
z = a + bi
where a is the real component and b is the imaginary coefficient. When b = 0, the number is purely real. When a = 0, it is purely imaginary. Complex numbers are often visualised as points or vectors on the complex plane, with the horizontal axis representing the real part and the vertical axis representing the imaginary part.
This representation makes complex numbers invaluable in fields requiring periodic or oscillatory analysis, such as electrical engineering, where they simplify AC circuit calculations dramatically.
Converting Between Algebraic and Polar Forms
Every complex number can be expressed in two equivalent forms. The algebraic form emphasises the real and imaginary components, whilst the polar form uses magnitude and phase angle. Conversion between them uses these relationships:
Magnitude: |z| = √(a² + b²)
Phase: φ = atan2(b, a)
Reverse (polar to algebraic):
a = |z| × cos(φ)
b = |z| × sin(φ)
a, b— Real and imaginary parts of the complex number|z|— Magnitude (absolute value or modulus) of the complex numberφ— Phase angle (or argument), measured in radians from the positive real axis
Arithmetic Operations on Complex Numbers
Addition and subtraction are straightforward: combine real parts separately from imaginary parts. If F = a + bi and G = c + di:
F + G = (a + c) + (b + d)i
F − G = (a − c) + (b − d)i
Multiplication requires distributing each term and remembering that i² = −1:
F × G = (ac − bd) + (ad + bc)i
Division involves multiplying numerator and denominator by the conjugate of the denominator (the conjugate of c + di is c − di). For higher-order operations like powers and logarithms, converting to polar form often simplifies calculations considerably.
Common Pitfalls and Practical Notes
When working with complex number calculations, keep these considerations in mind:
- Watch the quadrant when determining phase angle — The arctangent function returns angles only in a limited range. Always use atan2(b, a) rather than simple arctan(b/a) to correctly place your phase angle in the full 360° range. A complex number in the second or third quadrant requires careful attention to avoid a 180° error.
- Conjugates simplify division — To divide complex numbers, multiply both the numerator and denominator by the complex conjugate of the denominator. This clears the imaginary part from the denominator and yields a result in standard form a + bi without tedious algebraic manipulation.
- Polar form excels for multiplication and powers — When multiplying or raising complex numbers to powers, polar form is often cleaner. Magnitudes multiply and divide, whilst phases add or subtract. For example, multiplying z₁ = r₁e^(iφ₁) by z₂ = r₂e^(iφ₂) gives r₁r₂e^(i(φ₁+φ₂)) directly.
- Rounding accumulates in multi-step operations — If you perform several operations in sequence (e.g. multiply, then divide), rounding errors can compound. Choose an appropriate precision level—significant figures often work better than fixed decimal places for quantities spanning different magnitudes.
Real-World Applications
Complex numbers underpin modern technology. In electrical engineering, AC circuits are analysed using complex impedance, where resistance and reactance are combined into a single complex quantity. This dramatically simplifies voltage and current calculations.
Signal processing relies on complex Fourier transforms to decompose signals into frequency components, essential for audio compression, image processing, and telecommunications. Quantum mechanics uses complex wave functions to describe particle states and probabilities. Control systems employ complex analysis to design stable feedback loops in aircraft autopilots, industrial robots, and power grids.
Even in pure mathematics, complex numbers unlock solutions to polynomial equations and enable elegant proofs in analysis and number theory.