4.37.7 \(y''(x)+2 y'(x)^2 \tan (y(x))+2 \cot (x) y'(x)=0\)

ODE
\[ y''(x)+2 y'(x)^2 \tan (y(x))+2 \cot (x) y'(x)=0 \] ODE Classification

[_Liouville, [_2nd_order, _reducible, _mu_x_y1], [_2nd_order, _reducible, _mu_xy]]

Book solution method
TO DO

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

\[\left \{\left \{y(x)\to \tan ^{-1}\left (c_1 \cot (x)+c_2\right )\right \}\right \}\]

Maple
cpu = 0.044 (sec), leaf count = 24

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

DSolve[2*Cot[x]*y'[x] + 2*Tan[y[x]]*y'[x]^2 + y''[x] == 0,y[x],x]

Mathematica raw output

{{y[x] -> ArcTan[C[2] + C[1]*Cot[x]]}}

Maple raw input

dsolve(diff(diff(y(x),x),x)+2*diff(y(x),x)^2*tan(y(x))+2*cot(x)*diff(y(x),x) = 0, y(x),'implicit')

Maple raw output

1/cos(y(x))*sin(y(x))+_C1/sin(x)*cos(x)-_C2 = 0