60.7.35 problem 1625 (6.35)

Internal problem ID [11624]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 6, non-linear second order
Problem number : 1625 (6.35)
Date solved : Monday, January 27, 2025 at 11:27:46 PM
CAS classification : [NONE]

\begin{align*} y^{\prime \prime }+\left (y-\frac {3 f^{\prime }\left (x \right )}{2 f \left (x \right )}\right ) y^{\prime }-y^{3}-\frac {f^{\prime }\left (x \right ) y^{2}}{2 f \left (x \right )}+\frac {\left (f \left (x \right )+\frac {{f^{\prime }\left (x \right )}^{2}}{f \left (x \right )^{2}}-f^{\prime \prime }\left (x \right )\right ) y}{2 f \left (x \right )}&=0 \end{align*}

Solution by Maple

dsolve(diff(diff(y(x),x),x)+(y(x)-3/2*diff(f(x),x)/f(x))*diff(y(x),x)-y(x)^3-1/2*diff(f(x),x)/f(x)*y(x)^2+1/2*(f(x)+diff(f(x),x)^2/f(x)^2-diff(diff(f(x),x),x))/f(x)*y(x)=0,y(x), singsol=all)
 
\[ \text {No solution found} \]

Solution by Mathematica

Time used: 0.000 (sec). Leaf size: 0

DSolve[-y[x]^3 - (y[x]^2*Derivative[1][f][x])/(2*f[x]) + (y[x] - (3*Derivative[1][f][x])/(2*f[x]))*D[y[x],x] + y[x]*(f[x] + Derivative[1][f][x]^2/f[x]^2 - Derivative[2][f][x]/(2*f[x])) + D[y[x],{x,2}] == 0,y[x],x,IncludeSingularSolutions -> True]
 

Not solved