Internal
problem
ID
[2470]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
2.8.3,
The
method
of
Frobenius.
Equal
roots,
and
roots
differering
by
an
integer.
Page
223
Problem
number
:
3
Date
solved
:
Tuesday, September 30, 2025 at 05:36:20 AM
CAS
classification
:
[_Bessel]
Using series method with expansion around
Order:=6; ode:=t^2*diff(diff(y(t),t),t)+t*diff(y(t),t)+(t^2-1)*y(t) = 0; dsolve(ode,y(t),type='series',t=0);
ode=t^2*D[y[t],{t,2}]+t*D[y[t],t]+(t^2-1)*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*Derivative(y(t), t) + (t**2 - 1)*y(t),0) ics = {} dsolve(ode,func=y(t),ics=ics,hint="2nd_power_series_regular",x0=0,n=6)