2

Find $f(x)$ for a function $f: R \to R$, which satisfies condition $f(x+y^{3}) = f(x) + [f(y)]^{3}$ for all $x,y \in R$ and $f'(0)≥0$

My attempt:

Replacing $x$ and $y$ by $0$, $f(0)=0$

Replacing only x by $0$, $ f(y^{3}) = [f(y)]^{3}$

So $f'(x) = \lim_{h \to 0} \frac{f(x+h)-f(x)}{h} $

$= \lim_{h \to 0} \frac{f(x) + [f(h^{1/3})]^{3} - f(x)}{h}$

$= \lim_{h \to 0} \frac{f(h)}{h}$

= $f'(0)$

Then I'm stuck.

How to proceed$?$

Mathaddict
  • 2,300
  • 1
    from what you have, it follows that $f''(x) \equiv 0$, so $f$ is a linear function. now just write $f(x) = ax+b$ and see what values of $a,b$ work, by plugging into original equation. you should just get $(a,b) = (1,0),(-1,0),(0,0)$. You rule out the second from $f'(0) \ge 0$. – mathworker21 Aug 27 '19 at 04:52
  • This post may be of interest: https://math.stackexchange.com/questions/2850534/solutions-of-fxyn-fxfyn – Kavi Rama Murthy Aug 27 '19 at 05:31

1 Answers1

5

What you've shown so far is that $f'(x)$ is a constant, since $f'(x) = f'(0)$. And we know that $f(0) = 0$. This means that your solution is going to be something in the form $f(x) = ax$ for a non-negative constant $a$ (since you've specified that $f'(x) \geq 0$).

So what constants work? Well, we know that $f(x^3) = ax^3 = f(x)^3 = a^3x^3$. Cancel out the $x^3$ (since this must hold for any $x$, we can just pick whatever $x \neq 0$ we like) and you're left with $a = a^3$.

This equation has only two non-negative solutions: $a=0$ and $a=1$. These correspond to the functions $f(x) = 0$ and $f(x) = x$, respectively.

(There is of course a third option if you remove the $f'(x) \geq 0$ constraint, namely, $f(x) = -x$. Whoever wrote the question wanted to exclude this one specifically, for whatever unknown reason.)

Draconis
  • 1,443