I have the following equation:
$$\frac{f(x)}{f'(x)}\left(f(x) + \frac{1+(f'(x))^2}{f''(x)}\right) = c$$
where $c$ is a constant $> 0$.
Mathematica handles this well and I'm able to plot it just fine using NDSolve, but only when $c = 0$. For any other value of $c$, I get errors and the plot comes out all wrong.
Can anyone help me here?
Edit
An example of the code I used for NDSolve was:
s =
NDSolve[
{y[x]/y'[x] * (y[x] + (1+(y'[x])^2)/y''[x]) == 1, y[0] == 10, y'[0] == 0},
y, {x, -0.5, 0.5}]

NDSolve[]code you used so people don't have to retype things for you? – J. M.'s missing motivation Mar 31 '19 at 01:44