AP Statistics Curriculum 2007 Estim MOM MLE

From Socr

(Difference between revisions)
Jump to: navigation, search
Line 24: Line 24:
===Maximum Likelihood Estimation (MLE)===
===Maximum Likelihood Estimation (MLE)===
-
[http://en.wikipedia.org/wiki/Maximum_likelihood Maximum likelihood estimation (MLE)] is another popular statistical technique for parameter estimation. Modeling distribution parameters using MLE estimation based on observed real world data offers a way of tuning the free parameters of the model to provide an optimum fit.
+
[http://en.wikipedia.org/wiki/Maximum_likelihood Maximum likelihood estimation (MLE)] is another popular statistical technique for parameter estimation. Modeling distribution parameters using MLE estimation based on observed real world data offers a way of tuning the free parameters of the model to provide an optimum fit. Summarizing the MLE:
-
Summarizing the MOM:
 
-
* First: Determine the k parameters of interest and the specific (model) distribution for this process;
 
-
* Second: Compute the first k (or more) [[AP_Statistics_Curriculum_2007_Distrib_MeanVar#Higher_Moments |sample-moments]];
 
-
* Third: Set the [[AP_Statistics_Curriculum_2007_Distrib_MeanVar#Higher_Moments |sample-moments]] equal to the population moments and solve a (linear or non-linear) system of k equations with k unknowns.
 
-
====MOM Proportion Example====
+
Suppose we observe a sample <math>x_1,x_2,\dots,x_n</math> of ''n'' values from one distribution with [[AP_Statistics_Curriculum_2007_Distrib_RV#Probability_density.2Fmass_and_.28cumulative.29_distribution_functions |probability density/mass function]] <math>f_\theta</math>, and we are trying to estimate the (vector of) parameter(s) <math>\theta</math>. We can compute the (multivariate) probability density associated with our observed data, <math> f_\theta(x_1,\dots,x_n \mid \theta).\,\!</math>
-
Let's look at the motivational problem we discussed above. We want to flip a coin 8 times, observe the number of heads (successes) in the outcomes and use that to inffer the true (unknown) probability of a Head (''P(H)=?'') for this specific coin.
+
-
* Hypothetical solution: Suppose we observe the following sequence of outcomes ''{T,H,T,H,H,T,H,H}''. Using the MOM protocol we obtain:
+
As a function of &theta; with ''x''<sub>1</sub>, ..., ''x''<sub>''n''</sub> fixed, the [http://en.wikipedia.org/wiki/Likelihood_function likelihood function] is:
-
** There is one parameter of interest ''p=P(H)'' and the process is a [[AP_Statistics_Curriculum_2007_Distrib_Binomial |Binomial experiment]].
+
-
** The first [[AP_Statistics_Curriculum_2007_Distrib_MeanVar#Higher_Moments |sample-moment]] for a [[AP_Statistics_Curriculum_2007_Distrib_Binomial |Binomial process]] is p=E(X). Therefore, if the [[EBook#Random_Variables |random variable]] ''X = {# H’s}'', then ''np=8p=E(X)= Sample#H’s = 5'' , which yeields that the first sample moment is <math>\hat{p}={5\over 8}</math>. Hence, we would estimate the uknown <math>p=P(H) \approx MOM(p)=\hat{p}={5\over 8}</math>.
+
-
* Experimental Solution: We can also use [http://socr.ucla.edu/htmls/SOCR_Experiments.html SOCR Experiments] to demonstrate the MOM estimation technique. You can refer to the [[SOCR_EduMaterials_Activities_CoinSampleExperiment | SOCR Coin Sample Experiment]] for more information of this SOCR applet. The The figure below illustrates flipping a coin 8 times and observing 5 Heads.  This is a [[AP_Statistics_Curriculum_2007_Distrib_Binomial | Binomial(n=8, p=0.65)]] distribution. However, let's pretend for a minute that we did '''not''' know the actual ''p=P(H)'' value! So we have a good approximation <math>0.65=p=P(H) \approx MOM(p)=\hat{p}={5\over 8}=0.625</math>. Of course, if we run this experiment again, our MOM estimate for ''p'' would change!
+
:<math>
 +
\mathcal{L}(\theta) = f_{\theta}(x_1,\dots,x_n \mid \theta).\,\!
 +
</math>
 +
 
 +
The method of maximum likelihood estimates <math>\theta</math> by finding the value of <math>\theta</math> that maximizes <math>\mathcal{L}(\theta)</math>. Thus, the '''maximum likelihood estimator''' ('''MLE''') of <math>\theta</math> is:
 +
 
 +
:<math>\widehat{\theta} = \underset{\theta}{\operatorname{arg\ max}}\ \mathcal{L}(\theta).</math>
 +
 
 +
The outcome of a maximum likelihood analysis is the maximum likelihood estimate <math>\hat{\theta}</math>. One typically assumes that the observed data comes are independent and identically distributed (IID) with unknown parameters (<math>\theta</math>). This considerably simplifies the problem because the likelihood can then be written as a product of ''n'' univariate probability densities:
 +
 
 +
:<math>\mathcal{L}(\theta) = \prod_{i=1}^n f_{\theta}(x_i \mid \theta)</math>
 +
 
 +
and since maxima are unaffected by monotone transformations, one can take the logarithm of this expression to turn it into a sum:
 +
 
 +
:<math>\mathcal{L}^*(\theta) = \sum_{i=1}^n \log f_{\theta}(x_i \mid \theta).</math>
 +
 
 +
The maximum of this expression can then be found numerically using various optimization algorithms.
 +
 
 +
Note that the maximum likelihood estimator may not be unique, or is guaranteed to exist.
 +
 
 +
====MLE Proportion Example====
 +
Let's look again at the motivational problem of flipping a coin 8 times, observing the number of heads (successes) in the outcomes and using this inferring (based on MLE) the true (unknown) probability of a Head (''P(H)=?'') for this specific coin.
 +
 
 +
Suppose again we observe the same sequence of 8 outcomes ''{T,H,T,H,H,T,H,H}''. Using the MLE protocol we obtain:
-
<center>[[Image:SOCR_EBook_Dinov_Estimates_MOM_MLE_032808_Fig2.jpg|400px]]</center>
 
=== MOM vs. MLE===
=== MOM vs. MLE===

Revision as of 03:13, 30 March 2008

Contents

General Advance-Placement (AP) Statistics Curriculum - Method of Moments and Maximum Likelihood Estimation

Suppose we flip a coin 8 times and observe the number of heads (successes) in the outcomes. How would we estimate the true (unknown) probability of a Head (P(H)=?) for this specific coin? There are a number of other similar situations where we need to evaluate, predict or estimate a population (or process) parameter of interest using an observed data sample.

There are many ways to obtain point (value) estimates of various population parameters of interest, using observed data from the specific process we study. The method of moments and the maximum likelihood estimation are among the most popular ones frequently used in practice.

Method of Moments (MOM) Estimation

Parameter estimation using the method of moments is both intuitive and easy to calculate. The idea is to use the sample data to calculate some sample moments and then set these equal to their corresponding population counterparts. Typically the latter involve the parameter(s) that we are interested in estimating and thus we obtain a computationally tractable protocol for their estimation. Summarizing the MOM:

  • First: Determine the k parameters of interest and the specific (model) distribution for this process;
  • Second: Compute the first k (or more) sample-moments;
  • Third: Set the sample-moments equal to the population moments and solve a (linear or non-linear) system of k equations with k unknowns.

MOM Proportion Example

Let's look at the motivational problem we discussed above. We want to flip a coin 8 times, observe the number of heads (successes) in the outcomes and use that to inffer the true (unknown) probability of a Head (P(H)=?) for this specific coin.

  • Hypothetical solution: Suppose we observe the following sequence of outcomes {T,H,T,H,H,T,H,H}. Using the MOM protocol we obtain:
  • Experimental Solution: We can also use SOCR Experiments to demonstrate the MOM estimation technique. You can refer to the SOCR Coin Sample Experiment for more information of this SOCR applet. The The figure below illustrates flipping a coin 8 times and observing 5 Heads. This is a Binomial(n=8, p=0.65) distribution. However, let's pretend for a minute that we did not know the actual p=P(H) value! So we have a good approximation 0.65=p=P(H) \approx MOM(p)=\hat{p}={5\over 8}=0.625. Of course, if we run this experiment again, our MOM estimate for p would change!

More information about the method of mements for parameter (point) estimation may be found here.

Maximum Likelihood Estimation (MLE)

Maximum likelihood estimation (MLE) is another popular statistical technique for parameter estimation. Modeling distribution parameters using MLE estimation based on observed real world data offers a way of tuning the free parameters of the model to provide an optimum fit. Summarizing the MLE:


Suppose we observe a sample x_1,x_2,\dots,x_n of n values from one distribution with probability density/mass function fθ, and we are trying to estimate the (vector of) parameter(s) θ. We can compute the (multivariate) probability density associated with our observed data,  f_\theta(x_1,\dots,x_n \mid \theta).\,\!

As a function of θ with x1, ..., xn fixed, the likelihood function is:

 
 \mathcal{L}(\theta) = f_{\theta}(x_1,\dots,x_n \mid \theta).\,\!

The method of maximum likelihood estimates θ by finding the value of θ that maximizes \mathcal{L}(\theta). Thus, the maximum likelihood estimator (MLE) of θ is:

\widehat{\theta} = \underset{\theta}{\operatorname{arg\ max}}\ \mathcal{L}(\theta).

The outcome of a maximum likelihood analysis is the maximum likelihood estimate \hat{\theta}. One typically assumes that the observed data comes are independent and identically distributed (IID) with unknown parameters (θ). This considerably simplifies the problem because the likelihood can then be written as a product of n univariate probability densities:

\mathcal{L}(\theta) = \prod_{i=1}^n f_{\theta}(x_i \mid \theta)

and since maxima are unaffected by monotone transformations, one can take the logarithm of this expression to turn it into a sum:

\mathcal{L}^*(\theta) = \sum_{i=1}^n \log f_{\theta}(x_i \mid \theta).

The maximum of this expression can then be found numerically using various optimization algorithms.

Note that the maximum likelihood estimator may not be unique, or is guaranteed to exist.

MLE Proportion Example

Let's look again at the motivational problem of flipping a coin 8 times, observing the number of heads (successes) in the outcomes and using this inferring (based on MLE) the true (unknown) probability of a Head (P(H)=?) for this specific coin.

Suppose again we observe the same sequence of 8 outcomes {T,H,T,H,H,T,H,H}. Using the MLE protocol we obtain:


MOM vs. MLE

  • The MOM is inferior to Fisher's MLE method, because maximum likelihood estimators have higher probability of being close to the quantities to be estimated.
  • MLE may be intractable in some situations, whereas the MOM estimates can be quickly and easily calculated by hand or using a computer.
  • MOM estimates may be used as the first approximations to the solutions of the MLE method, and successive improved approximations may then be found by the Newton-Raphson method. In this respect, the MOM and MLE are symbiotic.
  • Sometimes, MOM estimates may be outside of the parameter space; i.e., they are unreliable, which is never a problem with the MLE method.
  • MOM estimates are not necessarily sufficient statistics, i.e., they sometimes fail to take into account all relevant information in the sample.
  • MOM may be prefered to MLE for estimating some structural parameters (e.g., parameters of a utility function, instead of parameters of a known probability distribution), when appropriate probability distributions are unknown.

Parameter Estimation Examples

The SOCR Modeler and the corresponfing SOCR Modeler Activities provide a number of interesting examples of parameter (point) estimation in terms of fitting best models to observed data.


References




Translate this page:

(default)

Deutsch

Español

Français

Italiano

Português

日本語

България

الامارات العربية المتحدة

Suomi

इस भाषा में

Norge

한국어

中文

繁体中文

Русский

Nederlands

Ελληνικά

Hrvatska

Česká republika

Danmark

Polska

România

Sverige

Personal tools