4.31.29 \(\left (x^2+1\right ) y''(x)+x y'(x)-4 y(x)=0\)

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

[[_2nd_order, _with_linear_symmetries], [_2nd_order, _linear, `_with_symmetry_[0,F(x)]`]]

Book solution method
TO DO

Mathematica
cpu = 0.170188 (sec), leaf count = 25

\[\left \{\left \{y(x)\to i c_2 \sinh \left (2 \sinh ^{-1}(x)\right )+c_1 \cosh \left (2 \sinh ^{-1}(x)\right )\right \}\right \}\]

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

\[[y \left (x \right ) = \textit {\_C1} \sinh \left (2 \arcsinh \left (x \right )\right )+\textit {\_C2} \cosh \left (2 \arcsinh \left (x \right )\right )]\] Mathematica raw input

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

Mathematica raw output

{{y[x] -> C[1]*Cosh[2*ArcSinh[x]] + I*C[2]*Sinh[2*ArcSinh[x]]}}

Maple raw input

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

Maple raw output

[y(x) = _C1*sinh(2*arcsinh(x))+_C2*cosh(2*arcsinh(x))]