✔ 最佳答案
Notice this pattern:
i = i
i² = -1
i^3 = i * i² = -i
i^4 = i² * i² = -1 * -1 = 1
If you continue this, you'll see it repeats.
i^5 = i^4 * i = 1 * i = i
i^6 = i^4 * i² = -1
i^7 = -i
i^8 = 1
etc.
If you take the exponent and subtract a multiple of 4, you get the same answer.
i^19 will therefore be the same as i^3 = -i
And then that is multiplied by 17.
-17i
Another way to see this is to expand it out as follows:
17i^19 = 17(i^4)(i^4)(i^4)(i^4)(i^3)
= 17 * 1 * 1 * 1 * 1 * -i
= 17 * -i
= -17i
Answer:
-17i