Fibonacci sequence: Difference between revisions
Quantum leap (talk | contribs) No edit summary |
m reorganized a bit |
||
| Line 1: | Line 1: | ||
The '''Fibonacci sequence''' is a series of numbers in which each number is the sum of the two preceding it (the first two terms are simply 1). The first few terms are <math>1,1,2,3,5,8,13,21,34,55,...</math>. | The '''Fibonacci sequence''' is a series of numbers in which each number is the sum of the two preceding it (the first two terms are simply 1). The first few terms are <br><math>1,1,2,3,5,8,13,21,34,55,...</math>. | ||
The Fibonacci sequence can be written recursively as <math>F_n=F_{n-1}+F_{n-2}</math>. | The Fibonacci sequence can be written recursively as <math>F_n=F_{n-1}+F_{n-2}</math>. | ||
== Introduction == | |||
Ratios between successive terms, <math>\frac{1}{1}</math>, <math>\frac{2}{1}</math>, <math>\frac{3}{2}</math>, <math>\frac{5}{3}</math>, <math>\frac{8}{5}</math>, tend towards the limit [[phi]]. | |||
== Intermediate == | |||
'''Binet's formula''' is an explicit formula used to find any nth term. | '''Binet's formula''' is an explicit formula used to find any nth term. | ||
It is <math>\frac{1}{\sqrt{5}}((\frac{1+\sqrt{5}}{2})^n-(\frac{1-\sqrt{5}}{2})^n)</math> | It is <math>\frac{1}{\sqrt{5}}((\frac{1+\sqrt{5}}{2})^n-(\frac{1-\sqrt{5}}{2})^n)</math> | ||
Revision as of 16:31, 20 June 2006
The Fibonacci sequence is a series of numbers in which each number is the sum of the two preceding it (the first two terms are simply 1). The first few terms are
.
The Fibonacci sequence can be written recursively as
.
Introduction
Ratios between successive terms,
,
,
,
,
, tend towards the limit phi.
Intermediate
Binet's formula is an explicit formula used to find any nth term.
It is