Internal
problem
ID
[2653]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
2.
Second
order
differential
equations.
Section
2.8.2,
Regular
singular
points,
the
method
of
Frobenius.
Excercises
page
216
Problem
number
:
16
Date
solved
:
Tuesday, March 04, 2025 at 02:33:05 PM
CAS
classification
:
[_Laguerre, [_2nd_order, _linear, `_with_symmetry_[0,F(x)]`]]
Using series method with expansion around
Order:=6; ode:=t^2*diff(diff(y(t),t),t)+(-t^2+3*t)*diff(y(t),t)-t*y(t) = 0; dsolve(ode,y(t),type='series',t=0);
ode=t^2*D[y[t],{t,2}]+(3*t-t^2)*D[y[t],t]-t*y[t]==0; ic={}; AsymptoticDSolveValue[{ode,ic},y[t],{t,0,5}]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t**2*Derivative(y(t), (t, 2)) - t*y(t) + (-t**2 + 3*t)*Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics,hint="2nd_power_series_regular",x0=0,n=6)