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

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

[_quadrature]

Book solution method
No Missing Variables ODE, Solve for \(y'\)

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

\[\left \{\left \{y(x)\to c_1 e^x\right \},\left \{y(x)\to \frac {c_1}{x}\right \}\right \}\]

Maple
cpu = 0.048 (sec), leaf count = 16

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

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

Mathematica raw output

{{y[x] -> E^x*C[1]}, {y[x] -> C[1]/x}}

Maple raw input

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

Maple raw output

[y(x) = 1/x*_C1, y(x) = _C1*exp(x)]