Complex Number Calculator
Calculate addition, subtraction, multiplication, and division of complex numbers in a+bi form. Results show real and imaginary parts, modulus, and argument.
What complex numbers represent
A complex number has two parts: a real part and an imaginary part (a multiple of i, where i is defined as the square root of -1). They're written in the form a + bi, and while 'imaginary' sounds abstract, complex numbers are essential tools in engineering, physics, and signal processing — anywhere oscillating or rotational behavior needs to be modeled mathematically.
Multiplying and dividing complex numbers is less intuitive than adding or subtracting, since it requires distributing terms and using the fact that i² = -1 — this calculator handles that algebra automatically.
Understanding magnitude
The magnitude (or modulus) of a complex number is its distance from the origin when plotted on the complex plane (real part on the x-axis, imaginary part on the y-axis) — calculated the same way as ordinary 2D distance, using the Pythagorean theorem on the real and imaginary parts.
Magnitude is useful in applications like electrical engineering, where complex numbers represent AC circuit quantities and their magnitude corresponds to a physically meaningful amplitude.
Frequently asked questions
Why does multiplying complex numbers involve four separate products?
Multiplying (a+bi)(c+di) requires distributing each term, similar to multiplying two binomials, and then simplifying using the identity i² = -1 — this produces the standard formula this calculator uses.
What is the magnitude of a complex number used for?
Magnitude represents the complex number's distance from the origin on the complex plane, which has physical meaning in fields like electrical engineering (representing amplitude) and signal processing.
How do you add complex numbers?
To add complex numbers, add the real parts and imaginary parts separately. (a+bi) + (c+di) = (a+c) + (b+d)i. Example: (3+2i) + (1+4i) = (3+1) + (2+4)i = 4+6i.
How do you multiply complex numbers?
Use FOIL: (a+bi)(c+di) = ac + adi + bci + bdi² = ac + adi + bci - bd (since i²=-1) = (ac-bd) + (ad+bc)i. Example: (2+3i)(1+2i) = (2-6) + (4+3)i = -4+7i.
How do you divide complex numbers?
Multiply numerator and denominator by the complex conjugate of the denominator. (a+bi)/(c+di) = (a+bi)(c-di)/((c+di)(c-di)) = (ac+bd)/(c²+d²) + (bc-ad)/(c²+d²)i.
What is the modulus of a complex number?
The modulus (absolute value) of a complex number a+bi is √(a²+b²). It represents the distance from the origin in the complex plane. For 3+4i, the modulus is √(9+16) = √25 = 5.
What is i² in complex numbers?
i² = -1. This is the defining property of the imaginary unit i. It follows that i³ = -i and i⁴ = 1. This property makes complex arithmetic different from real number arithmetic.