You already know the one rule (see the parent / Complex Numbers ): i 2 = − 1 , and the powers cycle 1 , i , − 1 , − i with period 4 . This page is the drill hall . We line up every kind of question this topic can throw at you, then knock each one down with a full derivation.
Intuition Read this first
Almost every "compute a power of i " problem reduces to one move: find the remainder when the exponent is divided by 4 . Everything below is just that move dressed up in different clothes — big exponents, negative exponents, sums, square roots of negatives, and word problems. Learn to spot the clothing.
Here is the full space of cases. Each later example is tagged with the cell it covers.
Cell
Case class
What makes it tricky
Example
A
Small positive exponent
Nothing — warm-up
Ex 1
B
Large positive exponent
Must reduce mod 4
Ex 2
C
Exponent ≡ 0 ( mod 4 ) (degenerate)
Answer is 1 , easy to misread
Ex 2
D
Negative exponent
Cycle runs backwards
Ex 3
E
Sum of consecutive powers
Cancellation to 0
Ex 4
F
− a − b trap (both negative)
The naive ab rule fails
Ex 5
G
Mixed sign: − a + b
Rule holds here — contrast with F
Ex 5b
H
Geometric / rotation (real-world compass)
See it as 9 0 ∘ turns
Ex 6
I
Exam twist: solve i n = target
Reverse the cycle
Ex 7
J
Very large exponent + algebra
Combine mod-4 with simplification
Ex 8
Worked example Example 1 (Cell A) — Compute
i 3
Forecast: guess the answer before reading. Is it i , − i , 1 , or − 1 ?
Step 1. Split off one i 2 : i 3 = i 2 ⋅ i .
Why this step? We only ever know i 2 = − 1 ; so we manufacture an i 2 to substitute.
Step 2. Substitute i 2 = − 1 : i 3 = ( − 1 ) ⋅ i = − i .
Why this step? Replacing i 2 by − 1 is the only algebra i permits.
Answer: i 3 = − i .
Verify: the mnemonic order is 1 , i , − 1 , − i ; the term at position 3 (counting i 0 as position 0 ) is − i . ✓
Worked example Example 2 (Cells B, C) — Compute
i 2023 and i 2024
Forecast: two neighbouring exponents. Do they give neighbouring cycle values?
Step 1. Divide 2023 by 4 : 2023 = 4 × 505 + 3 , so r = 3 .
Why this step? Only the remainder decides the value.
Step 2. i 2023 = i 3 = − i .
Step 3. Now 2024 = 4 × 506 + 0 , so r = 0 — this is the degenerate cell C (exponent a multiple of 4).
Why this step? A multiple of 4 means we've done whole loops only, landing back at the start.
Step 4. i 2024 = i 0 = 1 .
Answer: i 2023 = − i , i 2024 = 1 .
Verify: consecutive exponents differ by one factor of i , so i 2024 = i ⋅ i 2023 = i ⋅ ( − i ) = − i 2 = 1 . ✓ Consistent.
Worked example Example 3 (Cell D) — Compute
i − 7
Forecast: negative exponents mean reciprocals. Which of the four values?
Step 1. Recall the backward step i − 1 = − i (from the parent: multiply i 1 ⋅ i i = i 2 i = − 1 i = − i ).
Why this step? Going back one step in the cycle is multiplying by i − 1 = − i .
Step 2. Reduce the exponent mod 4, keeping the sign. − 7 = 4 × ( − 2 ) + 1 , since 4 × ( − 2 ) = − 8 and − 8 + 1 = − 7 . So r = 1 .
Why this step? The formula i n = i n mod 4 works for negative n too, as long as the remainder r lands in { 0 , 1 , 2 , 3 } .
Step 3. i − 7 = i 1 = i .
Answer: i − 7 = i .
Verify (independent route): i − 7 = i 7 1 . Now i 7 = i 4 ⋅ i 3 = 1 ⋅ ( − i ) = − i , so i − 7 = − i 1 = − i 1 ⋅ i i = − i 2 i = 1 i = i . ✓
Common mistake Steel-man: "
− 7 mod 4 = 3 , so the answer is − i "
Why it feels right: you might compute 7 mod 4 = 3 and slap a sign on.
The fix: remainders are always taken so 0 ≤ r < 4 . For − 7 , the largest multiple of 4 not exceeding − 7 is − 8 , giving r = − 7 − ( − 8 ) = 1 . Sanity-checking with the reciprocal route (as above) never lies.
Worked example Example 4 (Cell E) — Compute
i 50 + i 51 + i 52 + i 53
Forecast: four consecutive powers. Guess the sum before computing.
Step 1. Reduce each exponent mod 4: 50 → 2 , 51 → 3 , 52 → 0 , 53 → 1 .
Why this step? Term-by-term remainder rule.
Step 2. Substitute: i 50 = − 1 , i 51 = − i , i 52 = 1 , i 53 = i .
Step 3. Add: ( − 1 ) + ( − i ) + 1 + i = 0 .
Why this step? The four terms are exactly { 1 , i , − 1 , − i } in some order, and their sum is always 0 .
Answer: 0 .
Verify: factor out the smallest power: i 50 ( 1 + i + i 2 + i 3 ) = i 50 ( 1 + i − 1 − i ) = i 50 ⋅ 0 = 0 . ✓ Any four consecutive powers sum to 0 .
Worked example Example 5 (Cell F) — Compute
− 16 ⋅ − 25
Forecast: is it + 20 or − 20 ? Trust your gut, then check.
Step 1. Convert each radical to i form first : − 16 = 4 i , − 25 = 5 i .
Why this step? The rule a b = ab is only valid for non-negative reals; with two negatives it breaks. Converting to i before multiplying sidesteps the trap.
Step 2. Multiply: ( 4 i ) ( 5 i ) = 20 i 2 = 20 ( − 1 ) = − 20 .
Answer: − 20 .
Wrong route to avoid: ( − 16 ) ( − 25 ) = 400 = 20 ❌ — this misuses the product rule.
Verify: ( 4 i ) ( 5 i ) = 20 i 2 = − 20 ; and ( − 20 ) is real and negative, as expected since i 2 appears an odd... exactly once, contributing one − 1 . ✓
Worked example Example 5b (Cell G) — Compute
− 16 ⋅ 25 (one negative only)
Forecast: does the sign flip like in 5, or not?
Step 1. − 16 = 4 i , 25 = 5 (an ordinary real).
Why this step? Only the negative radical needs the i conversion.
Step 2. Multiply: ( 4 i ) ( 5 ) = 20 i .
Answer: 20 i — purely imaginary, no sign trap.
Verify: with only one negative under a root, the identity − a b = i a b = i ab does hold. Here i 16 ⋅ 25 = i 400 = 20 i . ✓ Contrast with Cell F where both were negative and the rule failed.
Worked example Example 6 (Cell H) — A compass drone
A drone starts facing East , represented by the number 1 . Each command "multiply by i " turns it 9 0 ∘ anticlockwise. After 11 commands, which way does it face, and what number represents it?
Forecast: East, North, West, or South?
Step 1. Facing after 11 turns = i 11 applied to the start 1 .
Why this step? Each command multiplies by i ; eleven commands multiply by i 11 .
Step 2. Reduce: 11 = 4 × 2 + 3 , so r = 3 and i 11 = i 3 = − i .
Why this step? Two full 36 0 ∘ loops (8 turns) change nothing; only the leftover 3 turns count.
Step 3. Read the figure: − i points South .
Answer: the drone faces South , represented by − i .
Verify: 11 quarter-turns = 11 × 9 0 ∘ = 99 0 ∘ . Subtract two full circles: 990 − 720 = 27 0 ∘ anticlockwise from East, which is due South. ✓ Look at the amber arrow in the figure — three hops from East land on South. See Argand Diagram and Modulus and Argument for the rotation viewpoint.
Worked example Example 7 (Cell I) — Find all integers
n with 0 ≤ n ≤ 20 such that i n = − 1
Forecast: how many solutions in that range — a handful, or dozens?
Step 1. i n = − 1 means r = 2 , i.e. n ≡ 2 ( mod 4 ) .
Why this step? − 1 sits at cycle position 2 ; the exponent must have remainder 2 .
Step 2. List n with remainder 2 in [ 0 , 20 ] : n = 2 , 6 , 10 , 14 , 18 .
Why this step? Start at 2 and add 4 repeatedly until we exceed 20 .
Answer: n ∈ { 2 , 6 , 10 , 14 , 18 } — five values.
Verify: each of these minus 2 is divisible by 4: 0 , 4 , 8 , 12 , 16 . ✓ And i 2 = − 1 confirms the base case.
Worked example Example 8 (Cell J) — Simplify
i 98 i 99 + i 100
Forecast: will it be a clean single value?
Step 1. Reduce each power: 99 → 3 ⇒ − i ; 100 → 0 ⇒ 1 ; 98 → 2 ⇒ − 1 .
Why this step? Handle every power via the remainder rule before combining.
Step 2. Substitute: − 1 ( − i ) + 1 = − 1 1 − i = − ( 1 − i ) = − 1 + i .
Why this step? Now it's ordinary arithmetic of complex numbers a + bi .
Answer: − 1 + i .
Verify (algebra route): factor i 98 i 98 ( i + i 2 ) = i + i 2 = i − 1 = − 1 + i . ✓ The i 98 cancels cleanly, confirming the remainder-based answer.
Recall Feynman: what did we actually learn across all cells?
Every single problem here — big powers, negatives, roots, drones, exam reversals — collapsed to one trick: strip away full loops of four, keep the leftover. For − a questions the extra rule is "turn each negative into i before you multiply." For geometry, the same leftover is a count of 9 0 ∘ turns. One idea, ten disguises.
Recall Active recall — cover the answers
i 2023 ? ::: 2023 mod 4 = 3 ⇒ − i .
i − 7 ? ::: remainder 1 ⇒ i (check via 1/ i 7 ).
− 16 − 25 ? ::: − 20 (convert to 4 i , 5 i first).
Which n in [ 0 , 20 ] give i n = − 1 ? ::: 2 , 6 , 10 , 14 , 18 .
i 98 i 99 + i 100 ? ::: − 1 + i .