1.49 problem 49

Internal problem ID [6339]

Book: Own collection of miscellaneous problems
Section: section 1.0
Problem number: 49.
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_Emden, _Fowler]]

\[ \boxed {t^{2} y^{\prime \prime }-3 t y^{\prime }+5 y=0} \]

Solution by Maple

Time used: 0.016 (sec). Leaf size: 21

dsolve(t^2*diff(y(t),t$2)-3*t*diff(y(t),t)+5*y(t)=0,y(t), singsol=all)
 

\[ y \left (t \right ) = c_{1} t^{2} \sin \left (\ln \left (t \right )\right )+c_{2} t^{2} \cos \left (\ln \left (t \right )\right ) \]

Solution by Mathematica

Time used: 0.008 (sec). Leaf size: 22

DSolve[t^2*y''[t]-3*t*y'[t]+5*y[t]==0,y[t],t,IncludeSingularSolutions -> True]
 

\begin{align*} y(t)\to t^2 (c_2 \cos (\log (t))+c_1 \sin (\log (t))) \\ \end{align*}