I have data (x, y) which I believe is generated by a differential equation of the following form:
$$A\frac{d^2y}{dx^2}+B(\frac{dy}{dx})^{C}+D=0$$
I can estimate the initial values, so given $A$, $B$, $C$, and $D$, I can numerically integrate this with RK4 very easily, but in my case I'm trying to regress the coefficients given a dataset (x, y). The solutions to this question almost meet my needs, but I'm hitting difficulties here due to the exponent on the first derivative.
I would strongly prefer to avoid blackbox methods like L-BFGS, but I can employ exhaustive search over one of the parameters (such as the exponent $C$), if knowing that parameter would simplify the rest of the problem. Any ideas, perhaps a convenient u-substitution?