Finding $f(2020)$ given that $f(n+m) + f(n-m) = f(3n)$

116 Views Asked by At

Assume we have a function $f$ such that $\mathbb Z^{0+} \rightarrow R,$ and $f(n+m) + f(n-m) = f(3n).$ If $n,m \in \mathbb Z^{0+},$ find $f(2020).$


My immediate thought process for this was to substitute small values of $n$ and $m$ in order to try and find $f(2020),$ but I realized that $\frac{2020}{3}$ wasn't an integer and therefore I couldn't just substitute in $n = \frac{2020}{3}.$ Are there any other ways to begin on this problem?

1

There are 1 best solutions below

0
On BEST ANSWER

For any $n \ge 1$, we have $$ f(n+1) + f(n-1) = f(3n) = f(n) + f(n) $$ and therefore $f(n+1) = 2f(n) - f(n-1)$. This is a two-term linear recurrence to which all solutions have the form $f(n) = an + b$. Substituting this into the functional equation gives us $$ 2an + 2b = 3an + b \implies an = b $$ which can only hold for all $n$ if $a=b=0$. Therefore $f(2020)=0$ as well.