80.3.12 problem 12

Internal problem ID [21176]
Book : A Textbook on Ordinary Differential Equations by Shair Ahmad and Antonio Ambrosetti. Second edition. ISBN 978-3-319-16407-6. Springer 2015
Section : Chapter 3. First order nonlinear differential equations. Excercise 3.7 at page 67
Problem number : 12
Date solved : Thursday, October 02, 2025 at 07:15:36 PM
CAS classification : [_separable]

\begin{align*} x^{\prime }&=5 t \sqrt {x} \end{align*}

With initial conditions

\begin{align*} x \left (0\right )&=1 \\ \end{align*}
Maple. Time used: 0.055 (sec). Leaf size: 15
ode:=diff(x(t),t) = 5*t*x(t)^(1/2); 
ic:=[x(0) = 1]; 
dsolve([ode,op(ic)],x(t), singsol=all);
 
\[ x = \frac {\left (5 t^{2}+4\right )^{2}}{16} \]
Mathematica. Time used: 0.107 (sec). Leaf size: 35
ode=D[x[t],t]==5*t*Sqrt[x[t]]; 
ic={x[0]==1}; 
DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
 
\begin{align*} x(t)&\to \frac {1}{16} \left (4-5 t^2\right )^2\\ x(t)&\to \frac {1}{16} \left (5 t^2+4\right )^2 \end{align*}
Sympy
from sympy import * 
t = symbols("t") 
x = Function("x") 
ode = Eq(-5*t*sqrt(x(t)) + Derivative(x(t), t),0) 
ics = {x(0): 1} 
dsolve(ode,func=x(t),ics=ics)
 
NotImplementedError : Initial conditions produced too many solutions for constants