SlideShare a Scribd company logo
Fibonacci Numbers
A presentation by Era Kraja
Who was Fibonacci?
Also referred to as Leonard of Pisa, Fibonacci was
an Itallian number theorist. It is believed that
Leonardo Pisano Fibonacci was born in the 13th
century, in 1170 (approximately) and that he died in
1250. Fibonacci was born in Italy but obtained his
education in North Africa. Fibonacci is considered
to be one of the most talented mathematicians for
the Middle Ages. Few people realize that it was
Fibonacci that gave us our decimal number system
(Hindu-Arabic numbering system) which replaced
the Roman Numeral system. When he was studying
mathematics, he used the Hindu-Arabic (0-9)
symbols instead of Roman symbols which didn't
have 0's and lacked place value. In fact, when using
the Roman Numeral system, an abacus was usually
required. There is no doubt that Fibonacci saw the
superiority of using Hindu-Arabic system over the
Roman Numerals. He shows how to use our current
numbering system in his book Liber abaci.
Introduction
In mathematics, the Fibonacci numbers or Fibonacci series or Fibonacci sequence are the numbers in the following integer
sequence:
By definition, the first two numbers in the Fibonacci sequence are 0 and 1, and each subsequent number is the sum of the
previous two.
In mathematical terms, the sequence Fn of Fibonacci numbers is defined by the recurrence relation
with seed values
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144...
Fn= Fn-1 + Fn-2
F0=0, F1=1
The first 21 Fibonacci numbers
Fo F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20
0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 15972584 4181 6765
The problem
A certain man put a pair of rabbits in a place surrounded on
all sides by a wall. How many pairs of rabbits can be
produced from that pair in a year if it is supposed that
every month each pair begets a new pair, which from the
second month on becomes productive?
How he solved it:
Fibonacci's experiment shows that over a period of time, a pair of rabbits will
reproduce at a rate expressed in his identified sequence of numbers. One pair
of rabbits will create a pair of offspring. When those rabbits mature, they will
create another pair of offspring, and during that time, the older, original pair of
rabbits will have created an additional pair of offspring, etc.
Uses of Fibonacci numbers
Poetry
Plants
Animals
Computer Science
Finance
Fibonacci and Poetry
In English, we tend to think of poetry as lines of text that rhyme, that is, lines that end with similar sounds as in this children's song:
Twinkle twinkle little star
How I wonder what you are.
Also we have the rhythm of the separate sounds (called syllables). Words like twinkle have two syllables: twin- and -kle whereas words such as star have
just one. Some syllables are stressed more than others so that they sound louder (such as TWIN- in twinkle), whereas others are unstressed and quieter
(such as -kle in twinkle).
If we let S stand for a stressed syllable and s an unstressed one, then the stress-pattern of each line of the song or poem has the rhythm SsSsSsS.
In Sanskrit poetry syllables are are either long or short. All the syllables in the song above take about the same length of time to say whether they are
stressed or not, so all the lines take the same amount of time to say. However cloudy sky has two words and three syllables CLOW-dee SKY, but the first
and third syllables are stressed and take a longer to say then the other syllable.
Let's assume that long syllables take just twice as long to say as short ones.
So we can ask the question: In Sanskrit poetry, if all lines take the same amount of time to say, what combinations of short (S) and long (L) syllables can
we have?
For one time unit, we have only one short syllable to say: S = 1 way
For two time units, we can have two short or one long syllable: SS and L = 2 ways
For three units, we can have: SSS, SL or LS = 3 ways
Any guesses for lines of 4 time units? Four would seem reasonable - but wrong! It's five! (SSSS, SSL, SLS, LSS and LL)
The general answer is that lines that take n time units to say can be formed in Fib(n) ways. This was noticed by Acarya Hemacandra about 1150 AD or
70 years before Fibonacci published his first edition of Liber Abaci in 1202.
Prof George Eckel Duckworth's book“Structural patterns and proportions in Virgil's Aeneid: a study in mathematical composition”argues that Virgil
consciously used Fibonacci numbers to structure his poetry and so did other Roman poets of the time.
Fibonacci and Plants
The leaves on this plant are staggered in a spiral pattern to permit optimum exposure to sunlight. If we apply the Golden Ratio to a circle we will see how
it is that this plant exhibits Fibonacci qualities.  
In the case of tapered pinecones or pineapples, we see a double set of spirals – one going in a clockwise direction and one in the opposite direction.
When these spirals are counted, the two sets are found to be adjacent Fibonacci numbers. 
 
Similarly, sunflowers have a Golden Spiral seed arrangement. This provides a biological advantage because it maximizes the number of seeds that can
be packed into a seed head.
 
 
As well, many flowers have a Fibonacci number of petals. Some, like this rose, also have Fibonacci, or Golden Spiral, petal arrangements.
 
 
Fibonacci and Animals
The shell of the chambered Nautilus has Golden proportions. It is a logarithmic spiral.
The eyes, fins and tail of the dolphin fall at Golden Sections along the body.
Humans exhibit Fibonacci characteristics, too. The Golden Ratio is seen in the proportions in the
sections of a finger. It is also worthwhile to mention that we have 8 fingers in total, 5 digits on each
hand, 3 bones in each finger, 2 bones in 1 thumb, and 1 thumb on each hand.
The cochlea of the inner ear forms a Golden Spiral.
Fibonacci and Computer Science
Computer Scientists like the Fibonacci sequence because it is a good example of something
that can be programmed easily using what is known as recursion. Recursion just means you
define something using a simpler version of itself: If we write the 5th Fibonacci number (which
is 8) as fib(5), the 4th (which is 5) as fib(4) and so on then we can calculate it as:
That tells a computer to calculate fib(5) by calculating fib(3) and fib(4) first, both simpler
Fibonacci calculations, and then add them together. fib(4) and fib(3) are worked out in the
same way using simpler calculations again. We can write this to work for any number (let's
call it n) as:
That just says that for any number n that is bigger than 1, work out the nth Fibonacci number
by first working out the previous two, fib(n-2) and fib(n-1), and adding them. We then just
have to say how to do the simple cases you eventually end up at, when n is either 1 or 0:
Define fib(n) = fib(n-2) + fib(n-1) if n > 1
Define fib(5) = fib(3) + fib(4)
Define fib(n) = fib(n-2) + fib(n-1) if n > 1
| fib(1) = 1
| fib(0) = 1
Fibonacci and Finance
In finance, Fibonacci retracements is a method of technical
analysis for determining support and resistance levels. They are
named after their use of the Fibonacci sequence. Fibonacci
retracement is based on the idea that markets will retrace a
predictable portion of a move, after which they will continue to
move in the original direction.
The appearance of retracement can be ascribed to ordinary price
volatility as described by Burton Malkiel, a Princeton economist in
his book A Random Walk Down Wall Street, who found no reliable
predictions in technical analysis methods taken as a whole. Malkiel
argues that asset prices typically exhibit signs of random walk and
that one cannot consistently outperform market averages.
Fibonacci retracement is created by taking two extreme points on
a chart and dividing the vertical distance by the key Fibonacci
ratios. 0.0% is considered to be the start of the retracement, while
100.0% is a complete reversal to the original part of the move.
Once these levels are identified, horizontal lines are drawn and
used to identify possible support and resistance levels.
Thank you for
watching!

More Related Content

What's hot

The fibonacci sequence
The fibonacci sequenceThe fibonacci sequence
The fibonacci sequence
Smruti Shetty
 
Fibonacci
FibonacciFibonacci
Fibonacci
Merilyn Hancock
 
Patterns in Nature
Patterns in NaturePatterns in Nature
Patterns in Nature
Esme McAvoy
 
Fibonacci series by saadat ali achakzai
Fibonacci series by saadat ali achakzaiFibonacci series by saadat ali achakzai
Fibonacci series by saadat ali achakzai
saadat ali achakzai
 
Math 140 fibonacci and golden ratio
Math 140 fibonacci and golden ratioMath 140 fibonacci and golden ratio
Math 140 fibonacci and golden ratiomichaelsisk
 
Fibonacci
FibonacciFibonacci
Fibonacci
keepdrmin8
 
The fibonacci sequence and the golden ratio #Scichallenge2017
The fibonacci sequence and the golden ratio #Scichallenge2017The fibonacci sequence and the golden ratio #Scichallenge2017
The fibonacci sequence and the golden ratio #Scichallenge2017
Miléna Szabó
 
Fibonacci series and Golden ratio
Fibonacci  series and Golden ratioFibonacci  series and Golden ratio
Fibonacci series and Golden ratio
Muhammad Ukasha
 
Golden ratio and Fibonacci series
Golden ratio and Fibonacci seriesGolden ratio and Fibonacci series
Golden ratio and Fibonacci series
ShrikantSharma86
 
Golden Ratio
Golden RatioGolden Ratio
Golden Ratio
MuhammadAliRehman3
 
Golden ratio by nivesh krishna
Golden ratio by  nivesh krishnaGolden ratio by  nivesh krishna
Golden ratio by nivesh krishnaNivesh Krishna
 

What's hot (13)

The fibonacci sequence
The fibonacci sequenceThe fibonacci sequence
The fibonacci sequence
 
Fibonacci
FibonacciFibonacci
Fibonacci
 
Fibonacci sequence
Fibonacci sequenceFibonacci sequence
Fibonacci sequence
 
Patterns in Nature
Patterns in NaturePatterns in Nature
Patterns in Nature
 
Fibonacci series by saadat ali achakzai
Fibonacci series by saadat ali achakzaiFibonacci series by saadat ali achakzai
Fibonacci series by saadat ali achakzai
 
Math 140 fibonacci and golden ratio
Math 140 fibonacci and golden ratioMath 140 fibonacci and golden ratio
Math 140 fibonacci and golden ratio
 
Fibonacci
FibonacciFibonacci
Fibonacci
 
The fibonacci sequence and the golden ratio #Scichallenge2017
The fibonacci sequence and the golden ratio #Scichallenge2017The fibonacci sequence and the golden ratio #Scichallenge2017
The fibonacci sequence and the golden ratio #Scichallenge2017
 
Fibonacci series and Golden ratio
Fibonacci  series and Golden ratioFibonacci  series and Golden ratio
Fibonacci series and Golden ratio
 
Golden ratio and Fibonacci series
Golden ratio and Fibonacci seriesGolden ratio and Fibonacci series
Golden ratio and Fibonacci series
 
Golden Ratio
Golden RatioGolden Ratio
Golden Ratio
 
golden section
golden sectiongolden section
golden section
 
Golden ratio by nivesh krishna
Golden ratio by  nivesh krishnaGolden ratio by  nivesh krishna
Golden ratio by nivesh krishna
 

Similar to Fibonacci Numbers

medieval European mathematics
medieval European mathematicsmedieval European mathematics
medieval European mathematics
dhayjanebananlopez
 
Maths in Art and Architecture Why Maths? Comenius project
Maths in Art and Architecture Why Maths? Comenius projectMaths in Art and Architecture Why Maths? Comenius project
Maths in Art and Architecture Why Maths? Comenius project
Gosia Garkowska
 
Fibonacci numbers and golden ratio
Fibonacci numbers and golden ratioFibonacci numbers and golden ratio
Fibonacci numbers and golden ratio
AyeshaGul25
 
Leonardo pisano fibonacci
Leonardo pisano fibonacciLeonardo pisano fibonacci
Leonardo pisano fibonacciStuart Tilley
 
Fibonacci sequence and golden ratio
Fibonacci sequence and golden ratioFibonacci sequence and golden ratio
Fibonacci sequence and golden ratiovayappurathu
 
Fibonacci Sequence and Golden Ratio
Fibonacci Sequence and Golden RatioFibonacci Sequence and Golden Ratio
Fibonacci Sequence and Golden Ratio
vayappurathu
 
The Golden Ratio
The Golden RatioThe Golden Ratio
The Golden Ratio
Ruhull
 
Is-there-a-Spiritual-Significance-to-the-number-Phi
Is-there-a-Spiritual-Significance-to-the-number-PhiIs-there-a-Spiritual-Significance-to-the-number-Phi
Is-there-a-Spiritual-Significance-to-the-number-PhiRob Graham
 
Danny Carey Essay
Danny Carey EssayDanny Carey Essay
Danny Carey Essay
Patty Buckley
 
Harmonic and Other Sequences
Harmonic and Other SequencesHarmonic and Other Sequences
Harmonic and Other Sequences
stephendy999
 
Fibonacci Numbers.pptx
Fibonacci Numbers.pptxFibonacci Numbers.pptx
Fibonacci Numbers.pptx
Nithishwaran
 
Problem Solving with Patterns
Problem Solving with PatternsProblem Solving with Patterns
Problem Solving with Patterns
EFREN ARCHIDE
 
Group-1-Reporting.pptx
Group-1-Reporting.pptxGroup-1-Reporting.pptx
Group-1-Reporting.pptx
JamesRoma1
 
Fibonaaci sequence.pptx
Fibonaaci sequence.pptxFibonaaci sequence.pptx
Fibonaaci sequence.pptx
Nikhil Patel
 
Numbers and arts HS RO1
Numbers and arts HS RO1Numbers and arts HS RO1
Numbers and arts HS RO1
Francisco Perez
 
Lesson leu alex numbers_highschool_lvl
Lesson leu alex numbers_highschool_lvlLesson leu alex numbers_highschool_lvl
Lesson leu alex numbers_highschool_lvl
Francisco Perez
 
PATTERNS-AND-NUMBERS-IN-NATURE.pdf
PATTERNS-AND-NUMBERS-IN-NATURE.pdfPATTERNS-AND-NUMBERS-IN-NATURE.pdf
PATTERNS-AND-NUMBERS-IN-NATURE.pdf
jaymarkawra
 
Golden Ratio
Golden RatioGolden Ratio
Golden Ratio
Shakil Iqbal
 

Similar to Fibonacci Numbers (20)

medieval European mathematics
medieval European mathematicsmedieval European mathematics
medieval European mathematics
 
Maths in Art and Architecture Why Maths? Comenius project
Maths in Art and Architecture Why Maths? Comenius projectMaths in Art and Architecture Why Maths? Comenius project
Maths in Art and Architecture Why Maths? Comenius project
 
Fibonacci numbers and golden ratio
Fibonacci numbers and golden ratioFibonacci numbers and golden ratio
Fibonacci numbers and golden ratio
 
Leonardo pisano fibonacci
Leonardo pisano fibonacciLeonardo pisano fibonacci
Leonardo pisano fibonacci
 
Fibonacci Numbers (abridged)
Fibonacci Numbers (abridged)Fibonacci Numbers (abridged)
Fibonacci Numbers (abridged)
 
Fibonacci sequence and golden ratio
Fibonacci sequence and golden ratioFibonacci sequence and golden ratio
Fibonacci sequence and golden ratio
 
Fibonacci Sequence and Golden Ratio
Fibonacci Sequence and Golden RatioFibonacci Sequence and Golden Ratio
Fibonacci Sequence and Golden Ratio
 
The Golden Ratio
The Golden RatioThe Golden Ratio
The Golden Ratio
 
Is-there-a-Spiritual-Significance-to-the-number-Phi
Is-there-a-Spiritual-Significance-to-the-number-PhiIs-there-a-Spiritual-Significance-to-the-number-Phi
Is-there-a-Spiritual-Significance-to-the-number-Phi
 
Danny Carey Essay
Danny Carey EssayDanny Carey Essay
Danny Carey Essay
 
Harmonic and Other Sequences
Harmonic and Other SequencesHarmonic and Other Sequences
Harmonic and Other Sequences
 
Fibonacci Numbers.pptx
Fibonacci Numbers.pptxFibonacci Numbers.pptx
Fibonacci Numbers.pptx
 
Problem Solving with Patterns
Problem Solving with PatternsProblem Solving with Patterns
Problem Solving with Patterns
 
Group-1-Reporting.pptx
Group-1-Reporting.pptxGroup-1-Reporting.pptx
Group-1-Reporting.pptx
 
Fibonaaci sequence.pptx
Fibonaaci sequence.pptxFibonaaci sequence.pptx
Fibonaaci sequence.pptx
 
Numbers and arts HS RO1
Numbers and arts HS RO1Numbers and arts HS RO1
Numbers and arts HS RO1
 
Lesson leu alex numbers_highschool_lvl
Lesson leu alex numbers_highschool_lvlLesson leu alex numbers_highschool_lvl
Lesson leu alex numbers_highschool_lvl
 
PATTERNS-AND-NUMBERS-IN-NATURE.pdf
PATTERNS-AND-NUMBERS-IN-NATURE.pdfPATTERNS-AND-NUMBERS-IN-NATURE.pdf
PATTERNS-AND-NUMBERS-IN-NATURE.pdf
 
Fibonacci en
Fibonacci en Fibonacci en
Fibonacci en
 
Golden Ratio
Golden RatioGolden Ratio
Golden Ratio
 

Recently uploaded

Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
EduSkills OECD
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
deeptiverma2406
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
Wasim Ak
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
Marketing internship report file for MBA
Marketing internship report file for MBAMarketing internship report file for MBA
Marketing internship report file for MBA
gb193092
 
Chapter -12, Antibiotics (One Page Notes).pdf
Chapter -12, Antibiotics (One Page Notes).pdfChapter -12, Antibiotics (One Page Notes).pdf
Chapter -12, Antibiotics (One Page Notes).pdf
Kartik Tiwari
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 

Recently uploaded (20)

Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
Marketing internship report file for MBA
Marketing internship report file for MBAMarketing internship report file for MBA
Marketing internship report file for MBA
 
Chapter -12, Antibiotics (One Page Notes).pdf
Chapter -12, Antibiotics (One Page Notes).pdfChapter -12, Antibiotics (One Page Notes).pdf
Chapter -12, Antibiotics (One Page Notes).pdf
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 

Fibonacci Numbers

  • 2. Who was Fibonacci? Also referred to as Leonard of Pisa, Fibonacci was an Itallian number theorist. It is believed that Leonardo Pisano Fibonacci was born in the 13th century, in 1170 (approximately) and that he died in 1250. Fibonacci was born in Italy but obtained his education in North Africa. Fibonacci is considered to be one of the most talented mathematicians for the Middle Ages. Few people realize that it was Fibonacci that gave us our decimal number system (Hindu-Arabic numbering system) which replaced the Roman Numeral system. When he was studying mathematics, he used the Hindu-Arabic (0-9) symbols instead of Roman symbols which didn't have 0's and lacked place value. In fact, when using the Roman Numeral system, an abacus was usually required. There is no doubt that Fibonacci saw the superiority of using Hindu-Arabic system over the Roman Numerals. He shows how to use our current numbering system in his book Liber abaci.
  • 3. Introduction In mathematics, the Fibonacci numbers or Fibonacci series or Fibonacci sequence are the numbers in the following integer sequence: By definition, the first two numbers in the Fibonacci sequence are 0 and 1, and each subsequent number is the sum of the previous two. In mathematical terms, the sequence Fn of Fibonacci numbers is defined by the recurrence relation with seed values 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144... Fn= Fn-1 + Fn-2 F0=0, F1=1
  • 4. The first 21 Fibonacci numbers Fo F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 15972584 4181 6765
  • 5. The problem A certain man put a pair of rabbits in a place surrounded on all sides by a wall. How many pairs of rabbits can be produced from that pair in a year if it is supposed that every month each pair begets a new pair, which from the second month on becomes productive?
  • 6. How he solved it: Fibonacci's experiment shows that over a period of time, a pair of rabbits will reproduce at a rate expressed in his identified sequence of numbers. One pair of rabbits will create a pair of offspring. When those rabbits mature, they will create another pair of offspring, and during that time, the older, original pair of rabbits will have created an additional pair of offspring, etc.
  • 7. Uses of Fibonacci numbers Poetry Plants Animals Computer Science Finance
  • 8. Fibonacci and Poetry In English, we tend to think of poetry as lines of text that rhyme, that is, lines that end with similar sounds as in this children's song: Twinkle twinkle little star How I wonder what you are. Also we have the rhythm of the separate sounds (called syllables). Words like twinkle have two syllables: twin- and -kle whereas words such as star have just one. Some syllables are stressed more than others so that they sound louder (such as TWIN- in twinkle), whereas others are unstressed and quieter (such as -kle in twinkle). If we let S stand for a stressed syllable and s an unstressed one, then the stress-pattern of each line of the song or poem has the rhythm SsSsSsS. In Sanskrit poetry syllables are are either long or short. All the syllables in the song above take about the same length of time to say whether they are stressed or not, so all the lines take the same amount of time to say. However cloudy sky has two words and three syllables CLOW-dee SKY, but the first and third syllables are stressed and take a longer to say then the other syllable. Let's assume that long syllables take just twice as long to say as short ones. So we can ask the question: In Sanskrit poetry, if all lines take the same amount of time to say, what combinations of short (S) and long (L) syllables can we have? For one time unit, we have only one short syllable to say: S = 1 way For two time units, we can have two short or one long syllable: SS and L = 2 ways For three units, we can have: SSS, SL or LS = 3 ways Any guesses for lines of 4 time units? Four would seem reasonable - but wrong! It's five! (SSSS, SSL, SLS, LSS and LL) The general answer is that lines that take n time units to say can be formed in Fib(n) ways. This was noticed by Acarya Hemacandra about 1150 AD or 70 years before Fibonacci published his first edition of Liber Abaci in 1202. Prof George Eckel Duckworth's book“Structural patterns and proportions in Virgil's Aeneid: a study in mathematical composition”argues that Virgil consciously used Fibonacci numbers to structure his poetry and so did other Roman poets of the time.
  • 9. Fibonacci and Plants The leaves on this plant are staggered in a spiral pattern to permit optimum exposure to sunlight. If we apply the Golden Ratio to a circle we will see how it is that this plant exhibits Fibonacci qualities.   In the case of tapered pinecones or pineapples, we see a double set of spirals – one going in a clockwise direction and one in the opposite direction. When these spirals are counted, the two sets are found to be adjacent Fibonacci numbers.    Similarly, sunflowers have a Golden Spiral seed arrangement. This provides a biological advantage because it maximizes the number of seeds that can be packed into a seed head.     As well, many flowers have a Fibonacci number of petals. Some, like this rose, also have Fibonacci, or Golden Spiral, petal arrangements.    
  • 10. Fibonacci and Animals The shell of the chambered Nautilus has Golden proportions. It is a logarithmic spiral. The eyes, fins and tail of the dolphin fall at Golden Sections along the body. Humans exhibit Fibonacci characteristics, too. The Golden Ratio is seen in the proportions in the sections of a finger. It is also worthwhile to mention that we have 8 fingers in total, 5 digits on each hand, 3 bones in each finger, 2 bones in 1 thumb, and 1 thumb on each hand. The cochlea of the inner ear forms a Golden Spiral.
  • 11. Fibonacci and Computer Science Computer Scientists like the Fibonacci sequence because it is a good example of something that can be programmed easily using what is known as recursion. Recursion just means you define something using a simpler version of itself: If we write the 5th Fibonacci number (which is 8) as fib(5), the 4th (which is 5) as fib(4) and so on then we can calculate it as: That tells a computer to calculate fib(5) by calculating fib(3) and fib(4) first, both simpler Fibonacci calculations, and then add them together. fib(4) and fib(3) are worked out in the same way using simpler calculations again. We can write this to work for any number (let's call it n) as: That just says that for any number n that is bigger than 1, work out the nth Fibonacci number by first working out the previous two, fib(n-2) and fib(n-1), and adding them. We then just have to say how to do the simple cases you eventually end up at, when n is either 1 or 0: Define fib(n) = fib(n-2) + fib(n-1) if n > 1 Define fib(5) = fib(3) + fib(4) Define fib(n) = fib(n-2) + fib(n-1) if n > 1 | fib(1) = 1 | fib(0) = 1
  • 12. Fibonacci and Finance In finance, Fibonacci retracements is a method of technical analysis for determining support and resistance levels. They are named after their use of the Fibonacci sequence. Fibonacci retracement is based on the idea that markets will retrace a predictable portion of a move, after which they will continue to move in the original direction. The appearance of retracement can be ascribed to ordinary price volatility as described by Burton Malkiel, a Princeton economist in his book A Random Walk Down Wall Street, who found no reliable predictions in technical analysis methods taken as a whole. Malkiel argues that asset prices typically exhibit signs of random walk and that one cannot consistently outperform market averages. Fibonacci retracement is created by taking two extreme points on a chart and dividing the vertical distance by the key Fibonacci ratios. 0.0% is considered to be the start of the retracement, while 100.0% is a complete reversal to the original part of the move. Once these levels are identified, horizontal lines are drawn and used to identify possible support and resistance levels.