34, 55, 89, 144 , 233, 377, 610, 987,…. etc, the ratio of successive terms n/(n - 1) approximates to phi . (For example the ratio of 987 and 610 which is 1.61803… approximates phi correct to 5 decimal places). The value of phi which = (1 + square root of 5)/2, is the positive solution for x to the simple algebraic equation x 2 - x - 1 = 0 . This represents a special case of the more general equation x 2 - ax - b = 0 (where both a and b = 1). So to generate the Fibonacci sequence we keep adding the last term (a) to the second last term (b) in the sequence to generate the next term. So in the above sequence 987 = 610 + 377 (i.e. a and b = 1). However we can combine different multiples of a and b to generate different series with their own unique features. For example the Pell Series is derived from adding 2a + b . This results in the sequence 0, 1, 2, 5, 12,...
Comments
Post a Comment