I've been trying to solve the differential equation: $\frac{f'(x)f'''(x)}{f''(x)} = x$, $x\in \mathbb{R}$
My initial attempt was to integrate by parts, something like this:
$$\int_{}^{} \frac{f'(x)f'''(x)}{f''(x)} dx = \int_{}^{}x dx \Leftrightarrow \\ ln(f''(x))f'(x) - \int_{}^{} \ln(f''(x)) f''(x)dx = \frac{x^2}{2} + C1$$
but I soon came to realize that there was absolutely no way to proceed. Even if I try to reduce it to a second-order nonlinear ODE by letting $u(x) = f'(x)$, I can't seem to solve it by simple integration.
After some trial and error, I managed to figure out that $f(x) = \frac{x^3}{3} + C ,x\in \mathbb{R}$ (as noted by @Vasili) is indeed a solution (if not the only solution) to this differential.
And here I ask you: How do we mathematically prove that $f(x) = \frac{x^3}{3}$ + C is a solution? How do we reach that conclusion without simply making guesses?
Thanks in advance for any insight!
My idea is to assume that $y$ is an $n$-th degree polynomial, which means $$ \deg\left(\frac{y'y'''}{y''}\right) = \deg x \\ \Rightarrow (n-1) + (n-3) - (n-2) = 1 \\ \Rightarrow n = 3 $$ So our $y$ is a 3rd degree polynomial, which means we can write it in this form $$ y = Ax^3 + Bx^2 + Cx + D, A \not = 0 $$ Now what's left to do is to find the coefficients, given that $$ \frac{y'y'''}{y''} = x $$ We can plug in our polynomial expression for $y$ and get $$ 6A\cdot\frac{3Ax^2 + 2Bx + C}{6Ax + 2B} = x \\ \Rightarrow 6A \left(\frac{1}{2}x + \frac{B}{6A} + \frac{C - \frac{B^2}{3A}}{6Ax + 2B}\right) = x \\ \Rightarrow 3Ax + B + \frac{6AC - 2B^2}{6Ax + 2B} = x $$ And from here, it's easy to see that $$ A = \frac{1}{3} \\ B = C = 0 $$ So in conclusion, our solution to this DE is $$ y = \frac{1}{3} x^3 + D $$