Yes, you can prove the claim by induction. For that, you must first analyse what the claim even is. In your case, you only have one variable, $n$ ($i$ is bound inside the sum), so clearly, induction will run on $n$, and the claim $P(n)$ will be
$$\sum_{i=1}^n a_i = \sum_{i=2}^{n+1} a_{i-1}$$
Also, for this proof, you will need to remember the definition of what $$\sum_{i=1}^n a_i$$ is. Remember that this expression is defined recursively, i.e.
- $\sum_{i=1}^1 a_i = a_1$
- $\sum_{i=1}^n a_i = \sum_{i=1}^{n-1} a_i + a_n$
The induction has two parts.
Part 1:
You need to prove $P(1)$. This part should be really easy. All you have to do is correctly write out what $P(1)$ means, and use the definitions of sums. In particular, you will use property 1 from above in this step.
Part 2:
Here, you assume that $P(n)$ is true, and you prove the statement $P(n+1)$. Again, correctly writing out $P(n)$ and $P(n+1)$ will get you 99% of the way there. In particular, in this step, property 2 from above will be useful.