0

After some calculations, I came up with this functional equation: $f(x-1)+f(x+1)=2f(x)$. I found linear function is one possible answer, but don't know how to derive it.

I don't know much about the techniques to solve this kind of equation. Can anyone help?

Edited: $f$ is a probability function, that is $0 \leq f \leq 1$, and $f$ is continuous.

2 Answers2

3

You have $f(x+1)-f(x)=f(x)-f(x-1)$ and so $f(x+2)-f(x+1)$ is equal to the same value, and similarly $$f(x+n) - f(x+n-1)=f(x)-f(x-1)$$ for all integer $n$. This gives $$f(x+n) = (n+1)f(x)-nf(x-1)=n(f(x)-f(x-1)) + f(x)$$ which is linear in integer $n$, though not necessarily linear in real $x$.

If you fix the values of $f(y)$ on $[-1,1)$ then you can give a general solution using rounding and $$f(y) = \lfloor y \rfloor\left(f(y-\lfloor y \rfloor)- f(y-\lfloor y \rfloor-1)\right) + f(y-\lfloor y \rfloor)$$

Henry
  • 157,058
1

Hint: $f$ is completely determined by its values on $[0,2)$. Use recursion to solve for $f$ given its values on $[0,2)$.

Batominovski
  • 49,629
  • Thanks, but I don't really get your hint. Can you elaborate more? – mathstud Jun 15 '16 at 11:23
  • With the given constraints, $f$ must be identical on $[0,1)$ and $[1,2)$. –  Jun 15 '16 at 12:40
  • That is an obvious conclusion from the extra conditions the OP has included. My answer is a hint, not a solution. The OP should take his own time to arrive at this result on his own. – Batominovski Jun 15 '16 at 13:24