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:

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

Frequently Asked Questions

What is the quickest way to divide two complex numbers by hand?

Polar form division is faster for manual calculation. If both numbers are given in polar form (magnitude and phase), simply divide the magnitudes and subtract the phases. This requires only two operations. Rectangular form demands expanding the numerator by the conjugate, computing four separate products, and performing multiple divisions—significantly more tedious. Convert to polar form first if speed matters and your numbers aren't already in that representation.

Can you divide a complex number by itself?

Yes. Any non-zero complex number divided by itself equals 1. Mathematically, if <code>z ≠ 0</code>, then <code>z ÷ z = 1</code>. In rectangular form, the conjugate multiplication yields a real denominator and a numerator matching that denominator. In polar form, <code>r·exp(iφ) ÷ r·exp(iφ) = (r÷r)·exp(i·0) = 1·exp(i·0) = 1</code>. This identity holds regardless of whether the number is real, purely imaginary, or mixed.

What happens when you divide a real number by an imaginary number?

The result is purely imaginary. For example, <code>5 ÷ 2i = 5(−2i) ÷ (2i)(−2i) = −10i ÷ 4 = −2.5i</code>. More generally, dividing a real number by <code>ci</code> (where <code>c</code> is real) yields a result proportional to <code>−i</code>. The magnitude becomes the ratio of the original number to the imaginary coefficient, and the phase rotates by 90° (or −π/2 radians). This property makes dividing by imaginary numbers useful in rotating vectors by right angles.

How do you divide <code>1</code> by <code>i</code>?

The answer is <code>−i</code>. Using the conjugate method: multiply both numerator and denominator by the conjugate of <code>i</code>, which is <code>−i</code>. This gives <code>1 × (−i) ÷ [i × (−i)] = −i ÷ (−i²)</code>. Since <code>i² = −1</code>, the denominator becomes <code>−(−1) = 1</code>, leaving <code>−i</code> as the result. Alternatively, note that <code>i × (−i) = −i² = 1</code>, confirming that <code>−i</code> is the reciprocal of <code>i</code>.

Why is division easier in polar form than rectangular form?

Polar form leverages the properties of exponentials. Multiplying exponentials adds exponents: <code>exp(iφ₁) × exp(iφ₂) = exp(i(φ₁ + φ₂))</code>. Division subtracts them: <code>exp(iφ₁) ÷ exp(iφ₂) = exp(i(φ₁ − φ₂))</code>. This is a fundamental rule of exponents and requires no conjugate tricks. Rectangular form, by contrast, involves the distributive property and must eliminate imaginary terms from denominators—more steps, more room for error, and more arithmetic. For hand calculation, polar is superior whenever both numbers are available in that form.

Does the order matter when dividing complex numbers?

Absolutely. Complex number division is not commutative: <code>z₁ ÷ z₂ ≠ z₂ ÷ z₁</code> (except in special cases like when one number divides the other evenly). Swapping the dividend and divisor inverts the result. For example, <code>2i ÷ (1 + i)</code> gives <code>1 + i</code>, but <code>(1 + i) ÷ 2i</code> gives <code>(1 − i)/2</code>. Always perform division in the order specified by your problem.

More math calculators (see all)