Cauchy Distribution: A Distribution Without a Mean
Definition
The continuous probability distribution with the following probability density function is called a Cauchy distribution.
Explanation
It may seem like all probability distributions would have a mean and variance, but in reality, that’s not always the case. A prime example of this is the Cauchy distribution, which at a glance resembles the normal distribution but has thicker tails on both sides. Regardless of the parameters, since there is no moment-generating function, it means that everything involving moments—including the population mean and variance—cannot exist.
Of course, whether or not there’s a population mean, a sample mean can still be calculated. In fact, for a Cauchy distribution translated by along the axis, the mle of appears as the sample mean.
Meanwhile, the probability density function of the t-distribution is: Thus, the Cauchy distribution can be seen as a t-distribution with degrees of freedom .
Theorem
The moment-generating function of the Cauchy distribution does not exist.
Proof1
The probability distribution function of the Cauchy distribution is given by . To show that the moment-generating function diverges, consider when then, by the Mean Value Theorem, there exists a that satisfies the above equation. A little rearrangement of the equation yields the following inequality: Returning to the integral: Therefore, the moment-generating function of the Cauchy distribution does not exist.
■
Code
The following is Julia code that displays the probability density functions of the Cauchy distribution, the t-distribution, and the Cauchy distribution.
@time using LaTeXStrings
@time using Distributions
@time using Plots
cd(@__DIR__)
x = -4:0.1:4
plot(x, pdf.(Cauchy(), x),
color = :red,
label = "Cauchy", size = (400,300))
plot!(x, pdf.(TDist(3), x),
color = :orange,
label = "t(3)", size = (400,300))
plot!(x, pdf.(TDist(30), x),
color = :black, linestyle = :dash,
label = "t(30)", size = (400,300))
plot!(x, pdf.(Normal(), x),
color = :black,
label = "Standard Normal", size = (400,300))
xlims!(-4,5); ylims!(0,0.5); title!(L"\mathrm{pdf\,of\, t}(\nu)")
png("pdf")
Hogg et al. (2013). Introduction to Mathematical Statistcs(7th Edition): p63. ↩︎