Complex arithmetic
Add, subtract, multiply, and divide real and imaginary components.
(a+bi)+(c+di)
Calculate complex arithmetic, conjugate, modulus, argument, and polar conversions.
Version 1.0 · Last Updated: August 11, 2026 · Maintained by ToolLarder
Perform arithmetic with complex numbers in a+bi form and convert between Cartesian and polar representations.
Add, subtract, multiply, and divide real and imaginary components.
(a+bi)+(c+di)
The conjugate reverses the imaginary sign; modulus is distance from the origin.
|z|=√(a²+b²)
Find the directed angle from the positive real axis with atan2.
arg(z)=atan2(b,a)
Convert radius and angle to real and imaginary components.
z=r(cosθ+i sinθ)