I am reading a book of algorithms by S. DasGupta. Below is a fragment of text from text on the number of bits required for the nth Fibonacci number.
It makes sense to consider the add-on as one computer step if numbers are added, 32-bit numbers say. But the n-th Fibonacci number is about 0.694n bits, and this can significantly exceed 32 as n grows. arithmetic operations on arbitrarily large numbers cannot be performed in a single, constant step.
My question, for example, is for the Fibonacci number F1 = 1, F2 = 1, F3 = 2, etc. then substituting "n" in the above formula, i.e. 0.694 n for F1 is approximately 1, F2 is approximately 2 bits, but for F3, etc. The above formula fails. I think I did not understand what the author means here, can someone help me in understanding this?
thank
source
share