I'm stuck on a question that was given to me on a list of problems. It's to do with the fibonacci sequence such that if I have the $a=f(n)$ and $b=f(n+1)$ of a sequence that is a fibonacci sequence, find the 1st and 2nd term of that sequence. I'm not given the value of $n$.
Initially I thought that perhaps using a generalisation formula could be used to find n, and then extrapolation the answer from there but honestly I'm stuck where to even begin. I'm using python to program the solution
If you're not given any information on the starting values or $n$, it's impossible to extrapolate what term of the sequence you're in.
For example, suppose you're given $(50, 85)$. Who's to say that these aren't the starting terms? The starting terms could have also been $(35, 50)$, or $(15, 35)$, or whatever else. All of these answers are equally valid without further exposition.