88.25.7 problem 5

Internal problem ID [24212]
Book : Elementary Differential Equations. By Lee Roy Wilcox and Herbert J. Curtis. 1961 first edition. International texbook company. Scranton, Penn. USA. CAT number 61-15976
Section : Chapter 7. Series Methods. Exercises at page 212
Problem number : 5
Date solved : Thursday, October 02, 2025 at 10:00:51 PM
CAS classification : [_separable]

\begin{align*} x^{2} y^{\prime }-y&=0 \end{align*}

Using series method with expansion around

\begin{align*} 0 \end{align*}
Maple
Order:=6; 
ode:=x^2*diff(y(x),x)-y(x) = 0; 
dsolve(ode,y(x),type='series',x=0);
 
\[ \text {No solution found} \]
Mathematica. Time used: 0.004 (sec). Leaf size: 13
ode=x^2*D[y[x],{x,1}]-y[x]==0; 
ic={}; 
AsymptoticDSolveValue[{ode,ic},y[x],{x,0,5}]
 
\[ y(x)\to c_1 e^{-1/x} \]
Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(x**2*Derivative(y(x), x) - y(x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics,hint="1st_power_series",x0=0,n=6)
 
ValueError : ODE x**2*Derivative(y(x), x) - y(x) does not match hint 1st_power_series