2.32.1 Problem 182

2.32.1.1 second order bessel ode
2.32.1.2 Maple
2.32.1.3 Mathematica
2.32.1.4 Sympy

Internal problem ID [13843]
Book : Handbook of exact solutions for ordinary differential equations. By Polyanin and Zaitsev. Second edition
Section : Chapter 2, Second-Order Differential Equations. section 2.1.2-6
Problem number : 182
Date solved : Thursday, January 01, 2026 at 02:59:47 AM
CAS classification : [[_2nd_order, _with_linear_symmetries]]

2.32.1.1 second order bessel ode

0.322 (sec)

\begin{align*} x^{3} y^{\prime \prime }+\left (a x +b \right ) y&=0 \\ \end{align*}
Entering second order bessel ode solverWriting the ode as
\begin{align*} x^{2} y^{\prime \prime }+\left (a +\frac {b}{x}\right ) y = 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 &= {\frac {1}{2}}\\ \beta &= 2 \sqrt {b}\\ n &= \sqrt {1-4 a}\\ \gamma &= -{\frac {1}{2}} \end{align*}

Substituting all the above into (4) gives the solution as

\begin{align*} y = c_1 \sqrt {x}\, \operatorname {BesselJ}\left (\sqrt {1-4 a}, \frac {2 \sqrt {b}}{\sqrt {x}}\right )+c_2 \sqrt {x}\, \operatorname {BesselY}\left (\sqrt {1-4 a}, \frac {2 \sqrt {b}}{\sqrt {x}}\right ) \end{align*}

Summary of solutions found

\begin{align*} y &= c_1 \sqrt {x}\, \operatorname {BesselJ}\left (\sqrt {1-4 a}, \frac {2 \sqrt {b}}{\sqrt {x}}\right )+c_2 \sqrt {x}\, \operatorname {BesselY}\left (\sqrt {1-4 a}, \frac {2 \sqrt {b}}{\sqrt {x}}\right ) \\ \end{align*}
2.32.1.2 Maple. Time used: 0.004 (sec). Leaf size: 49
ode:=x^3*diff(diff(y(x),x),x)+(a*x+b)*y(x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\[ y = \left (\operatorname {BesselJ}\left (-\sqrt {1-4 a}, \frac {2 \sqrt {b}}{\sqrt {x}}\right ) c_1 +\operatorname {BesselY}\left (-\sqrt {1-4 a}, \frac {2 \sqrt {b}}{\sqrt {x}}\right ) c_2 \right ) \sqrt {x} \]

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
 
2.32.1.3 Mathematica. Time used: 0.047 (sec). Leaf size: 101
ode=x^3*D[y[x],{x,2}]+(a*x+b)*y[x]==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)&\to \frac {c_1 \operatorname {Gamma}\left (1-\sqrt {1-4 a}\right ) \operatorname {BesselJ}\left (-\sqrt {1-4 a},2 \sqrt {b} \sqrt {\frac {1}{x}}\right )+c_2 \operatorname {Gamma}\left (\sqrt {1-4 a}+1\right ) \operatorname {BesselJ}\left (\sqrt {1-4 a},2 \sqrt {b} \sqrt {\frac {1}{x}}\right )}{\sqrt {b} \sqrt {\frac {1}{x}}} \end{align*}
2.32.1.4 Sympy. Time used: 0.097 (sec). Leaf size: 105
from sympy import * 
x = symbols("x") 
a = symbols("a") 
b = symbols("b") 
y = Function("y") 
ode = Eq(x**3*Derivative(y(x), (x, 2)) + (a*x + b)*y(x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ y{\left (x \right )} = \sqrt {x} \left (C_{1} \left (\frac {2 \sqrt {b}}{\sqrt {x}}\right )^{2 \sqrt {\frac {1}{4} - a}} \left (- \frac {2 \sqrt {b}}{\sqrt {x}}\right )^{- 2 \sqrt {\frac {1}{4} - a}} J_{- 2 \sqrt {\frac {1}{4} - a}}\left (\frac {2 \sqrt {b}}{\sqrt {x}}\right ) + C_{2} Y_{- 2 \sqrt {\frac {1}{4} - a}}\left (- \frac {2 \sqrt {b}}{\sqrt {x}}\right )\right ) \]