Internal
problem
ID
[2666]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
2.
Second
order
differential
equations.
Section
2.8.3,
Equal
roots
and
roots
differing
by
an
integer.
Excercises
page
223
Problem
number
:
1
Date
solved
:
Sunday, March 30, 2025 at 12:13:03 AM
CAS
classification
:
[[_Emden, _Fowler]]
Using series method with expansion around
Order:=6; ode:=t*diff(diff(y(t),t),t)+diff(y(t),t)-4*y(t) = 0; dsolve(ode,y(t),type='series',t=0);
ode=t*D[y[t],{t,2}]+D[y[t],t]-4*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, 2)) - 4*y(t) + Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics,hint="2nd_power_series_regular",x0=0,n=6)