4.40.13 \(4 y(x) y''(x)=3 y'(x)^2+12 y(x)^2\)

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

[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_xy]]

Book solution method
TO DO

Mathematica
cpu = 0.134065 (sec), leaf count = 41

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

Maple
cpu = 0.284 (sec), leaf count = 30

\[ \left \{ -{{\rm e}^{\sqrt {3}x}}{\it \_C1}-4\,\sqrt [4]{y \left ( x \right ) }{{\rm e}^{1/2\,\sqrt {3}x}}\sqrt {3}+{\it \_C2}=0 \right \} \] Mathematica raw input

DSolve[4*y[x]*y''[x] == 12*y[x]^2 + 3*y'[x]^2,y[x],x]

Mathematica raw output

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

Maple raw input

dsolve(4*y(x)*diff(diff(y(x),x),x) = 3*diff(y(x),x)^2+12*y(x)^2, y(x),'implicit')

Maple raw output

-exp(3^(1/2)*x)*_C1-4*y(x)^(1/4)*exp(1/2*3^(1/2)*x)*3^(1/2)+_C2 = 0