Lecture Notes on Beta Distributions | STAT 341, Study notes of Probability and Statistics

Material Type: Notes; Class: INTR THY PROBAB&S I; Subject: STATISTICS; University: Iowa State University; Term: Unknown 1989;

Typology: Study notes

Pre 2010

Uploaded on 09/02/2009

koofers-user-mga
koofers-user-mga 🇺🇸

10 documents

1 / 2

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Beta Distribution - Section 4.7
The beta distribution is used to model continuous data with values between 0 and 1. Typically,
beta distributions are used to model proportions. The characteristics of the beta distribution are
The parameters of the beta distribution are α > 0 and β > 0. Unlike the gamma distribution,
these parameters do not have special names. With different values of these parameters, the
shape of the probability density curve can change significantly.
The probability density curve for a beta distribution is
f(y) = yα1(1 y)β1
B(α, β)0y1
where B(α, β) = Γ(α)Γ(β)
Γ(α+β)
Under most circumstances, the distribution function F(y) for the beta distribution has no
closed form solution. Therefore, in order to find probabilities associated with the beta distri-
bution, we must use tables or a statistical computer package.
Here are graphs of the probability density function and the distribution function for a beta
distribution with α= 2 and β= 3.
p.d.f. of Beta Distribution with alpha = 2 and beta = 3
y
f(y)
0.0 0.2 0.4 0.6 0.8 1.0
0.0 0.5 1.0 1.5
Distribution of Beta Distribution with alpha = 2 and beta = 3
y
F(y)
0.0 0.2 0.4 0.6 0.8 1.0
0.0 0.2 0.4 0.6 0.8 1.0
The theoretical mean of the beta distribution is
µ=E(Y) = α
α+β
The variance of the beta distribution is
σ2=V(Y) = αβ
(α+β)2(α+β+ 1)
Working with the beta distribution in R.
To find the probability P(Yy) the command in R is
pbeta(y,alpha,beta)
1
pf2

Partial preview of the text

Download Lecture Notes on Beta Distributions | STAT 341 and more Study notes Probability and Statistics in PDF only on Docsity!

Beta Distribution - Section 4.

The beta distribution is used to model continuous data with values between 0 and 1. Typically, beta distributions are used to model proportions. The characteristics of the beta distribution are

  • The parameters of the beta distribution are α > 0 and β > 0. Unlike the gamma distribution, these parameters do not have special names. With different values of these parameters, the shape of the probability density curve can change significantly.
  • The probability density curve for a beta distribution is

f (y) = yα−^1 (1 − y)β−^1 B(α, β)

0 ≤ y ≤ 1

where B(α, β) = Γ( Γ(αα)Γ(+ββ))

  • Under most circumstances, the distribution function F (y) for the beta distribution has no closed form solution. Therefore, in order to find probabilities associated with the beta distri- bution, we must use tables or a statistical computer package. Here are graphs of the probability density function and the distribution function for a beta distribution with α = 2 and β = 3. p.d.f. of Beta Distribution with alpha = 2 and beta = 3

y

f(y)

0.0 0.2 0.4 0.6 0.8 1.

0.^ 0.^ 1.^

Distribution of Beta Distribution with alpha = 2 and beta = 3

y

F(y)

0.0 0.2 0.4 0.6 0.8 1.

0.^ 0.^ 0.^ 0.^ 0.^

  • The theoretical mean of the beta distribution is

μ = E(Y ) = α α + β

  • The variance of the beta distribution is

σ^2 = V (Y ) = αβ (α + β)^2 (α + β + 1)

Working with the beta distribution in R.

To find the probability P (Y ≤ y) the command in R is

pbeta(y,alpha,beta)

To find the value of y so that P (Y ≤ y) = p the command in R is

qbeta(p,alpha,beta)

To generate observations from a beta distribution the command in R is

rbeta(numobs,alpha,beta)

where numobs is the number of observations you would like to generate.

Problems.

  1. The relative humidity Y when measured at a location, has a beta distribution with α = 4 and β = 3. Find the probability that the relative humidity at this location will be greater than 60%.
  2. The percentage of impurities per batch in a chemical product is a random variable Y with a beta distribution with α = 3 and β = 2. A batch with more than 40% impurities cannot be sold.

(a) What is the probability that a randomly selected batch cannot be sold due to excess impurities? (b) Find the mean and variance of the percentage of impurities in a randomly selected batch of chemicals.

  1. What is another name for the beta distribution when α = 1 and β = 1?
  2. The weekly repair cost Y for a machine has a beta distribution with α = 1 and β = 3. (Measurements are in hundreds of dollars). How much money should be budgeted each week for repair costs so that the actual cost Y will exceed the budgeted amount only 10% of the time?