1.47 problem 66

Internal problem ID [12464]

Book: DIFFERENTIAL and INTEGRAL CALCULUS. VOL I. by N. PISKUNOV. MIR PUBLISHERS, Moscow 1969.
Section: Chapter 8. Differential equations. Exercises page 595
Problem number: 66.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_Bernoulli]

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

Solution by Maple

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

dsolve(diff(y(x),x)+x*y(x)=x^3*y(x)^3,y(x), singsol=all)
 

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

Solution by Mathematica

Time used: 7.379 (sec). Leaf size: 50

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

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