This is the practice ground for the parent topic on adding, subtracting, multiplying, and dividing complex numbers. The parent showed you the rules . Here we hunt down every case those rules can face — every quadrant, every awkward sign, zeros, degenerate inputs, and a couple of exam traps — and work each one to the ground.
Intuition Read this first
A complex number is a 2D arrow on graph paper (the Complex plane (Argand diagram) ). Everything below is either stacking arrows (add/subtract) or stretching-and-spinning arrows (multiply/divide). Keep that picture in your head and no example can surprise you.
Definition Notation used on this page
Throughout, a complex number in rectangular form is written z = a + bi , where:
a = Re ( z ) is the real part — how far right the arrow reaches (horizontal shadow);
b = Im ( z ) is the imaginary part — how far up the arrow reaches (vertical shadow);
i is the unit obeying i 2 = − 1 .
So in a number like − 1 − i , we read off a = − 1 and b = − 1 . Whenever you see a or b below, they mean exactly these two components.
Every worked example below is tagged with the cell it covers. Together they hit all of these:
Cell
What makes it tricky
Example
A. Add across quadrants
components with mixed signs, result lands in a new quadrant
Ex 1
B. Argument in Quadrant III
plain arctan lies here — must fix by sign
Ex 2
C. Multiply (rect + polar agree)
scale-and-spin; both routes must match
Ex 3
D. Multiply by i (pure rotation)
modulus 1 , angle 9 0 ∘ — degenerate "no stretch"
Ex 4
E. Divide via conjugate
denominator with sign, split cleanly
Ex 5
F. Zero / degenerate inputs
dividing by zero, adding zero, real-only numbers
Ex 6
G. Limiting / repeated multiply (powers)
angle stacks each time → De Moivre's Theorem
Ex 7
H. Word problem (AC circuit)
complex numbers as real-world quantities
Ex 8
I. Exam twist (find z from an equation)
reverse-engineer a complex unknown
Ex 9
z 1 = 4 + 3 i and z 2 = − 6 − 7 i .
Forecast: guess the quadrant of the answer before reading on. (One arrow points up-right, the other down-left and longer — where do we end up?)
Step 1. Add the real (horizontal) parts: 4 + ( − 6 ) = − 2 .
Why this step? Horizontal reach just piles up — sideways travel adds to sideways travel, exactly like Vectors in 2D . The axes never mix.
Step 2. Add the imaginary (vertical) parts: 3 + ( − 7 ) = − 4 .
Why this step? Same reason, one axis over. Up-travel adds to up-travel.
Step 3. Combine: z 1 + z 2 = − 2 − 4 i .
Why this step? Both parts negative → the tip lands down-left , in Quadrant III. See the tip-to-tail picture below.
Verify: subtract back — ( − 2 − 4 i ) − ( − 6 − 7 i ) = ( − 2 + 6 ) + ( − 4 + 7 ) i = 4 + 3 i = z 1 . ✓ Undoing addition returns the first arrow.
The figure below draws z 1 from the origin, lays z 2 tip-to-tail onto its head, and marks the red resultant arrow that reaches the same final point — the geometric meaning of "add the components."
Worked example Find the modulus and argument of
z = − 1 − i (so a = − 1 , b = − 1 ).
Forecast: its tail is at the origin and its tip is down-left. Roughly what angle from the positive real axis is that — closer to 4 5 ∘ or past 18 0 ∘ ?
Step 1. Modulus: r = a 2 + b 2 = ( − 1 ) 2 + ( − 1 ) 2 = 2 ≈ 1.414 .
Why this step? r is just the arrow's length by Pythagoras — signs vanish under squaring, so this part never cares about quadrant.
Step 2. The naive angle: arctan a b = arctan − 1 − 1 = arctan ( 1 ) = 4 5 ∘ .
Why this step? To expose the trap. tan θ = b / a is genuinely true, but tan repeats every 18 0 ∘ , so arctan (which only ever answers in ( − 9 0 ∘ , 9 0 ∘ ) ) can't tell 4 5 ∘ apart from 22 5 ∘ . It picked the wrong one.
Step 3. Fix by the signs of a and b : a = − 1 < 0 and b = − 1 < 0 means Quadrant III, so add 18 0 ∘ : 4 5 ∘ + 18 0 ∘ = 22 5 ∘ (equivalently − 13 5 ∘ ).
Why this step? When a < 0 the true arrow points into the left half-plane; arctan folded it into the right half-plane. Adding 18 0 ∘ flips it back where the signs say it belongs. This is exactly what atan2 ( b , a ) does automatically. See Modulus and Argument .
Verify: rebuild from polar — a = r cos 22 5 ∘ = 2 ⋅ ( − 2 1 ) = − 1 ✓ and b = r sin 22 5 ∘ = 2 ⋅ ( − 2 1 ) = − 1 ✓. The naive 4 5 ∘ would have given + 1 , + 1 — the wrong point.
The figure makes the trap visible: the red arrow is the true z = − 1 − i pointing down-left at 22 5 ∘ , while the dashed black arrow is where naive arctan mistakenly places it (up-right at 4 5 ∘ ). The two differ by exactly the 18 0 ∘ that the sign of a tells you to add.
( 2 + 2 i ) ( 1 + 3 i ) in rectangular and in polar , and check they match.
Forecast: the second factor points at 6 0 ∘ . Will the product's angle be more or less than the first factor's angle?
Step 1. Rectangular (FOIL, then i 2 = − 1 ):
2 ⋅ 1 + 2 3 i + 2 i + 2 3 i 2 = 2 + 2 3 i + 2 i − 2 3 = ( 2 − 2 3 ) + ( 2 + 2 3 ) i .
Why this step? Distribute all four products; the term 2 3 i 2 = − 2 3 slides into the real part — that's the sign-flip that makes multiplication non-obvious.
Step 2. Polar of each factor.
z 1 = 2 + 2 i : r 1 = 4 + 4 = 2 2 , angle = 4 5 ∘ (Quadrant I).
z 2 = 1 + 3 i : r 2 = 1 + 3 = 2 , angle = arctan ( 3 /1 ) = 6 0 ∘ .
Why this step? Polar exposes the geometry: length and heading of each arrow.
Step 3. Multiply moduli, add angles.
r = 2 2 ⋅ 2 = 4 2 , θ = 4 5 ∘ + 6 0 ∘ = 10 5 ∘ .
Why this step? This is the whole point of polar (see Euler's formula ): r 1 e i α ⋅ r 2 e i β = r 1 r 2 e i ( α + β ) . Stretch by the other length, spin by the other angle. So yes — the angle grew .
Step 4. Convert polar back to rectangular to compare:
4 2 cos 10 5 ∘ ≈ − 1.464 , 4 2 sin 10 5 ∘ ≈ 5.464.
Why this step? The two routes only "agree" if they name the same arrow, but they currently speak different languages — Step 1 gives components, Step 3 gives length-and-angle. Converting the polar result back to components (a = r cos θ , b = r sin θ ) puts both answers in the same units so we can compare them number for number.
Verify: the rectangular answer numerically is 2 − 2 3 ≈ − 1.464 and 2 + 2 3 ≈ 5.464 — matching Step 4 exactly. Geometry (spin-and-stretch) and algebra (FOIL) are the same operation wearing different clothes.
The figure shows both factor arrows (z 1 at 4 5 ∘ , z 2 at 6 0 ∘ ) and the red product arrow standing at 4 5 ∘ + 6 0 ∘ = 10 5 ∘ — you can literally see the angles adding.
i ⋅ ( 3 + i ) and describe what happened geometrically.
Forecast: i has length 1 . If multiplying scales by the other length, this multiply won't stretch at all. So what's left for it to do?
Step 1. Rectangular: i ( 3 + i ) = 3 i + i 2 = − 1 + 3 i .
Why this step? Straight distribution; i 2 = − 1 becomes the real part − 1 .
Step 2. Read it in polar. i has r = 1 , angle 9 0 ∘ . Multiplying by it means: scale by 1 (no stretch — the degenerate case) and rotate by 9 0 ∘ .
Why this step? This isolates rotation with the stretch switched off, so we can see rotation alone.
Step 3. Check the turn. Start point 3 + i sits at angle arctan ( 1/3 ) ≈ 18.4 3 ∘ . Add 9 0 ∘ → 108.4 3 ∘ . The point − 1 + 3 i has a = − 1 < 0 , b = 3 > 0 (Quadrant II), so by the sign table its angle is 18 0 ∘ − arctan ( 3/1 ) ≈ 108.4 3 ∘ . ✓
Why this step? Confirms multiply-by-i = quarter-turn anticlockwise, no length change. The lengths match too: 9 + 1 = 1 + 9 = 10 .
Verify: apply i four times: i 4 = 1 , so four quarter-turns = full circle back to start. Indeed i ⋅ i ⋅ i ⋅ i ( 3 + i ) = 3 + i . ✓
The figure shows the original arrow 3 + i in black and the red rotated result − 1 + 3 i , with the 9 0 ∘ arc between them — same length, quarter-turn anticlockwise.
3 − 4 i 5 + 5 i .
Forecast: the denominator has length 5 . Dividing shrinks the numerator's length by that factor and rotates it. Will the answer be bigger or smaller than 1 in length?
Step 1. Multiply top and bottom by the conjugate 3 + 4 i .
Why this step? ( 3 − 4 i ) ( 3 + 4 i ) = 3 2 + 4 2 = 25 , a real number — we can't "divide by an arrow," so we turn the denominator real first. See Complex conjugate . Multiplying by 3 + 4 i 3 + 4 i = 1 never changes the value — but you must multiply the whole numerator too.
Step 2. Numerator: ( 5 + 5 i ) ( 3 + 4 i ) = 15 + 20 i + 15 i + 20 i 2 = 15 + 35 i − 20 = − 5 + 35 i .
Why this step? FOIL again; 20 i 2 = − 20 lands in the real part.
Step 3. Divide by the real 25 :
25 − 5 + 35 i = − 0.2 + 1.4 i .
Why this step? Now that the denominator is a plain number, real and imaginary parts split cleanly.
Step 4. Sanity via polar. ∣5 + 5 i ∣ = 5 2 , ∣3 − 4 i ∣ = 5 , so the answer's length is 5 5 2 = 2 ≈ 1.414 . And ( − 0.2 ) 2 + 1. 4 2 = 0.04 + 1.96 = 2 . ✓ Bigger than 1 , as forecast.
Verify: multiply back — ( − 0.2 + 1.4 i ) ( 3 − 4 i ) = − 0.6 + 0.8 i + 4.2 i − 5.6 i 2 = − 0.6 + 5 i + 5.6 = 5 + 5 i . ✓
Worked example Handle each edge case: (a)
( 7 − 2 i ) + 0 , (b) ( 4 + 0 i ) ( 5 + 0 i ) , (c) 0 2 + 3 i .
Forecast: which one is a trick with no valid answer?
(a) Adding zero. 0 = 0 + 0 i is the zero arrow (a point at the origin). ( 7 − 2 i ) + ( 0 + 0 i ) = 7 − 2 i . Unchanged — adding the zero arrow moves nothing.
Why this step? Confirms 0 is the additive identity even here.
(b) Real times real. 4 + 0 i and 5 + 0 i are ordinary numbers lying on the real axis (angle 0 ∘ ). Product: ( 4 ) ( 5 ) + (imag terms all 0 ) = 20 . Angles 0 ∘ + 0 ∘ = 0 ∘ — stays on the real axis.
Why this step? Shows complex arithmetic contains ordinary arithmetic as the special case b = d = 0 ; nothing breaks.
(c) Dividing by zero. 0 2 + 3 i is undefined . There is no conjugate trick: the conjugate of 0 is 0 , and 0 ⋅ 0 = 0 , so the denominator stays 0 . Length-wise you'd need 0 r 1 , which blows up.
Why this step? Every division example silently assumes z 2 = 0 ; this is the boundary where the method has no answer.
Verify: (a) subtract 0 back → 7 − 2 i ✓. (b) 20 is real, imaginary part 0 ✓. (c) no numeric check — undefined is the correct "answer."
( 1 + i ) 4 using De Moivre's Theorem .
Forecast: each multiply adds 4 5 ∘ . After four, where does the angle point, and is that on an axis?
Step 1. Polar form of the base. 1 + i : r = 2 , θ = 4 5 ∘ .
Why this step? Powers are just repeated multiplication, and multiplication is cleanest on the "clock."
Step 2. Apply De Moivre: ( r cis θ ) n = r n cis ( n θ ) .
( 2 ) 4 cis ( 4 ⋅ 4 5 ∘ ) = 4 cis ( 18 0 ∘ ) .
Why this step? Each factor multiplies the length by 2 and adds 4 5 ∘ ; doing it 4 times multiplies length by ( 2 ) 4 = 4 and adds 4 × 4 5 ∘ = 18 0 ∘ . The angle landed exactly on the negative real axis.
Step 3. Convert back: 4 cis 18 0 ∘ = 4 ( cos 18 0 ∘ + i sin 18 0 ∘ ) = 4 ( − 1 + 0 i ) = − 4 .
Why this step? At 18 0 ∘ the arrow lies flat on the real axis pointing left — a real number.
Verify (rectangular, the long way): ( 1 + i ) 2 = 2 i , so ( 1 + i ) 4 = ( 2 i ) 2 = 4 i 2 = − 4 . ✓ The clock and the algebra agree.
The figure plots the successive powers n = 1 , 2 , 3 , 4 : each black arrow is 4 5 ∘ further round and 2 times longer than the last, and the final red arrow at 18 0 ∘ is ( 1 + i ) 4 = − 4 sitting on the negative real axis.
Worked example In an AC circuit, a resistor and inductor in series have impedance
Z 1 = 3 + 4 i ohms, and a second branch has Z 2 = 6 + 8 i ohms. In series, impedances add. Find the total impedance in rectangular form, and its magnitude (the quantity an ohmmeter-style measurement reports).
Forecast: the two branches point the same direction (Z 2 = 2 Z 1 ). Will the total's angle differ from either branch's?
Step 1. Series = add (Cell A logic, real units): Z = Z 1 + Z 2 = ( 3 + 6 ) + ( 4 + 8 ) i = 9 + 12 i Ω .
Why this step? Series impedances add exactly like arrows tip-to-tail — the real part (resistance) and imaginary part (reactance) each pile up independently.
Step 2. Magnitude: ∣ Z ∣ = 9 2 + 1 2 2 = 81 + 144 = 225 = 15 Ω .
Why this step? The magnitude is the arrow's length — physically, the total opposition to current flow. Units stay ohms throughout.
Step 3. Angle (phase): arg Z = arctan ( 12/9 ) ≈ 53.1 3 ∘ , same as each branch since Z 2 = 2 Z 1 (same direction, just longer).
Why this step? Confirms the forecast: adding parallel-pointing arrows keeps the direction, only the length grows.
Verify: 9 2 + 1 2 2 = 225 = 1 5 2 ✓ (a 3 –4 –5 triangle scaled by 3 ). Units: ohms + ohms = ohms. ✓
Worked example Find the complex number
z satisfying ( 2 − i ) z = 5 + 5 i .
Forecast: this is a hidden division . What length must z have if ∣2 − i ∣ = 5 and ∣5 + 5 i ∣ = 5 2 ?
Step 1. Isolate z : z = 2 − i 5 + 5 i .
Why this step? Dividing both sides by ( 2 − i ) undoes the multiplication — this is why division exists.
Step 2. Multiply by conjugate 2 + i : denominator ( 2 − i ) ( 2 + i ) = 4 + 1 = 5 .
Numerator ( 5 + 5 i ) ( 2 + i ) = 10 + 5 i + 10 i + 5 i 2 = 10 + 15 i − 5 = 5 + 15 i .
Why this step? Same conjugate trick as Ex 5 — make the denominator real.
Step 3. Divide by 5 : z = 5 5 + 15 i = 1 + 3 i .
Why this step? Real denominator lets the parts split cleanly.
Verify: plug back — ( 2 − i ) ( 1 + 3 i ) = 2 + 6 i − i − 3 i 2 = 2 + 5 i + 3 = 5 + 5 i . ✓ Length check: ∣ z ∣ = 1 + 9 = 10 = 5 5 2 ✓, matching the forecast.
Recall Quick self-test
Which cell does "add 4 + 3 i and − 6 − 7 i " belong to, and why is rectangular the right form? ::: Cell A (add across quadrants); rectangular because addition just piles up components independently.
In Ex 2, why did arctan give 4 5 ∘ instead of 22 5 ∘ ? ::: tan repeats every 18 0 ∘ ; arctan only answers in ( − 9 0 ∘ , 9 0 ∘ ) , so with a < 0 you must add 18 0 ∘ .
For a point in Quadrant II (a < 0 , b > 0 ) with reference angle φ , what is the true argument? ::: 18 0 ∘ − φ .
What does multiplying by i do geometrically? ::: Rotates 9 0 ∘ anticlockwise with no change in length (Cell D).
Why is 0 2 + 3 i undefined? ::: The conjugate of 0 is 0 ; the denominator stays 0 , and length divides by zero (Cell F).
After four multiplications by 1 + i , why is the result real? ::: The angle stacks 4 × 4 5 ∘ = 18 0 ∘ , landing on the real axis (Cell G, De Moivre).
Mnemonic Case-picking reflex
"Signs pick the quadrant, the operation picks the form." Check signs of a , b before trusting any angle; use the box for + / − , the clock for × / ÷ .