3.162 problem 1162

Internal problem ID [8742]

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

CAS Maple gives this as type [_Bessel]

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

Solution by Maple

Time used: 0.003 (sec). Leaf size: 15

dsolve(x^2*diff(diff(y(x),x),x)+x*diff(y(x),x)+(-v^2+x^2)*y(x)=0,y(x), singsol=all)
 

\[ y \relax (x ) = c_{1} \BesselJ \left (v , x\right )+c_{2} \BesselY \left (v , x\right ) \]

Solution by Mathematica

Time used: 0.029 (sec). Leaf size: 18

DSolve[(-v^2 + x^2)*y[x] + x*y'[x] + x^2*y''[x] == 0,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to c_1 J_v(x)+c_2 Y_v(x) \\ \end{align*}