$\sum_{i=1}^n a_i=\sum_{i=0}^{n-1} a_{i+1} $

328 Views Asked by At

how to prove that:

$$\sum_{i=1}^n a_i=\sum_{i=0}^{n-1} a_{i+1} $$ where $a_i$ is any statement that dependent on $i$.

I was trying to prove the binomial theorem by induction,So I needed this property. However,i remember that in Spivak's calculus answer book that if there was any thing like that,then the solution would be like this:

$$\sum_{i=1}^n a_i=\sum_{k=0}^{k-1} a_{k} \quad\text{(let }k=i-1)$$

That's why I ask this relatively easy question.

3

There are 3 best solutions below

1
On

Consider the sum $$\sum_{i = 1}^n a_i$$ If we use the index substitution $i = k + 1$, we get for the lower index $$i = k + 1 = 1\Leftrightarrow k = 0$$ and for the upper index $$i = k + 1 = n \Leftrightarrow k = n - 1$$ Thus $$\sum_{i = 1}^n a_i = \sum_{k = 0}^{n-1} a_{k+1}$$ Just substitute $k = i$ and you are done.

0
On

It's simply true. Look at

$$ \sum_{i=1}^n a_n = a_1+a_2+\cdots +a_n=a_{0+1}+a_{1+1}+a_{(n-1)+1} = \sum_{i=0}^{n-1}a_{i+1} $$

0
On

You can write

$$\sum_{i=1}^{n}a_i=\sum_{1\le i\le n}a_i$$

Then

$$1\le i\le n\iff 1-1\le i-1\le n-1$$

Now if we change $i-1=k$ then

$$1\le i\le n\iff 0\le k\le n-1$$

Then

$$\sum_{i=1}^{n}a_i=\sum_{1\le i\le n}a_i=\sum_{0\le k\le n-1}a_{k+1}=\sum_{k=0}^{n-1}a_{k+1}$$