How would the Fibonacci's closed form code look like in haskell?

|
|
Trivially, Binet's formula, from the Haskell wiki page is given in Haskell as:
Which includes sharing of the result of the square root. For example:
For arbitrary integers, you'll need to be a bit more careful about the conversion to floating point values. Note that Binet's value differs from the recursive formula by quite a bit at this point:
You may need more precision :-) |
||||
|
|
|
Here's a straightforward translation of the formula to Haskell:
This gives correct values only up to However, we can avoid floating-point arithmetic by working with numbers of the form
We get exponentiation for free since it is implemented in terms of the
This gives an exact answer. Daniel Fischer points out that we can use the formula
|
|||||||||||||||||||||
|