

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
The normal distribution, its properties, and graphs. It also covers the probability density function, distribution function, and how to find probabilities using r. Applications include finding probabilities of scores on an achievement test and the 'fill' problem in industries.
Typology: Study notes
1 / 2
This page cannot be seen from the preview
Don't miss anything!


A normal distribution is used to model continuous data when the probability histogram has an approximate bell-shape. The normal distribution has the following properties:
f (y) =
σ
2 π
e−^
(y−μ)^2 2 σ^2 − ∞ < y < ∞
p.d.f. of Normal distribution with mean = 0 and variance = 1
y
f(y)
-4 -2 0 2 4
0.^ 0.^ 0.^ 0.^
Distribution of Normal distribution with mean = 0 and variance = 1
y
F(y)
-4 -2 0 2 4
0.^ 0.^ 0.^ 0.^ 0.^
μ = E(Y ) = μ
σ^2 = V (Y ) = σ^2
Working with normal random variables in R.
To find the probability P (Y ≤ y) the command in R is
pnorm(y,mu,sigma)
To find the value of y so that P (Y ≤ y) = p the command in R is
qnorm(p,mu,sigma)
To generate observed values from a normal distribution the command in R is
rnorm(numobs,mu,sigma)
where numobs is the number of observed values you would like to generate.
Problems.
(a) Find the probability a randomly selected student will score between 80 and 90 on this achievement test. (b) 30% of all students taking this achievement test will score better than what value? (c) Out of 5 randomly selected students taking this achievement test, find the probability that all 5 students will score between 80 and 90. (d) Out of 5 randomly selected students taking this achievement test, find the probability that 4 out of the 5 students will score between 80 and 90.
(a) If the contents Y of a container have a normal distribution with mean μ = 12.1 ounces and a variance σ^2 , find σ^2 so that P (Y < 12) = 0.01. (b) If σ = 0.05, find μ so that P (Y < 12) = 0.01.
(a) Find P (Y < 12). (b) 50 bottles of this beverage are selected independently. What is the probability that at least one is under 12 ounces?