Sum of integers from 10 to 17 by using formula
Answers
the sum of n positive integers formula,
n(n+1)
2
n(n+1)2
, applicable to sets of consecutive integers as well?
For instance, if I wanted to calculate sum of first 20 multiples of 3, could I use: 3 x
20(21)
2
20(21)2
In OG PS Q172, a similar approach has been used for even numbers.
Note that the formula n(n+1)/2 is used only for adding n consecutive integers starting from 1.
A problem may not directly ask you for this but if you can break it down such that you have to find the sum of 'n consecutive integers starting from 1' then you can use this formula.
In the even integers questions, you may be required to find the sum of first 10 even integers.
2 + 4 + 6 + ... + 18 + 20
Take 2 common, 2*(1 + 2 + 3 + ...10)
To find the sum of the highlighted part, we can use the formula. Then we can multiply it by 2 to get the required sum.
Note that for odd integers, you cannot directly use this formula.
Sum the first 10 odd integers
1 + 3 + 5 + 7+...+19
But you can still make some modifications to find the sum.
1 + 3 + 5 + 7+...+19 = (1 +2+ 3 + 4+5 + 6+ 7+...+19 + 20) - (2 + 4+ 6+...20)
We know how to sum consecutive integers.
(1 +2+ 3 + 4+5 + 6+ 7+...+19 + 20) = 20*21/2
(2 + 4+ 6+...20) = 2 * (10*11)/2 = 10*11 (as before)
So 1 + 3 + 5 + 7+...+19 = (20*21/2) - (10*11) = 100
The direct formula of sum of n consecutive odd integers starting from 1 = n^2
I HOPE THIS HELPS YOU
PLEASE MARK AS BRAIN LIEST
Answer:
Step-by-step explanation:
a = 10
d = 1
n = [ l-a ]/d +1 = [17 -10 ]/1 +1
=7+1 = 8
sum = n/2[a+l] = 8/2[17+10] =4[27] =108