InterviewSolution
Saved Bookmarks
| 1. |
The Fibonnaci sequence is a series of numbers where every next number is a sum of the previous two numbers.It looks like this: 1,1,2,3,5,8What's special about this is that the numbers give rise to a fixed ratio known as the golden ratio.Calculate (8+5)8,(5+3)5,(3+2)3. Can you guess the ratio?1.6 |
|
Answer» The Fibonnaci sequence is a series of numbers where every next number is a sum of the previous two numbers. It looks like this: 1,1,2,3,5,8 What's special about this is that the numbers give rise to a fixed ratio known as the golden ratio. Calculate (8+5)8,(5+3)5,(3+2)3. Can you guess the ratio?
|
|