Simple Poles of Gamma Function
Theorem
The domain of the Gamma function as a complex function is as follows: Moreover, the set of singularities of , , is a set of simple poles.
- represents the set of natural numbers, represents the set of integers, and represents the set of complex numbers.
Explanation
Visualization
The above figure is a graph of only the real part of the Gamma function on the real axis, and it can be seen that the function values diverge at non-positive integers.
Code
The following is Julia code for visualization.
using SpecialFunctions, LaTeXStrings
z = -5:0.001:5
Γz = gamma.(Complex.(z))
plot(z, real.(Γz), lw = 2, color = :black, xticks = -5:1:5,
xlims = [-5, 5], ylims = [-5, 5], size = [400, 400])
hline!([0], color = :black)
vline!(-5:0, style = :dash, color = :red)
xlabel!(L"\re(z)")
ylabel!(L"\re(\Gamma (z))")
Proof
In , the Gamma function is well defined for values other than . Dividing both sides of Euler’s reflection formula by , we get: Substituting , we get: And substituting , we get: Since this divergence is the same for all , has singularities at all non-positive integers, and all these singularities are simple poles because there is only one in the denominator.
■