[_linear]
Book solution method
Linear ODE
Mathematica ✓
cpu = 0.035545 (sec), leaf count = 66
Maple ✓
cpu = 0.017 (sec), leaf count = 37
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)