3

Let $f$: $\mathbb R$ $\to$ $\mathbb R$ be a function such that $f(x+y)$ = $f(x)f(y)$ for all $x,y$ $\in$ $\mathbb R$. Suppose that $f'(0)$ exists. Prove that $f$ is a differentiable function.

This is what I've tried: Using the definition of differentiability and taking arbitrary $x_0$ $\in$ $\mathbb R$.

$\lim_{h\to 0}$ ${f(x_0 + h)-f(x_0)\over h}$ $=$ $\cdots$ $=$ $f(x_0)$$\lim_{h\to 0}$ ${f(h) - 1\over h}$.

Then since $x_0$ arbitrary, using $f(x_0+0) = f(x_0) = f(x_0)f(0)$ for $y = 0$, can I finish the proof?

Kevin
  • 393
  • What does $f$ differentiable at $x=0$ tell you (in terms of a limit)? – Fabian Dec 01 '15 at 13:06
  • Also: what is $f(1)$? Once you answer this and Fabian's question, you'll be done. – John Hughes Dec 01 '15 at 13:09
  • It means that $f'(0)$ exists and is equal to $\lim_{h\to 0}$ ${f(0+h) - f(0)\over h}$ @Fabian – Kevin Dec 01 '15 at 13:09
  • One small thing: It is not necessarily the case that $f(0) = 1$. – Daniel Fischer Dec 01 '15 at 13:09
  • See also http://math.stackexchange.com/questions/175607/differentiable-function-not-constant-fxy-fxfy-f0-2, http://math.stackexchange.com/questions/259936/prove-that-f-exists-for-all-x-in-r-if-fxy-fxfy-and-f0-exist and http://math.stackexchange.com/questions/380768/functional-equation-fxy-fxfy-and-differentiability – Martin Sleziak Dec 01 '15 at 13:12

2 Answers2

3

Yes, since $f(0) = f(0 +0) = f(0)^2$, it follows that either $f(0) = 1$ or $f(0) = 0$. If $f(0) = 0$, then again use the defining property to conclude that $f$ is identically zero. Hence if $f\neq 0$, then $f(0) = 1$, and the limit you have at the end of your equalities is $$ \lim_{h\to 0} \frac{f(h) -1}{h} = f'(0) $$ Hence the function is differentiable at $x_0$ with $f'(x_0) = f(x_0)f'(0)$.

1

By assumption $$ \lim_{h \to 0}\frac{f(h) - f(0)}{h} = f(0)\lim_{h \to 0}\frac{f(h) - 1}{h} $$ exists, implying $$ l := \lim_{h \to 0}\frac{f(h)-1}{h} $$ exists; hence, if $x \in \Bbb{R}$, then $$ \frac{f(x+h) - f(x)}{h} = \frac{f(x)[f(h) - 1]}{h} \to f(x)l $$ as $h \to 0$.

Yes
  • 20,719