5 EXAMPLES OF
FIBONACCI
SEQUENCE
Question 1: Find the next number in the fibonacci series 0, 1, 1, 2, 3, 5, 8,
13,...... ?
Solution:
The fibonacci formula is given as,
Fn = Fn-1 + Fn-2
F9 = F8 + F7
F9 = 13 + 8
F9 = 21
Question 2: Find the next number in the fibonacci series 0, 1, 1, 2, 3, 5, 8,
13, 21, 34, 55,...... ?
Solution:
The fibonacci formula is given as,
Fn = Fn-1 + Fn-2
F12 = F11 + F10
F12 = 55 + 34
F12 = 89
Question 3: Find the next number in the fibonacci series 0, 1, 1, 2, 3, 5, 8,
13, 21, 34, 55, 89, 144...... ?
Solution:
The fibonacci formula is given as,
Fn = Fn-1 + Fn-2
F14 = F12 + F13
F14 = 89 + 144
F14 = 233
Question 4: Find the next number in the fibonacci series 0, 1, 1, 2, 3,
5,...... ?
Solution:
The fibonacci formula is given as,
Fn = Fn-1 + Fn-2
F6 = F4 + F5
F6 = 2 + 3
F6 = 5
Question 5: Find the next number in the fibonacci series 0, 1, 1, 2, 3, 5, 8,
13, 21, 34, 55, 89, 144, 233,...... ?
Solution:
The fibonacci formula is given as,
Fn = Fn-1 + Fn-2
F15 = F13 + F14
F15 = 144 + 233
F15 = 377