Internal
problem
ID
[22990]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
7.
Solution
of
differential
equations
by
use
of
series.
C
Exercises
at
page
342
Problem
number
:
4
Date
solved
:
Thursday, October 02, 2025 at 09:17:19 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
Using series method with expansion around
Order:=6; ode:=diff(diff(v(x),x),x)+v(x) = 0; dsolve(ode,v(x),type='series',x=0);
ode=D[v[x],{x,2}]+v[x]==0; ic={}; AsymptoticDSolveValue[{ode,ic},v[x],{x,0,5}]
from sympy import * x = symbols("x") v = Function("v") ode = Eq(v(x) + Derivative(v(x), (x, 2)),0) ics = {} dsolve(ode,func=v(x),ics=ics,hint="2nd_power_series_ordinary",x0=0,n=6)