3.341 problem 1347

3.341.1 Solving as second order bessel ode ode

Internal problem ID [9674]
Internal file name [OUTPUT/8616_Monday_June_06_2022_04_28_35_AM_29349348/index.tex]

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

The type(s) of ODE detected by this program : "second_order_bessel_ode"

Maple gives the following as the ode type

[[_Emden, _Fowler]]

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

3.341.1 Solving as second order bessel ode ode

Writing the ode as \begin {align*} x^{2} y^{\prime \prime }+y^{\prime } x +\frac {y}{x^{2}} = 0\tag {1} \end {align*}

Bessel ode has the form \begin {align*} x^{2} y^{\prime \prime }+y^{\prime } x +\left (-n^{2}+x^{2}\right ) y = 0\tag {2} \end {align*}

The generalized form of Bessel ode is given by Bowman (1958) as the following \begin {align*} x^{2} y^{\prime \prime }+\left (1-2 \alpha \right ) x y^{\prime }+\left (\beta ^{2} \gamma ^{2} x^{2 \gamma }-n^{2} \gamma ^{2}+\alpha ^{2}\right ) y = 0\tag {3} \end {align*}

With the standard solution \begin {align*} y&=x^{\alpha } \left (c_{1} \operatorname {BesselJ}\left (n , \beta \,x^{\gamma }\right )+c_{2} \operatorname {BesselY}\left (n , \beta \,x^{\gamma }\right )\right )\tag {4} \end {align*}

Comparing (3) to (1) and solving for \(\alpha ,\beta ,n,\gamma \) gives \begin {align*} \alpha &= 0\\ \beta &= 1\\ n &= 0\\ \gamma &= -1 \end {align*}

Substituting all the above into (4) gives the solution as \begin {align*} y = c_{1} \operatorname {BesselJ}\left (0, \frac {1}{x}\right )+c_{2} \operatorname {BesselY}\left (0, \frac {1}{x}\right ) \end {align*}

Summary

The solution(s) found are the following \begin{align*} \tag{1} y &= c_{1} \operatorname {BesselJ}\left (0, \frac {1}{x}\right )+c_{2} \operatorname {BesselY}\left (0, \frac {1}{x}\right ) \\ \end{align*}

Verification of solutions

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

Maple trace

`Methods for second order ODEs: 
--- Trying classification methods --- 
trying a quadrature 
checking if the LODE has constant coefficients 
checking if the LODE is of Euler type 
trying a symmetry of the form [xi=0, eta=F(x)] 
checking if the LODE is missing y 
-> Trying a Liouvillian solution using Kovacics algorithm 
<- No Liouvillian solutions exists 
-> Trying a solution in terms of special functions: 
   -> Bessel 
   <- Bessel successful 
<- special function solution successful`
 

Solution by Maple

Time used: 0.047 (sec). Leaf size: 19

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

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

Solution by Mathematica

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

DSolve[y''[x] == -(y[x]/x^4) - y'[x]/x,y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to c_2 \operatorname {BesselJ}\left (0,\frac {1}{x}\right )+\frac {c_1 K_0\left (\frac {i}{x}\right )}{\sqrt {\pi }} \]