6.16 problem 20

Internal problem ID [4746]

Book: A treatise on ordinary and partial differential equations by William Woolsey Johnson. 1913
Section: Chapter IX, Special forms of differential equations. Examples XVII. page 247
Problem number: 20.
ODE order: 2.
ODE degree: 1.

CAS Maple gives this as type [[_Emden, _Fowler]]

\[ \boxed {y^{\prime \prime } x +y^{\prime }+y=0} \]

Solution by Maple

Time used: 0.0 (sec). Leaf size: 23

dsolve(x*diff(y(x),x$2)+diff(y(x),x)+y(x)=0,y(x), singsol=all)
 

\[ y \left (x \right ) = c_{1} \operatorname {BesselJ}\left (0, 2 \sqrt {x}\right )+c_{2} \operatorname {BesselY}\left (0, 2 \sqrt {x}\right ) \]

Solution by Mathematica

Time used: 0.03 (sec). Leaf size: 31

DSolve[x*y''[x]+y'[x]+y[x]==0,y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to c_1 \operatorname {BesselJ}\left (0,2 \sqrt {x}\right )+2 c_2 \operatorname {BesselY}\left (0,2 \sqrt {x}\right ) \]