1

I have a mathematical induction question and I know what I need to do just not how to do it.

The question is:

Prove the equality of:

$$(1 + 2 + . . . + n)^2 = 1^3 + 2^3 . . . + n^3$$

Base case:

$$(1 + 2)^2 = 1^3 + 2^3\\ (3)^2 = 1 + 8\\ 9 = 9$$

and I understand I have to get the sides to equal each other though I'm not sure how to do that:

I use this:

$$(1 + . . . + n + (n + 1))^2 = 1^3 + . . . + n^3 + (n + 1)^3$$

but i can't seem to factor anything in anyway to figure it out . . .

I've tried putting the $S(n)$ in the $S(n + 1)$:

$$(1 + . . . + n + (n + 1))^2 = (1 + . . . + n)^2 + (n + 1)^3$$

but its just getting the $-(n + 1)^3$ on the first side I can't figure out...

Any help would be amazing!!!!

5xum
  • 123,496
  • 6
  • 128
  • 204
  • This has already been asked a lot of times; see eg http://math.stackexchange.com/questions/974091/prove-that-left-sum-k-1nk-right2-sum-k-1nk3-holds-true-for-n – Some Math Student Oct 15 '14 at 11:00
  • See also http://math.stackexchange.com/questions/411485/prove-by-induction-that-13-23-33-n3-fracn2n124-for?rq=1, http://math.stackexchange.com/questions/974091/prove-that-left-sum-k-1nk-right2-sum-k-1nk3-holds-true-for-n, and others. – Dietrich Burde Oct 15 '14 at 11:08

3 Answers3

1

The easiest way to prove this is to use the equality $$1+2+\cdots + n = \frac{n(n+1)}{2}$$

Which simplifies the left part of your equation.

5xum
  • 123,496
  • 6
  • 128
  • 204
1

Let the statement hold for $n \in \mathbb{N}$. For $n+1$, by applying the binomial formula $(a+b)^2=a^2+2ab+b^2$ you have that $$\begin{align*}\left(\underbrace{1+2+\ldots+n}_{=a}+\underbrace{(n+1)}_{=b}\right)^2&=(1+2+\ldots+n)^2+2(1+2+\ldots+n)(n+1)+(n+1)^2=\\&=1^3+2^3+\ldots+n^3+2\frac{(n+1)n}{2}(n+1)+(n+1)^2=\\&=1^3+2^3+\ldots+n^3+\underbrace{n(n+1)^2+(n+1)^2}_{=(n+1)(n+1)^2=(n+1)^3}=\\&=1^3+2^3+\ldots+n^3+(n+1)^3 \end{align*}$$

Jimmy R.
  • 35,868
0

Hints:

Suppose that when $n=k$, the claim holds. Now when $n=k+1$, $$(1+2+\cdots+k+(k+1)^2=(1+2+\cdots+k)^2+2(1+2+\cdots+k)(k+1)+(k+1)^2=1^3+2^3+\cdots+(k+1)^3.$$

Paul
  • 20,553