Bessel - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


Bessel and Modified Bessel ODEs

 

Description

Examples

Description

• 

The general form of the Bessel ODE is given by the following:

> 

Bessel_ode := x^2*diff(y(x),x,x)+x*diff(y(x),x)+(x^2-n^2)*y(x);

Bessel_ode≔x2⁢ⅆ2ⅆx2y⁡x+x⁢ⅆⅆxy⁡x+−n2+x2⁢y⁡x

(1)
• 

The general form of the modified Bessel ODE is given by the following:

> 

modified_Bessel_ode := x^2*diff(y(x),x,x)+x*diff(y(x),x)-(x^2+n^2)*y(x);

modified_Bessel_ode≔x2⁢ⅆ2ⅆx2y⁡x+x⁢ⅆⅆxy⁡x−n2+x2⁢y⁡x

(2)
  

where n is an integer. See Abramowitz and Stegun - `Handbook of Mathematical Functions`, section 9.6.1. The solutions for these ODEs are expressed using the Bessel functions in the following examples.

Examples

> 

with⁡DEtools,odeadvisor

odeadvisor

(3)
> 

odeadvisor⁡Bessel_ode

_Bessel

(4)
> 

odeadvisor⁡modified_Bessel_ode

_Bessel,_modified

(5)

The Bessel ODEs can be solved for in terms of Bessel functions:

> 

dsolve⁡Bessel_ode

y⁡x=c__1⁢BesselJ⁡n,x+c__2⁢BesselY⁡n,x

(6)
> 

dsolve⁡modified_Bessel_ode

y⁡x=c__1⁢BesselI⁡n,x+c__2⁢BesselK⁡n,x

(7)

See Also

DEtools

odeadvisor

dsolve

quadrature

missing

reducible

linear_ODEs

exact_linear

exact_nonlinear

sym_Fx

linear_sym

Bessel

Painleve

Halm

Gegenbauer

Duffing

ellipsoidal

elliptic

erf

Emden

Jacobi

Hermite

Lagerstrom

Laguerre

Liouville

Lienard

Van_der_Pol

Titchmarsh

odeadvisor,types