inttrans
mellin
Mellin transform
Calling Sequence
Parameters
Description
Examples
mellin(expr, x, s)
expr
-
expression to be transformed
x
variable expr is transformed with respect to x
s
parameter of transform
opt
option to run this under (optional)
The function mellin computes the Mellin transform (M(s)) of expr (m(x)) with respect to x, using the definition
M⁡s=∫0∞m⁡x⁢xs−1ⅆx
Some expressions involving exponentials, polynomials, algebraic functions, trigonometrics (sin, cos, sinh, cosh) or various special functions can be transformed. The procedure will be able to obtain the Mellin transforms of all the functions of the type K⁢ln⁡xn⁢f⁡a⁢xb⁢xc as long as the Mellin transform of f⁡x is known.
The mellin function attempts to reduce the expression according to a set of simplification rules and then tries to match the reduced expression against an internal table of basic Mellin transforms.
Users can add their own functions to mellin's internal lookup table by using the addtable function.
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,mellin) allows the use of the abbreviated form of this command.
with⁡inttrans:
assume⁡0<s:
mellin⁡a⁢xb⁢exp⁡−x14,x,s
4⁢a⁢Γ⁡4⁢s~+4⁢b
mellin⁡xx2+1,x,s
π2⁢sin⁡π⁢s~+12
mellin⁡ln⁡x⁢xx2+1,x,s−2
−π2⁢cos⁡π⁢s~−124⁢sin⁡π⁢s~−122
mellin⁡1x3−x+1,x,s
∑_α=RootOf⁡_Z3−_Z+1⁡6⁢_α2+9⁢_α−4⁢−_αs~23⁢_α⁢πsin⁡π⁢s~
mellin⁡exp⁡−3⁢x2exp⁡x2−1,x,s
Γ⁡s~2⁢ζ⁡s~2⁢2s~2⁢3s~2−2s~2⁢3s~2−2s~2−3s~22⁢2s~2⁢3s~2
mellin⁡ln⁡x⁢exp⁡−3⁢x2exp⁡x2−1,x,s
Γ⁡s~2⁢Ψ⁡s~2⁢ζ⁡s~2⁢2s~2⁢3s~2−Ψ⁡s~2⁢2s~2⁢3s~2+ζ1⁡s~2⁢2s~2⁢3s~2−Ψ⁡s~2⁢2s~2−Ψ⁡s~2⁢3s~2+ln⁡2⁢3s~2+ln⁡3⁢2s~24⁢2s~2⁢3s~2
addtable⁡mellin,f⁡t,F⁡s,t,s:
mellin⁡f⁡x,x,s
F⁡s~
See Also
dsolve
inttrans[addtable]
inttrans[invmellin]
Download Help Document