Some Discrete Probability Distributions
Some Discrete Probability Distributions
Some Discrete
Probability
Distributions
•
•
•
•
•
•
•
• N sampled individuals
• Each individual can be characterized as a
success or failure and there are M successes in
population
• A sample of n individuals is selected without
replacement in such a way that each subset of
size n is equally likely to be chosen
There are 500 students in a CENG department. 150 use Linux and rest
use Windows on their personal computers. We randomly choose 7
students. What is the probability that 4 of them use Linux?
a)Use Hypergeometric b)Use Binomial
1) Of the cars in the parking lot, 13 are using diesel uel and 37
gasoline. We randomly choose 10. What is the probability that 5 are
using diesel?
2) Of the 500 people working at a hospital, 220 are female and 280 are
male. We randomly choose 10. What is the probability that 5 are
female?
3) If you had to solve one of the above problems using an
approximation, which one would you choose?
• In NBA championship, the team that wins four games of seven is
the winner. Suppose that team A has prob. 0.55 of winning the
game over team B.
a) What is the prob. that team A will win the series in 6th games?
b) What is the prob. that team A will win the series?
a) nb(6;4, 0.55)==0.1853
• In NBA championship, the team that wins four games of seven is
the winner. Suppose that team A has prob. 0.55 of winning the
game over team B.
a) What is the prob. that team A will win the series in 6th games?
b) What is the prob. that team A will win the series?
c) nb(6;4, 0.55)==0.1853
2nd way if we want the 4 success in 6th,
team must win 3 in the 5th with a success in 6 th
x 0.55
• In NBA championship, the team that wins four games of seven is
the winner. Suppose that team A has prob. 0.55 of winning the
game over team B.
a) What is the prob. that team A will win the series in 6th games?
b) What is the prob. that team A will win the series?
c) nb(6;4, 0.55)==0.1853
d) nb(4;4,0.55)+ nb(5;4,0.55)+ nb(6;4,0.55)+ nb(7;4,0.55)=0.6083
• Poisson
Random Variable, X
• X indicates # of successes that occur during a
given time interval or in a specific region in a
Poisson experiment
Example
Example
• The
• number of typographical errors in new editions of textbooks is Poissom distributed with a
mean of 1.5 per 100 pages
• 100 pages of a new book are randomly selected.
a) What is the prob. That there are no typos?
=0.2231
b) For a 400 page book, calculate the followings:
• There are no typos
• There are five or fewer typos
• Births
in a hospital occur randomly at an
average rate of 1.8 births per hour.
– What is the probability of observing 4 births in a
given hour at the hospital?
po(4,1.8) = =.0723
• Births
in a hospital occur randomly at an
average rate of 1.8 births per hour.
– What is the probability of observing more than or
equal to 2 births in a given hour at the hospital?
– Po(xPo(x=+Po(x
• Births
in a hospital occur randomly at an
average rate of 1.8 births per hour.
– What is the probability of observing more than or
equal to 2 births in a given hour at the hospital?
– Po(xPo(x=+Po(x
– Po(x1-(Po(x=0Po(x)=0.537
• Births
in a hospital occur randomly at an
average rate of 1.8 births per hour.
– Hospital A average rate 2.3 births per hours
– Hospital B average rate 3.1 births per hours
What is the probability of observing 7 births in total?
and then +
P(X+Y=7)= = =0.11999
• On
average, there are 25 flights per day from
airport A. Find the probability that there are
between 20 and 22 flights on a given day.
In R:
ppois(22,25)-ppois(19,25)