Internal
problem
ID
[22317]
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.
Supplementary
problems
Problem
number
:
19.20
(b)
Date
solved
:
Thursday, October 02, 2025 at 08:37:26 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
Using series method with expansion around
With initial conditions
Order:=6; ode:=diff(diff(y(x),x),x)-2*x*y(x) = x^2; ic:=[y(1) = 0, D(y)(1) = 2]; dsolve([ode,op(ic)],y(x),type='series',x=1);
ode=D[y[x],{x,2}]-2*x*y[x]==x^2; ic={y[1]==0,Derivative[1][y][1] ==2}; AsymptoticDSolveValue[{ode,ic},y[x],{x,1,5}]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**2 - 2*x*y(x) + Derivative(y(x), (x, 2)),0) ics = {y(1): 0, Subs(Derivative(y(x), x), x, 1): 2} dsolve(ode,func=y(x),ics=ics,hint="2nd_power_series_regular",x0=1,n=6)
ValueError : ODE -x**2 - 2*x*y(x) + Derivative(y(x), (x, 2)) does not match hint 2nd_power_series_regular