You can
put this solution on YOUR website!how do you calculate high powers of "i" the imaginary number?
--------------
Since i^4 = 1 divide your power by 4 and raise i to the power of the remainder.
-------------
Example:
i^34 = i^(8*4+2) = i^2 = -1
i^117= i^(29*4+1)= i^1 = i
====================
Cheers,
Stan H.
You can
put this solution on YOUR website!The results of raising
i to a power repeats in a pattern of 4 steps:

, just like anything else to the 0 power

and so on...
So

where mod is the modulo function. a mod p returns the remainder when a is divided by p. In other words, take the exponent on
i and integer divide by 4, look up the remainder in the first 4 elements of the table above, and that will be your answer.