Powers of i follow a cycle of length 4: =1, =i, =-1, =-i, =1, ...
Quick computation: = i^(n mod 4). So = i^(2025 mod 4) = = i.
Sum formula: i + + + ... + = 0 (every complete cycle sums to zero).
For partial sums: i + + ... + , compute k mod 4 and add only the remaining terms to the complete cycles (which contribute 0).
Negative powers: i^(-1) = 1/i = = -i (multiply numerator and denominator by i). i^(-2) = -1. i^(-3) = i.