Saurav Wrote:There is a generic method to solve addition problems like these.
Question asks sum of even integers from 102 to 200 inclusive
S= 102 + 104 + ... 198 + 200
This can be represented by a series where each term Tn=100 + 2n (1<= n <= 50)
S= Sum(1<= n <= 50) [Tn]
S= Sum(1<= n <= 50) [100 + 2n]
S= 50 x 100 + 2 x Sum(1<= n <= 50)n
the term Sum(1<= n <= 50)n represents the sum of integers from 1 to 50 = 50 x (50+1) / 2
S= 50 x 100 + 2 x 50 x (50+1) / 2
S= 5000 + 50 x (50+1)
S= 5000 + 50 x 51 = 7550
this can be used to find sum of all multiples of 3 less than 100, Tn = 3n where 1 <= n <= 33. The sum = 3 x (sum of integers from 1 to 33)
this is all good, but make sure that you can do pattern recognition. in other words, this is a pretty formula, and it can't hurt you to know it, but the chance that you'll actually get to use it on the exam is pretty small. by contrast, the chance that you'll get to use pattern recognition skills on the actual exam is very, very high indeed.
by the way, the actual formula is somewhat inaccessible in this post. the post is certainly correct, but here's the formula in more accessible terms:
the sum of all integers from 1 to n, where n is a positive integer, is n(n + 1) / 2.
again, though, pattern recognition is king. unless you have an extremely easy time memorizing things like this, it's probably not worth the effort, especially vis-Ã -vis developing conceptual skills such as pattern recognition.