2

A certain function $f$ satisfies $f(x + y) = f(x) + f(y) + xy$ for all real numbers $x$ and $y$, and it is known that $f(4) = 10$. Then $f(n+1) − f(n)$ is equal to:

How do we solve this?

Jean Marie
  • 81,803
user408113
  • 211
  • 3
  • 12

2 Answers2

3

$f(2)=3$ by the substitution $x=y=2$. Then $f(1)=1$, by the substitution $x=y=1$. Then, $f(n+1)-f(n)=f(1)+1\cdot n=1+n$.

Leo163
  • 2,647
2

$f(4)=f(2)+f(2)+4=(f(1)+f(1)+1)+(f(1)+f(1)+1)+4=4f(1)+6=10$ so $f(1)=1$ and $f(n+1)=f(n)+f(1)+n$ thus $f(n+1)-f(n)=1+n$.

Nosrati
  • 29,995