Fibonacci number: Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Wlodzimierz Holsztynski
mNo edit summary
 
(23 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{subpages}}
{{subpages}}
<!-- Taken from en.wikipedia.org/wiki/Fibonacci number -->
 
In mathematics, the '''Fibonacci numbers''' form a [[sequence]] defined by the following [[recurrence relation]]:
In mathematics, the '''Fibonacci numbers''' form a [[sequence]] in which the first number is 0, the second number is 1, and each subsequent number is equal to the sum of the previous two numbers in the series. In mathematical terms, it is defined by the following [[recurrence relation]]:
:<math>  
:<math>  
   F_n :=   
   F_n :=   
Line 10: Line 10:
   \end{cases}
   \end{cases}
  </math>
  </math>
<!-- Taken from en.wikipedia.org/wiki/Fibonacci number -->


The sequence of fibonacci numbers start: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, ... 


The sequence of Fibonacci numbers was first used to represent the growth of a colony of rabbits, starting with a single pair of rabbits.
The sequence of Fibonacci numbers starts with : 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, ...


It was first used to represent the growth of a colony of rabbits, starting with a single pair of rabbits.  It has applications in mathematics as well as other sciences, and is a popular illustration of recursive programming in computer science.


==Properties==
==Divisibility properties==


We will apply the following simple observation to Fibonacci numbers:
We will apply the following simple observation to Fibonacci numbers:
Line 56: Line 55:
*If <math>\ m</math>&nbsp; divides <math>\ n\ </math> then <math>\ F_m\ </math> divides <math>\ F_n\ </math>
*If <math>\ m</math>&nbsp; divides <math>\ n\ </math> then <math>\ F_m\ </math> divides <math>\ F_n\ </math>


*If <math>\ F_p\ </math>&nbsp; is a prime number then <math>\ p</math>&nbsp; is prime. (The converse is false.)  
*If <math>\ F_p\ </math>&nbsp; is a prime number different from 3, then <math>\ p</math>&nbsp; is prime. (The converse is false.)  


== Algebraic identities ==


*<math>\sum_{i=0}^n F_i^2 = F_n \cdot F_{n+1}</math>
*<math>F_{n-1}\cdot F_{n+1}-F_n\,^2\ =\ (-1)^n\ </math> &nbsp; &nbsp; for n=1,2,...
*<math>\sum_{i=0}^n F_i\,^2\ =\ F_n \cdot F_{n+1}</math>


== Direct formula and the [[golden ratio]] ==
== Direct formula and the [[golden ratio]] ==
Line 90: Line 91:
for every <math>\ n=0,1,\dots</math> . The above constant <math>\ A</math>&nbsp; is known as the famous [[golden ratio]] <math>\ \Phi.</math>&nbsp; Thus:
for every <math>\ n=0,1,\dots</math> . The above constant <math>\ A</math>&nbsp; is known as the famous [[golden ratio]] <math>\ \Phi.</math>&nbsp; Thus:


:::<math>\Phi\ =\ \lim_{n\to\infty}\frac{F(n+1)}{F(n)}\ =\ \frac{1+\sqrt{5}}{2}</math>
:::<math>\Phi\ =\ \lim_{n\to\infty}\frac{F_{n+1}}{F_n}\ =\ \frac{1+\sqrt{5}}{2}</math>
 
== Fibonacci generating function ==
 
The '''Fibonacci generating function''' is defined as the sum of the following power series:
 
::<math>g(x)\ :=\ \sum_{n=0}^\infty F_n\cdot x^n</math>
 
The series is convergent for&nbsp; <math>\ |x|<\frac{1}{\Phi}.</math>&nbsp; Obviously:
 
::<math>g(x)\ =\ x+x\cdot g(x) + x^2\cdot g(x)\ </math>
 
hence:
 
:::<math>g(x)\ =\ \frac{x}{1-x-x^2}</math>
 
Value <math>\ g(x)</math>&nbsp; is a rational number whenever ''x'' is rational. For instance, for ''x'' = &frac12;:
 
:<math>\frac{F_1}{2}+\frac{F_2}{4}+\frac{F_3}{8}+\cdots\ =\ 2</math>
 
and for ''x'' = &minus;&frac12; (after multiplying the equality by &minus;1):
 
:<math>\frac{F_1}{2}-\frac{F_2}{4}+\frac{F_3}{8}-\cdots\ =\ \frac{2}{5}</math>


== Further reading ==
== Further reading ==
* [[John Horton Conway|John H. Conway]] und Richard K. Guy, ''The Book of Numbers'', ISBN 0-387-97993-X
* [[John Horton Conway|John H. Conway]] and Richard K. Guy, ''The Book of Numbers'', ISBN 0-387-97993-X[[Category:Suggestion Bot Tag]]

Latest revision as of 07:00, 16 August 2024

This article is a stub and thus not approved.
Main Article
Discussion
Related Articles  [?]
Bibliography  [?]
External Links  [?]
Citable Version  [?]
 
This editable Main Article is under development and subject to a disclaimer.

In mathematics, the Fibonacci numbers form a sequence in which the first number is 0, the second number is 1, and each subsequent number is equal to the sum of the previous two numbers in the series. In mathematical terms, it is defined by the following recurrence relation:


The sequence of Fibonacci numbers starts with : 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, ...

It was first used to represent the growth of a colony of rabbits, starting with a single pair of rabbits. It has applications in mathematics as well as other sciences, and is a popular illustration of recursive programming in computer science.

Divisibility properties

We will apply the following simple observation to Fibonacci numbers:

if three integers Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \ a,b,c,}   satisfy equality   then


Indeed,

and the rest is an easy induction.


for all integers   such that Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \ 0\le k < n.}


Indeed, the equality holds for   and the rest is a routine induction on Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \ k.}

Next, since ,  the above equality implies:

which, via Euclid algorithm, leads to:


Let's note the two instant corollaries of the above statement:


  • If   divides then divides
  • If Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \ F_p\ }   is a prime number different from 3, then   is prime. (The converse is false.)

Algebraic identities

  •     for n=1,2,...
  • Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \sum_{i=0}^n F_i\,^2\ =\ F_n \cdot F_{n+1}}

Direct formula and the golden ratio

We have

Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle F_n\ =\ \frac{1}{\sqrt{5}}\cdot \left(\left(\frac{1+\sqrt{5}}{2}\right)^n - \left(\frac{1-\sqrt{5}}{2}\right)^n\right)}

for every .

Indeed, let  Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle A := \frac{1+\sqrt{5}}{2}}   and   .  Let

Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle f_n\ :=\ \frac{1}{\sqrt{5}}\cdot(A^n - a^n)}

Then:

  •     and    
  •     hence     Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \ A^{n+2} = A^{n+1}+A^n}
  •     hence    

for every Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \ n=0,1,\dots} . Thus   for every and the formula is proved.

Furthermore, we have:

  • Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle A\cdot a = -1\ }

It follows that

  is the nearest integer to 

for every . The above constant   is known as the famous golden ratio   Thus:

Fibonacci generating function

The Fibonacci generating function is defined as the sum of the following power series:

The series is convergent for    Obviously:

hence:

Value   is a rational number whenever x is rational. For instance, for x = ½:

and for x = −½ (after multiplying the equality by −1):

Further reading