The sum of the first 100 natural numbers can be found using the forward-and-backward pairing method.
Let, S=1+2+3+...+100.
Writing the sum in reverse order,
S=100+99+98+...+1.
Adding the two equations term by term,
2S=(1+100)+(2+99)+(3+98)+...+(100+1).
Each pair sums to 101, and there are 100 such pairs. Therefore,
2S=101×100=10100.
Hence, S=210100=5050.
Thus, 1+2+3+...+100=5050
This method works for any arithmetic sequence and leads to the formula
1+2+3+...+n=2n(n+1)