Let
Hence
Since
But
The singular solution is found by setting
The general solution is when
But this is non-linear in
Which is now linear in
We now need to eliminate
We can either solve for
eq1:=y=-x*( (2+sqrt(1+p^2))/(2*p)); eq2:=x=p/sqrt(1+p^2)*_C1 sol:=solve([eq1,eq2],[p,y],'allsolutions'); [[p = x*RootOf((c__1^2 - x^2)*_Z^2 - 1), y = -(RootOf((c__1^2 - x^2)*_Z^2 - 1)*c__1 + 2)/(2*RootOf((c__1^2 - x^2)*_Z^2 - 1))]]
Now we can use allvalues
map(X->allvalues(X),sol) [[p = x*sqrt(1/(c__1^2 - x^2)), y = -(sqrt(1/(c__1^2 - x^2))*c__1 + 2)/(2*sqrt(1/(c__1^2 - x^2)))], [p = -x*sqrt(1/(c__1^2 - x^2)), y = (-sqrt(1/(c__1^2 - x^2))*c__1 + 2)/(2*sqrt(1/(c__1^2 - x^2)))]]
Hence the solutions are
These are verified valid solutions to the ode (had to use assuming positive)