Square of the sum = Sum of the cubes

  • Thread starter Thread starter rsala004
  • Start date Start date
  • Tags Tags
    Square Sum
rsala004
Messages
23
Reaction score
0
(1+2+...n)^{2} = 1^{3}+2^{3}+...n^{3}

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

how do you simplify the right side to show that they are equal?
 
Physics news on Phys.org
A much better idea is to use induction to prove the first equation.

Petek
 
rsala004 said:
(1+2+...n)^{2} = 1^{3}+2^{3}+...n^{3}

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

how do you simplify the right side to show that they are equal?

What exactly is the question?
If the answer is to make you prove that square of sum equal to sum of cubes , you have to use mathematical induction to prove that sum is of the following formula \frac {n(n+1)}{2} and once again use mathematical induction to prove that the sum of cubes is of the following forumula [\frac {n(n+1)}{2}]^{2}.Then only you can draw your conclusion.
 
The question obviously is to prove (1+2+...+n)2 = 13+23+...n3.

The obvious approach, as Petek noted, is to use induction.
 
rsala004 said:
(1+2+...n)^{2} = 1^{3}+2^{3}+...n^{3}

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

how do you simplify the right side to show that they are equal?
The standard simplification for the right side is
\frac{n^2(n+1)^2}{4}
And, as has been suggested several times now, can be proven by induction on n.
 
Hm, could someone please briefly explain induction? This thread has sparked my curiosity. I feel like I should know induction to n, but I don't :(
 
prezjordan said:
Hm, could someone please briefly explain induction? This thread has sparked my curiosity. I feel like I should know induction to n, but I don't :(

Induction: if you can prove
1. f(1) is true
2. If f(n) is true, then f(n+1) is true
for any proposition f, then f(n) is true for all n.
 
The basic idea behind using induction to prove some indexed relationship fn is
  • Show that the relationship is true for some particular value of n0.
  • Show that if the relationship is true for n0, n0+1,n0+2, ..., N, then it is true for N+1.
By induction, these two items mean that the relationship is true for all integers greater than or equal to n0.

The problem at hand is to show that 1+2+...+n)2 = 13+23+...n3. This equality is trivially true for the case n=1; it reduces to 12=13=1. The trick then is to show that if the relationship is true for some particular n, then it is also true for n+1.
 
Back
Top