HP 12C Fibonacci Sequence
|
08-16-2017, 04:38 PM
(This post was last modified: 08-16-2017 05:28 PM by Dieter.)
Post: #3
|
|||
|
|||
RE: HP 12C Fibonacci Sequence
(08-16-2017 05:16 AM)Gamo Wrote: Here is the HP 12C program to find Fibonacci Sequence accurate up to 40 Your program implements an interesting formula that calculates the Fibonacci numbers directly instead of the usual approach with adding the two previous ones. I did not know this before, but it seems to be the Moivre-Binet formula: \[F_n = \frac{1}{\sqrt{5}} \left [ \left ( \frac{1+\sqrt{5}}{2} \right )^n - \left ( \frac{1-\sqrt{5}}{2} \right )^n \right ] \] A straightforward implementation does not require any registers and could be done like this: Code: 01 ENTER (08-16-2017 05:16 AM)Gamo Wrote: Anyone have a better solution? Since for n≥0 the second term is always less than 1/2 it doesn't have to be calculated. Simply round \(\frac{1}{\sqrt{5}} \left (\frac{1+\sqrt{5}}{2} \right )^n\) to the nearest integer. That's what the following program does. Code: 01 ENTER On the 10-digit 12C this also works correctly up to n=40. Above that the results are a bit larger than expected because the 10-digit value of \(\Phi\) is slightly high while \(\sqrt{5}\) in the denominator is slightly low. That's also why the rounding function in the above code does not add 0,5 but 0,3. BTW, using code boxes like this instead of attaching a PDF (which is only available after login) may be the better solution. Dieter |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
HP 12C Fibonacci Sequence - Gamo - 08-16-2017, 05:16 AM
RE: HP 12C Fibonacci Sequence - BartDB - 08-16-2017, 09:06 AM
RE: HP 12C Fibonacci Sequence - Dieter - 08-16-2017 04:38 PM
RE: HP 12C Fibonacci Sequence - joaomario - 02-15-2023, 05:32 PM
RE: HP 12C Fibonacci Sequence - C.Ret - 08-08-2024, 07:40 PM
RE: HP 12C Fibonacci Sequence - Werner - 08-12-2024, 11:59 AM
RE: HP 12C Fibonacci Sequence - C.Ret - 08-12-2024, 07:31 PM
RE: HP 12C Fibonacci Sequence - Thomas Klemm - 08-12-2024, 07:58 PM
|
User(s) browsing this thread: 2 Guest(s)