Last verified · v1.0
Calculator · math
Complex Number Division Calculator
Calculate (a+bi) ÷ (c+di) instantly using conjugate multiplication. Returns the real part, imaginary part, or full complex quotient.
Inputs
Quotient Component
—
Explain my result
Get a plain-English breakdown of your result with practical next steps.
The formula
How the
result is
computed.
Complex Number Division: Formula, Derivation, and Examples
Dividing complex numbers is a fundamental operation in algebra, electrical engineering, and signal processing. Unlike dividing real numbers, dividing complex numbers requires eliminating the imaginary unit from the denominator using a technique known as conjugate multiplication. This divide complex numbers calculator automates that process instantly and accurately.
The Division Formula
Given two complex numbers — numerator a + bi and denominator c + di — their quotient is defined as:
(a + bi) ÷ (c + di) = [(ac + bd) + (bc − ad)i] ÷ (c² + d²)
The result is a new complex number with real part (ac + bd) / (c² + d²) and imaginary part (bc − ad) / (c² + d²), provided c and d are not both zero.
Derivation: Why the Conjugate Works
The standard derivation multiplies both numerator and denominator by the complex conjugate of the denominator. For denominator c + di, its conjugate is c − di. Multiplying a complex number by its conjugate always yields a real number:
- (c + di)(c − di) = c² − (di)² = c² + d²
Applying this to the full fraction:
- Numerator: (a + bi)(c − di) = ac − adi + bci − bdi² = (ac + bd) + (bc − ad)i
- Denominator: (c + di)(c − di) = c² + d²
The identity i² = −1 causes the sign reversal in the bd term, which is why the real part of the result is ac + bd rather than ac − bd. This algebraic identity is rigorously documented in Paul's Online Math Notes — Algebra: Complex Numbers, a widely referenced undergraduate mathematics resource.
Variable Definitions
- a — Real part of the numerator complex number (the dividend)
- b — Imaginary part of the numerator; the coefficient of i in a + bi
- c — Real part of the denominator complex number (the divisor)
- d — Imaginary part of the denominator; the coefficient of i in c + di
The denominator must satisfy c² + d² ≠ 0, meaning c and d cannot both equal zero simultaneously. Division by zero is undefined for complex numbers exactly as it is for real numbers.
Step-by-Step Example: (3 + 2i) ÷ (1 + 4i)
Work through a concrete numerical example with a = 3, b = 2, c = 1, d = 4:
- Compute denominator magnitude squared: c² + d² = 1² + 4² = 1 + 16 = 17
- Real part of quotient: (ac + bd) / 17 = (3 × 1 + 2 × 4) / 17 = 11 / 17 ≈ 0.6471
- Imaginary part of quotient: (bc − ad) / 17 = (2 × 1 − 3 × 4) / 17 = −10 / 17 ≈ −0.5882
- Final result: 0.6471 − 0.5882i
Verification: multiplying 0.6471 − 0.5882i by 1 + 4i returns approximately 3 + 2i, confirming the calculation.
Second Example: Dividing by a Pure Imaginary Number
Divide (6 + 3i) by 2i, setting a = 6, b = 3, c = 0, d = 2:
- c² + d² = 0 + 4 = 4
- Real part: (6 × 0 + 3 × 2) / 4 = 6 / 4 = 1.5
- Imaginary part: (3 × 0 − 6 × 2) / 4 = −12 / 4 = −3
- Result: 1.5 − 3i
Practical Applications
Complex number division appears throughout applied mathematics and engineering:
- Electrical engineering: Impedance in AC circuits is expressed as Z = R + jX. Dividing voltage phasors by impedance phasors yields current — a direct application of this formula. The CPCC Engineering Electronics Technology program shows how instructors apply complex division daily when teaching phasor analysis in circuits courses.
- Signal processing: Transfer functions, frequency response analysis, and digital filter design all require complex arithmetic including division at specific frequencies.
- Control systems: Pole-zero analysis of system stability depends on evaluating complex rational expressions at specific complex frequencies.
- Quantum mechanics: Probability amplitudes and wave function normalization involve dividing complex quantities across the Hilbert space basis.
- Computer graphics: Möbius transformations, used in conformal mapping and hyperbolic geometry rendering, are ratios of complex linear functions.
Polar Form Alternative
An alternative method uses polar form. If the numerator has modulus r₁ and argument θ₁ and the denominator has modulus r₂ and argument θ₂, the quotient has modulus r₁/r₂ and argument θ₁ − θ₂. This method is elegant for repeated multiplications or divisions but requires an extra conversion step from rectangular coordinates, making the rectangular conjugate formula the standard practical choice for one-off numerical calculations.
Reference