2

Assume $f$ is a function over $\mathbb{R}$ satisfying $f(x+y)=f(x)+f(y)$ for all $x,y \in \mathbb{R}$. Prove that there is a constant $c$ for which $f(x) = cx$ for all $x \in \mathbb{Q}$.

We know that $f(0) = 0$. Now set $x = n$ and $y=n$ to get $f(2n) = 2f(n)$ where $n$ is a rational number. But doesn't this condition imply all constant functions work? So we must get another condition.

user19405892
  • 15,592

2 Answers2

3

Notice: $$ f\left(\frac{m}{n}\right) = m\cdot f\left(\frac{1}{n}\right) = m\cdot \left( \frac{f(1)}{n}\right) = f(1)\cdot \frac{m}{n} $$ where $f\left(\frac{1}{n}\right) = \frac{f(1)}{n}$ because $$ f\left(\frac{1}{n}\right) = f\left( \frac{n}{n} - \frac{n-1}{n}\right) = f(1) - (n-1)f\left(\frac{1}{n}\right) $$ by the linearity assumption.

Derek Allums
  • 3,121
  • Couldn't we just say that since $c(x+y) = cx+cy$ we know there is a $c$? – user19405892 Apr 09 '16 at 01:45
  • @user19405892 No; you need a constant that depends on a function $f$, where $f$ is any function satisfying the conditions you listed. So, given $f$, find a constant that works. As you've written it, $c$ has not been defined. – Derek Allums Apr 09 '16 at 01:48
  • Why does $f\left(\frac{m}{n}\right) = m\cdot f\left(\frac{1}{n}\right)$? – user19405892 Apr 09 '16 at 01:52
  • By assumption on $f$: $f(m/n)=f(1/n+\cdots+1/n)$ with $m$ summands, so you apply your rule $m$ times to see that it equals $f(1/n)+\cdots+f(1/n)=m\cdot f(1/n)$. – Derek Allums Apr 09 '16 at 01:56
  • Couldn't we also just solve this functional equation to get $f(x) = cx$? Actually, your proof seems to do that since you don't have to assume $m$ and $n$ are integers. – user19405892 Apr 09 '16 at 02:02
  • I'm not sure what you mean by that, but what I've written is essentially a one line proof. It doesn't really get shorter than that. – Derek Allums Apr 09 '16 at 02:06
0

You can demonstrate that for $n\in\mathbb{Z}$, $f(n)=nf(1)$ and $f(1)=nf(\frac1n)$ for $n\ne0$, so that for $x=\frac{p}{q}\in\mathbb{Q}$, $f(x)=\frac{p}{q}f(1)$, so $c=f(1)$.

bgins
  • 7,990