1
$\begingroup$

enter image description here

(a) Prove that for every natural number $n$, $$\sum_{k=1}^n k^3 = \frac14 n^2(n+1)^2.$$

(b) Can you think of any natural reason for that fact that this is equal to $\left(\sum_{k=1}^n k^2\right)$?

I'm really stuck as to where to start, I know I could probably google the first part but how does it relate to the second part?

Thanks in advance!

  • 1
    You can find also proof by induction [here](http://math.stackexchange.com/questions/62171/proving-13-23-cdots-n3-left-fracnn12-right2-using-induct). This is one of sums which is [asked here frequently](http://math.stackexchange.com/questions/tagged/summation?sort=frequent). Also searching [using Approach0](https://approach0.xyz/search/?q=%24%5Csum_%7Bk%3D1%7D%5En%20k%5E3%24&p=1) might help you to find similar questions.2017-01-05
  • 1
    For some basic information about writing math at this site see e.g. [here](/help/notation), [here](//meta.math.stackexchange.com/q/5020), [here](//meta.stackexchange.com/a/70559) and [here](//meta.math.stackexchange.com/q/1773).2017-01-05

2 Answers 2

1

You can prove this by induction.


First, show that this is true for $n=1$:

$\sum\limits_{k=1}^{1}k^3=1^2(1+1)^2/4$

Second, assume that this is true for $n$:

$\sum\limits_{k=1}^{n}k^3=n^2(n+1)^2/4$

Third, prove that this is true for $n+1$:

$\sum\limits_{k=1}^{n+1}k^3=$

$\color\red{\sum\limits_{k=1}^{n}k^3}+(n+1)^3=$

$\color\red{n^2(n+1)^2/4}+(n+1)^3=$

$(n+1)^2(n+2)^2/4$


Please note that the assumption is used only in the part marked red.

1

Hint 1:

$$(k+1)^3-k^3=3k^2+3k+1 \rightarrow \sum_{k=1}^{n} [(k+1)^3-k^3]=3\sum_{k=1}^{n} k^2+3\sum_{k=1}^{n} k+\sum_{k=1}^{n} 1$$

Hint 2:

You also can use induction.

Can you finish?