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

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

[[_2nd_order, _with_linear_symmetries]]

Book solution method
TO DO

Mathematica
cpu = 0.17157 (sec), leaf count = 17

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

Maple
cpu = 0.063 (sec), leaf count = 12

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

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

Mathematica raw output

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

Maple raw input

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

Maple raw output

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