Search Blogs

Thursday, June 8, 2023

Refresher: Bessel Functions

 Let's talk about Bessel functions! First, who was Bessel? Friedrich Bessel was a German astronomer and mathematician whose namesake was given to the solutions used to solve a specific type of differential equation. The differential equation in question is the following:

(1)x2d2ydx2+xdydx+(x2n2)y=0

This is a second-order linear ordinary differential equation and is known as a canonical ODE because its solutions are special types of functions. For those unfamiliar with second-order linear ODEs let me explain ( I often forget so it's helpful for me as well). The "second-order" just means the highest derivative in the equation, in this case, its two. The ordinary is because there is only a single independent variable x. Linear indicates that we don't have terms like y2dydx, in other words,  the dependent variable and its derivatives only appear to the first power and the coefficients are not in terms of the dependent variable. There is also the case that this equation is homogenous because y is involved with every term.

The solutions to the Bessel equation are called Bessel functions. The functions form a basis because they are linearly independent and there are two flavors of functions called the "first-kind" and the "second-kind". The first-kind, usually denoted as Jn(x), has the form:

(2)Jn(x)=1π0πcos(ntxsin(t))dt

where n is an integer. This is actually a special case known as Bessel integrals. The solutions of the first kind can be multiplied by a scalar value and remain solutions to the ODE. Given Bessel functions of the first kind are written in terms of sine and cosine they are oscillatory functions. They are linearly dependent and form an orthogonal basis, given that:

0xJn(x)Jm(x)dx=0mn

They also have recurrence relations whereby negative values for n are the same as positive values for n. The Bessel functions of the first kind are used to obtain solutions in cylindrical coordinate representations because the solutions are the radial part. In spherical coordinates, the radial part is given by the Bessel functions of the second kind. So what do the Bessel functions of the first kind look like? Let me show it with some Julia code that would compute the Bessel function integral of the first kind for integer values of n.


"""
	Jₙ(x;n=1,ν=1000)

First kind Bessel numerical (i.e., trapizodial) integrals for
integer values of n.
""" 
function Jₙ(x,n=1;ν=1000)
    ∫f = 0.0
    for i=0:ν
    	t = π/ν * i
        f = cos(n * t - x * sin(t))
        # trapezoidal weights
        w = (i == 0 || i == ν) ? 0.5 : 1.0 
        ∫f += w * f
    end
    return 1/ν * ∫f
end

The code simply calculates the integral form for the first kind of Bessel function, which is possible when n is an integer. I believe this is also a valid function for non-integer values of n but only when x is real and >0. When we plot this function for different values of n we get the following solutions:

Bessel functions (integrals) of the first kind where n is an integer.

So what about Bessel functions of the second kind? When n is not an integer these take the form:

(3)Ym(x)=Jm(x)cos(mπ)Jm(x)sin(mπ)

with m being a non-integer value. As you can see, Ym(x) can be defined in terms of Bessel functions of the first kind, Jm(x) and Jm(x). The functions in eq. (3) are clear valid because they are linear combinations of first-kind solutions. One thing of importance is that Bessel functions of the second kind have a singularity at x=0 for all values of m.  Also, keep in mind that Jm(x) is not the function Jn(x) since m is a non-integer. If m+n, i.e., is an integer and non-negative, then the solution [1] is given by:

Yn(x)=(x2)nπk=0n1(nk1)!k!(x24)k+2πJn(x)lnx2(4)(x2)nπk=0(ψ(k+1)+ψ(n+k+1))(x24)kk!(n+k)!

where ψ(x) is the logarithmic derivative of the gamma function. You can review the Wikipedia entry for Bessel functions which provides more details on the derivation of this solution. This solutions Yn(x) are linearly independent from Jn(x) hence why we have "second-kind" solutions Bessels equations. There is also an integral form that exists when x is positive and real-valued.  So what does the plot look like for eq. (4)? Below shows the plot for the limiting case discussed.

Bessel functions of the second kind where x>0 and n is an integer.

If you want to look at the Julia implementation for the Bessel functions of the second kind you can take a look at the Pluto.jl notebook here. You'll need to set up Julia+Pluto.jl to run the notebook locally. You can also use the "run in cloud" but its not worth it. For Windows users who just want to run the notebook without any setup, check out the PlutoDesktop exe. For python users you can probably just copy the raw notebook file content into an LLM and ask for it to rewrite the code in Python.

In general, the use of Bessel functions of the first kind vs the second kind often depends on the specific problem at hand and the boundary conditions involved. Both types of Bessel functions are solutions to eq. (1), but they behave differently and hence have different applications. Here's a quick rundown:

  1. First Kind (Jn): These functions are finite at the origin (x=0), and this makes them suitable for problems with boundary conditions that require the solution to be finite at the origin. For example, they often appear in problems of wave propagation and heat conduction in cylindrical or spherical symmetry where the solution must be finite at r=0.
  2. Second Kind (Yn): These functions, on the other hand, have a singularity at the origin. They are often useful in problems where the physical system has a singularity at the origin or where the boundary conditions do not require the solution to be finite at the origin. They are also used when the full set of linearly independent solutions to eq. 1 are needed.

The complete solution to eq. 1 is a linear combination of Bessel functions, where the coefficients (i.e., amplitudes) are determined by the boundary conditions. In the context of partial differential equations such as Laplace's equation in cylindrical or spherical coordinates, the Bessel function provides solutions to the radial part whereas the spherical harmonics represent the angular parts.

References
[1] Y. L. Luke, Integrals of Bessel Functions (Courier Corporation, 2014).
[2] DLMF: Chapter 10 Bessel Functions, https://dlmf.nist.gov/10.


DOI
Reuse and Attribution
CC-BY Logo
Bringuier, S., Refresher: Bessel Functions, Dirac's Student, (2023). Retrieved from https://www.diracs-student.blog/2023/06/refresher-bessel-functions.html.

  @misc{Bringuier_8JUN2023,
  title        = {Refresher: Bessel Functions},
  author       = {Bringuier, Stefan},
  year         = 2023,
  month        = jun,
  url          = {https://www.diracs-student.blog/2023/06/}# 
                 {refresher-bessel-functions.html},
  note         = {Accessed: 2025-04-04},
  howpublished = {Dirac's Student [Blog]},
  }

No comments:

Post a Comment

Please refrain from using ad hominem attacks, profanity, slander, or any similar sentiment in your comments. Let's keep the discussion respectful and constructive.