COMPLEX NUMBERS
Chapter 3: Operations on Complex Numbers
1. Introduction
In our journey through algebra, we are accustomed to adding, subtracting, multiplying, and dividing real numbers.
When we expand our mathematical horizon to include complex numbers, these four fundamental operations remain
completely valid. Complex numbers follow the exact same structural, associative, and distributive laws as ordinary
algebraic expressions.
However, complex arithmetic introduces one beautiful, defining rule that alters the mechanics of multiplication and
division:
i2 = −1
Every calculation, expansion, and simplification in this chapter traces back to this single fundamental identity.
Mastery of complex operations is vital across diverse fields; for instance, electrical engineers use these arithmetic
rules to analyze alternating current (AC) circuits, and signal processing specialists rely on them to dissect sound
and light waves.
2. Prerequisites
Before diving into complex operations, you should be comfortable with the following concepts:
• Standard Form: Knowing that a complex number is written as z = a + bi, where a is the real part and b is the
imaginary coefficient.
• Like Terms: The algebraic concept of only combining identical variables (e.g., adding x's to x's, and constants
to constants).
• The Conjugate: Knowing that the conjugate of z = a + bi is z̄ = a − bi.
3. Basic Concept
The core concept of complex arithmetic is separation of roles. Real numbers and imaginary numbers reside on
different perpendicular axes of the complex plane, so they can never merge. Think of them like oil and water:
during addition and subtraction, real parts only combine with other real parts, while imaginary parts only combine
with other imaginary parts.
When multiplying, we treat i as if it were an ordinary variable like x, with the spectacular caveat that whenever i2
appears, it collapses immediately into the real number −1.
Chapter 3: Operations on Complex Numbers 1
4. Definitions
Let us formally define our target complex numbers as:
z1 = a + bi and z2 = c + di
• Real Parts (a, c): The pure scalar segments resting on the horizontal real axis.
• Imaginary Parts (b, d): The real coefficients of the unit imaginary term i.
• Complex Conjugate: The reflection of a complex number across the real axis. For z2 = c + di, the complex
conjugate is z̄2 = c − di.
5. Mathematical Explanation & Derivations
A. Addition
To add two complex numbers, algebraically group and sum their corresponding real and imaginary components:
z1 + z2 = (a + bi) + (c + di) = (a + c) + (b + d)i
Intuition: This is identical to polynomial addition where you group constants and group variables: (3 + 2x) + (5 +
7x) = (3 + 5) + (2 + 7)x = 8 + 9x.
B. Subtraction
To subtract, distribute the negative sign across the second complex number, and then group like terms:
z1 − z2 = (a + bi) − (c + di) = (a − c) + (b − d)i
C. Multiplication
Multiplication uses the classic FOIL (First, Outer, Inner, Last) expansion pattern. Let's derive the formula step-by-
step:
1. Write the product expression: (a + bi)(c + di)
2. Distribute terms using FOIL: ac + adi + bci + bdi2
3. Identify i2 and substitute −1: ac + adi + bci + bd(−1)
4. Simplify the last term: ac + adi + bci − bd
5. Group the real and imaginary parts: (ac − bd) + (ad + bc)i
Thus, we arrive at the general multiplication formula:
(a + bi)(c + di) = (ac − bd) + (ad + bc)i
Chapter 3: Operations on Complex Numbers 2
D. Division
We cannot leave an imaginary unit i in the denominator of a simplified complex fraction because it violates the
standard Cartesian coordinate form a + bi. To resolve this, we rationalize the denominator by multiplying both the
numerator and denominator by the complex conjugate of the denominator.
Let's derive the division process step-by-step:
a + bi (a + bi)(c − di)
=
c + di (c + di)(c − di)
Now, let's expand the denominator first:
(c + di)(c − di) = c2 − cdi + cdi − d2i2 = c2 − d2(−1) = c2 + d2
Because the middle imaginary terms cancel out beautifully, multiplying any complex number by its conjugate
always yields a purely real number equal to the sum of the squares of its components (c2 + d2).
Next, let's expand the numerator using FOIL:
(a + bi)(c − di) = ac − adi + bci − bdi2 = (ac + bd) + (bc − ad)i
Combining the numerator and denominator yields our final division formula:
a + bi (ac + bd) + (bc − ad)i ac + bd bc − ad
= = + i
c + di c2 + d2 c2 + d2 c2 + d2
6. Algebraic Properties
Arithmetic operations on the set of complex numbers (&complex;) inherit several profound properties from real
numbers:
• Commutative Property: Order does not affect addition or multiplication.
z 1 + z2 = z2 + z1 and z 1z 2 = z 2z 1
• Associative Property: Grouping does not affect addition or multiplication.
(z1 + z2) + z3 = z1 + (z2 + z3) and (z1z2)z3 = z1(z2z3)
• Distributive Property: Multiplication distributes over addition.
z1(z2 + z3) = z1z2 + z1z3
• Additive Identity: The complex number 0 + 0i (or simply 0) acts as the additive identity, meaning z + 0 = z.
• Multiplicative Identity: The complex number 1 + 0i (or simply 1) acts as the multiplicative identity, meaning
z • 1 = z.
Chapter 3: Operations on Complex Numbers 3
7. Important Notes & Shortcuts
• The Denominator Shortcut: When dividing, immediately write down c2 + d2 for the denominator. Do not
waste precious exam time calculating (c + di)(c − di) via FOIL!
• Powers of i: Remember that powers of i cycle every four terms:
i1 = i, i2 = −1, i3 = −i, i4 = 1
8. Solved Examples
EXAMPLE 1: VERY EASY (ADDITION)
Question: Simplify (3 + 2i) + (5 + 4i).
Step-by-Step Solution:
1. Identify and group the real components: 3 + 5 = 8
2. Identify and group the imaginary components: 2 + 4 = 6
3. Combine the terms in standard form: 8 + 6i
EXAMPLE 2: EASY (SUBTRACTION)
Question: Simplify (4 − 3i) − (7 + 5i).
Step-by-Step Solution:
1. Distribute the subtraction sign: 4 − 3i − 7 − 5i
2. Group real terms: 4 − 7 = −3
3. Group imaginary terms: −3 − 5 = −8
4. Combine: −3 − 8i
Chapter 3: Operations on Complex Numbers 4
EXAMPLE 3: MEDIUM (MULTIPLICATION)
Question: Multiply (3 + 2i)(4 + 5i).
Step-by-Step Solution:
1. Apply FOIL expansion:
◦ First: 3 × 4 = 12
◦ Outer: 3 × 5i = 15i
◦ Inner: 2i × 4 = 8i
◦ Last: 2i × 5i = 10i2
2. Substitute i2 = −1 into the last term: 10(−1) = −10
3. Combine the real components: 12 − 10 = 2
4. Combine the imaginary components: 15i + 8i = 23i
5. Final Answer: 2 + 23i
EXAMPLE 4: HARD (DIVISION)
Question: Find the quotient of (3 + 2i)/(1 + i).
Step-by-Step Solution:
1. Identify the conjugate of the denominator 1 + i, which is 1 − i.
2. Multiply both the numerator and denominator by this conjugate:
3 + 2i 1−i
×
1+i 1−i
3. Expand the numerator: (3 + 2i)(1 − i) = 3 − 3i + 2i − 2i2
4. Simplify the numerator using i2 = −1: 3 − i − 2(−1) = 3 − i + 2 = 5 − i
5. Evaluate the denominator using the shortcut (c2 + d2): 12 + 12 = 2
6. Separate into standard form:
5−i 5 1
= − i
2 2 2
Chapter 3: Operations on Complex Numbers 5
EXAMPLE 5: EXAM LEVEL (COMPLEX MULTI-STEP SIMPLIFICATION)
Question: Simplify the expression and write the final result in standard form: z = (2 − i)2 + 5/(2 + i).
Step-by-Step Solution:
1. Let's expand the first term, (2 − i)2, using algebraic binomial expansion (x-y)2 = x2 − 2xy + y2:
(2 − i)2 = 22 − 2(2)(i) + i2 = 4 − 4i + (−1) = 3 − 4i
2. Now let's simplify the second term, 5/ , by multiplying by its conjugate 2 − i:
(2 + i)
5 2−i 5(2 − i) 5(2 − i)
× = = =2−i
2+i 2−i 22 + 12 5
3. Substitute both simplified terms back into the main equation:
z = (3 − 4i) + (2 − i)
4. Add the real and imaginary parts to find the final simplified value:
z = (3 + 2) + (−4 − 1)i = 5 − 5i
9. Practice Exercises
Level A: Basic Operations
1. Simplify (5 + 7i) + (2 − 3i)
2. Simplify (−3 − i) − (2 − 4i)
3. Multiply 4i(3 − 2i)
4. Find the product of (1 + i)(1 − i)
5. Divide 6i/
2i
Level B: Intermediate Calculations
1. Multiply (5 − 2i)(3 + 4i)
2. Simplify the quotient 4/
(1 − i)
3. Expand (3 + 2i)2
4. Evaluate i15 + i18
5. Simplify the expression (2 − 3i) − (5 − i)(2 + i)
Chapter 3: Operations on Complex Numbers 6
Level C: Advanced Simplifications
1. Find the standard form of (2 + 3i)/
(4 − i)
2. Evaluate i−3
3. Find the values of real numbers x and y such that (x + yi)(2 − i) = 5 + 5i
4. Simplify the complex fraction (1 + 2i)2/
(3 − i)
5. Determine the standard form of (1 + i)4
Level D: Challenge Problems
1. Prove that for any complex number z, the product z • z̄ is always a non-negative real number.
2. Solve for the complex variable z: 3z + 2z̄ = 5 − i.
3. Simplify the nested expression: 1/
(1 + 1/(1 + i)).
4. Find all complex numbers z such that z2 = i.
5. Show that the expression (1 + i)n/ n−2
simplifies to 2in−1 for any positive integer n.
(1 − i)
10. Common Mistakes & How to Avoid Them
MISTAKE 1: FORGETTING THAT I2 = −1 SHIFTS THE SIGN
Many students expand (2i)(5i) as 10i2 and write down 10 as the answer. Always remember to substitute i2 =
−1, which flips the sign of the real coefficient: 10i2 = −10.
MISTAKE 2: ILLEGALLY MERGING REAL AND IMAGINARY PARTS
A classic error is simplifying 3 + 5i + 2 + 4i to 14i. Real and imaginary terms are strictly distinct. Think of
them as independent dimensions: (3+2) + (5+4)i = 5 + 9i.
MISTAKE 3: FAILING TO DISTRIBUTE THE NEGATIVE SIGN IN SUBTRACTION
When calculating (5 + 2i) − (3 − 4i), students often write 5 + 2i − 3 − 4i = 2 − 2i. The negative sign must
distribute to every term inside the parentheses: 5 + 2i − 3 + 4i = 2 + 6i.
Chapter 3: Operations on Complex Numbers 7
11. Exam Tips
TIP 1: THE DENOMINATOR SQUARING SHORTCUT
When multiplying a complex number by its conjugate in a denominator, never write out the full FOIL
expansion. Directly square the real and imaginary coefficients and add them: (a + bi)(a − bi) = a2 + b2. For
example, (3 + 4i)(3 − 4i) = 32 + 42 = 9 + 16 = 25. This saves precious seconds on timed exams!
TIP 2: KEEP FRACTIONS SEPARATE
If an exam asks for an answer in "standard form", always write it as a + bi (e.g., 3/5 − 4/5i). Leaving the
answer as a single joint fraction like (3 − 4i)/5 can cost you partial credit.
12. Real-Life Applications
• Electrical Engineering (AC Circuits): Alternating current voltage and current are modeled as complex
numbers where the real part is resistance and the imaginary part is reactance. Adding and multiplying these
values allows engineers to find the total impedance of a circuit.
• Signal Processing (Fourier Transforms): Audio, radio, and image signals are analyzed by breaking them
down into complex sinusoidal components. Complex multiplication shifts the phase and changes the amplitude
of these signals.
• Physics (Quantum Mechanics): The fundamental wave function Ψ, which describes the state of a quantum
particle, is inherently complex. Complex operations are used to compute probabilities of particle positions and
energies.
13. Connection with Other Topics
• Previous Connection: This chapter relies heavily on Chapter 1 (Definition of i) and Chapter 2 (The Geometry
of the Complex Plane).
• Future Connection: You must master these basic operations before moving on to Chapter 4 (Modulus and
Argument) and Chapter 5 (Polar and Exponential Forms), where multiplication and division will be represented
geometrically as rotations and scalings.
14. Mini Quiz
1. State the core algebraic identity that defines all complex arithmetic calculations.
2. True or False: The sum of two complex numbers can sometimes result in a purely real number.
3. What is the additive identity of the complex number field?
Chapter 3: Operations on Complex Numbers 8
4. Multiply (1 + i)(1 − i).
5. Write down the complex conjugate of −7 − 2i.
6. Evaluate the expression i4 − i2.
7. What real value does the denominator simplify to when dividing by 3 − 2i?
8. Simplify the complex fraction 1/ .
i
9. Subtract (2 − i) from (5 + i).
10. If z • z̄ = 0, what is the value of the complex number z?
QUICK REVISION (1-MINUTE CORE METRICS)
• Addition & Subtraction: Group real parts with real parts, and imaginary parts with imaginary parts. (a
+ bi) ± (c + di) = (a ± c) + (b ± d)i.
• Multiplication: FOIL the brackets like basic algebra, then convert i2 to −1 to combine the real
components. (a + bi)(c + di) = (ac − bd) + (ad + bc)i.
• Division: Remove i from the denominator by multiplying the numerator and denominator by the
conjugate of the denominator (c − di).
• Conjugate Shortcut: The denominator always simplifies to c2 + d2.
• Golden Rule: Never forget that i2 = −1. This simple step is where almost all exam errors occur!
Chapter 3: Operations on Complex Numbers 9