Natural Numbers and Induction (Analysis with and Introduction to ProofC)

k3N70n
Messages
66
Reaction score
0

Homework Statement



Prove that: 1^3 + 2^3 + ... + n^3 = (1 + 2 + ... + n)^2 for all n where n is a natural number

Homework Equations



Proof by induction:
a) p(1) is true
b) assume p(k) is true then prove p(k+1) for it

The Attempt at a Solution



I gave this a try for a while but I'm quite stuck.

So far using proof by induction:
p(1) = 1^3 = 1^2 is true

assume that p(k) = 1^3 + 2^3 + ... + k^3 = (1 + 2 + ... + k)^2 is true
then:
p(k+1) = 1^3 + 2^3 + ... + k^3 + (k + 1)^3
= (1 + 2 + ... + k)^2 + (k + 1)^3

Now I'm really not sure where to go or if I'm going the right way. Any sort of hint would be greatly appreciated. Thanks.

-Kentt
 
Physics news on Phys.org
Simplify 1+2+3+...k.
 
\sum_{n=1}^k n= \frac{(k+1)(k)}{2} btw.
You may also like to know that \sum_{n=1}^k n^3 = \frac{(k+1)^2k^2}{4}=(\frac{(k+1)k}{2})^2...o nvm Thats what your trying to prove...
 
Thanks IMDerek. Got it done.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top