Wow... it's amazing

Algebra Level 3

Let S 1 , S 2 , S 3 S_{1},S_{2},S_{3} denote the sums of the first n n positive integers, their squares, and their cubes respectively. Find

S 3 ( 1 + 8 S 1 ) ( S 2 ) 2 . \frac{S_{3}(1+8S_{1})}{(S_{2})^{2}} .


You can try my other Sequences And Series problems by clicking here : Part II and here : Part I.
Depends on n n 9 10 1

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.

5 solutions

Ronak Agarwal
Oct 6, 2014

We know that :

S 1 = n ( n + 1 ) 2 {S}_{1}=\frac{n(n+1)}{2}

S 2 = n ( n + 1 ) ( 2 n + 1 ) 6 {S}_{2}=\frac{n(n+1)(2n+1)}{6}

S 3 = n 2 ( n + 1 ) 2 4 {S}_{3}=\frac{{n}^{2}{(n+1)}^{2}}{4}

Just plug in the values to get :

= n 2 ( n + 1 ) 2 4 ( 1 + 8 n ( n + 1 ) 2 ) ( n ( n + 1 ) ( 2 n + 1 ) 6 ) 2 =\frac { \frac { { n }^{ 2 }{ (n+1) }^{ 2 } }{ 4 } (1+8\frac { n(n+1) }{ 2 } ) }{ { (\frac { n(n+1)(2n+1) }{ 6 } ) }^{ 2 } }

= 9 =9

Just forgot the square in denominator

Aishwary Omkar - 6 years, 8 months ago

Log in to reply

EXACTLY ! :(

Aditya Raut - 6 years, 8 months ago

Same here :/

Antonio Dottori - 6 years, 7 months ago

nice solution.!

Sandeep Bhardwaj - 6 years, 8 months ago
Shamoel Ahmad
Oct 12, 2014

Take n=1, s1= s2= s3= 1. so the value of expression= 9

You also need to check n=2 so that it isn't "depends on n."

Sophie Crane - 6 years, 8 months ago

From this you can't possibly know how it will behave if you take, e.g. 1029314203, you have to know how it behaves on n, the best way to do this is through the already well-known sums for the natural numbers, square of natural numbers e cubes of natural numbers. They're easily proven to work on any n N n \in \mathbb{N} , using induction.

Janil Garcia - 6 years, 8 months ago

superb genius

sumit kr - 6 years, 8 months ago

Use the direct formulas for the sum of first n numbers, sum of squares of first n number and sum of cubes of first n numbers. This will give answer straightaway.

Now, can this be solved if we dont remember the formulas? Yes we can. Becasue this is a multiple choice qn, trial and error is an appropriate method.

Now, let the numbers be the first 3 natural numbers (1,2,3)

Then we get,

S1= 1+2+3 = 6.

S2 = 1+4+9 = 14,

S3 = 1+8+27 = 36.

Now putting these values in

S 3 ( 1 + 8 S 1 ) ( S 2 ) 2 = 9 \frac{S_3(1+8S_1)}{(S_2)^2}=9

Now to be sure of the answer, try with a different pattern. Take the first 5 natural numbers (1,2,3,4 and 5)

Then we get,

S1= 1+2+3+4+5 = 15.

S2 = 1+4+9+16+25 = 55,

S3 = 1+8+27+64+125 = 225.

Now putting these values in

S 3 ( 1 + 8 S 1 ) ( S 2 ) 2 = 9 \frac{S_3(1+8S_1)}{(S_2)^2}=9

So, the answer is 9

I. Did the same

Lokesh Agrawal - 6 years, 7 months ago
Ravi Dwivedi
Jul 3, 2015

s3=(s1)^2; s2=s1(2n+1)/3

Plugging in the values we get the answer=9

Bill Bell
Oct 13, 2014

Straightforward using a computer symbolic algebra software, in this case the Python sympy library:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
>>> from sympy import *
>>> var('n')
n
>>> S1,S2,S3=symbols('S1 S2 S3')
>>> S1=n*(n+1)/2
>>> S3=S1**2
>>> S2=n*(n+1)*(2*n+1)/6
>>> (S3*(1+8*S1)).expand()
n**6 + 3*n**5 + 13*n**4/4 + 3*n**3/2 + n**2/4
>>> (S2**2).expand()
n**6/9 + n**5/3 + 13*n**4/36 + n**3/6 + n**2/36
>>> div(n**6 + 3*n**5 + 13*n**4/4 + 3*n**3/2 + n**2/4,n**6/9 + n**5/3 + 13*n**4/36 + n**3/6 + n**2/36)
(9, 0)
>>> 

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...