4.3 The Normal Distribution With EXCEL Functions PDF
4.3 The Normal Distribution With EXCEL Functions PDF
Prepared by:
Asst. Prof. Xandro Alexi A. Nieto
the Normal Distribution
the Normal Distribution
X − mean
= Z − score
SD
𝐙 − 𝐬𝐜𝐨𝐫𝐞
Which is better?
Two equivalent tests were given to a group.
The tests are designed with different scales.
The results are normally distributed and
summarized below. Which is better, a score of
145 in Test I or a score of 60 in Test II?
>?@A>BB CBA?B
Z= >@ =3 Z= =4
@
The Z-score
Which is better?
Juan got 130 in Chemistry and 113 in
Math. If the scores in Chemistry and
Math are normally distributed with
mean of 140 (SD = 5) and
125 (SD = 4), respectively, in what
course did he perform better?
Is a higher z-score
always better?
Higher than the normal level Very low temperature (than the
of glucose. normal) in desert
The Normal Distribution functions
Area Under the Normal Distribution
Examples:
Answer: 0.7995
P(Z<0.84) = 0.7995
=NORMDIST(0.84,0,1,TRUE)
18
Area Under the Normal Distribution
Examples:
Answer: 0.1112
P(Z<-1.22) = 0.1112
=NORMDIST(-1.22,0,1,TRUE)
Area Under the Normal Distribution
Examples:
Answer: 0.0212
P(Z>2.03) = 1 – P(Z<2.03)
= 1 – 0.9788
= 0.0212
=1-NORMDIST(2.03,0,1,TRUE)
Area Under the Normal Distribution
Examples:
Answer: 0.9251
Examples:
Answer: 0.2518
=NORMDIST(1.80,0,1,TRUE)-NORMDIST(0.56,0,1,TRUE)
Area Under the Normal Distribution
Examples:
23
Area Under the Normal Distribution
Examples:
=NORMDIST(1.96,0,1,TRUE)-NORMDIST(-1.96,0,1,TRUE)
Answer: 0.9500
Examples:
Answer: z = -0.36
=NORMINV(0.3594,0,1)
Area Under the Normal Distribution
Examples:
Answer: z = -0.61
P(Z>-0.61) = 0.7300
=NORMINV(1-0.7300, 0 , 1)
26
26
Area Under the Normal Distribution
Examples:
P(-1.645<Z<1.645) = 0.9000
Word Problems:
Suppose that the weights of
babies are normally distributed,
with a mean weight of 3.3 Kg and
standard deviation of 0.6 Kg.
What is the probability that a
randomly selected baby has a
birthweight of:
Word Problems:
Suppose that the weights of
babies are normally distributed,
with a mean weight of 3.3 Kg and
standard deviation of 0.6 Kg.
What is the probability that a
randomly selected baby has a
birthweight of:
Word Problems:
Suppose that the weights of
babies are normally distributed,
with a mean weight of 3.3 Kg and
standard deviation of 0.6 Kg.
What is the probability that a
randomly selected baby has a
birthweight of:
=NORMDIST(3.9,3.3,0.6,TRUE) – NORMDIST(2.85,3.3,0.6,TRUE)
Area Under the Normal Distribution
Word Problems:
c) between than 2.85 and 3.9 Kg
2.85 − 3.3 X − μ 3.9 − 3.3
P 2.85 < X < 3.9 = P < <
0.6 σ 0.6
= P −0.75 < Z < 1.00
= 0.6147
Area Under the Normal Distribution
Word Problems:
Area Under the Normal Distribution
Word Problems:
The National Medical Admission Test
(NMAT) are scores reported in
standard form, called the General
Performance Score (GPS), and have a
range of 200 to 800, based from the
norm group with mean of 500, and What the percentile rank of the
standard deviation of 100. It was examinee who got a score of 710?
stated, “A GPS score of 539 has a
percentile rank of 65, indicating that P X < 710 = P Z < 2.10
the score belongs to the upper 35% = 0.982 or 98.2%
while 65% of the norm group scored
lower.” =NORMDIST(710, 500,100,TRUE)
Area Under the Normal Distribution
Word Problems:
The National Medical Admission Test
(NMAT) are scores reported in
standard form, called the General
Performance Score (GPS), and have a
range of 200 to 800, based from the
norm group with mean of 500, and If the percentile of the examinee is 97%,
standard deviation of 100. It was what is his GPS?
stated, “A GPS score of 539 has a P X < x = 0.97
percentile rank of 65, indicating that P 𝑍 < 𝑧 = 0.97
the score belongs to the upper 35% P(X<688.08) = 0.97
while 65% of the norm group scored
lower.” =NORMINV(0.97, 500,100)
END OF UNIT 4.3