46.1.32 problem 28

Internal problem ID [9535]
Book : DIFFERENTIAL EQUATIONS with Boundary Value Problems. DENNIS G. ZILL, WARREN S. WRIGHT, MICHAEL R. CULLEN. Brooks/Cole. Boston, MA. 2013. 8th edition.
Section : CHAPTER 6 SERIES SOLUTIONS OF LINEAR EQUATIONS. Section 6.2 SOLUTIONS ABOUT ORDINARY POINTS. EXERCISES 6.2. Page 246
Problem number : 28
Date solved : Tuesday, September 30, 2025 at 06:20:19 PM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

\begin{align*} y^{\prime \prime }+5 x y^{\prime }+\sqrt {x}\, y&=0 \end{align*}

Using series method with expansion around

\begin{align*} 0 \end{align*}
Maple
Order:=8; 
ode:=diff(diff(y(x),x),x)+5*x*diff(y(x),x)+x^(1/2)*y(x) = 0; 
dsolve(ode,y(x),type='series',x=0);
 
\[ \text {No solution found} \]
Mathematica
ode=D[y[x],{x,2}]+5*x*D[y[x],x]+Sqrt[x]*y[x]==0; 
ic={}; 
AsymptoticDSolveValue[{ode,ic},y[x],{x,0,7}]
 

Not solved

Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(sqrt(x)*y(x) + 5*x*Derivative(y(x), x) + Derivative(y(x), (x, 2)),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics,hint="2nd_power_series_regular",x0=0,n=8)
 
ValueError : ODE sqrt(x)*y(x) + 5*x*Derivative(y(x), x) + Derivative(y(x), (x, 2)) does not match hint 2nd_power_series_regular