Question
Question: Find the sum of all the products of the first n natural numbers taken two at a time....
Find the sum of all the products of the first n natural numbers taken two at a time.
Solution
Like (a+b)2=a2+b2+2ab . Similarly, (x1+x2+..........+xn)2=x12+x22+.......+xn2+2x1x2+............+2xn−1xn and this equation will be used to solve the question . On further solving the values of terms ∑n and ∑n2 will be used so you have to remember the values to these terms. After this it will be easy to solve it further or to get the desired result.
Complete step by step answer:
In general, (x1+x2+..........+xn)2=x12+x22+.......+xn2+2x1x2+............+2xn−1xn
By putting x1 = 1 , x2 = 2 and xn = n in the above equation we get
(1+2+3+............+n)2 = (12+22+32+............+n2)+2(sum of product of numbers taken two at a time)
We can also write the above equation as
(∑n)2 = ∑n2+ 2S
Where S denotes the sum. As we know that the value of ∑n is 2n(n+1) and the value of ∑n2 is 6n(n+1)(2n+1) . Therefore, by substituting these values in the equation we get
⇒[2n(n+1)]2 = 6n(n+1)(2n+1)+2S
By taking right hand side term to left hand side we get
⇒[2n(n+1)]2 − 6n(n+1)(2n+1) = 2S
Now take 2n(n+1) term common at the left hand side,
⇒2n(n+1)[2n(n+1) − 3(2n+1)] = 2S
On solving the term inside the square brackets we get
⇒2n(n+1)[63n2+3n−4n−2] = 2S
Taking 6 out we get
⇒12n(n+1)[3n2−n−2] = 2S
Now shift 2 from the right hand side to the left hand side,
⇒24n(n+1)[3n2−n−2] = S
We can also write it as
⇒S = 24n(n+1)[3n2−3n+2n−2]
⇒S = 24n(n+1)[3n(n−1)+2(n−1)]
Writing the equation in its factor’s form
⇒S = 24n(n+1)[(3n+2)(n−1)]
∴S = 24n(n+1)(3n+2)(n−1)
Note:
Don’t confuse ∑n and ∑n2 . The possible mistake that could happen is that you might think that the sum of the product of n natural numbers taken two at a time is the sum of the square of the first n natural numbers. Keep in mind the values of both these terms as they are important. It’s easy to solve the question, you just have to take a look at the starting of the solution and try to understand the concept behind this.