4.28.36 \(x y''(x)+(1-2 x) y'(x)-((1-x) y(x))=0\)

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

[[_2nd_order, _with_linear_symmetries]]

Book solution method
TO DO

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

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

Maple
cpu = 0.062 (sec), leaf count = 15

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

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

Mathematica raw output

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

Maple raw input

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

Maple raw output

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