* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project
Download Dated 1/22/01
Elementary algebra wikipedia , lookup
Basis (linear algebra) wikipedia , lookup
Automatic differentiation wikipedia , lookup
Bra–ket notation wikipedia , lookup
Homomorphism wikipedia , lookup
Corecursion wikipedia , lookup
Capelli's identity wikipedia , lookup
Structure (mathematical logic) wikipedia , lookup
Group action wikipedia , lookup
Spectral sequence wikipedia , lookup
Notes on the Fibonacci numbers, Math 296, 1/22/01 These are intended to be some introductory notes on the Fibonacci numbers, illustrating the many different ways of thinking about them. The sequence of integers {Fn } is defined recursively by: (*) F0 = 0, F1 = 1; Fn = Fn−1 + Fn−2 for n ≥ 2 The first few elements of the sequence are: F0 = 0, F1 = 1, F2 = 1, F3 = 2, F4 = 3, F5 = 5, F6 = 8, F7 = 13, F8 = 21, F9 = 34, F10 = 55, F11 = 89, F12 = 144, F13 = 233, F14 = 377, F15 = 610. As one approach, we decide to look at the totality of sequences which satisfy the reccurence of the Fibonacci sequences. (One of the principles for research being to embed examples in more general frameworks.) This one is motivated by the observation that the initial conditions (F0 , F1 ) = (0, 1) might be generalized. Let F denote the set of all sequences x = (x0 , x1 , x2 , . . . ), xn ∈ C. with the property that xn = xn−1 + xn−2 for n ≥ 2. (There’s actually no reason to restrict the elements of the sequence to be complex numbers, but there’s no reason at the moment not to.) Two distinguished elements of F are the Fibonacci sequence F and what I’ll call F 0 for the shifted Fibonacci sequence: F 0 = (1, 1, 2, 3, 5, 8, . . . ). F = (0, 1, 1, 2, 3, 5, . . . ) That is, the n-th element of F is just Fn , and (F 0 )n = Fn+1 . We can make F into a vector space over C by defining addition and scalar multiplication in the “obvious” way: if c ∈ C and x and y = (y0 , y1 , y2 , . . . ) are in F , then cx = (cx0 , cx1 , cx2 , . . . ), x + y = (x0 + y0 , x1 + y1 , x2 + y2 , . . . ). It’s easy to check that cx and x + y are both in F by verifying the recurrence, and The zero element in X , 0, is simply the sequence (0, 0, 0, . . . ). If we write out the recurrence, we see that if x ∈ F , then x2 = x0 + x1 , x3 = x0 + 2x1 , x4 = 2x0 + 3x1 . . . and so on. In fact, it is easy to show by induction that there exist numbers an and bn , independent of x0 and x1 so that xn = an x0 + bn x1 . Furthermore, the sequences a and b satisfy the Fibonacci recurrence and so are elements of F , Indeed, x = (x0 , x1 , x0 + x1 , x0 + 2x1 , 2x0 + 3x1 , . . . ) = x0 (1, 0, 1, 1, 2, . . . ) + x1 (0, 1, 1, 2, 3, . . . ) This means that F is at most a two dimensional subspace of F , and since the two elements of the spanning set are obviously linearly independent, F is two dimensional, and they 1 form a basis. The second element we recognize as F . The first one looks like F shifted the other way, so we want to say that the n-th element is Fn−1 , but that would require defining F−1 as the first element. An alternative is to note that Fn−1 = Fn+1 − Fn from the recurrence, so the sequence is F 0 − F . In sum, we’ve shown that if x ∈ F , then x = x0 (F 0 − F ) + x1 F =⇒ xn = x0 (Fn+1 − Fn ) + x1 Fn = (−x0 + x1 )Fn + x0 Fn+1 . We are now allowed to harvest some results from this. Consider the sequence x(k) = F , where there are k primes; that is, xn = Fn+k , with k ≥ 0. This is F shifted k times, (k) (k) and it’s clear that x(k) ∈ F , with x0 = Fk and x1 = Fk+1 . Then the formula above implies that x(k) n = Fn+k = Fk (Fn+1 − Fn ) + Fk+1 Fn . 00 ···0 There are two ways to rewrite this: one is symmetric and one is short. Fn+k = Fk Fn+1 + Fk+1 Fn − Fk Fn ; Fn+k = Fk Fn−1 + Fk+1 Fn . The understanding here is that n ≥ 1 so that we don’t have a negative index. Because the second formula is symmetric in k and n on the left, but not the right, we get a second formula, Fn+k = Fn Fk−1 + Fn+1 Fk , and an identity which isn’t too hard to derive directly: Fk Fn−1 + Fk+1 Fn = Fn Fk−1 + Fn+1 Fk , Here are three questions I won’t answer, but you might want to: (i) What is a “good” formula for Fn1 +n2 +n3 ? There are two metrics for “good”. One is that you want a symmetric formula, the other is that you want a short formula. (The best way to proceed is to use the previous work and write n1 + n2 + n3 = (n1 + n2 ) + n3 .) (ii) Look for a converse. Suppose fn is a sequence and, for all k, n ≥ 0, we have fn+k = fk fn+1 + fk+1 fn − fk fn . Does this mean that fn = Fn for all n? (iii) To what extent is the abstract structure dependent on the specific linear recurrence? What would happen if you looked at all sequences with the property xn = αxn−1 + βxn−2 for fixed constants α and β. Would you still get a two-dimensional vector space? What do you think would happen if you considered the property xn = αxn−1 + βxn−2 + γxn−3 ? What about xn = x2n−1 + x2n−2 ? Some questions I will discuss are: what happens when you “diagonalize” the symmetry by setting the parameters n and k equal to each other or nearly so, and whether there are other natural bases for F . 2