Miles to kilometers
The number of kilometers in a mile is k = 1.609344 which is close to the golden ratio = 1.6180334.
The ratio of consecutive Fibonacci numbers converges to , and so you can approximately convert miles to kilometers by multiplying by a Fibonacci number and dividing by the previous Fibonacci number. For example, you could multiply by 8 and divide by 5, or you could multiply by 13 and divide by 8.
As you start going down the Fibonacci sequence, consecutive ratios get closer to k and closer to . But since the ratios converge to , at some point the ratios get closer to and further from k. That means there's an optimal Fibonacci ratio for converting miles to kilometers.
I was curious what this optimal ratio is, and it turns out to be 21/13. There we have
|k - 21/13| = 0.0060406
and so the error in the approximation is 0.375%. The error is about a third smaller than using as the conversion factor.
The Lucas numbers satisfy the same recurrence relation as the Fibonacci numbers, but start with L0 = 2 and L1 = 1. The ratio of consecutive Lucas numbers also converges to , and so you could also use Lucas numbers to convert miles to kilometers.
There is an optimal Lucas ratio for converting miles to kilometers for the same reasons there is an optimal Fibonacci ratio. That ratio turns out to be 29/18, and
|k - 29/18| = 0.001767
which is about 4 times more accurate than the best Fibonacci ratio.
The post Miles to kilometers first appeared on John D. Cook.