when you are checking to see if a sum of say $k^2$ from $k=1$ to to $k=n$ is equal to a sum of $(k+1)^2$ from $k=0$ to $n−1$ can someone explain what is going on here. THanks
(looking for a fairly simple way to work the problem without writing out the sums which may help me understand what is going on, )
$$S=\sum_{k=1}^nf(k)=\sum_{k=1}^nf(k-i+i)$$
put $k-i=K$ then
$$S=\sum_{K=1-i}^{n-i}f(K+i)$$
you can take $i=1$.