inttrans
hankel
Hankel transform
Calling Sequence
Parameters
Description
Examples
hankel(expr, t, s, nu)
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)
The hankel function computes the Hankel transform (F[nu](s)) of expr (f(t)), a linear transformation C0,∞→C0,∞ defined by:
Fν⁡s=∫0∞f⁡t⁢t⁢s⁢BesselJ⁡ν,t⁢sⅆt
The function F⁡s 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 nu≠0, 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.
with⁡inttrans:
assume⁡0<a:
assume⁡−12<ν:additionally⁡ν≠0:
F≔hankel⁡g⁡x,x,y,ν
F≔`?`
hankel⁡F,y,z,ν
g⁡z
By default, derivatives of integral transforms are computed:
setup⁡computederivatives
computederivatives=true
diff⁡hankel⁡f⁡t,t,s,1,s
−−`?`⁢s+6⁢`?`s+`?`s
Therefore, the following, that can be expressed using derivatives of hankel, results in
hankel⁡t⁢f⁡t,t,s,ν
2⁢`?`⁢ν~−`?`⁢s+2⁢`?`s
The same computation but not computing the derivatives
setup⁡computederivatives=false,alternativehankeldefinition=false
alternativehankeldefinition=false,computederivatives=false
`?`⁢ν~+∂∂s`?`⁢s+`?`s
hankel⁡f⁡tt,t,s,ν
s⁢`?`+`?`2⁢ν~
hankel⁡D⁡f⁡t,t,s,ν
−s⁢`?`⁢ν~−`?`⁢ν~+`?`+`?`2⁢ν~
Bessel's differential equation
pde≔diff⁡f⁡r,z,z,z+diff⁡f⁡r,z,r,r+diff⁡f⁡r,z,rr−νr2⁢f⁡r,z=0
pde≔∂2∂z2f⁡r,z+∂2∂r2f⁡r,z+∂∂rf⁡r,zr−ν~2⁢f⁡r,zr2=0
hankel⁡pde,r,p,ν
∂2∂z2`?`−p2⁢`?`=0
setup⁡alternativehankeldefinition=true
alternativehankeldefinition=true
hankel⁡t12,t,s−2,1
1s−232
hankel⁡exp⁡−a⁢t,t,s,ν
Γ⁡ν~+32⁢hypergeom⁡ν~2+54,ν~2+34,ν~+1,−s2a~2⁢sν~+12⁢2−ν~⁢a~−ν~−32Γ⁡ν~+1
Adding to the table
addtable⁡hankel,myfunc⁡t,MyFunc⁡s,ν,t,s,hankel=ν::Range⁡−∞,∞
hankel⁡myfunc⁡x,x,y,ν
MyFunc⁡y,ν~
See Also
dsolve
examples, hankel
inttrans[addtable]
Download Help Document