2.404 problem 981

Internal problem ID [9315]

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

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

\[ \boxed {y^{\prime }-\frac {y^{3} a^{3} x^{3}+3 y^{2} a^{2} x^{2}+3 y a x +1+a^{2} x}{x^{3} a^{3}}=0} \]

Solution by Maple

Time used: 0.0 (sec). Leaf size: 41

dsolve(diff(y(x),x) = (y(x)^3*a^3*x^3+3*y(x)^2*a^2*x^2+3*y(x)*a*x+1+a^2*x)/x^3/a^3,y(x), singsol=all)
 

\begin{align*} y \left (x \right ) &= -\frac {1}{\sqrt {-2 x +c_{1}}}-\frac {1}{a x} \\ y \left (x \right ) &= \frac {1}{\sqrt {-2 x +c_{1}}}-\frac {1}{a x} \\ \end{align*}

Solution by Mathematica

Time used: 0.29 (sec). Leaf size: 61

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

\begin{align*} y(x)\to -\frac {1}{a x}-\frac {1}{\sqrt {-2 x+c_1}} \\ y(x)\to -\frac {1}{a x}+\frac {1}{\sqrt {-2 x+c_1}} \\ y(x)\to -\frac {1}{a x} \\ \end{align*}