Internal
problem
ID
[9793]
Book
:
Collection
of
Kovacic
problems
Section
:
section
1
Problem
number
:
638
Date
solved
:
Wednesday, March 05, 2025 at 07:59:04 AM
CAS
classification
:
[_Laguerre]
ode:=2*t*diff(diff(y(t),t),t)+(1-2*t)*diff(y(t),t)-y(t) = 0; dsolve(ode,y(t), singsol=all);
ode=2*t*D[y[t],{t,2}]+(1-2*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(2*t*Derivative(y(t), (t, 2)) + (1 - 2*t)*Derivative(y(t), t) - y(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)