4.36.23 \(y''(x)=6 y(x)^2\)

ODE
\[ y''(x)=6 y(x)^2 \] ODE Classification

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

Book solution method
TO DO

Mathematica
cpu = 0.0328223 (sec), leaf count = 14

\[\left \{\left \{y(x)\to \wp \left (x+c_1;0,c_2\right )\right \}\right \}\]

Maple
cpu = 0.1 (sec), leaf count = 10

\[ \left \{ y \left ( x \right ) ={\it WeierstrassP} \left ( x+{\it \_C1},0,{\it \_C2} \right ) \right \} \] Mathematica raw input

DSolve[y''[x] == 6*y[x]^2,y[x],x]

Mathematica raw output

{{y[x] -> WeierstrassP[x + C[1], {0, C[2]}]}}

Maple raw input

dsolve(diff(diff(y(x),x),x) = 6*y(x)^2, y(x),'implicit')

Maple raw output

y(x) = WeierstrassP(x+_C1,0,_C2)