Solving a Very Difficult Fibonacci Sequence!

Ask questions about projects relating to: computer science or pure mathematics (such as probability, statistics, geometry, etc...).

Moderators: kgudger, bfinio, Moderators

Locked
brad15
Posts: 2
Joined: Tue Oct 04, 2011 7:51 pm
Occupation: Student: 10th grade
Project Question: Solving a Very Difficult Fibonacci Sequence!
Project Due Date: October 11, 2011.
Project Status: I am conducting my research

Solving a Very Difficult Fibonacci Sequence!

Post by brad15 »

I need to find the next two numbers in the following sequence.
0,13,13,21,34,55,86,139,216,342,550,898,?,?.

I know that the tens place is following a fibonacci sequence, but I can't figure out the pattern in the ones place. 0,13,13,21,34,55,86,139,216,342,550,898 = 0, 1, 1, 2, 5, 8, 13, 21, 34, 55, 89, 144, 233.

So I know what part of the answer would be for the missing two numbers, but I can't figure out the pattern in the ones place.
So the answer should be something like: 144(?) and 233(?). I'm not sure how to find that last number?

PLEASE HELP ASAP! :D
LeungWilley
Former Expert
Posts: 409
Joined: Mon Jan 12, 2009 11:15 pm
Occupation: Electrical Engineer
Project Question: n/a
Project Due Date: n/a
Project Status: Not applicable

Re: Solving a Very Difficult Fibonacci Sequence!

Post by LeungWilley »

Hi Brad15,
I have to admit that I am stumped. Where are these numbers used in your experiment? Is this some kind of encryption key?
Any hints may help figure this out.
Please let us know.
Thanks!
Willey
vysarge
Former Expert
Posts: 65
Joined: Tue Sep 27, 2011 4:56 pm
Occupation: Student: 12th grade
Project Question: Student volunteer.
Project Due Date: N/a: see above.
Project Status: Not applicable

Re: Solving a Very Difficult Fibonacci Sequence!

Post by vysarge »

Hi Brad15!
I'm not entirely sure how this could be solved, but I have noticed that for the first five/six terms, there are some interesting terms. When I saw that the numbers were all single digits that appeared to be random, my first instinct was to try modular arithmetic (a good introduction to modular arithmetic can be found here.)
When I added the previous two numbers, as in the Fibonacci sequence, and then put the resulting number in mod 5, I ended up with the next number:
0 + 3 mod 5 = 3
3 + 3 mod 5 = 6 mod 5 = 1
3 + 6 mod 5 = 9 mod 5 = 4
But this is where the pattern breaks down. My gut instinct is that this has something to do with the answer, but I'm not sure if it's related.
This is a very interesting problem! I'll keep working on it, and I agree with Willey that a hint on where these numbers are used would help greatly!

Thanks!
Vysarge
-Vysarge

~~~~~~~~~~~~~
Nature uses only the longest threads to weave her patterns, so that each small piece of her fabric reveals the organization of the entire tapestry.
-Richard Feynman
brad15
Posts: 2
Joined: Tue Oct 04, 2011 7:51 pm
Occupation: Student: 10th grade
Project Question: Solving a Very Difficult Fibonacci Sequence!
Project Due Date: October 11, 2011.
Project Status: I am conducting my research

Re: Solving a Very Difficult Fibonacci Sequence!

Post by brad15 »

Hey guys, thanks for your help so far... My project is based on accomplishments of Fibonacci and my teacher created his own sequence that I have to solve.
vysarge
Former Expert
Posts: 65
Joined: Tue Sep 27, 2011 4:56 pm
Occupation: Student: 12th grade
Project Question: Student volunteer.
Project Due Date: N/a: see above.
Project Status: Not applicable

Re: Solving a Very Difficult Fibonacci Sequence!

Post by vysarge »

Hi Brad15,

I'm still working on this and I seem to have hit a wall so far- I wanted to make sure you knew this was still being worked on! :D Do you know anything else about the sequence? Any information would help!

Thanks!
Vysarge
-Vysarge

~~~~~~~~~~~~~
Nature uses only the longest threads to weave her patterns, so that each small piece of her fabric reveals the organization of the entire tapestry.
-Richard Feynman
hhemken
Former Expert
Posts: 266
Joined: Mon Oct 03, 2005 3:16 pm

Re: Solving a Very Difficult Fibonacci Sequence!

Post by hhemken »

Brad15,

Here's a dumb idea, but it might work:

Write a small computer program that randomly generates sequences of instructions (or calls to subroutines within the program). The idea would be for it to generate hundreds of little programs that do the sorts of calculations needed to generate the sequence. The program would know the numbers that are expected, and it checks to see if the random program calculates them correctly. If so, you have a solution to your problem. If not, discard the little program and try the next one. You could limit it to addition, subtraction, multiplication, and division and have it create programs of varying length (you'll need to figure that out).

With a few hours work, if you have some programming experience, you can probably figure it out.


Good luck!
Heinz Hemken
Mentor
Science Buddies Expert Forum
Locked

Return to “Grades 9-12: Math and Computer Science”