2.398 problem 974

Internal problem ID [8552]

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

CAS Maple gives this as type [[_1st_order, _with_linear_symmetries], _Abel]

\[ \boxed {y^{\prime }-y^{3}+3 x^{2} y^{2}-3 x^{4} y+x^{6}-2 x=0} \]

Solution by Maple

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

dsolve(diff(y(x),x) = y(x)^3-3*x^2*y(x)^2+3*y(x)*x^4-x^6+2*x,y(x), singsol=all)
 

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

Solution by Mathematica

Time used: 0.205 (sec). Leaf size: 46

DSolve[y'[x] == 2*x - x^6 + 3*x^4*y[x] - 3*x^2*y[x]^2 + y[x]^3,y[x],x,IncludeSingularSolutions -> True]
 

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