Generalized Normal Distribution#
This distribution is also known as the exponential power distribution. It has a single shape parameter β>0. It reduces to a number of common distributions.
Functions#
f(x;β)=β2Γ(1/β)e−|x|β
F(x;β)=12+sgn(x)γ(1/β,xβ)2Γ(1/β)
γ is the lower incomplete gamma function. γ(s,x)=∫x0ts−1e−tdt.
h[X;β]=1β−log(β2Γ(1/β))
Moments#
μ=0mn=0md=0μ2=Γ(3/β)γ(1/β)γ1=0γ2=Γ(5/β)Γ(1/β)Γ(3/β)2−3
Special Cases#
Laplace distribution (β=1)
Normal distribution with μ2=1/2 (β=2)
Uniform distribution over the interval [−1,1] (β→∞)
Sources#
https://en.wikipedia.org/wiki/Generalized_normal_distribution#Version_1
https://en.wikipedia.org/wiki/Incomplete_gamma_function#Lower_incomplete_Gamma_function
Implementation: scipy.stats.gennorm