Internal
problem
ID
[21758]
Book
:
The
Differential
Equations
Problem
Solver.
VOL.
II.
M.
Fogiel
director.
REA,
NY.
1978.
ISBN
78-63609
Section
:
Chapter
23.
Power
series.
Page
695
Problem
number
:
23-19
Date
solved
:
Thursday, October 02, 2025 at 08:01:52 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
Using series method with expansion around
Order:=6; ode:=diff(diff(x(t),t),t)-s*x(t) = 0; dsolve(ode,x(t),type='series',t=0);
ode=D[x[t],{t,2}]-s*x[t]==0; ic={}; AsymptoticDSolveValue[{ode,ic},x[t],{t,0,5}]
from sympy import * t = symbols("t") s = symbols("s") t = Function("t") ode = Eq(-s*x(t) + Derivative(x(t), (t, 2)),0) ics = {} dsolve(ode,func=t(t),ics=ics,hint="2nd_power_series_regular",x0=0,n=6)
ValueError : ODE -s*x(t) + Derivative(x(t), (t, 2)) does not match hint 2nd_power_series_regular