Dividing Complex Numbers in Rectangular Form
When dividing complex numbers expressed as a + ib and c + id, direct algebraic division isn't straightforward because of the imaginary unit. The key technique involves multiplying both numerator and denominator by the complex conjugate of the denominator.
The complex conjugate of c + id is c − id. Multiplying by this conjugate eliminates the imaginary part from the denominator, converting it to a real number. This transformation allows you to separate the quotient into distinct real and imaginary components.
The process works because:
- The denominator becomes
(c + id)(c − id) = c² + d², which is always real - The numerator
(a + ib)(c − id)expands to give both real and imaginary parts - Division of a complex number by a real number is straightforward—just divide each component separately
This method guarantees a valid result whenever the divisor is non-zero (that is, when c² + d² ≠ 0).
The Rectangular Division Formula
When dividing z₁ = a + ib by z₂ = c + id, the quotient is:
z₁ ÷ z₂ = (ac + bd) ÷ (c² + d²) + i[(bc − ad) ÷ (c² + d²)]
a, b— Real and imaginary parts of the dividend z₁c, d— Real and imaginary parts of the divisor z₂c² + d²— The squared magnitude of the divisor; must not equal zero
Dividing Complex Numbers in Polar Form
Polar representation converts a complex number into magnitude and phase: z = r·exp(iφ), where r is the distance from the origin and φ is the angle from the positive real axis.
Division in polar form is remarkably elegant. Instead of multiplying by conjugates, you simply:
- Divide the magnitudes:
r₁ ÷ r₂gives the magnitude of the quotient - Subtract the phases:
φ₁ − φ₂gives the phase of the quotient
This works because exponential functions follow the rule exp(iφ₁) ÷ exp(iφ₂) = exp(i(φ₁ − φ₂)). The result is intuitive: dividing magnitudes scales the result, while subtracting angles rotates it.
Polar division avoids the tedious algebraic expansion required in rectangular form, making it the preferred method for hand calculations involving multiple operations or when the numbers already appear in polar form.
The Polar Division Formula
For z₁ = r₁·exp(iφ₁) and z₂ = r₂·exp(iφ₂):
z₁ ÷ z₂ = (r₁ ÷ r₂) × exp[i(φ₁ − φ₂)]
r₁, φ₁— Magnitude and phase of the dividend z₁r₂, φ₂— Magnitude and phase of the divisor z₂r₁ ÷ r₂— The magnitude of the quotient
Common Pitfalls When Dividing Complex Numbers
Avoid these mistakes when computing complex number quotients:
- Forgetting to multiply by the conjugate — In rectangular form, failing to eliminate imaginary terms from the denominator leads to incorrect results. Always multiply both numerator and denominator by the conjugate of the divisor before simplifying.
- Mixing angle units in polar form — Ensure all phases are in the same unit—either all degrees or all radians. Subtracting a phase in degrees from one in radians will produce nonsense. Convert beforehand if needed.
- Dividing by zero — A complex number like <code>0 + 0i</code> (or <code>0·exp(iφ)</code>) cannot be a divisor. Always check that the divisor's magnitude is non-zero before proceeding.
- Forgetting phase wrapping — After subtracting phases, the result may fall outside the range <code>[−π, π]</code> or <code>[0°, 360°]</code>. Some applications require normalizing the final angle back into the standard range.