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

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

[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]

Book solution method
TO DO

Mathematica
cpu = 0.53452 (sec), leaf count = 156

\[\left \{\left \{y(x)\to \frac {3}{8} e^{-4 c_1} \left (8+\sqrt [3]{6} \left (-e^{4 c_1} (x+c_2)\right ){}^{4/3}\right )\right \},\left \{y(x)\to \frac {3}{8} e^{-4 c_1} \left (8+\sqrt [3]{6} \left (-i e^{4 c_1} (x+c_2)\right ){}^{4/3}\right )\right \},\left \{y(x)\to \frac {3}{8} e^{-4 c_1} \left (8+\sqrt [3]{6} \left (i e^{4 c_1} (x+c_2)\right ){}^{4/3}\right )\right \},\left \{y(x)\to \frac {3}{8} e^{-4 c_1} \left (8+\sqrt [3]{6} \left (e^{4 c_1} (x+c_2)\right ){}^{4/3}\right )\right \}\right \}\]

Maple
cpu = 0.573 (sec), leaf count = 91

\[\left [-\frac {4 \left (\textit {\_C1} y \left (x \right )-3\right )^{\frac {3}{4}}}{3 \textit {\_C1}}-x -\textit {\_C2} = 0, \frac {4 \left (\textit {\_C1} y \left (x \right )-3\right )^{\frac {3}{4}}}{3 \textit {\_C1}}-x -\textit {\_C2} = 0, -\frac {4 i \left (\textit {\_C1} y \left (x \right )-3\right )^{\frac {3}{4}}}{3 \textit {\_C1}}-x -\textit {\_C2} = 0, \frac {4 i \left (\textit {\_C1} y \left (x \right )-3\right )^{\frac {3}{4}}}{3 \textit {\_C1}}-x -\textit {\_C2} = 0\right ]\] Mathematica raw input

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

Mathematica raw output

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

Maple raw input

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

Maple raw output

[-4/3*(_C1*y(x)-3)^(3/4)/_C1-x-_C2 = 0, 4/3*(_C1*y(x)-3)^(3/4)/_C1-x-_C2 = 0, -4
/3*I*(_C1*y(x)-3)^(3/4)/_C1-x-_C2 = 0, 4/3*I*(_C1*y(x)-3)^(3/4)/_C1-x-_C2 = 0]