If we have a set that is the alphabet, $\{a,b,..y, z\}$ then how many subsets exist that do not contain consecutive letters?
I figured out that a subset of size $1$ has $2$ elements, size $2$ has $3$ elements, size $3$ has $5$ and so on which is the fibonacci sequence.
So far I am trying to prove $S{(n+1)}= S{n}+S({n-1})$ but I am stuck. I am trying to prove it then prove by induction that $S(n)= F({n+2})$ where $F(n)$ is the fibonacci sequence.
Everything you did so far is good! To prove the recurrence, let's consider the example $S(26)$. Consider whether or not the subset has the letter $z$ in it.
If it does have $z$, then it can't have $y$. So the remainder can be any subset of $\{a, b, c, \ldots, x \}$, of which there are $S(24)$ possibilities.
If it does not have $z$, then it can be any subset of $\{a, b, c, \ldots, y\}$, of which there are $S(25)$ possibilities.
Therefore, we have $S(26) = S(25) + S(24)$. The same argument generalizes from $26$ to any $n \ge 2$.