ti-84 Fibonacci
Name:
Anonymous
2010-06-16 18:31
i want to make a program that tells you the next number in the Fibonacci sequence and i cant seem to find a good equasion
Name:
Anonymous
2010-06-16 18:31
Read SICP
Name:
Anonymous
2010-06-16 18:33
what?
Name:
Anonymous
2010-06-16 18:34
Read your calculator's manual. It should not have yellowed too much to be illegible, and should still have most of its bindings.
Name:
Anonymous
2010-06-16 18:35
thats what i dont have i just program it when i have free time in class
Name:
Anonymous
2010-06-16 18:42
>>4
Did we ever decide if glue counts as bindings? Because mine is just glued.
Name:
Anonymous
2010-06-16 18:44
If the Fibonacci equa[o]s[/]ion isn't good enough, what is?
Name:
Anonymous
2010-06-16 18:45
((1/2 (1+sqrt(5)))^n-(2/(1+sqrt(5)))^n cos(pi n))/sqrt(5)
do you think that will work
Name:
Anonymous
2010-06-16 18:46
>>7
I'd use less punctuation if I wanted to get to OP. I bet he looks at the funny ,s and 's in your post and doesn't know what that noise is.
Name:
Anonymous
2010-06-16 18:50
>>1
nextFib(n) = n*φ
φ = phi = the golden ratio.
Name:
Anonymous
2010-06-16 19:01
>>8
Thank you for leaving out my
BBcode insufficiencies.
Name:
Anonymous
2010-06-16 19:02
>>11
s/8/9/
I kew something would go wrong.
Name:
Anonymous
2010-06-16 19:36
fib(n) = fib(n-1) + fib(n-2)
recursion motherfucker
Name:
Anonymous
2010-06-16 19:42
>>13
Forgot your terminating case, motherfucker.
Name:
Anonymous
2010-06-16 19:47
Name:
Anonymous
2010-06-16 19:49
Name:
Anonymous
2010-06-16 20:01
1->A
0->B
0->X
Prompt N
For(K,1,N)
A+B->X
A->B
X->A
End
Disp X
Name:
Anonymous
2010-06-16 20:03
TI-BASIC EXPERT SINCE BIRTH
Name:
Anonymous
2010-06-17 1:28
Name:
Anonymous
2010-09-11 10:56
1->A
0->B
0->X
Prompt N
For(K,1,N)
A+B->X
A->B
X->A
End
Disp X
is not giving the right number to the position
Name:
Anonymous
2010-09-11 11:00
Use Binet's formula
Name:
Anonymous
2010-09-11 11:34
Name:
Anonymous
2010-09-11 11:36
Name:
Anonymous
2010-09-12 7:50
>>20
OP wanted the ``next number'' in the fibonacci sequence.
That was my best interpretation.
Name:
Anonymous
2011-02-03 7:31