Maximum Likelihood Estimation (MLE)

Maximum Likelihood Estimation (MLE)

Overview

Definition

Maximum Likelihood Estimation (MLE) is a method of estimating the parameters of a probability distribution by maximizing a likelihood function, so that under the assumed statistical model, the observed data is most probable.


1. Concept

Distinction:

MLE seeks to find θ^ that maximizes L(θ|X).


2. Procedure

  1. Define the Likelihood Function:

    L(θ)=i=1nf(xi;θ)

    (Assuming independence).

  2. Log-Likelihood:
    It is computationally easier to maximize the sum of logs than the product of probabilities.

    (θ)=i=1nlnf(xi;θ)
  3. Differentiate: Take the derivative with respect to θ and set to zero.

    θ=0
  4. Solve: Find θ^.


3. Properties of MLE