[[_1st_order, _with_linear_symmetries], _rational, _Clairaut]
Book solution method
Clairaut’s equation and related types,
Mathematica ✓
cpu = 0.498578 (sec), leaf count = 101
Maple ✓
cpu = 0.045 (sec), leaf count = 42
DSolve[1 + y[x]^2 - (1 + 2*x*y[x])*y'[x] + x^2*y'[x]^2 == 0,y[x],x]
Mathematica raw output
{{y[x] -> -1/(2*E^C[1]) + x + x/(4*E^(2*C[1]))}, {y[x] -> 1/(2*E^C[1]) + x + x/(
4*E^(2*C[1]))}, {y[x] -> -2/E^C[1] + x + (4*x)/E^(2*C[1])}, {y[x] -> 2/E^C[1] +
x + (4*x)/E^(2*C[1])}}
Maple raw input
dsolve(x^2*diff(y(x),x)^2-(1+2*x*y(x))*diff(y(x),x)+1+y(x)^2 = 0, y(x),'implicit')
Maple raw output
y(x) = 1/4*(4*x^2-1)/x, y(x) = _C1*x-(_C1-1)^(1/2), y(x) = _C1*x+(_C1-1)^(1/2)