06
Powers of $i$, the period-4 cycle
core concept
We just saw that addition, subtraction and multiplication of complex numbers all act componentwise (with FOIL + $i^2 = -1$ for multiplication), giving the formula $(a+bi)(c+di) = (ac-bd)+(ad+bc)i$. That raises a question: what happens when you raise $i$ to large integer powers? This card answers it → $i^n$ has period 4: the cycle $i, -1, -i, 1$ repeats, so compute via $n \bmod 4$.
From $i^2 = -1$ the higher powers fall out instantly:
- $i^1 = i$
- $i^2 = -1$
- $i^3 = i^2 \cdot i = -i$
- $i^4 = i^2 \cdot i^2 = (-1)(-1) = 1$
From $i^4 = 1$ the pattern repeats: $i^5 = i$, $i^6 = -1$, and so on. So $i^n$ depends only on the remainder of $n$ when divided by 4:
Worked example from the hook: $i^{2026}$. Compute $2026 \div 4 = 506$ remainder $2$. So $i^{2026} = i^2 = -1$.
Useful identity. $i^{-1} = \dfrac{1}{i} = \dfrac{1}{i} \cdot \dfrac{i}{i} = \dfrac{i}{i^2} = \dfrac{i}{-1} = -i$. So $i^{-1} = -i$, $i^{-2} = -1$, $i^{-3} = i$, $i^{-4} = 1$, the cycle works for negative exponents too.
$i^1, i^2, i^3, i^4 = i, -1, -i, 1$, period 4 · $i^n$ via $n \bmod 4$: remainder 0, 1, 2, 3 gives $1, i, -1, -i$ · Worked: $i^{2026}$, $2026 = 4 \cdot 506 + 2$, so $i^{2026} = i^2 = -1$ · $i^{-1} = -i$, and the cycle extends to negative exponents
Pause, copy the period-4 cycle $i^1=i,\, i^2=-1,\, i^3=-i,\, i^4=1$, the reduction $i^n$ via $n \bmod 4$, and the worked example $i^{2026} = i^2 = -1$ into your book.