Formula and Method for Dividing Complex Numbers
A complex number has the form a + bi, where a is the real part and b is the imaginary part (i² = -1). Unlike addition or subtraction, you cannot divide two complex numbers by dividing their real and imaginary parts separately — instead, you clear the imaginary part out of the denominator by multiplying the numerator and denominator by the denominator's complex conjugate. For (a + bi) ÷ (c + di), the conjugate of the denominator is c − di, and the result is:
(a + bi) / (c + di) = [(ac + bd) + (bc − ad)i] / (c² + d²)
Why multiplying by the conjugate works
Multiplying a complex number by its own conjugate always produces a real number: (c + di)(c − di) = c² − (di)² = c² + d², since i² = -1. So multiplying the fraction (a + bi)/(c + di) by (c − di)/(c − di) — which equals 1, so it doesn't change the value — turns the denominator into the real number c² + d² while the numerator expands to (a + bi)(c − di) = (ac + bd) + (bc − ad)i. Dividing that numerator by the real denominator c² + d² gives the real part x = (ac + bd)/(c² + d²) and imaginary part y = (bc − ad)/(c² + d²) of the quotient x + yi.
Magnitude and angle of the quotient
Once you have the quotient x + yi, its magnitude (modulus) is |x + yi| = √(x² + y²) and its angle (argument) is atan2(y, x), the angle the point (x, y) makes with the positive real axis. This calculator reports both, along with a quick cross-check: in polar form, dividing complex numbers divides their magnitudes and subtracts their angles, so |z1/z2| = |z1|/|z2| and arg(z1/z2) = arg(z1) − arg(z2). If your two answers do not agree, recheck the inputs.
Common mistakes
- Dividing real and imaginary parts separately: (a + bi)/(c + di) is not equal to a/c + (b/d)i — complex division always requires the conjugate step.
- Sign errors on the conjugate: the conjugate of c + di is c − di (flip only the sign of the imaginary part), not −c + di or −c − di.
- Dividing by zero: the denominator c + di must not be 0 + 0i, since that makes c² + d² = 0, an undefined division.
- Forgetting i² = -1: when expanding (a + bi)(c − di), the term −bdi² becomes +bd, a real contribution — dropping this sign flip is a frequent source of errors.
Real-world applications
- Electrical engineering uses complex division to compute impedance ratios and current/voltage relationships in AC circuits, where impedance is represented as a complex number.
- Control systems and signal processing divide complex transfer functions to analyze system stability and frequency response.
- Physics and quantum mechanics use complex division when working with wave functions and phasors.
- Computer graphics and 2D rotations sometimes represent transformations as complex numbers, where division "undoes" a scaling-and-rotation operation.