53.1.14 problem 14

Internal problem ID [10486]
Book : Collection of Kovacic problems
Section : section 1
Problem number : 14
Date solved : Tuesday, September 30, 2025 at 07:28:00 PM
CAS classification : [_Laguerre]

\begin{align*} t y^{\prime \prime }-\left (1+t \right ) y^{\prime }+y&=0 \end{align*}
Maple. Time used: 0.004 (sec). Leaf size: 13
ode:=t*diff(diff(y(t),t),t)-(t+1)*diff(y(t),t)+y(t) = 0; 
dsolve(ode,y(t), singsol=all);
 
\[ y = c_2 \,{\mathrm e}^{t}+c_1 t +c_1 \]
Mathematica. Time used: 0.236 (sec). Leaf size: 78
ode=t*D[y[t],{t,2}]-(1+t)*D[y[t],t]+y[t] == 0; 
ic={}; 
DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
 
\begin{align*} y(t)&\to \sqrt {t} \exp \left (\frac {1}{2} \left (2 \int _1^t\frac {K[1]-1}{2 K[1]}dK[1]+t+1\right )\right ) \left (c_2 \int _1^t\exp \left (-2 \int _1^{K[2]}\frac {K[1]-1}{2 K[1]}dK[1]\right )dK[2]+c_1\right ) \end{align*}
Sympy
from sympy import * 
t = symbols("t") 
y = Function("y") 
ode = Eq(t*Derivative(y(t), (t, 2)) - (t + 1)*Derivative(y(t), t) + y(t),0) 
ics = {} 
dsolve(ode,func=y(t),ics=ics)
 
False