4.7.37 2(1x)xy(x)+(12x)y(x)+x=0

ODE
2(1x)xy(x)+(12x)y(x)+x=0 ODE Classification

[_linear]

Book solution method
Linear ODE

Mathematica
cpu = 0.035545 (sec), leaf count = 66

{{y(x)2c1(x1)xx2+xx1xlog(x1+x)2x2x2}}

Maple
cpu = 0.017 (sec), leaf count = 37

{y(x)=14(2x(1+x)+ln(12+x+x(1+x))+4_C1)1x(1+x)} Mathematica raw input

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

Mathematica raw output

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

Maple raw input

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

Maple raw output

y(x) = 1/4*(2*(x*(-1+x))^(1/2)+ln(-1/2+x+(x*(-1+x))^(1/2))+4*_C1)/(x*(-1+x))^(1/
2)