How to calculate Fibonacci's numbers?
Fn = Fn-1 + Fn-2
F0 = 0
F1 = 1
This formula has a very neat form, which is easy to understand and proves simple to calculate small Fibonacci numbers.
Fn = ((1 + √5 )n - (1 - √5 )n) / (2n √5)
This formula is good for calculating really big Fibonacci numbers, yet is totally non-intuitive and one has some trouble before he understands what series is being calculated by it.
Result of both equations is the same, but underlying method differs. One is intuitive, the other is fast.