Internal
problem
ID
[2413]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
2.8,
Series
solutions.
Page
195
Problem
number
:
1
Date
solved
:
Tuesday, September 30, 2025 at 05:35:33 AM
CAS
classification
:
[[_2nd_order, _exact, _linear, _homogeneous]]
Using series method with expansion around
Order:=6; ode:=diff(diff(y(t),t),t)+t*diff(y(t),t)+y(t) = 0; dsolve(ode,y(t),type='series',t=0);
ode=D[y[t],{t,2}]+t*D[y[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*Derivative(y(t), t) + y(t) + Derivative(y(t), (t, 2)),0) ics = {} dsolve(ode,func=y(t),ics=ics,hint="2nd_power_series_ordinary",x0=0,n=6)