60.3.90 problem 1094

Internal problem ID [11100]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 2, linear second order
Problem number : 1094
Date solved : Monday, January 27, 2025 at 10:45:45 PM
CAS classification : [[_Emden, _Fowler]]

\begin{align*} x y^{\prime \prime }+y^{\prime }+a y&=0 \end{align*}

Solution by Maple

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

dsolve(x*diff(diff(y(x),x),x)+diff(y(x),x)+a*y(x)=0,y(x), singsol=all)
 
\[ y = c_{1} \operatorname {BesselJ}\left (0, 2 \sqrt {a}\, \sqrt {x}\right )+c_{2} \operatorname {BesselY}\left (0, 2 \sqrt {a}\, \sqrt {x}\right ) \]

Solution by Mathematica

Time used: 0.043 (sec). Leaf size: 41

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