Internal
problem
ID
[9421]
Book
:
Differential
Equations:
Theory,
Technique,
and
Practice
by
George
Simmons,
Steven
Krantz.
McGraw-Hill
NY.
2007.
1st
Edition.
Section
:
Chapter
4.
Power
Series
Solutions
and
Special
Functions.
Section
4.5.
More
on
Regular
Singular
Points.
Page
183
Problem
number
:
5
Date
solved
:
Tuesday, September 30, 2025 at 06:18:34 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
Using series method with expansion around
Order:=8; ode:=3*(1+x)^2*diff(diff(y(x),x),x)-(1+x)*diff(y(x),x)-y(x) = 0; dsolve(ode,y(x),type='series',x=-1);
ode=3*(x+1)^2*D[y[x],{x,2}]-(x+1)*D[y[x],x]-y[x]==0; ic={}; AsymptoticDSolveValue[{ode,ic},y[x],{x,-1,7}]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(3*(x + 1)**2*Derivative(y(x), (x, 2)) - (x + 1)*Derivative(y(x), x) - y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics,hint="2nd_power_series_regular",x0=-1,n=8)
IndexError : list index out of range