Internal
problem
ID
[9587]
Book
:
Collection
of
Kovacic
problems
Section
:
section
1
Problem
number
:
427
Date
solved
:
Sunday, March 30, 2025 at 02:38:07 PM
CAS
classification
:
[_Laguerre]
ode:=t*diff(diff(y(t),t),t)-(t+1)*diff(y(t),t)+y(t) = 0; dsolve(ode,y(t), singsol=all);
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]
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)