MLE Flashcards
What is the goal of Maximum Likelihood Estimation (MLE)?
To estimate the parameter value that makes the observed data most probable.
What is the PMF of a Bernoulli distribution?
f(x; p) = p^x * (1 - p)^(1 - x) for x ∈ {0, 1}
What is the likelihood function for a Bernoulli sample?
L(p) = p^(sum x_i) * (1 - p)^(n - sum x_i)
Why do we use the log-likelihood?
It simplifies the product of terms into a sum, making differentiation easier.
What is the MLE for p in a Bernoulli distribution?
p̂ = (1/n) * sum X_i = X̄ (sample mean)
What is the PDF of the Pareto distribution used in the example?
f(x; γ) = γ / (1 + x)^(γ + 1), for x > 0
What is the log-likelihood function for the Pareto distribution?
ℓ(γ) = n * ln(γ) - (γ + 1) * sum ln(1 + x_i)
What is the MLE for γ in the Pareto distribution?
γ̂ = n / sum ln(1 + X_i)
What is the invariance property of MLE?
If θ̂ is the MLE for θ, then g(θ̂) is the MLE for g(θ)
What is the difference between an estimator and an estimate?
An estimator is a random variable; an estimate is a specific observed value.