In this article, we will prove the finite sum of natural numbers via the direct way and induction. We have the following sum, which is the finite sum of natural numbers
i=0∑ni=2n(n+1)
Proof 1. We start with induction. For the base case, if
n=0, then
i=0∑0i=0=20(0+1)=0
which holds. For the induction step, we take for the induction hypothesis that the sum holds for
n, and we want to show that it holds too for
n+1. So summing up to and including
n+1, we get
i=0∑n+1i=2(n+1)((n+1)+1)=2n(n+1)+2n+2=2n(n+1)+22n+2=2n(n+1)+(n+1)=(i=0∑ni)+(n+1)=i=0∑n+1i
which proves that the summation is correct.
Proof 2. Another way to prove it is to reverse the sum from
n to
0, i.e.,
n+(n−1)+⋯+2+1
Now we take the sum which we have seen earlier and the reverse version:
1n+2+(n−1)+⋯+⋯+(n−1)+2+n+1
We will sum the two sums above:
n+1=n+1,
(n−1)+2=n+1,
…,
1+n=n+1. This happens
n times. So we get
2⋅i=0∑ni=n(n+1)
Now divide out
2 on both sides, and we get
i=0∑ni=2n(n+1)
which finishes the proof.