Internal
problem
ID
[22304]
Book
:
Schaums
outline
series.
Differential
Equations
By
Richard
Bronson.
1973.
McGraw-Hill
Inc.
ISBN
0-07-008009-7
Section
:
Chapter
19.
Power
series
solutions
about
an
ordinary
point.
Solved
problems.
Page
98
Problem
number
:
19.7
Date
solved
:
Thursday, October 02, 2025 at 08:37:19 PM
CAS
classification
:
[[_Emden, _Fowler]]
Using series method with expansion around
With initial conditions
Order:=6; ode:=diff(diff(y(x),x),x)-2*x*y(x) = 0; ic:=[y(2) = 1, D(y)(2) = 6]; dsolve([ode,op(ic)],y(x),type='series',x=2);
ode=D[y[x],{x,2}]-2*x*y[x]==0; ic={y[2]==1,Derivative[1][y][2] ==6}; AsymptoticDSolveValue[{ode,ic},y[x],{x,2,5}]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-2*x*y(x) + Derivative(y(x), (x, 2)),0) ics = {y(2): 1, Subs(Derivative(y(x), x), x, 2): 6} dsolve(ode,func=y(x),ics=ics,hint="2nd_power_series_ordinary",x0=2,n=6)