hankel - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


inttrans

  

hankel

  

Hankel transform

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

hankel(expr, t, s, nu)

Parameters

expr

-

expression, equation, or set of expressions and/or equations to be transformed

t

-

variable expr is transformed with respect to t

s

-

parameter of transform

nu

-

order of the transform

opt

-

option to run this under (optional)

Description

• 

The hankel function computes the Hankel transform (F[nu](s)) of expr (f(t)), a linear transformation C0,C0, defined by:

Fνs=0fttsBesselJν,tsⅆt

• 

The function Fs returned is defined on the positive real axis only.

• 

Expressions involving exponentials, products involving powers of t, trigonometrics (sin, cos) with linear arguments, and a variety of other functions can all be transformed.

• 

The Hankel transform is self-inverting for nu >12 .

• 

The hankel function can transform Bessel's operator, and if nu0, derivatives of functions as well, and can be used in the solution of ODEs and PDEs.

• 

The hankel function attempts to simplify an expression according to a set of heuristics and then match the result with a table of patterns.  Entries can be added to this table by addtable(hankel, f(t), F(s), t, s), where F(s) is the transform of f(t), which may have an arbitrary number of parameters.

• 

hankel  recognizes the Dirac-delta (or unit-impulse) function as Dirac(t) and Heaviside's unit step function as Heaviside(t).

• 

If the option opt is set to 'NO_INT', then the program will not resort to integration of the original problem if all other methods fail.  This will increase the speed at which the transform will run.

• 

The command with(inttrans,hankel) allows the use of the abbreviated form of this command.

Examples

withinttrans:

assume0<a&colon;

assume12<ν&colon;additionallyν0&colon;

Fhankelgx&comma;x&comma;y&comma;ν

F`?`

(1)

hankelF&comma;y&comma;z&comma;ν

gz

(2)

By default, derivatives of integral transforms are computed:

setupcomputederivatives

computederivatives=true

(3)

diffhankelft&comma;t&comma;s&comma;1&comma;s

`?`s+6`?`s+`?`s

(4)

Therefore, the following, that can be expressed using derivatives of hankel, results in

hankeltft&comma;t&comma;s&comma;ν

2`?`&nu;~`?`s+2`?`s

(5)

The same computation but not computing the derivatives

setupcomputederivatives=false&comma;alternativehankeldefinition=false

alternativehankeldefinition=false,computederivatives=false

(6)

hankeltft&comma;t&comma;s&comma;ν

`?`&nu;~+s`?`s+`?`s

(7)

hankelftt&comma;t&comma;s&comma;ν

s`?`+`?`2&nu;~

(8)

hankelDft&comma;t&comma;s&comma;ν

s`?`&nu;~`?`&nu;~+`?`+`?`2&nu;~

(9)

Bessel's differential equation

pdedifffr&comma;z&comma;z&comma;z+difffr&comma;z&comma;r&comma;r+difffr&comma;z&comma;rrνr2fr&comma;z=0

pde2z2fr&comma;z+2r2fr&comma;z+rfr&comma;zr&nu;~2fr&comma;zr2=0

(10)

hankelpde&comma;r&comma;p&comma;ν

2z2`?`p2`?`=0

(11)

setupalternativehankeldefinition=true

alternativehankeldefinition=true

(12)

hankelt12&comma;t&comma;s2&comma;1

1s232

(13)

hankelexpat&comma;t&comma;s&comma;ν

Γ&nu;~+32hypergeom&nu;~2+54&comma;&nu;~2+34&comma;&nu;~+1&comma;s2a~2s&nu;~+122&nu;~a~&nu;~32Γ&nu;~+1

(14)

Adding to the table

addtablehankel&comma;myfunct&comma;MyFuncs&comma;ν&comma;t&comma;s&comma;hankel=ν::Range&comma;

hankelmyfuncx&comma;x&comma;y&comma;ν

MyFuncy&comma;&nu;~

(15)

See Also

dsolve

examples, hankel

inttrans

inttrans[addtable]