Part of ALG-02 — Complex Numbers

Powers of i and Simplification

by Notetube Official99 words6 views

Powers of i follow a cycle of length 4: i0i^0=1, i1i^1=i, i2i^2=-1, i3i^3=-i, i4i^4=1, ...

Quick computation: ini^n = i^(n mod 4). So i2025i^{2025} = i^(2025 mod 4) = i1i^1 = i.

Sum formula: i + i2i^2 + i3i^3 + ... + i4ni^{4n} = 0 (every complete cycle sums to zero).

For partial sums: i + i2i^2 + ... + iki^k, compute k mod 4 and add only the remaining terms to the complete cycles (which contribute 0).

Negative powers: i^(-1) = 1/i = i3i^3 = -i (multiply numerator and denominator by i). i^(-2) = -1. i^(-3) = i.

Like these notes? Save your own copy and start studying with NoteTube's AI tools.

Sign up free to clone these notes