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:

  1. 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.
  2. 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.
  3. 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.
  4. 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.

Frequently Asked Questions

Why do we need complex numbers if they include the imaginary unit?

Real numbers alone cannot solve all polynomial equations. For instance, x² + 1 = 0 has no real solution, yet x = i satisfies it perfectly. Complex numbers form an algebraically closed system, meaning every polynomial equation has a solution within them. Beyond pure algebra, they are indispensable in physics and engineering for describing oscillatory phenomena, making calculations with AC circuits far simpler and more intuitive than using real-valued trigonometric functions.

What is the difference between the modulus and the argument of a complex number?

The modulus (or absolute value) |z| is the distance from the origin to the point representing z on the complex plane, calculated as √(a² + b²). It measures magnitude. The argument (or phase) φ is the angle measured counterclockwise from the positive real axis to the line connecting the origin to z. Together, they form the polar representation: z = |z|e^(iφ). The modulus is always non-negative; the argument typically lies between −π and π radians (or −180° to 180°).

Can I use this calculator for purely real or purely imaginary numbers?

Absolutely. Set the imaginary part to 0 for a purely real number, or the real part to 0 for a purely imaginary number. The calculator treats them as special cases of complex numbers. For example, 5 + 0i is the real number 5, and 0 + 3i is the purely imaginary number 3i. All operations work identically, and you will see results in both algebraic and polar forms.

Why is polar form useful for multiplication and division?

In polar form, multiplication amounts to multiplying magnitudes and adding phases: (r₁e^(iφ₁)) × (r₂e^(iφ₂)) = (r₁r₂)e^(i(φ₁+φ₂)). Division follows the same principle with subtraction of phases. This is much faster than expanding (a + bi)(c + di) algebraically. Conversely, addition and subtraction are simpler in algebraic form, so choosing the right representation for each task saves effort and reduces computational errors.

What does the conjugate of a complex number do?

The conjugate of z = a + bi is z̄ = a − bi (flip the sign of the imaginary part). A key property is that z × z̄ = |z|², which gives a real number. This is why conjugates appear in division: multiplying numerator and denominator by the conjugate of the denominator eliminates imaginary parts from the denominator. Conjugates also preserve magnitude while reversing phase, making them useful in wave physics and signal processing.

How do I interpret complex powers and logarithms?

Complex powers and logarithms extend familiar operations to the complex domain using Euler's formula: e^(iφ) = cos(φ) + i sin(φ). For instance, i^i (i to the power of i) yields a real number approximately equal to 0.207. The complex logarithm is multivalued: ln(z) involves both the real logarithm of |z| and the imaginary phase φ. These advanced operations are crucial in control theory, signal analysis, and solving differential equations with complex coefficients.

More math calculators (see all)