View Single Post
  #6  
Old 01-06-2007, 12:51 AM
Enrique Enrique is offline
Senior Member
 
Join Date: Mar 2005
Location: Mexico
Posts: 621
Default Re: a perfect square

[ QUOTE ]
Show that 1^3+2^3+3^3+...K^3 {sum from k=1 to n} is a perfect square for all n .

[/ QUOTE ]

The formula is classic.
It is ((k)(k+1)/2)^2.

There are several ways of proving it. One is induction (which you did).
The one I like is the following:
(k+1)^4 - k^4 = 4k^3 + 6k^2 + 4k + 1
k^4 - (k-1)^4 = 4(k-1)^3 + 6(k-1)^2 + 4(k-1) + 1
...
2^4 - 1^4 = 4*1^3 + 6*1^2 + 4*1^1 + 1

Summing it all you get:
(k+1)^4 - 1 = 4*sum_cubes+ 6*sum_squares + 4*sum_consecutive + k .
Now you can get the sum for cubes (assuming you have the sum of squares and the sum of consecutive formulas)

The nice thing about this technique is that if you forget the formula you can build it back up.

Sirio11 showed me another proof of it which is very pretty, but it would be hard to type the math here.
Reply With Quote