Help with Fibonacci Transformation

  • Thread starter Thread starter Lahooty
  • Start date Start date
  • Tags Tags
    Transformation
Lahooty
Messages
5
Reaction score
0

Homework Statement


A more efficient algorithm to calculate Fibonacci numbers applies the simultaneous transformation:

T(a; b) = (a+b; a)

repeatedly with a = 1 and b = 0 as initial values.

What Fibonacci numbers result from T^k(1; 0)? Justify your answer (e.g., as proof by induction in k would be nice).


Homework Equations





The Attempt at a Solution



Let k = 1

T^1(1; 0) = (1; 1) = (F2; F1)

Assume T^k(1; 0) = (Fk+1; Fk) and show T^(k+1)(1; 0) = (Fk+2; Fk+1)

T^(k+1)(1; 0) = T^k(T^1(1; 0)) = T^k(1; 1) = (Fk+2; Fk+1)

Is this enough to conclude my solution and justify the proof? Any help will be greatly appreciated.

Thanks
 
Physics news on Phys.org
Lahooty said:
T^k(1; 1) = (Fk+2; Fk+1)
I see no justification for that step. Your inductive hypothesis concerned T^k(1; 0), so you need to derive an expression involving exactly that. Try factorising T^(k+1) differently.
 
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