Complex Numbers Calculator
Add, subtract, multiply and divide complex numbers, with the modulus, argument and polar form of the result worked out alongside.
How to use it
- Enter the real and imaginary parts of both numbers.
- Pick the operation — division uses the conjugate method and shows the denominator step.
- The modulus and argument give you the polar form of the answer.
Examples
| (3 + 4i) + (1 − 2i) | 4 + 2i |
| (3 + 4i) × (1 − 2i) | 11 − 2i |
A complex number has a real part and an imaginary part, a + bi, where i is defined as √−1. This tool performs the four arithmetic operations on pairs of complex numbers and also converts the result into polar form — a modulus (distance from the origin) and an argument (angle), which is often the more useful form in electrical engineering and signal processing.
Worked example — multiplication
(3 + 4i) × (1 − 2i) = 3(1) + 3(−2i) + 4i(1) + 4i(−2i) = 3 − 6i + 4i − 8i². Since i² = −1, −8i² becomes +8, giving (3 + 8) + (−6 + 4)i = 11 − 2i.
Division and the conjugate trick
Dividing complex numbers isn't done directly — the top and bottom are both multiplied by the conjugate of the denominator (same real part, flipped sign on the imaginary part), which turns the denominator into a real number: (c + di)(c − di) = c² + d². After that, the division is ordinary real-number arithmetic.
Modulus and argument (polar form)
The modulus, |a + bi| = √(a² + b²), is the distance from the origin on the complex plane — for 3 + 4i that's √(9+16) = 5. The argument is the angle from the positive real axis, arctan(b ÷ a). Electrical engineering represents AC voltage and current this way because it makes phase differences and impedance calculations straightforward multiplication rather than trigonometric juggling.
Questions people ask
What are the modulus and argument?
The modulus is the distance from the origin, √(a² + b²). The argument is the angle from the positive real axis. Together they give the polar form.
How does complex division work?
Multiply the top and bottom by the conjugate of the divisor. That makes the denominator real — c² + d² — and the division becomes ordinary arithmetic.
Is anything sent to a server?
No. Every calculation runs in your browser, so nothing you type is uploaded and the page keeps working offline once it has loaded.
Last updated 22 August 2026