

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Notes; Class: INTR THY PROBAB&S I; Subject: STATISTICS; University: Iowa State University; Term: Unknown 1989;
Typology: Study notes
1 / 2
This page cannot be seen from the preview
Don't miss anything!


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
f (y) = yα−^1 (1 − y)β−^1 B(α, β)
0 ≤ y ≤ 1
where B(α, β) = Γ( Γ(αα)Γ(+ββ))
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.^
μ = E(Y ) = α α + β
σ^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.
(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.