MLE Flashcards

1
Q

What is the goal of Maximum Likelihood Estimation (MLE)?

A

To estimate the parameter value that makes the observed data most probable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the PMF of a Bernoulli distribution?

A

f(x; p) = p^x * (1 - p)^(1 - x) for x ∈ {0, 1}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the likelihood function for a Bernoulli sample?

A

L(p) = p^(sum x_i) * (1 - p)^(n - sum x_i)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Why do we use the log-likelihood?

A

It simplifies the product of terms into a sum, making differentiation easier.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the MLE for p in a Bernoulli distribution?

A

p̂ = (1/n) * sum X_i = X̄ (sample mean)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the PDF of the Pareto distribution used in the example?

A

f(x; γ) = γ / (1 + x)^(γ + 1), for x > 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the log-likelihood function for the Pareto distribution?

A

ℓ(γ) = n * ln(γ) - (γ + 1) * sum ln(1 + x_i)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the MLE for γ in the Pareto distribution?

A

γ̂ = n / sum ln(1 + X_i)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the invariance property of MLE?

A

If θ̂ is the MLE for θ, then g(θ̂) is the MLE for g(θ)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the difference between an estimator and an estimate?

A

An estimator is a random variable; an estimate is a specific observed value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly