Finding the Sum of an Arithmetic Sequence
📂LemmasFinding the Sum of an Arithmetic Sequence
The arithmetic sequence an=a+(n−1)d with the first term a and the common difference d
k=1∑nak=2n{2a+(n−1)d}
Explanation
Although this is a series that you might look at once and never write down again in this form, never forget its proof. Even if the proof is simple and straightforward, it’s crucial to write it down by hand at least once to get familiar with it.
The most frequently used sum of an arithmetic sequence is the sum up to natural number n. In this case, it becomes an arithmetic sequence where a=1 and d=1.
Sum of Natural Numbers
k=1∑nk=2n(n+1)
If you’re a student preparing for exams, you might find yourself using it so often that you memorize it by heart, like n=10 being 55 or n=100 being 5050. Even as a university student, you might find it surprisingly useful, so this is a formula you shouldn’t forget.
Proof
If you say S:=k=1∑nak
Then S=a+(a+d)+⋯+(a+(n−2)d)+(a+(n−1)d)
But if you write this sequence in reverse order
S={a+(n−1)d}+{a+(n−2)d}+⋯+(a+d)+a
It’s also true. If you add both sides
2S=[{2a+(n−1)d}+{2a+(n−1)d}+⋯+{2a+(n−1)d}+{2a+(n−1)d}]
Since you’ve added a total of n terms
2S=n{2a+(n−1)d}
Dividing both sides by 2 leads to
k=1∑nak=2n{2a+(n−1)d}
■