Arithmetic Operations on Complex Numbers
Adding and multiplying complex numbers works just like with real numbers, with one extra rule: whenever appears, replace it with . Division uses the complex conjugate to clear the imaginary part from the denominator.
Quick Reference
| Operation | Formula | Example |
|---|---|---|
| Addition | ||
| Subtraction | ||
| Multiplication | ||
| Conjugate of | ||
| Reciprocal | ||
| Division |
Addition and Subtraction
Definition. The sum of two complex numbers is defined by:
Add real parts and imaginary parts separately.
Subtraction follows the same pattern:
Example 1. Compute and .
Solution.
\begin{aligned} (2 + 3i) + (-3 - i) &= (2 + (-3)) + (3 + (-1))i = -1 + 2i \\ (2 + 3i) - (-3 - i) &= (2 - (-3)) + (3 - (-1))i = 5 + 4i \end{aligned}
Multiplication
Definition. The product of two complex numbers is defined by:
$ (a + bi)(c + di) = (ac - bd) + (ad + bc)i $This is obtained by expanding as for real numbers and replacing with .
You do not need to memorize this formula. Simply expand using the distributive law:
Then group real and imaginary parts.
Example 2. Compute .
Solution.
\begin{aligned} (2 + 3i)(-3 - i) &= 2(-3) + 2(-i) + 3i(-3) + 3i(-i) \\ &= -6 - 2i - 9i - 3i^2 \\ &= -6 - 11i - 3(-1) \\ &= -6 + 3 - 11i \\ &= -3 - 11i \end{aligned}Complex numbers satisfy the same fundamental algebraic properties as real numbers.
Algebraic properties: commutativity, associativity, distributivity (click to expand)
For any complex numbers , , :
- Commutativity: and .
- Associativity: and .
- Distributivity: .
These follow directly from the definitions and the corresponding properties of real numbers.
The Complex Conjugate
Definition. The complex conjugate of is:
The conjugate is obtained by changing the sign of the imaginary part.
A key property: multiplying a complex number by its conjugate always gives a real number:
This works because the imaginary terms cancel out, leaving only .
Example 3. Find the conjugate of and compute its product with the original number.
Solution. The conjugate is .
Reciprocal and Division
For any complex number with , the reciprocal (or multiplicative inverse) is the unique complex number satisfying .
To find it, multiply the numerator and denominator by the conjugate :
Derivation of the reciprocal formula (click to expand)
Let . We want such that . Expanding:
This gives two equations:
Solving simultaneously yields:
So .
If and are complex numbers and , the quotient is defined by:
In practice, divide by multiplying numerator and denominator by the conjugate of the denominator:
The denominator is always a positive real number, so this converts the division into multiplication.
Example 4. Compute .
Solution. Multiply numerator and denominator by the conjugate of the denominator, :
\begin{aligned} \frac{2 + 3i}{1 + 4i} &= \frac{(2 + 3i)(1 - 4i)}{(1 + 4i)(1 - 4i)} \\ &= \frac{2 - 8i + 3i - 12i^2}{1 + 16} \\ &= \frac{2 + 12 - 5i}{17} \\ &= \frac{14}{17} - \frac{5}{17}\,i \end{aligned}Example 5. Compute .
Solution. Multiply by the conjugate :
\begin{aligned} \frac{3 - i}{2 + 5i} &= \frac{(3 - i)(2 - 5i)}{(2 + 5i)(2 - 5i)} \\ &= \frac{6 - 15i - 2i + 5i^2}{4 + 25} \\ &= \frac{6 - 5 - 17i}{29} \\ &= \frac{1}{29} - \frac{17}{29}\,i \end{aligned}
Consistency with Real Number Arithmetic
When the four fundamental operations are applied to complex numbers whose imaginary parts are zero, the results are identical to the usual operations on real numbers. Complex numbers truly extend, rather than replace, the real number system.
Frequently Asked Questions
How do I divide complex numbers?
Multiply both the numerator and denominator by the conjugate of the denominator. Since the conjugate of is , the denominator becomes , which is a positive real number. Then simplify the numerator.