Add, subtract, multiply, or divide two complex numbers, and find the resulting modulus and argument.
This calculator adds, subtracts, multiplies, or divides two complex numbers in the form a + bi, and also reports the resulting modulus and argument.
Multiplication: (a+bi)(c+di) = (ac−bd) + (ad+bc)i. Division multiplies both parts by the conjugate of the denominator. Modulus: |z| = √(re² + im²). Argument: θ = atan2(im, re).
Multiplying z₁ = 3 + 2i by z₂ = 1 + 4i gives (3×1 − 2×4) + (3×4 + 2×1)i = −5 + 14i, with a modulus of about 14.87.
Division is undefined when the second complex number is 0 + 0i. The argument is measured counter-clockwise from the positive real axis, in degrees.
Typically addition, subtraction, multiplication, and division of complex numbers in the form a + bi, where i is the imaginary unit (√-1).
(a + bi)(c + di) = (ac − bd) + (ad + bc)i, using the distributive property and the fact that i² = −1.
They're essential in electrical engineering (AC circuit analysis), signal processing, and quantum mechanics, among other fields.