60.3.158 problem 1162

Internal problem ID [11168]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 2, linear second order
Problem number : 1162
Date solved : Monday, January 27, 2025 at 10:47:36 PM
CAS classification : [_Bessel]

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

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 = c_{1} \operatorname {BesselJ}\left (v , x\right )+c_{2} \operatorname {BesselY}\left (v , x\right ) \]

Solution by Mathematica

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

DSolve[(-v^2 + x^2)*y[x] + x*D[y[x],x] + x^2*D[y[x],{x,2}] == 0,y[x],x,IncludeSingularSolutions -> True]
 
\[ y(x)\to c_1 \operatorname {BesselJ}(v,x)+c_2 \operatorname {BesselY}(v,x) \]