Internal
problem
ID
[9800]
Book
:
Collection
of
Kovacic
problems
Section
:
section
1
Problem
number
:
645
Date
solved
:
Sunday, March 30, 2025 at 02:46:54 PM
CAS
classification
:
[_Laguerre]
ode:=t*diff(diff(y(t),t),t)-(4+t)*diff(y(t),t)+2*y(t) = 0; dsolve(ode,y(t), singsol=all);
ode=t*D[y[t],{t,2}]-(4+t)*D[y[t],t]+2*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 + 4)*Derivative(y(t), t) + 2*y(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)
ValueError : Expected Expr or iterable but got None