Trying to obtain an explicit solution of a second order ODE



Hi, all,

I have the following ODE:

assume(C>0);

de: 'diff(y,x,2)=-C*'diff(y,x)^2/y;

ode2 solves it easily:

ode2(de,y,x);

(%o5) (y*%e^(log(y)*C))/(%k1*C+%k1)=x+%k2

I would like to get an explicit solution, in order to check my own explicit
solution found by hand. How can I do that? Thanks,

best regards

deltaquattro