How to calculate sum of numbers in a sequence?

This topic has expert replies
Master | Next Rank: 500 Posts
Posts: 132
Joined: Sun Aug 15, 2010 10:08 am
Thanked: 3 times
Followed by:1 members
Can anyone tell me how to calculate the SUM of numbers in a sequence,
if I know: Initial Number, Last Number, The Difference between them, and length of the sequence

For example, i want to calculate the sum of the following:
5+10+15+....+50 = ?
Here, Length = 10, Difference between 2 consecutive term = 5, starting = 5, ending =50

Then sum = ?

Can't recall this formula, need it bad. :(
Source: — Problem Solving |

User avatar
GMAT Instructor
Posts: 15539
Joined: Tue May 25, 2010 12:04 pm
Location: New York, NY
Thanked: 13060 times
Followed by:1906 members
GMAT Score:790

by GMATGuruNY » Sun Oct 31, 2010 2:38 am
clawhammer wrote:Can anyone tell me how to calculate the SUM of numbers in a sequence,
if I know: Initial Number, Last Number, The Difference between them, and length of the sequence

For example, i want to calculate the sum of the following:
5+10+15+....+50 = ?
Here, Length = 10, Difference between 2 consecutive term = 5, starting = 5, ending =50

Then sum = ?

Can't recall this formula, need it bad. :(
Sum = (1st + last)/2 * (number of terms)

In the sequence above:
1st term = 5
Last term = 50
Number of terms = 10
Thus, the sum = (5+50)/2 * 10 = 275.

Given the sequence 2, 5, 8, 11, 14:

Sum = (2+14)/2 * 5 = 40.
Private tutor exclusively for the GMAT and GRE, with over 20 years of experience.
Followed here and elsewhere by over 1900 test-takers.
I have worked with students based in the US, Australia, Taiwan, China, Tajikistan, Kuwait, Saudi Arabia -- a long list of countries.
My students have been admitted to HBS, CBS, Tuck, Yale, Stern, Fuqua -- a long list of top programs.

As a tutor, I don't simply teach you how I would approach problems.
I unlock the best way for YOU to solve problems.

For more information, please email me (Mitch Hunt) at [email protected].
Student Review #1
Student Review #2
Student Review #3

Master | Next Rank: 500 Posts
Posts: 132
Joined: Sun Aug 15, 2010 10:08 am
Thanked: 3 times
Followed by:1 members

by clawhammer » Sun Oct 31, 2010 2:46 am
Thanks Mitch.

Thought that works only for consecutive integers, seems it works for any sequence, regardless of the difference between two consecutive terms. Cool.

Thanks!