Internal
problem
ID
[2430]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
2.8,
Series
solutions.
Page
195
Problem
number
:
17
Date
solved
:
Tuesday, September 30, 2025 at 05:35:44 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
Using series method with expansion around
With initial conditions
Order:=6; ode:=diff(diff(y(t),t),t)+diff(y(t),t)+exp(-t)*y(t) = 0; ic:=[y(0) = 3, D(y)(0) = 5]; dsolve([ode,op(ic)],y(t),type='series',t=0);
ode=D[y[t],{t,2}]+D[y[t],t]+Exp[-t]*y[t]==0; ic={y[0]==3,Derivative[1][y][0] ==5}; AsymptoticDSolveValue[{ode,ic},y[t],{t,0,5}]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(y(t)*exp(-t) + Derivative(y(t), t) + Derivative(y(t), (t, 2)),0) ics = {y(0): 3, Subs(Derivative(y(t), t), t, 0): 5} dsolve(ode,func=y(t),ics=ics,hint="2nd_power_series_ordinary",x0=0,n=6)