This formula calculates the sum of the first n terms of an arithmetic progression.
Use it when you need to compute cumulative totals of linearly increasing or decreasing sequences.
Data:
a1 = 2, d = 3, n = 4
Formula:
Sn = (n/2)*(2a1 + (n-1)d)
Substitution:
S4 = (4/2)*(2*2 + (4-1)*3)
Result:
S4 = 26
Used in finance, physics, and discrete mathematics.