Internal
problem
ID
[7637]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
8,
Series
solutions
of
differential
equations.
Section
8.3.
page
443
Problem
number
:
5
Date
solved
:
Tuesday, September 30, 2025 at 04:55:14 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
Using series method with expansion around
Order:=6; ode:=(t^2-t-2)*diff(diff(x(t),t),t)+(t+1)*diff(x(t),t)-(t-2)*x(t) = 0; dsolve(ode,x(t),type='series',t=0);
ode=(t^2-t-2)*D[x[t],{t,2}]+(t+1)*D[x[t],t]-(t-2)*x[t]==0; ic={}; AsymptoticDSolveValue[{ode,ic},x[t],{t,0,5}]
from sympy import * t = symbols("t") x = Function("x") ode = Eq((2 - t)*x(t) + (t + 1)*Derivative(x(t), t) + (t**2 - t - 2)*Derivative(x(t), (t, 2)),0) ics = {} dsolve(ode,func=x(t),ics=ics,hint="2nd_power_series_ordinary",x0=0,n=6)