56.1.53 problem 53

Internal problem ID [8765]
Book : Own collection of miscellaneous problems
Section : section 1.0
Problem number : 53
Date solved : Sunday, March 30, 2025 at 01:30:45 PM
CAS classification : [[_Emden, _Fowler], [_2nd_order, _linear, `_with_symmetry_[0,F(x)]`]]

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

Maple. Time used: 0.001 (sec). Leaf size: 17
ode:=t*diff(diff(y(t),t),t)-diff(y(t),t)+4*t^3*y(t) = 0; 
dsolve(ode,y(t), singsol=all);
 
\[ y = c_1 \sin \left (t^{2}\right )+c_2 \cos \left (t^{2}\right ) \]
Mathematica. Time used: 0.02 (sec). Leaf size: 20
ode=t*D[y[t],{t,2}]-D[y[t],t]+4*t^3*y[t]==0; 
ic={}; 
DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
 
\[ y(t)\to c_1 \cos \left (t^2\right )+c_2 \sin \left (t^2\right ) \]
Sympy. Time used: 0.164 (sec). Leaf size: 20
from sympy import * 
t = symbols("t") 
y = Function("y") 
ode = Eq(4*t**3*y(t) + t*Derivative(y(t), (t, 2)) - Derivative(y(t), t),0) 
ics = {} 
dsolve(ode,func=y(t),ics=ics)
 
\[ y{\left (t \right )} = t \left (C_{1} J_{\frac {1}{2}}\left (t^{2}\right ) + C_{2} Y_{\frac {1}{2}}\left (t^{2}\right )\right ) \]