4.42.14 y(x)2xy(x)+y(x)=0

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

[[_2nd_order, _missing_y]]

Book solution method
TO DO

Mathematica
cpu = 0.00793341 (sec), leaf count = 21

{{y(x)12c1x(x2c1)+c2}}

Maple
cpu = 0.092 (sec), leaf count = 28

{y(x)=x312+_C1,y(x)=_C1x22_C12x+_C2} Mathematica raw input

DSolve[y'[x] - x*y''[x] + y''[x]^2 == 0,y[x],x]

Mathematica raw output

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

Maple raw input

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

Maple raw output

y(x) = 1/12*x^3+_C1, y(x) = 1/2*_C1*x^2-_C1^2*x+_C2