4.51 problem 1499

Internal problem ID [9078]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 3, linear third order
Problem number: 1499.
ODE order: 3.
ODE degree: 1.

CAS Maple gives this as type [[_3rd_order, _with_linear_symmetries]]

Solve \begin {gather*} \boxed {x^{2} y^{\prime \prime \prime }-\left (x^{2}-2 x \right ) y^{\prime \prime }-\left (x^{2}+\nu ^{2}-\frac {1}{4}\right ) y^{\prime }+\left (x^{2}-2 x +\nu ^{2}-\frac {1}{4}\right ) y=0} \end {gather*}

Solution by Maple

Time used: 0.017 (sec). Leaf size: 25

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

\[ y \relax (x ) = {\mathrm e}^{x} c_{1}+c_{2} \sqrt {x}\, \BesselI \left (\nu , x\right )+c_{3} \sqrt {x}\, \BesselK \left (\nu , x\right ) \]

Solution by Mathematica

Time used: 0.139 (sec). Leaf size: 83

DSolve[(-1/4 + nu^2 - 2*x + x^2)*y[x] - (-1/4 + nu^2 + x^2)*y'[x] - (-2*x + x^2)*y''[x] + x^2*Derivative[3][y][x] == 0,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to c_2 2^{-\nu -\frac {1}{2}} e^x G_{2,3}^{2,1}\left (2 x\left | {c} 1,0 \\ \frac {1}{2}-\nu ,\nu +\frac {1}{2},0 \\ \\ \right .\right )+\frac {\sqrt {\pi } c_3 2^{-\nu } \sqrt {x} I_{\nu }(x)}{\Gamma \left (\frac {3}{2}-\nu \right )}+c_1 e^x \\ \end{align*}