9

How do you simplify the following expression:

$$\left(\sum^{n}_{k=1}k \right)^2$$

I am supposed to show that

$$\left(\sum^{n}_{k=1}k \right)^2 = \sum^{n}_{k=1}k^{3} $$

The problem is I do not really know how to manipulate the sigma sign. I know that I (probably) need to use induction somehow, but the main question is how do you "simplify" the sigma sign when it is raised to a power. Due to the problem itself I know that (most likely); $$\left(\sum^{n}_{k=1}k \right)^2 = \sum^{n}_{k=1}k^{3} $$ so is it possible to simply manipulate the LHS so that it looks like the RHS?

3 Answers3

15

$$\left(\sum_{k=1}^{n+1}k\right)^2-\left(\sum_{k=1}^{n}k\right)^2=\left(\sum_{k=1}^{n+1}k-\sum_{k=1}^{n}k\right)\left(\sum_{k=1}^{n+1}k+\sum_{k=1}^{n}k\right)$$

$$=(n+1)\left(\frac{(n+1)(n+2)}{2}+\frac{(n+1)(n)}{2}\right)=(n+1)^3$$

I guess you can do the rest now since you have already figured out that you need to use induction.

Shaswata
  • 5,068
6

This identity is a coincidence — it is not proven by doing general series manipulations, but instead by simply computing the left and right hand sides and confirming they're equal.

  • Beware of calling things coincidences. I've seen a geometric explanation of why this holds before, though I cannot recall it right now. – Paul Sinclair Oct 31 '16 at 17:59
  • Actually Martin Sleziak provides links to such geometric explanations in his comment on the OP. – Paul Sinclair Oct 31 '16 at 18:05
  • 1
    It appears that the point (a very pertinent one (+1)) by made in this solution is that, in general, the square of a summation cannot be manipulated into a single neat summation, and that the identity in the question is probably a special case. – Hypergeometricx Oct 31 '16 at 18:32
3

$$\begin{align} \sum^{n}_{k=1}k&=\frac{n(n+1)}{2}\\ \left(\sum^{n}_{k=1}k\right)^2&=\left(\frac{n(n+1)}{2}\right)^2\\ \left(\frac{n(n+1)}{2}\right)^2&=\frac{n^2(n+1)^2}{4}\\ \sum^{n}_{k=1}k^3&=\frac{n^2(n+1)^2}{4}\\ \therefore \left(\sum^{n}_{k=1}k\right)^2&=\sum^{n}_{k=1}k^3 \end{align} $$

Mutantoe
  • 708
JAP
  • 171