2.412 problem 988

Internal problem ID [8568]

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

CAS Maple gives this as type [[_homogeneous, class D], _Riccati]

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

Solution by Maple

Time used: 0.015 (sec). Leaf size: 29

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

\[ y \relax (x ) = \frac {x \left (\sqrt {2}+2 \tanh \left (\left (\int F \relax (x ) x d x +c_{1}\right ) \sqrt {2}\right )\right ) \sqrt {2}}{2} \]

Solution by Mathematica

Time used: 17.62 (sec). Leaf size: 66

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

\begin{align*} y(x)\to x-\sqrt {2} x \tanh \left (\sqrt {2} \left (\int _1^x-F(K[1]) K[1]dK[1]+c_1\right )\right ) \\ y(x)\to \left (1+\sqrt {2}\right ) x \\ y(x)\to x-\sqrt {2} x \\ \end{align*}