This is a series problem where the terms are complex numbers. I am looking for a better approach to solving this problem.
If $\displaystyle z = \frac{1+i}{\sqrt2}$, Evaluate $1 + z + z^2 + ... + z^{20}$
The way I solved this was to evaluate the terms upto the 8th term. like below,
$ \begin{align} z^2 &= i \\ z^3 &= -\frac{1}{\sqrt2} +\frac{1}{\sqrt2}i \\ z^4 &= -1 \\ z^5 &= -\frac{1}{\sqrt2} -\frac{1}{\sqrt2}i \\ z^6 &= -i \\ z^7 &= -\frac{1}{\sqrt2} +\frac{1}{\sqrt2}i \\ z^8 &= 1 \\ \end{align} $
Then evaluating the first 8 terms, $ S_7 = 1 + z + ... + z^7 = 0 $
Which implies that, $ S_20 = 0 + 0 + z^{17} + z^{18} + z^{19} + z^{20} = 1 + z + z^2 + z^3 $
Thus giving the solution, $S_20 = 1 + (1 + \sqrt2)i$
I have a couple of questions about this.
Just looking at the series itself($1 + z + z^2 + ...$) makes me think that the series is similar to a binomial series. The way the terms cancelled out made me think of a telescopic series. Can you guys shed some light on this?
While this solution works it took me a while to get there. Is there a more elegant/less tedious way of doing this?