micromass said:
What they do is basically
\sum_{k=0}^n a_k = a_n+ \sum_{k=0}^{n-1} a_k = a_n + \sum_{k=1}^n a_{k-1}
Do you understand these steps?
Jkohn said:
It's really not very complicated. From the first sum to the next step, all that has happened is that they have separated out a
n from the summation. The first summation has n + 1 terms, a
0, a
1, ..., a
n. The expression in the middle has a
n and a summation with n terms, a
0, a
1, ..., a
n-1. In all, it's the same (n + 1) terms as in the first summation.
Going from the expression in the middle to the last one, all they are doing is fiddling with (i.e., adding 1 to) the index, where the index ranges between 1 and n instead of between 0 and n - 1 as before. To adjust for this, the subscript on a is adjusted correspondingly.
In all three expressions, they are adding n + 1 terms, a
0, a
1, ..., a
n.