Exercise 8.4

The Fibonacci numbers of number theory are defined recursively by the formula

λ1 = λ2 = 1, λn = λn1 + λn2 for n > 2.

Define them rigorously by use of Theorem 8.4.

Answers

First, note that the Fibonacci numbers are all positive integers. So, for any function f : {1,,m} + define

ρ(f) = { 1 m = 1 f(m) + f(m 1) m > 1,

noting that clearly the range of ρ is still + since that is the range of f. Then, by Theorem 8.4, there is a unique function F : + + such that

F(1) = 1, F(n) = ρ(F {1,,n 1}) for n > 1.

We claim that the Fibonacci numbers are λn = F(n) for n +.

Proof. To show that the numbers λn satisfy the inductive definition of the Fibonacci numbers, first note that we clearly have λ1 = F(1) = 1. We also have that

λ2 = F(2) = ρ(F {1}) = 1.

Lastly, for any n > 2, clearly n > 1 also and n 1 > 1 so that

λn = F(n) = ρ(F {1,,n 1}) = F(n 1) + F([n 1] 1) = λn1 + λn2,

which shows that the inductive definition is satisfied. □

User profile picture
2019-12-01 00:00
Comments