knuth - vol 1 - inductive proof questions
- From: Mateusz Berezecki <mateuszb@xxxxxxxxx>
- Date: Wed, 29 Oct 2008 12:28:56 -0700 (PDT)
Hi,
I'm trying to solve yet another simple problem, but I think I am stuck
at one point.
I think I am lacking an idea how to formalize things.
The task is as follows:
Formulate and prove by induction a rule for the sums 1^2, 2^2 - 1^2,
3^2 - 2^2 + 1^2, 4^2 - 3^2 + 2^2 - 1^2, etc.
When I was first approaching this problem I noticed few things:
a_1 = 1
a_2 = 2^2 - 1^2 = 3
a_3 = 3^2 - 2^2 + 1^2 = 6
a_4 = 4^2 - 3^2 + 2^2 - 1^2 = 10
....
a_n = n^2 - a_{n-1}^2 or equivalently a_n = - a_{n-1} ^ 2 [1]
One of the other observations I made was for the formulation of a_n by
a_n = a_{n-1} + n [2]
Putting [1] and [2] on 2 sides of the equal sign yields
a_{n-1} + n = n^2 - a_{n-1}^2 [3]
After some algebra I get
2 * a_{n-1} = n^2 - n
and finally it is easy to get the formula for a_n, which is
a_n = [ (n+1) * n ] / 2 [4]
Before doing a proof by induction I am wondering if I am allowed to
use the formula [2] (which I have not derived by any means, and just
simply used the empirical observation) in equation [3] ?
I have tried deriving the formula [2] formally but kept failing
(probably making the same mistake all the time).
Can anyone possible please give me some hints on this one?
Assuming that formula [2] is valid, how do I proceed with proving [4]
for n+1 by induction?
Mateusz Berezecki
.
- Follow-Ups:
- Re: knuth - vol 1 - inductive proof questions
- From: Tim Smith
- Re: knuth - vol 1 - inductive proof questions
- From: Ken Pledger
- Re: knuth - vol 1 - inductive proof questions
- From: Dirk Van de moortel
- Re: knuth - vol 1 - inductive proof questions
- From: Virgil
- Re: knuth - vol 1 - inductive proof questions
- Prev by Date: Re: Terminology : MOD
- Next by Date: Re: E=mc(squared) = E=mc(circled), and celestial orbits, may indeed be, “Natures Squaring of the Circle”.
- Previous by thread: Re: Interesting Math Fact?
- Next by thread: Re: knuth - vol 1 - inductive proof questions
- Index(es):
Relevant Pages
|