8.38 problem 38

Internal problem ID [14440]

Book: INTRODUCTORY DIFFERENTIAL EQUATIONS. Martha L. Abell, James P. Braselton. Fourth edition 2014. ElScAe. 2014
Section: Chapter 2. First Order Equations. Review exercises, page 80
Problem number: 38.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_Chini]

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

Solution by Maple

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

\[ \text {No solution found} \]

Solution by Mathematica

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

DSolve[{y'[x]==x+y[x]^(1/3),{y[1]==1}},y[x],x,IncludeSingularSolutions -> True]
 

Not solved