1

Let $f$ be a real function such that, for $x,y\in \mathbb{R}$ $$f(x+y)=f(x)+f(y)$$ Prove that

(a) $f(0)=0$

(b) $f(n)=nf(1)$

I have no clue how to prove this, would anyone give me some primer to start with?

kingW3
  • 13,496
DSL
  • 1,359

3 Answers3

1

Here some primers:

For (a), plug in $x=y=0$ into your equation.

For (b), plug in $x=y=1$, then $y=2,y=1$ and use the first case, e.t.c and try to find a pattern inductively.

flawr
  • 16,533
  • 5
  • 41
  • 66
0

Since $f(1)=f(0)+f(1)$, $f(0)=0$.

Then assuming $f(n-1)=(n-1)f(1)$, we have $f(n)=f(1)+f(n-1)=nf(1)$.

pancini
  • 19,216
0

For part a) $f(0)=f(0)+f(0)=2f(0)$. If $f(0)=2f(0)$, then $f(0)=0$.

For part b)

We have that $f(2)=f(1+1)=f(1)+f(1)=2f(1)$

We have that $f(3)=f(2)+f(1)=2f(1)+f(1)=3f(1)$

Using induction, if $f(n)=nf(1)$, then $f(n+1)=f(n)+f(1)=nf(1)+f(1)=(n+1)f(1)$.

We also have $f(0)=f(1)+f(-1)$, so $f(-1)=-f(1)$.

We have $f(-1)=f(1)+f(-2)$, so $f(-2)=-f(1)-f(1)=-2f(1)$.

Then, if $f(-n)=-nf(1)$, then $f(-n-1)=f(-n)+f(-1)=-nf(1)-f(1)=(-n-1)f(1)$

  • It's unclear from the question whether $n$ is meant to be a natural number, or an arbitrary integer - but in the latter case, you need another argument to show the equation is valid for $n$ negative. (e.g. $f(n) + f(-n) = f(0) = 0$.) – Daniel Schepler Jun 18 '17 at 22:52
  • alright, thanks. @DanielSchepler – Saketh Malyala Jun 18 '17 at 22:56