4.28.27 \(x y''(x)-(x+1) y'(x)+y(x)=0\)

ODE
\[ x y''(x)-(x+1) y'(x)+y(x)=0 \] ODE Classification

[_Laguerre]

Book solution method
TO DO

Mathematica
cpu = 0.177789 (sec), leaf count = 19

\[\left \{\left \{y(x)\to c_1 e^x-c_2 (x+1)\right \}\right \}\]

Maple
cpu = 0.06 (sec), leaf count = 14

\[[y \left (x \right ) = \textit {\_C1} \left (x +1\right )+\textit {\_C2} \,{\mathrm e}^{x}]\] Mathematica raw input

DSolve[y[x] - (1 + x)*y'[x] + x*y''[x] == 0,y[x],x]

Mathematica raw output

{{y[x] -> E^x*C[1] - (1 + x)*C[2]}}

Maple raw input

dsolve(x*diff(diff(y(x),x),x)-(x+1)*diff(y(x),x)+y(x) = 0, y(x))

Maple raw output

[y(x) = _C1*(x+1)+_C2*exp(x)]