The counting numbers are partitioned into groups:
( 1 ) , ( 2 , 3 ) , ( 4 , 5 , 6 ) , ( 7 , 8 , 9 , 1 0 ) , ( 1 1 , 1 2 , 1 3 , 1 4 , 1 5 ) , … .
Find the sum of the numbers in the n th group.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Very nice solution, so true.
The first term of an n t h group can be represented as a = 2 n ( n + 1 ) − ( n − 1 ) .
Now the common difference is always d = 1 .
and since we know a a n d d .
Sum of an A.P. can be given as S = 2 n [ 2 a + ( n − 1 ) d ] = 2 n [ 2 ( 2 n ( n + 1 ) − ( n − 1 ) ) + ( n − 1 ) × 1 ] = 2 n 3 + n
Very nice, simple and elegant solution.
Problem Loading...
Note Loading...
Set Loading...
We note that the last term of n th group is a triangular number T n = 2 n ( n + 1 ) = l . The first term of n th group is thus T n − 1 + 1 = 2 n ( n − 1 ) + 1 = a . The number of terms in n th group is l − a + 1 . Since the n th group is an arithmetic progression , its sum is given by:
S = 2 ( l − a + 1 ) ( a + l ) = 2 ( 2 n ( n + 1 ) − 2 n ( n − 1 ) − 1 + 1 ) ( 2 n ( n + 1 ) + 2 n ( n − 1 ) + 1 ) = 2 n ( n 2 + 1 ) = 2 n 3 + n