Internal
problem
ID
[2614]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
2.
Second
order
differential
equations.
Section
2.8.
Series
solutions.
Excercises
page
197
Problem
number
:
4
Date
solved
:
Tuesday, March 04, 2025 at 02:32:14 PM
CAS
classification
:
[[_Emden, _Fowler]]
Using series method with expansion around
Order:=6; ode:=diff(diff(y(t),t),t)-t^3*y(t) = 0; dsolve(ode,y(t),type='series',t=0);
ode=D[y[t],{t,2}]-t^3*y[t]==0; ic={}; AsymptoticDSolveValue[{ode,ic},y[t],{t,0,5}]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(-t**3*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)