Lecture 11
Lecture 11
If X is the lifetime of some instrument, then the above equation states that the probability that the
instrument lives for at least (𝑡1 +𝑡2 )hours given that it has survived 𝑡1 hours is the same as the
initial probability that it lives for at least 𝑡2 hours
5-2
Normal Distribution
• f(x) is a bell-shaped curve
• Characterized by 2 parameters:
(mean)
(standard deviation)
• Properties
1. Symmetric
2. Mean = Median = Mode
3. Range of X is unbounded
4. Empirical rules apply
5-4
2
1 x
1
2
f( x) = e
σ 2π
for all values x on the real number line, where µ is the mean and
is the standard deviation,
5-5
x
z
is normally distributed with mean 0 and standard deviation 1; this
normal is called the standard normal distribution
6
Example 5.30
• Probability that demand will exceed 700 units, or P(X > 700).
– =1-NORM.DIST(700,750,100,TRUE) = 1 - 0.3085 = 0.6915
10
• Probability that demand will be between 700 and 900, or P(700 < X < 900):
– =NORM.DIST(900,750,100,TRUE) - NORM.DIST(700,750,100,TRUE) =0.9332 - 0.3085
= 0.6247
11
Given a normal distribution with µ=40 and σ=6, find the value of x
that has
– 45% of the area to the left. x = 𝜇 + 𝜎𝑧
▪ Sol = 39.22
– 14% of the area to the right.
▪ Sol = 46.48
12
Example 5.31
Solution in R
• dbinom(4,10,0.5) + dbinom(5,10,0.5)+dbinom(6,10,0.5) + dbinom(7,10,0.5)
= 0.7734375
OR:
• pbinom(7, size=10, prob=0.5) - pbinom(3, size=10, prob=0.5)
= 0.7734375
• Normal approximation:
• pnorm((7.5 - (10*0.5))/(sqrt(10*0.5*0.5)))-pnorm((3.5 -
(10*0.5))/(sqrt(10*0.5*0.5)))
= 0.771686