2.196 problem 772

Internal problem ID [8350]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 1, Additional non-linear first order
Problem number: 772.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [`x=_G(y,y')`]

\[ \boxed {y^{\prime }-\frac {\left (x +1+\ln \left (y\right ) x \right ) \ln \left (y\right ) y}{x \left (x +1\right )}=0} \]

Solution by Maple

Time used: 0.016 (sec). Leaf size: 18

dsolve(diff(y(x),x) = (x+1+ln(y(x))*x)*ln(y(x))*y(x)/x/(x+1),y(x), singsol=all)
 

\[ y \left (x \right ) = {\mathrm e}^{\frac {x}{\ln \left (x +1\right )+c_{1} -x}} \]

Solution by Mathematica

Time used: 0.426 (sec). Leaf size: 26

DSolve[y'[x] == (Log[y[x]]*(1 + x + x*Log[y[x]])*y[x])/(x*(1 + x)),y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to e^{\frac {x}{-x+\log (x+1)+c_1}} \\ y(x)\to 1 \\ \end{align*}