Multiplication Formulas for Complex Numbers

Complex number multiplication differs depending on the form you're working with. The rectangular approach uses the distributive property combined with the fact that i² = −1, while the polar method exploits the relationship between magnitude and phase.

Rectangular form (a + bi) × (c + di):

= ac + adi + bci + bdi²

= ac + adi + bci − bd

= (ac − bd) + i(ad + bc)

Polar form r₁∠φ₁ × r₂∠φ₂:

= (r₁ × r₂)∠(φ₁ + φ₂)

  • a, c — Real parts of the first and second complex numbers
  • b, d — Imaginary coefficients of the first and second complex numbers
  • r₁, r₂ — Magnitudes (absolute values) of the two numbers
  • φ₁, φ₂ — Phase angles (arguments) measured in degrees or radians

Working with Rectangular Form

When both numbers are expressed as a + bi, apply the distributive property carefully. Expand all four terms from (a + bi)(c + di), then consolidate using i² = −1.

  • Real part: Multiply real-to-real and imaginary-to-imaginary: ac − bd
  • Imaginary part: Multiply real-to-imaginary and imaginary-to-real: ad + bc

For example, (3 + 2i)(1 − 4i) yields:

  • Real: 3(1) − 2(−4) = 3 + 8 = 11
  • Imaginary: 3(−4) + 2(1) = −12 + 2 = −10
  • Product: 11 − 10i

Why Polar Form Simplifies Multiplication

Converting to polar form reveals elegant behavior: magnitudes multiply, and phases add. This property emerges from Euler's formula and makes certain calculations—especially cascaded operations—far simpler than rectangular arithmetic.

If z₁ = 5∠30° and z₂ = 2∠45°, then z₁ × z₂ = 10∠75°. No expansion, no combining like terms. This advantage becomes pronounced in electrical engineering when tracking impedance chains or in signal processing with Fourier transforms.

Conversion between forms:

  • r = √(a² + b²) and φ = arctan(b/a) (rectangular to polar)
  • a = r cos(φ) and b = r sin(φ) (polar to rectangular)

Common Pitfalls and Practical Advice

Avoid these frequent mistakes when multiplying complex numbers.

  1. Forgetting the i² = −1 rule — When expanding (a + bi)(c + di), the term bdi² becomes −bd, not +bd. Double-check that you've applied this sign flip; it's the source of most rectangular-form errors.
  2. Mixing units in polar form — If one angle is in degrees and the other in radians, convert to a single unit before adding. A 30° phase plus a 0.785 rad phase requires consistency, or your result will be nonsensical.
  3. Magnitude and phase ambiguity — A complex number has infinitely many polar representations due to periodicity: 5∠30° = 5∠390° = 5∠(−330°). Use the principal argument [0°, 360°) or [−180°, 180°] to avoid confusion.
  4. Precision loss in successive conversions — Converting rectangular → polar → rectangular introduces rounding errors, especially with many operations. Stick to one form for a calculation sequence, then convert only the final result.

Practical Applications

Complex multiplication appears everywhere in technical fields:

  • AC circuit analysis: Impedances are multiplied when combining series and parallel networks; voltage and current phasors multiply in power calculations.
  • Signal processing: Filter design and convolution rely on multiplication in the frequency domain (via FFT).
  • Quantum mechanics: Probability amplitudes are complex numbers whose products determine interference patterns.
  • Control systems: Transfer function cascade multiplication uses complex pole-zero analysis.

In each domain, rapid, accurate computation prevents design errors and accelerates iteration.

Frequently Asked Questions

What happens when you multiply i by 2i?

The product is −2. Starting with i × 2i = 2i², and since i² equals −1 by definition, we get 2 × (−1) = −2. This result illustrates how the imaginary unit's self-multiplication produces a real, negative value.

Does the imaginary unit i have a multiplicative inverse?

Yes. Every non-zero complex number has a multiplicative inverse. For i, the inverse is −i. Verification: i × (−i) = −i² = −(−1) = 1. More generally, the inverse of any complex number z is 1/z, which can be computed by multiplying numerator and denominator by the conjugate.

How do rectangular and polar methods differ in computational efficiency?

For a single multiplication, rectangular form requires four real multiplications and one subtraction. Polar form requires two real multiplications and one addition (of angles). For repeated multiplications—such as computing z⁵—polar form excels: instead of four multiplications, you multiply the magnitude five times and add the angle five times, preventing intermediate rounding errors.

Can you multiply complex numbers in different forms without converting?

No. You must first express both numbers in the same form. However, many calculators accept mixed input and perform the necessary conversions internally. Once unified, apply the appropriate formula—rectangular if both are a + bi, polar if both are r∠θ.

Why does multiplying by the complex conjugate always yield a real number?

If z = a + bi, then its conjugate is z* = a − bi. Their product is (a + bi)(a − bi) = a² − (bi)² = a² − b²i² = a² + b², which is purely real. This property is fundamental to dividing complex numbers and to normalizing quantum amplitudes.

What is the geometric meaning of complex multiplication?

Multiplying z₁ by z₂ scales z₁'s magnitude by |z₂| and rotates it counterclockwise by arg(z₂). If z₂ has magnitude 1 (a point on the unit circle), multiplication is pure rotation. If z₂ is real and positive, multiplication is pure scaling. Combined, complex multiplication represents simultaneous scaling and rotation in the complex plane.

More math calculators (see all)