Summing Consecutive Numbers To Form A Series
By DarthVader
Date: 2022-10-16
Topic: 172 see comments
Post views: 915
Summing Consecutive Numbers To Form A Series
For a series of consecutive numbers:
sum = ((first term + last term) / 2) Γ number of terms
Written as:
Sn = n(a1 + an) / 2
Where:
a1 = first term.
an = Last term,
Sn = Sum of n terms.
NOTEβ¦
to calculate n:
n = (an β a1) + 1
Comments | Creator | Date | ID |
---|