Proving Induction: Solving Equations 1 and 2 with Expert Tips

  • Thread starter Thread starter Jimmy84
  • Start date Start date
  • Tags Tags
    Induction
Click For Summary

Homework Help Overview

The discussion revolves around proving two statements using mathematical induction. The first statement involves the sum of cubes of the first n natural numbers equating to the square of the sum of those numbers. The second statement presents an inequality involving the sum of cubes and a quartic expression.

Discussion Character

  • Exploratory, Conceptual clarification, Mathematical reasoning, Problem interpretation

Approaches and Questions Raised

  • Participants discuss the inductive process, suggesting starting with base cases and exploring the implications of assuming the statement holds for n. There is mention of needing to generalize certain patterns observed in the sums of cubes. Some participants express confusion regarding the generalization of specific sequences and the application of induction steps.

Discussion Status

Participants are actively engaging with the problem, offering insights into the inductive process and sharing their attempts at proving the statements. There is a recognition of the complexity involved in the second problem, with some guidance provided on how to approach the inequalities. Multiple interpretations and strategies are being explored without a clear consensus on the best path forward.

Contextual Notes

Some participants note the challenge of finding closed formulas for sums and the implications of using multiple induction steps. There is also mention of constraints related to homework rules and the need for clarity in the assumptions being made.

Jimmy84
Messages
190
Reaction score
0

Homework Statement


Prove using induction


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

2.) 1^3 + 2^3 + ... + (n-1)^3 < (n^4)/4 < 1^3 + 2^3 + ... + n^2



Homework Equations





The Attempt at a Solution



I don't have a clue about how to start to do the problems can anyone help me ?

Thanks.
 
Physics news on Phys.org
When you don't know what to do, start by writing down what you know.

How to prove a theorem by induction.

1) Prove a case (usually n=1 or something).
2) Prove that if your theorem is true for some value of n, it is true for n+1.

So start by proving the statements for n=1, or maybe n=3 since the second statement involves n-1.

Then prove that IF it's true for n, it's true for n+1.
 
do you understand the inductive process?

First show its true for a particular n, usually n=1
Then asumes it true for n, see if you can show it is then true for n+1 based on that fact

Then it is true for all n greater than 1 (or whatever value you started at)
 
I've done the first question before, it isn't that easy (unless you look it up what I'm going to post below).
It's related to these numbers (n^3) : (cubic numbers)
1^2 = 1
2^3 = 8 = 3 + 5
3^3 = 7 + 8 + 9
4^3 = 11 + 13 + 15 + 17
.. et c
generalize and these results and prove the generalization, then you may use it for 1^3 + ... + n^3 = (1+2+..+n)^2.

this may help you: 1 + 3 + ... + 2(n) - 1 = n^2
good luck
 
as i think wisvuze is implying you may need to use a few inductions (rather than just the single inductive step) to get the result - have a try & we'll step through it
 
Im familiar with having a single inductive step however the ones that use more step are more complicated.

I couldn't find a generalization for
1^2 = 1
2^3 = 8 = 3 + 5
3^3 = 7 + 8 + 9
4^3 = 11 + 13 + 15 + 17

There is no generalization I could find for 1, 8, 24, and 56. what can I do about it?


In problem one

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

would then be

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

but I can't go further from that . because I can't take just n+1 as one single variable in order to make sense I need the other sum of real numbers of the equation.
 
ok so examining n+1 case gives (note I've just added tex tags around you formula - try clicking on equation to see what i mean):
[tex]1^3 + 2^3 + 3^3 + ... + n^3 + (n+1)^3 = (1 + 2 + 3 + ... +n+ (n+1))^2[/tex]

exapanding some of the square
[tex](1^3 + 2^3 + 3^3 + ... + n^3) + (n+1)^3 <br /> = ((1 + 2 + 3 + ... +n) +(n+1))^2[/tex]
[tex](1^3 + 2^3 + 3^3 + ... + n^3) + (n+1)^3 <br /> = (1 + 2 + 3 + ... +n)^2 +2(n+1)(1 + 2 + 3 + ... +n) + (n+1)^2[/tex]

now if we assume the orginal hypothesis is true for n, it reduces to:
[tex](n+1)^3 = 2(n+1)(1 + 2 + 3 + ... +n) + (n+1)^2[/tex]

removing a factor of (n+1)
[tex](n+1)^2 = 2(1 + 2 + 3 + ... +n) + (n+1)[/tex]

if you can prove the above relation you're pretty much there - so you could try induction again (i haven't done it, but looks like a reasonable way to attempt the problem)
 
Last edited:
This last relation follows directly from the formula for summing the first n integers.
 
cool, then induction should work for that if you can't just assume it & then you just need to show the hypthesis is true for some starting n value
 
  • #10
Sorry I have been very busy all this time it has been quite hard to find a way to solve this problem.

You told me to prove
[tex](n+1)^2 = 2(1 + 2 + 3 + ... +n) + (n+1)[/tex]
but I am not sure about how to do that.

I tried [tex](n+2)^2 = 2(1 + 2 + 3 + ... +n+1) + (n+2)[/tex]
then [tex]n^2 +4n +4 = 2 (1+2+3+... +n+1) + (n+2)[/tex]

But I am totally lost here I would appreciate some help.
 
  • #11
Start by finding a closed formula for:

[tex]\sum_{k=1}^n k = (1 + 2 + 3 + ... + (n-1) + n)[/tex]
 
  • #12
hgfalling said:
Start by finding a closed formula for:

[tex]\sum_{k=1}^n k = (1 + 2 + 3 + ... + (n-1) + n)[/tex]

What do you mean by a closed formula?
 
  • #13
Something that's only in terms of n, and doesn't involve a summation.
 
  • #14
Jimmy84 said:
Im familiar with having a single inductive step however the ones that use more step are more complicated.

I couldn't find a generalization for
1^2 = 1
2^3 = 8 = 3 + 5
3^3 = 7 + 8 + 9
4^3 = 11 + 13 + 15 + 17

There is no generalization I could find for 1, 8, 24, and 56. what can I do about it?

Notice: 1^2 = 1, 2^3 = 3 + 5 .. et c nth term is the sum of n odd numbers, starting from where n-1's odd terms left off

This question was presented this way in Donald Knuth's popular book "The Art of Computer Programming".
 
  • #15
hgfalling said:
Start by finding a closed formula for:

[tex]\sum_{k=1}^n k = (1 + 2 + 3 + ... + (n-1) + n)[/tex]

[tex]n(n+1)/2[/tex]

What use I can give to that in order to prove the original equation?
 
  • #16
In post #10, you wrote:
Jimmy84 said:
You told me to prove
[tex](n+1)^2 = 2(1 + 2 + 3 + ... +n) + (n+1)[/tex]
but I am not sure about how to do that.

Now you have an expression you can fill in on the right side of that equation, right?
 
  • #17
hgfalling said:
In post #10, you wrote:


Now you have an expression you can fill in on the right side of that equation, right?

ok [tex](n+1)^2 = n(n+1) + (n+1)[/tex]
that is [tex]n^2+2n+1 = n^2+2n+1[/tex]


How can I start with the second problem?

2.) [tex]1^3 + 2^3 + ... + (n-1)^3 < (n^4)/4[/tex]
 
  • #18
Now use the result you just proved to substitute into the left and right sides of the second inequality.
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 11 ·
Replies
11
Views
4K
  • · Replies 19 ·
Replies
19
Views
4K
Replies
6
Views
3K
  • · Replies 10 ·
Replies
10
Views
4K
  • · Replies 17 ·
Replies
17
Views
3K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 12 ·
Replies
12
Views
2K
Replies
31
Views
3K
  • · Replies 6 ·
Replies
6
Views
9K