Method of Moments

Basic Concepts

Given a collection of data that we believe fits a particular distribution, we would like to estimate the parameters that best fit the data. We now describe one method for doing this, the method of moments. Elsewhere we will describe two other such methods: maximum likelihood method and regression.

In the method of moments approach, we use facts about the relationship between distribution parameters of interest and related statistics that can be estimated from a sample (especially the mean and variance). We will use the sample mean  as our estimator for the population mean μ and the statistic t2 defined by

Biased sample variance

as an estimator for the population variance σ2.  and t2 are implemented in Excel via the AVERAGE and VAR.P functions, respectively.

Sample vs. Population Variance

From Estimators, we know that t2 is a biased estimator, but as the sample size gets larger, t2 becomes (asymptotically) unbiased and consistent.

Since often our samples are small, we will tend to use the sample variance s2, which is an unbiased, consistent estimator, instead of σ2. This is not technically the method of moments approach, but it will often serve our purposes. s2 is implemented in Excel via the VAR.S function. Note too that when we use s2 in the following examples, we should technically replace s2 by (n–1)s2/n to get t2.

Topics

Other Distributions

Many of the distributions we have studied on this website can be handled as for the exponential distribution described above. For example, the parameters for the normal distribution can be estimated by the sample mean and standard deviation. Similarly, the lambda parameter for the Poisson distribution can be estimated by the sample mean.

The gamma distribution parameters can be calculated as βs2/ and α = /β.

The geometric distribution parameter can be estimated as p = 1/(1–).

We can estimate the Gumbel distribution parameters by β = s√6/π and μ = βγ where γ is the Euler-Mascheroni constant with a value approximately equal to .577215665 (see Gumbel Distribution).

The Logistic distribution parameters are estimated by μ = and β = s√3/π.

The Laplace distribution parameters can be estimated by μ = and β = s/√2.

Since the mean and standard deviation of the Cauchy distribution are undefined, these cannot be used to estimate the distribution’s parameters. A related approach is to estimate the µ parameter by the median and the σ parameter by half the interquartile range of the sample. A better estimate for µ is the mean of the middle 24% of the sample; i.e. =TRIMMEAN(R1,.76) where R1 contains the sample values.

Reference

Wikipedia (2021) Method of moments (statistics)
https://en.wikipedia.org/wiki/Method_of_moments_(statistics)

4 thoughts on “Method of Moments”

  1. Dear Charles
    I have one question. Given that i have mean and SE, whats the proper way to find parameters of a beta distribution?
    Best Regards

    Reply
  2. Hi Charles,
    I think there is a typo in the estimation of beta for Gumbel distribution:
    Beta=s*sqrt(6)/Pi

    Many thanks for your website, it is very useful!

    Reply

Leave a Comment