Cumulative Probabilities
Cumulative Probabilities
Example 1
Here's the probability distribution for a discrete random variable X
x f(x)
1
0.1
0.2
0.4
0.3
P[ X <= 1 ] = 0.1
P[ X <= 2 ] = 0.1 + 0.2 = 0.3
P[ X <= 3 ] = 0.1 + 0.2 + 0.4 = 0.7
P[ X <= 4 ] = 0.1 + 0.2 + 0.4 + 0.3 = 1
0.1
0.3
0.7
1.0
Example 2
Suppose that P[ X <= 3 ] = 0.65, P[ X <= 4 ] = 0.80 and no values between 3 and 4
are possible. Then P[ X = 4 ] = 0.80 - 0.65 = 0.15. So, to compute f(x), take
f(x) = P[ X <= x ] - P[ X <= x* ]
where x* is the largest possible value below x. If x is already the smallest value then
f(x) = P[ X <=x ].
Suppose the number of finish flaws on an automobile has the following cumulative
probabilities.
x P[ X <= x ]
0
0.30119
0.66263
0.87949
0.96623
0.99225
0.99850
0.99975
0.99996
1.00000
Questions
Answers in red!
1. Find the probability there are at most 2 flaws, P[ X <= 2 ].
0.87949
2. Find the probability there are exactly 2 flaws, P[ X = 2 ].
0.87949 - 0.66263 = 0.21686
3. Find the probability there are less than 2 flaws, P[ X < 2 ].
0.66263
f(x)
0.30119
0.66263
0.87949
0.96623
0.99225
0.99850
0.99975
0.99996
1.00000
You can use this table to find answers to the questions above. Whichever way you do
it, your results should be the same.