inttrans
invmellin
inverse Mellin transform
Calling Sequence
Parameters
Description
Examples
invmellin(expr, t, s)
expr
-
expression, equation, or set of expressions or equations to be transformed
t
variable expr is transformed with respect to t
s
parameter of transform
ran
range for Re(t) (optional)
opt
option to run transform under (optional)
The invmellin function computes the inverse Mellin transform (F(s)) of expr (f(t)), a linear transformation from CC→C0,∞ defined by the contour integral:
F⁡s=−I2⁢∫c−∞⁢Ic+∞⁢If⁡t⁢s−tⅆtπ
In this integral, c is assumed to be real. Also note that Maple currently does not handle general contour integrals. The above contour integral definition is only used to provide the information below on properties of the inverse Mellin transform.
The function F⁡s returned is defined only on the positive real axis.
There are multiple transforms F⁡s for a given f⁡t, corresponding to the cases where c1<ℜ⁡t <c2 for various boundaries c1 and c2. The range is specified by the parameter ran. This parameter is optional. If the range parameter is not given, it is assumed to be −∞..∞.
All constants are assumed to be complex unless otherwise specified.
The invmellin function attempts to simplify an expression according to a set of heuristics, and then to match the result against internal lookup tables of patterns. These tables are of expressions containing algebraic, Bessel, exponential, GAMMA, trigonometric, as well as other functions. The user can add their own functions to invmellin's lookup tables with the function addtable.
Other functions that can be transformed are linear combinations of products of integer powers of t; rational polynomials; terms of the form a−t where 0<a; some definite integrals of functions whose transforms are known; derivatives of functions whose transforms are known; convolutions of two functions f⁡t and g⁡t whose transforms are known; and functions of the form f⁡a⁢t+b and f⁡a⁢tn with 0<a,b complex, and n a positive integer where the transforms of f⁡t and f⁡tn are known.
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.
invmellin recognizes the Dirac-delta (or unit-impulse) function as Dirac(t) and Heaviside's unit step function as Heaviside(t).
The command with(inttrans,invmellin) allows the use of the abbreviated form of this command.
with⁡inttrans:
assume⁡0<a
assume⁡b,complex:
assume⁡c,complex:
assume⁡n,posint:
Inversion of mellin
G≔mellin⁡g⁡x,x,y
G≔`?`
invmellin⁡G,y,z
g⁡z
Adding to the table
addtable⁡invmellin,F⁡t,f⁡s,t,s,invmellin=−∞..∞:
addtable⁡invmellin,F1⁡t,f1⁡s,t,s,invmellin=−∞..∞:
addtable⁡invmellin,F2⁡t,f2⁡s,t,s,invmellin=−∞..∞:
invmellin⁡F⁡x,x,y
f⁡y
invmellin⁡F1⁡x,x,y
f1⁡y
invmellin⁡F2⁡x,x,y
f2⁡y
General properties
invmellin⁡b⁢F1⁡z+c⁢F2⁡z,z,x
b~⁢f1⁡x+c~⁢f2⁡x
invmellin⁡F⁡a⁢z+b,z,x
xb~a~⁢f⁡x1a~a~
invmellin⁡F⁡a⁢zn,z,x
Typesetting:-mfrac⁡ℳ−1⁡F⁡zn~,z,x1a~1n~,a~1n~
invmellin⁡D⁡F⁡z,z,x
ln⁡x⁢f⁡x
invmellin⁡z⁢F⁡z,z,x
−x⁢ⅆⅆxf⁡x
invmellin⁡a−z⁢F⁡z,z,x
ℳ−1⁡ⅇ−z⁢ln⁡a~⁢F⁡z,z,x
invmellin⁡Γ⁡2−zΓ⁡1−z⁢F⁡z−1,z,x
ⅆⅆxf⁡x
invmellin⁡F1⁡z⁢F2⁡1−z,z,x
∫0∞f1⁡x⁢_U⁢f2⁡_Uⅆ_U
Some simple functions
invmellin⁡1,z,x
Dirac⁡x−1
invmellin⁡z,z,x
−x⁢Dirac⁡1,x−1
invmellin⁡exp⁡a⁢z2,z,x
ⅇ−ln⁡1x24⁢a~2⁢π⁢a~
Specifying ranges
invmellin⁡Γ⁡z,z,x
ℳ−1⁡Γ⁡z,z,x
invmellin⁡Γ⁡z,z,x,0..∞
ⅇ−x
invmellin⁡Γ⁡z,z,x,−1..0
ⅇ−x−1
See Also
dsolve
inttrans[addtable]
inttrans[mellin]
Download Help Document