74.3.4 problem 3

Internal problem ID [15793]
Book : INTRODUCTORY DIFFERENTIAL EQUATIONS. Martha L. Abell, James P. Braselton. Fourth edition 2014. ElScAe. 2014
Section : Chapter 2. First Order Equations. Exercises 2.1, page 32
Problem number : 3
Date solved : Monday, March 31, 2025 at 01:49:35 PM
CAS classification : [_quadrature]

\begin{align*} y^{\prime }&=y^{{1}/{5}} \end{align*}

With initial conditions

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

Maple. Time used: 0.012 (sec). Leaf size: 5
ode:=diff(y(t),t) = y(t)^(1/5); 
ic:=y(0) = 0; 
dsolve([ode,ic],y(t), singsol=all);
 
\[ y = 0 \]
Mathematica. Time used: 0.004 (sec). Leaf size: 24
ode=D[y[t],t]==y[t]^(1/5); 
ic={y[0]==0}; 
DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
 
\[ y(t)\to \frac {4 \sqrt {2} t^{5/4}}{5 \sqrt [4]{5}} \]
Sympy
from sympy import * 
t = symbols("t") 
y = Function("y") 
ode = Eq(-y(t)**(1/5) + Derivative(y(t), t),0) 
ics = {y(0): 0} 
dsolve(ode,func=y(t),ics=ics)
 
Timed Out