logo

Simple Poles of Gamma Function 📂Functions

Simple Poles of Gamma Function

Theorem

The domain of the Gamma function Γ\Gamma as a complex function is as follows: C(ZN)=C{0,1,2,} \mathbb{C} \setminus \left( \mathbb{Z} \setminus \mathbb{N} \right) = \mathbb{C} \setminus \left\{ 0 , -1, -2, \cdots \right\} Moreover, the set of singularities of Γ\Gamma, (ZN)\left( \mathbb{Z} \setminus \mathbb{N} \right), is a set of simple poles.

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

Euler’s Reflection Formula: Γ(1p)Γ(p)=πsinπp {\Gamma (1-p) \Gamma ( p )} = { {\pi} \over {\sin \pi p } }

In Re(z)>0\re (z) > 0, the Gamma function Γ(z)=0tz1etdt\Gamma (z) = \int_{0}^{\infty} t^{z-1} e^{t} dt is well defined for values other than 00. Dividing both sides of Euler’s reflection formula by Γ(z)\Gamma (z), we get: Γ(1z)=πΓ(z)sinπz \Gamma (1-z) = {\frac{ \pi }{ \Gamma (z) \sin \pi z }} Substituting z=1z = 1, we get: Γ(0)=Γ(11)=πΓ(1)sin0π=π0!0= \Gamma (0) = \Gamma (1-1) = {\frac{ \pi }{ \Gamma (1) \cdot \sin 0 \pi }} = {\frac{ \pi }{ 0! \cdot 0 }} = \infty And substituting z=2z = 2, we get: Γ(1)=Γ(12)=πΓ(2)sin1π=π1!0= \Gamma (-1) = \Gamma (1-2) = {\frac{ \pi }{ \Gamma (2) \cdot \sin 1 \pi }} = {\frac{ \pi }{ 1! \cdot 0 }} = \infty Since this divergence is the same for all z{0,1,2,}z \in \left\{ 0, 1, 2, \dots \right\}, Γ\Gamma has singularities at all non-positive integers, and all these singularities are simple poles because there is only one sinπz\sin \pi z in the denominator.