Internal
problem
ID
[21389]
Book
:
A
Textbook
on
Ordinary
Differential
Equations
by
Shair
Ahmad
and
Antonio
Ambrosetti.
Second
edition.
ISBN
978-3-319-16407-6.
Springer
2015
Section
:
Chapter
9.
Solutions
by
infinite
series
and
Bessel
functions.
Excercise
10.6
at
page
223
Problem
number
:
7
Date
solved
:
Thursday, October 02, 2025 at 07:30:42 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
Using series method with expansion around
Order:=6; ode:=t^2*diff(diff(x(t),t),t)-3*t*diff(x(t),t)+(4-t)*x(t) = 0; dsolve(ode,x(t),type='series',t=0);
ode=t^2*D[x[t],{t,2}]+3*t*D[x[t],t]+(4-t)*x[t]==0; ic={}; AsymptoticDSolveValue[{ode,ic},x[t],{t,0,5}]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(t**2*Derivative(x(t), (t, 2)) + 3*t*Derivative(x(t), t) + (4 - t)*x(t),0) ics = {} dsolve(ode,func=x(t),ics=ics,hint="2nd_power_series_regular",x0=0,n=6)
ValueError : Expected Expr or iterable but got None