Internal
problem
ID
[18502]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Chapter
2
(Higher
order
ODEs).
Section
18.2.
Expanding
a
solution
in
generalized
power
series.
Bessels
equation.
Exercises
page
177
Problem
number
:
741
Date
solved
:
Thursday, October 02, 2025 at 03:14:25 PM
CAS
classification
:
[_Jacobi]
Using series method with expansion around
Order:=6; ode:=9*x*(1-x)*diff(diff(y(x),x),x)-12*diff(y(x),x)+4*y(x) = 0; dsolve(ode,y(x),type='series',x=0);
ode=9*x*(1-x)*D[y[x],{x,2}]-12*D[y[x],x]+4*y[x]==0; ic={}; AsymptoticDSolveValue[{ode,ic},y[x],{x,0,5}]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(9*x*(1 - x)*Derivative(y(x), (x, 2)) + 4*y(x) - 12*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics,hint="2nd_power_series_regular",x0=0,n=6)