2.15.1 Beta Flashcards
(13 cards)
What is the support of the beta distribution?
The beta distribution is defined on the interval [0, 1].
How do you write the beta distribution with parameters?
If X ~ Beta(α, β), then X is a beta random variable with shape parameters α > 0 and β > 0.
What is the PDF of the beta distribution?
f(x) = [x^(α - 1) * (1 - x)^(β - 1)] / B(α, β), for 0 < x < 1
What is the beta function B(α, β)?
B(α, β) = ∫₀¹ t^(α - 1) * (1 - t)^(β - 1) dt
What happens when α = β = 1?
The beta distribution becomes Uniform(0, 1) with f(x) = 1 for 0 < x < 1.
Does the beta distribution have a closed-form CDF?
No — the CDF must be computed numerically.
What is the mean of X ~ Beta(α, β)?
E[X] = α / (α + β).
What is the variance of X ~ Beta(α, β)?
Var(X) = (α * β) / [(α + β)² * (α + β + 1)].
What shapes can the beta distribution take?
Uniform, U-shaped, J-shaped, bell-shaped — it’s super flexible.
What does the beta distribution model in practice?
Proportions and probabilities — anything bounded between 0 and 1.
How do you find the constant in a beta-like PDF?
Integrate the PDF over [0, 1] and set it equal to 1 to solve for the constant.
How do you recognize a beta-shaped PDF?
It has the form: f(x) = k * x^(α - 1) * (1 - x)^(β - 1), on [0, 1].
What is the shortcut to compute Var(X) if you know E[X] and E[X²]?
Var(X) = E[X²] - (E[X])².