Internal
problem
ID
[7662]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
8,
Series
solutions
of
differential
equations.
Section
8.4.
page
449
Problem
number
:
13
Date
solved
:
Tuesday, September 30, 2025 at 04:55:37 PM
CAS
classification
:
[_separable]
Using series method with expansion around
With initial conditions
Order:=6; ode:=diff(x(t),t)+sin(t)*x(t) = 0; ic:=[x(0) = 1]; dsolve([ode,op(ic)],x(t),type='series',t=0);
ode=D[x[t],t]+Sin[t]*x[t]==0; ic={x[0]==1}; AsymptoticDSolveValue[{ode,ic},x[t],{t,0,5}]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(x(t)*sin(t) + Derivative(x(t), t),0) ics = {x(0): 1} dsolve(ode,func=x(t),ics=ics,hint="1st_power_series",x0=0,n=6)