4.11.47 \(2 x y(x) y'(x)=4 (2 x+1) x^2+y(x)^2\)

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

[_rational, _Bernoulli]

Book solution method
The Bernoulli ODE

Mathematica
cpu = 0.24623 (sec), leaf count = 52

\[\left \{\left \{y(x)\to -\sqrt {x} \sqrt {4 x^2+4 x+c_1}\right \},\left \{y(x)\to \sqrt {x} \sqrt {4 x^2+4 x+c_1}\right \}\right \}\]

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

\[\left [y \left (x \right ) = \sqrt {4 x^{3}+x \textit {\_C1} +4 x^{2}}, y \left (x \right ) = -\sqrt {4 x^{3}+x \textit {\_C1} +4 x^{2}}\right ]\] Mathematica raw input

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

Mathematica raw output

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

Maple raw input

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

Maple raw output

[y(x) = (4*x^3+_C1*x+4*x^2)^(1/2), y(x) = -(4*x^3+_C1*x+4*x^2)^(1/2)]