Complex Arithmetic
A complex number is a pair of real numbers written , where is the real part and is the imaginary part . All three arithmetic operations — addition, subtraction, and multiplication — follow directly from ordinary algebra together with the single rule .
Addition and subtraction
Add or subtract componentwise: real parts with real parts, imaginary parts with imaginary parts.
Example. .
Multiplication
Multiply as if expanding a polynomial, then replace every with :
The key step is : the term becomes , which shifts into the real part.
Example. :
Why this matters for quantum mechanics
In quantum mechanics a system's state is described by complex amplitudes. When two quantum paths lead to the same outcome, their amplitudes are added (interference). When a gate acts on a state, the amplitude for each output is a sum of products of matrix entries and input amplitudes. Both operations reduce to complex addition and multiplication, so mastering them is the entry point to every quantum calculation that follows.
Try it
This is a numerical exercise — return a number. Let and .
Compute the real part of their product .
Expand by hand, replace , collect the real terms, and return that number.
Sign in on the full site to ask questions and join the discussion.