1.28 problem 28

Internal problem ID [1897]

Book: Differential Equations by Alfred L. Nelson, Karl W. Folley, Max Coral. 3rd ed. DC heath. Boston. 1964
Section: Exercise 5, page 21
Problem number: 28.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_rational, _Abel]

\[ \boxed {3 y^{\prime } x -y^{3}-2 y=-x^{2}} \] With initial conditions \begin {align*} [y \left (1\right ) = 1] \end {align*}

Solution by Maple

Time used: 0.031 (sec). Leaf size: 7

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

\[ y \left (x \right ) = x^{\frac {2}{3}} \]

Solution by Mathematica

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

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

{}