12.4.15 problem 18

Internal problem ID [1622]
Book : Elementary differential equations with boundary value problems. William F. Trench. Brooks/Cole 2001
Section : Chapter 2, First order equations. Existence and Uniqueness of Solutions of Nonlinear Equations. Section 2.3 Page 60
Problem number : 18
Date solved : Monday, January 27, 2025 at 05:14:18 AM
CAS classification : [_separable]

\begin{align*} y^{\prime }&=3 x \left (y-1\right )^{{1}/{3}} \end{align*}

With initial conditions

\begin{align*} y \left (0\right )&=1 \end{align*}

Solution by Maple

Time used: 0.003 (sec). Leaf size: 5

dsolve([diff(y(x),x)=3*x*(y(x)-1)^(1/3),y(0) = 1],y(x), singsol=all)
 
\[ y = 1 \]

Solution by Mathematica

Time used: 0.265 (sec). Leaf size: 19

DSolve[{D[y[x],x]==3*x*(y[x]-1)^(1/3),y[0]==1},y[x],x,IncludeSingularSolutions -> True]
 
\begin{align*} y(x)\to 1 \\ y(x)\to \left (x^2\right )^{3/2}+1 \\ \end{align*}