4.26 problem 15

Internal problem ID [11403]

Book: A First Course in Differential Equations by J. David Logan. Third Edition. Springer-Verlag, NY. 2015.
Section: Chapter 1, First order differential equations. Section 1.3.1 Separable equations. Exercises page 26
Problem number: 15.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_separable]

\[ \boxed {x^{\prime }-6 t \left (x-1\right )^{\frac {2}{3}}=0} \]

Solution by Maple

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

dsolve(diff(x(t),t)=6*t*(x(t)-1)^(2/3),x(t), singsol=all)
 

\[ c_{1} +t^{2}-\left (x \left (t \right )-1\right )^{\frac {1}{3}} = 0 \]

Solution by Mathematica

Time used: 0.298 (sec). Leaf size: 40

DSolve[x'[t]==6*t*(x[t]-1)^(2/3),x[t],t,IncludeSingularSolutions -> True]
 

\begin{align*} x(t)\to t^6+c_1 t^4+\frac {c_1{}^2 t^2}{3}+1+\frac {c_1{}^3}{27} x(t)\to 1 \end{align*}