Proving Induction and Divisibility - Two Simple Homework Problems

  • Thread starter Thread starter steelphantom
  • Start date Start date
  • Tags Tags
    Induction Proofs
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 9K views
steelphantom
Messages
158
Reaction score
0

Homework Statement


Prove 1^3 + 2^3 + ... + n^3 = (1 + 2 + ... + n)^2 for all natural numbers n.


Homework Equations





The Attempt at a Solution



Well, this seems like the typical induction proof, so I start by testing the hypothesis at 1: 1^3 = 1^2 = 1. Then I assume that the equation is true for n, and try to prove it true for n + 1.

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

I have this, but how do I get it to be (1 + 2 + ... + n + n + 1)^2? Is it some crazy factorization that I'm overlooking? It seems pretty easy.


Homework Statement



Prove that 7^n - 6n - 1 is divisible by 36 for all positive integers n.

Homework Equations





The Attempt at a Solution



Well, the statement seems to be saying the following: 7^n - 6n - 1 = 36k, where k is a positive integer. As with the first problem, testing it with 1 works. Assuming it is true for n + 1 would mean the following, if I'm correct:

7^(n + 1) - 6(n + 1) - 1 = 36j, where j is a positive integer. At this point, I'm not sure how to proceed.


I know I'm probably overlooking some obvious stuff here, so a little hint is probably all I'll need to finish these problems off. Thanks! :)
 
Physics news on Phys.org
steelphantom said:

Homework Statement


Prove 1^3 + 2^3 + ... + n^3 = (1 + 2 + ... + n)^2 for all natural numbers n.


Homework Equations





The Attempt at a Solution



Well, this seems like the typical induction proof, so I start by testing the hypothesis at 1: 1^3 = 1^2 = 1. Then I assume that the equation is true for n, and try to prove it true for n + 1.

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

I have this, but how do I get it to be (1 + 2 + ... + n + n + 1)^2? Is it some crazy factorization that I'm overlooking? It seems pretty easy.
Try to substitute something else for (1+2+...+n). The formula for it is not that hard to derive.
steelphantom said:

Homework Statement



Prove that 7^n - 6n - 1 is divisible by 36 for all positive integers n.

Well, the statement seems to be saying the following: 7^n - 6n - 1 = 36k, where k is a positive integer. As with the first problem, testing it with 1 works. Assuming it is true for n + 1 would mean the following, if I'm correct:

7^(n + 1) - 6(n + 1) - 1 = 36j, where j is a positive integer. At this point, I'm not sure how to proceed.
7^(n+1) = 7^n*7. You are assuming that 7^n = 36k + 6n + 1. See what happens.
 
steelphantom said:

Homework Statement


Prove 1^3 + 2^3 + ... + n^3 = (1 + 2 + ... + n)^2 for all natural numbers n.

[tex]1^3 + 2^3 + ... + n^3=\sum_{n=0} ^{N} n^3[/tex]

[tex](1 + 2 + ... + n)^2 =(\sum_{n=0} ^{N} n)^2[/tex]


Do you know what [itex]\sum_{n=0} ^{N} n[/itex] represents?
 
Thanks guys for your help! I solved the second problem. The first problem is still puzzling me a bit. Here's what I have:

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

Still not sure how to add those two terms together. I'm sure it's very easy, but I'm just not seeing it.
 
HallsofIvy said:
The same question, again, can you write
[itex]\sum_{n=0}^N n[/itex]
in a "closed" form and then square?

Got it! Thank you. :)