Fibonacci
Fibonacci
0, 1, 1, 2, 3, 5,…
BY : GIOVANNI M. NAJE
Introduction to the Fibonacci Sequence
➢ The Fibonacci Sequence is a series of numbers where
each number is the sum of the two preceding ones,
usually starting with 0 and 1.
➢ This sequence was introduced to the Western world by
the Italian mathematician Leonardo of Pisa, known as
Fibonacci, in his book "Liber Abaci" published in 1202.
➢ The sequence appears in various contexts, such as in
nature, art, and mathematics, reflecting patterns of
growth and structure, making it one of the most
famous and intriguing sequences in mathematics.
WHO IS FIBONACCI?
➢ The term "Fibonacci" is
derived from the name of
Leonardo of Pisa, an Italian
mathematician who lived in the
12th and 13th centuries.
➢ "Fibonacci"itself is a nickname
that means "son of Bonacci,"
derived from his father's name,
Guglielmo Bonacci.
"Leonardo": His first name,
commonly used in historical
references.
Solution: Solution:
5th term = 8x-7y x+y
2x-3y
6th term = 13x-12y
3x-2y
7th term = 21x-19y
+ 5x-5y
8x-7y
13x-12y
21x-19y
53x-47y
THE FIBONACCI SEQUENCE USING
RECURSIVE FORMULA:
Where: F1 = F2 = 1
RECURSIVE FORMULA:
(Fn = Fn-2 + Fn-1)
0, 1, 1, 2, 3, 5, 8, 13,….
F0 F1 F2 F3 F4 F5 F6 F7
Example:
Given the recursive formula for the Fibonacci
sequence (Fn = Fn-2 + Fn-1), find the following;
a) F3 b) F4 c) F5 d) F6 e) F7
Solution:
ACTIVITY 1:
Solve the 6th term of the following Fibonacci Sequence by
using the Recursive Formula:
(Fn = Fn-2 + Fn-1)
1) If F0=3 and F1=9
2) If F0=6 and F1=11
3) If F0=5 and F1=9
4) If F0=4 and F1=8
5) If F0=7 and F1=13
ACTIVITY 2: