Why does the Fibonacci Series start with 0, 1?

The Fibonacci Series is based on the principle that the succeeding number is the sum of the previous two numbers. Then how is it logical to start with a 0? Shouldn't it start with 1 directly?


Solution 1:

One key number-theoretical reason for starting the sequence $(0,1)$ instead of $(1,1)$ is that it makes the divisibility property of the Fibonacci sequence more straightforward to state; i.e., that $F_k$ divides $F_{nk}$ for any $k,n$. If you start with $F_0=1$ instead of $F_0=0$ then this breaks down (for instance, in that numbering $F_2=2$ but $F_4=5$) and a lot of results have to be presented with indices shifted. This has to do, roughly with the representation of $F_n$ as $\frac{1}{\sqrt{5}}\left(\phi^n-\varphi^n\right)$ (with $\varphi=\frac{1}{\phi} = \phi-1$); the fact that the exponents 'match up' with the index leads to straightforward arguments for the various divisibility properties.

Solution 2:

It's just a matter of taste. You can start it at 1,1 instead of 0,1 at the cost of having all your indices shifted by one. On the other hand you can never be sure whether the first two terms are denoted $(F_0, F_1)$ or $(F_1,F_2)$ anyway, so this cost is small.

Shifting one step in the other direction, you can also choose to start the sequence at 1,0. Together, the 0,1 and 1,0 sequences provide a convenient basis for the Fibonacci recurrence started at any pair of values (since the recurrence is linear and homogenous).

Solution 3:

I give you Lucas numbers.

$(0,1)$ instead of $(1,1)$ is just for convenience in many formulas, as previously stated. There's nothing about a recurrence relation that tells you where to start.

Note that this also lets you generalize nicely in a different way. I.e, there are Tribonacci numbers, and so on that satisfy higher order recurrence relations. It's a little nicer to say that such sequences start off at $(0,0,0,...,0,1)$ rather than at $(1,1,2,4,...)$ for however many powers of $2$.

Solution 4:

This is a matter of convention. According to Wikipedia, when Leonardo di Pisa (aka Fibonacci) introduced this sequence he did start with $1$, but he also started the indexing at $1$.