Jun 4, 2024
Given Series: 1, 2, 3, ..., 100.
Method: Write the series in reverse and add it to the original series.
S = 1 + 2 + 3 + ... + 100S = 100 + 99 + 98 + ... + 1(1+100) + (2+99) + (3+98) + ...Calculation:
S + S = 100 * 1012S = 100 * 101S = 100 * 101 / 2 = 5050*Define Variables:
a = first termd = common differencen = number of termsSeries Representation:
Sā = a + (a + d) + (a + 2d) + ... + [a + (n-1)d]Use the same summing trick:
Sā = a + (a + d) + (a + 2d) + ... + [a + (n-1)d]Sā = [a + (n-1)d] + [a + (n-2)d] + ... + a2a + (n-1)dnDerive the Formula:
2Sā = n * [2a + (n-1)d]Sā = n/2 * [2a + (n-1)d]Sum of Arithmetic Series:
[ Sā = \frac{n}{2} [2a + (n-1)d] ]