Let $x \in \mathbb{R}$. We wish to show that $f(x\lambda) = f(x)\lambda$ for any $\lambda \in \mathbb{R}$. We will split the proof into cases.
Case 1: Integers
We will proceed by induction. The base case is quick: $f(x1) = f(x)1$ since both equal $f(x)$.
Now, assume that $f(xn) = f(x)n$ for some $n \in \mathbb{Z}$. We will show the result holds for both $n+1$ and $n-1$, abbreviated as $n \pm 1$:
\begin{align}
f\big( x(n \pm 1) \big) &= f(xn \pm x1)\\
&= f(xn) \pm f(x1)\\
&= f(x)n \pm f(x)1 \text{ (by induction hypothesis)}\\
&= f(x)(n \pm 1).
\end{align}
Case 2: Rationals
Let $\frac{n}{d}$ be a rational number, where $n, d \in \mathbb{Z}$ and $d \neq 0$. Set
$$w = f\left(x \cdot \frac{n}{d}\right).$$
Multiplying both sides by $d$ yields
$$wd = f\left(x \cdot \frac{n}{d}\right) d.$$
Since $d$ is an integer, we may apply case 1 twice:
\begin{align}
wd &= f\left(x \cdot \frac{n}{d} \cdot d\right)\\
&= f(xn)\\
&= f(x)n.
\end{align}
Dividing both sides by $d$ and expanding the definition of $w$ yields
$$ f\left(x \cdot \frac{n}{d}\right) = f(x) \cdot \frac{n}{d},$$
which is the desired result.
Case 3: Reals
Until now, we have not used the continuity of $f$. That is about to change.
Let $\lambda$ be any real number. By the density of $\mathbb{Q}$ in $\mathbb{R}$, there is a sequence of rationals $(\lambda_k : k \in \mathbb{N})$ converging to $\lambda$.
By case 2, for each $k \in \mathbb{N}$ we have:
\begin{align}
f(x \lambda_k) &= f(x) \lambda_k.\\
\end{align}
Passing to the limit yields
$$\lim_{k}{f(x \lambda_k)} = \lim_{k}{f(x)\lambda_k}.$$
The continuity of $f$ (and of multiplication) allows us to interchange the limit:
\begin{align}
f\left(\lim_k{x \lambda_k}\right) &= \lim_{k}{f(x)} \lim_{k}{\lambda_k};\\
f(x \lambda) &= f(x) \lambda.
\end{align}
This completes the proof.
(i) $T$ is continuous (ii) $T(cv)=cT(v)$ for any $c\in \mathbb{R}$, $v\in\mathbb{R}^m$ (iii) $T(v+w)=T(v)+T(w)$ for any $v,w\in\mathbb{R}^m$. This question shows (i) and (iii) imply (ii). It's easy to show (ii) and (iii) implies (i). My question: do (i) and (ii) imply (iii)?
– math.nb Jan 29 '16 at 21:06