$f(550)$ if $f(11)=1$ and $f(a)f(b)=f(a+b)+f(a-b)$

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$$


We start with $f(11n)f(11)=f(11(n+1))+f(11(n−1))$ for every integer $n$.

and since $f(11)=1$,

$f(11n)=f(11(n+1))+f(11(n−1))$. Let $a_{n} = f(11n)$ and we have the following relation:

$a_{n+1} = a_{n} - a_{n-1}$

From this we get $a_{n+6} = a_{n}$.

Based on this last relation, we can write $f(550)=a_{50} = a_{6.8+2} = a_{2} = f(22)$

But, $f(11)f(11) = f(22)+f(0)$ and then we get $f(22) = 1 - 2 = -1$.

We conclude that $f(550) = -1$. As required!