57.3.3 problem 3

Internal problem ID [9060]
Book : First order enumerated odes
Section : section 3. First order odes solved using Laplace method
Problem number : 3
Date solved : Monday, January 27, 2025 at 05:31:46 PM
CAS classification : [_separable]

\begin{align*} t y^{\prime }+y&=0 \end{align*}

Using Laplace method With initial conditions

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

Solution by Maple

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

dsolve([t*diff(y(t),t)+y(t)=0,y(0) = 0],y(t), singsol=all)
 
\[ y = 0 \]

Solution by Mathematica

Time used: 0.001 (sec). Leaf size: 6

DSolve[{t*D[y[t],t]+y[t]==0,y[0]==0},y[t],t,IncludeSingularSolutions -> True]
 
\[ y(t)\to 0 \]