ODE
\[ n y(x)+x y''(x)+(1-x) y'(x)=0 \] ODE Classification
[_Laguerre]
Book solution method
TO DO
Mathematica ✓
cpu = 0.0869933 (sec), leaf count = 21
\[\left \{\left \{y(x)\to c_1 U(-n,1,x)+c_2 L_n(x)\right \}\right \}\]
Maple ✓
cpu = 0.093 (sec), leaf count = 21
\[ \left \{ y \left ( x \right ) ={\it \_C1}\,{{\sl M}\left (-n,\,1,\,x\right )}+{\it \_C2}\,{{\sl U}\left (-n,\,1,\,x\right )} \right \} \] Mathematica raw input
DSolve[n*y[x] + (1 - x)*y'[x] + x*y''[x] == 0,y[x],x]
Mathematica raw output
{{y[x] -> C[1]*HypergeometricU[-n, 1, x] + C[2]*LaguerreL[n, x]}}
Maple raw input
dsolve(x*diff(diff(y(x),x),x)+(1-x)*diff(y(x),x)+n*y(x) = 0, y(x),'implicit')
Maple raw output
y(x) = _C1*KummerM(-n,1,x)+_C2*KummerU(-n,1,x)