Divide Complex Numbers Calculator

Enter the real and imaginary parts of two complex numbers to divide (a + bi) by (c + di), using the conjugate method to get the exact quotient, its real and imaginary parts, and its magnitude and angle.

Quick Facts

Division formula
(a+bi)/(c+di) = [(ac+bd)+(bc-ad)i] / (c²+d²)
Found by multiplying top and bottom by the conjugate c - di.
Conjugate trick
(c+di)(c-di) = c² + d²
A complex number times its conjugate is always a real number.
Polar shortcut
|z1/z2| = |z1|/|z2|, arg(z1/z2) = arg(z1) − arg(z2)
Divide magnitudes and subtract angles.

Your Results

Calculated
Quotient
-
(a + bi) ÷ (c + di), in x + yi form
Real Part
-
x = (ac + bd) / (c² + d²)
Imaginary Part
-
y = (bc − ad) / (c² + d²)
Magnitude & Angle
-
|quotient| and its argument

Ready

Enter both complex numbers, then press Calculate.

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.

Frequently Asked Questions

What is the formula for dividing complex numbers?
To divide (a + bi) by (c + di), multiply the numerator and denominator by the conjugate of the denominator, (c − di): (a + bi)/(c + di) = [(ac + bd) + (bc − ad)i] / (c² + d²). This clears the imaginary part from the denominator because (c + di)(c − di) = c² + d², a real number.
Why do you multiply by the conjugate?
The conjugate of c + di is c − di. Multiplying a complex number by its conjugate always produces a real number (c² + d²), so multiplying both the numerator and denominator by the conjugate removes i from the denominator without changing the value of the fraction, since it's equivalent to multiplying by 1.
Can you divide by 0 + 0i?
No. Division by 0 + 0i is undefined for the same reason ordinary division by zero is undefined — the denominator c² + d² becomes 0, which cannot appear in a denominator. Any nonzero complex number is a valid divisor.
How do you find the magnitude and angle of a complex quotient?
Once you have the quotient in the form x + yi, its magnitude is |x + yi| = √(x² + y²) and its angle (argument) is atan2(y, x), typically reported in degrees or radians. Equivalently, in polar form the magnitude of a quotient is the ratio of the magnitudes and the angle is the difference of the angles: |z1/z2| = |z1|/|z2| and arg(z1/z2) = arg(z1) − arg(z2).