2.234 problem 810

Internal problem ID [8390]

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

CAS Maple gives this as type [[_1st_order, _with_symmetry_[F(x),G(x)]], _Riccati]

Solve \begin {gather*} \boxed {y^{\prime }-\frac {x +y+y^{2}-2 \ln \relax (x ) y x +\ln \relax (x )^{2} x^{2}}{x}=0} \end {gather*}

Solution by Maple

Time used: 0.003 (sec). Leaf size: 16

dsolve(diff(y(x),x) = (x+y(x)+y(x)^2-2*y(x)*ln(x)*x+x^2*ln(x)^2)/x,y(x), singsol=all)
 

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

Solution by Mathematica

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

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

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