$f:\Bbb Z\to\Bbb Z$ is such that $f(11)=1$ and $f(a)f(b)=f(a+b)+f(a-b)$ for all integers $a,b$. What is $f(550)$?
I've first set $f(11)f(0)=2f(11)$, which yields $f(0)=0,2$. Yet I know that 0 won't work because that was a hint. I've also heard that there was a pattern.
The answer is supposed to be $-1$, but I don't know how to get there.
Notice that
$$f(11n)f(11) = f(11(n +1)) + f(11(n-1))$$
and since $f(11) = 1$,
$$f(11n) = f(11(n+1)) + f(11(n-1))$$
Define $a_n = f(11n)$ and we can set up a recurrence relation
$$a_n = a_{n+1} + a_{n-1}$$
or
$$a_{n+1} = a_n - a_{n-1}$$
which resolves periodically to
$$a_{n+3} = - a_n\implies a_{n+6} = a_n$$
Now, note that
$$\begin{align}a_{50} &= a_{8\cdot6 + 2}\\&=a_2\end{align}$$
Then, $$f(11)f(11) = f(22) + f(0)$$ $$1 = f(22) +2$$ $$f(22) = -1$$ so $$a_{50} = a_{2} = f(22) = -1$$