Concept:The powers of i repeat every 4 steps because i4=1.Explanation:We need to find i1000+i1001+i1002+i1003.Since i4=1, each exponent can be reduced modulo 4.1000 is divisible by 4 (because 1000=4×250), so i1000=(i4)250=1.1001=4×250+1, therefore i1001=i1=i.1002=4×250+2, therefore i1002=i2=−1.1003=4×250+3, therefore i1003=i3=−i.Now add the terms: 1+i+(−1)+(−i)=0.Answer:0