I've wanted to code something. I decided to take up simulating the Fibonacci sequence. Except: I can't understand what I thought is a simple process.
I want to start at the very beginning which from what I see is $(0,1)$.
Well.
$0 + 1 = 1$. I get the sum of the first two numbers $(0 , 1)$ and then the answer (sum again?).
$1 + 1 = 2$...
Isn't the Fibonacci sequence suppose to be $1 , 1 , 2 , 3,$ etc?
I can't get those first two results and I notice that a lot of members are using some very scary symbols like $F_{k + 2} = F_k + F_{k +1}$. I don't understand how to move forward and I'm embarrassed to ask this in real life.
Can someone explain this without the symbols?
Each member of the Fibonacci sequence is the sum of the previous two members. There are two standard ways of starting the sequence - you might start with $0$ and $1$, or with $1$ and $1$.
Starting with $0$ and $1$, we have $0 + 1 = 1$; so the third member of our sequence is also $1$ and our sequence so far is $0,1,1$. $1+1 = 2$, so we now have $0,1,1,2$. $1+2=3$, so we have $0,1,1,2,3$. $2+3=5$, so we have $0,1,1,2,3,5$; and so on.
If you start with $1$ and $1$, you're just starting one step later, so you get $1,1,2,3,5,\ldots$, which is the version you've seen. Whether the Fibonacci sequence is "supposed" to start with $0$ or with $1$ is really just a matter of taste.