<< Chapter < Page Chapter >> Page >

Ten numbers are produced by a random number generator. What is the probability four or more are less than or equal to 0.63?

P 1 = c b i n o m ( 10 , 0 . 63 , 4 ) = 0 . 9644

Got questions? Get instant answers now!

A player rolls a pair of dice five times. She scores a “hit” on any throw if she gets a 6 or 7. She wins iff she scores an odd number of hits in the five throws. What is the probability a player wins on any sequence of five throws?Suppose she plays the game 20 successive times. What is the probability she wins at least 10 times? What is the probability she wins more than half the time?

Each roll yields a hit with probability p = 6 36 + 5 36 = 11 36 .

PW = sum(ibinom(5,11/36,[1 3 5]))PW = 0.4956 P2 = cbinom(20,PW,10)P2 = 0.5724 P3 = cbinom(20,PW,11)P3 = 0.3963
Got questions? Get instant answers now!

Erica and John spin a wheel which turns up the integers 0 through 9 with equal probability. Results on various trials are independent. Each spins the wheel10 times. What is the probability Erica turns up a seven more times than does John?

P = i b i n o m ( 10 , 0 . 1 , 0 : 9 ) * c b i n o m ( 10 , 0 . 1 , 1 : 10 ) ' = 0 . 3437

Got questions? Get instant answers now!

Erica and John play a different game with the wheel, above. Erica scores a point each time she gets an integer 0, 2, 4, 6, or 8. John scores a pointeach time he turns up a 1, 2, 5, or 7. If Erica spins eight times; John spins 10 times. What is the probability John makes more points than Erica?

P = i b i n o m ( 8 , 0 . 5 , 0 : 8 ) * c b i n o m ( 10 , 0 . 4 , 1 : 9 ) ' = 0 . 4030

Got questions? Get instant answers now!

A box contains 100 balls; 30 are red, 40 are blue, and 30 are green. Martha and Alex select at random, with replacement and mixing after each selection. Alex has asuccess if he selects a red ball; Martha has a success if she selects a blue ball. Alex selects seven times and Martha selects five times. What is the probabilityMartha has more successes than Alex?

P = i b i n o m ( 7 , 0 . 3 , 0 : 4 ) * c b i n o m ( 5 , 0 . 4 , 1 : 5 ) ' = 0 . 3613

Got questions? Get instant answers now!

Two players roll a fair die 30 times each. What is the probability that each rolls the same number of sixes?

P = s u m ( i b i n o m ( 30 , 1 / 6 , 0 : 30 ) . ^ 2 ) = 0 . 1386

Got questions? Get instant answers now!

A warehouse has a stock of n items of a certain kind, r of which are defective. Two of the items are chosen at random, without replacement. What is theprobability that at least one is defective? Show that for large n the number is very close to that for selection with replacement, which corresponds to twoBernoulli trials with pobability p = r / n of success on any trial.

P 1 = r n r - 1 n - 1 + r n n - r n - 1 + n - r n r n - 1 = ( 2 n - 1 ) r - r 2 n ( n - 1 )
P 2 = 1 - r n 2 = 2 n r - r 2 n 2
Got questions? Get instant answers now!

A coin is flipped repeatedly, until a head appears. Show that with probability one the game will terminate.

The probability of not terminating in n trials is q n .

Let N = event never terminates and N k = event does not terminate in k plays. Then N N k for all k implies 0 P ( N ) P ( N k ) = 1 / 2 k for all k . We conclude P ( N ) = 0 .

Got questions? Get instant answers now!

Two persons play a game consecutively until one of them is successful or there are ten unsuccesful plays. Let E i be the event of a success on the i th play of the game. Suppose { E i : 1 i } is an independent class with P ( E i ) = p 1 for i odd and P ( E i ) = p 2 for i even. Let A be the event the first player wins, B be the event the second player wins, and C be the event that neither wins.

  1. Express A , B , and C in terms of the E i .
  2. Determine P ( A ) , P ( B ) , and P ( C ) in terms of p 1 , p 2 , q 1 = 1 - p 1 , and q 2 = 1 - p 2 . Obtain numerical values for the case p 1 = 1 / 4 and p 2 = 1 / 3 .
  3. Use appropriate facts about the geometric series to show that P ( A ) = P ( B ) iff p 1 = p 2 / ( 1 + p 2 ) .
  4. Suppose p 2 = 0 . 5 . Use the result of part (c) to find the value of p 1 to make P ( A ) = P ( B ) and then determine P ( A ) , P ( B ) , and P ( C ) .
  1. C = i = 1 10 E i c .
    A = E 1 E 1 c E 2 c E 3 E 1 c E 2 c E 3 c E 4 c E 5 E 1 c E 2 c E 3 c E 4 c E 5 c E 6 c E 7 E 1 c E 2 c E 3 c E 4 c E 5 c E 6 c E 7 c E 8 c E 9
    B = E 1 c E 2 E 1 c E 2 c E 3 c E 4 E 1 c E 2 c E 3 c E 4 c E 5 c E 6 E 1 c E 2 c E 3 c E 4 c E 5 c E 6 c E 7 c E 8 E 1 c E 2 c E 3 c E 4 c E 5 c E 6 c E 7 c E 8 c E 9 c E 10
  2. P ( A ) = p 1 [ 1 + q 1 q 2 + ( q 1 q 2 ) 2 + ( q 1 q 2 ) 3 + ( q 1 q 2 ) 4 ] = p 1 1 - ( q 1 q 2 ) 5 1 - q 1 q 2
    P ( B ) = q 1 p 2 1 - ( q 1 q 2 ) 5 1 - q 1 q 2 P ( C ) = ( q 1 q 2 ) 5
    For p 1 = 1 / 4 , p 2 = 1 / 3 , we have q 1 q 2 = 1 / 2 and q 1 p 2 = 1 / 4 . In this case
    P ( A ) = 1 4 31 16 = 31 / 64 = 0 . 4844 = P ( B ) , P ( C ) = 1 / 32
    Note that P ( A ) + P ( B ) + P ( C ) = 1 .
  3. P ( A ) = P ( B ) iff p 1 = q 1 p 2 = ( 1 - p 1 ) p 2 iff p 1 = p 2 / ( 1 + p 2 ) .
  4. p 1 = 0 . 5 / 1 . 5 = 1 / 3
Got questions? Get instant answers now!

Three persons play a game consecutively until one achieves his objective. Let E i be the event of a success on the i th trial, and suppose { E i : 1 i } is an independent class, with P ( E i ) = p 1 for i = 1 , 4 , 7 , , P ( E i ) = p 2 for i = 2 , 5 , 8 , , and P ( E i ) = p 3 for i = 3 , 6 , 9 , . Let A , B , C be the respective events the first, second, and third player wins.

  1. Express A , B , and C in terms of the E i .
  2. Determine the probabilities in terms of p 1 , p 2 , p 3 , then obtain numerical values in the case p 1 = 1 / 4 , p 2 = 1 / 3 , and p 3 = 1 / 2 .
    • A = E 1 k = 1 i = 1 3 k E i c E 3 k + 1
    • B = E 1 c E 2 k = 1 i = 1 3 k + 1 E i c E 3 k + 2
    • C = E 1 c E 2 c E 3 k = 1 i = 1 3 k + 2 E i c E 3 k + 3
    • P ( A ) = p 1 k = 0 ( q 1 q 2 q 3 ) k = p 1 1 - q 1 q 2 q 3
    • P ( B ) = q 1 p 2 1 - q 1 q 2 q 3
    • P ( C ) = q 1 q 2 p 3 1 - q 1 q 2 q 3
    • For p 1 = 1 / 4 , p 2 = 1 / 3 , p 3 = 1 / 2 , P ( A ) = P ( B ) = P ( C ) = 1 / 3 .
Got questions? Get instant answers now!

What is the probability of a success on the i th trial in a Bernoulli sequence of n component trials, given there are r successes?

P ( A r n E i ) = p C ( n - 1 , r - 1 ) p r - 1 q n - r and P ( A r n ) = C ( n , r ) p r q n - r .

Hence P ( E i | A A r n ) = C ( n - 1 , r - 1 ) / C ( n , r ) = r / n .

Got questions? Get instant answers now!

A device has N similar components which may fail independently, with probability p of failure of any component. The device fails if one or more of the components fails. In the event of failure of the device, the components are testedsequentially.

  1. What is the probability the first defective unit tested is the n th, given one or more components have failed?
  2. What is the probability the defective unit is the n th, given that exactly one has failed?
  3. What is the probability that more than one unit has failed, given that the first defective unit is the n th?

Let A 1 = event one failure, B 1 = event of one or more failures, B 2 = event of two or more failures, and F n = the event the first defective unit found is the n th.

  1. F n B 1 implies P ( F n | B 1 ) = P ( F n ) / P ( B 1 ) = q n - 1 p 1 - q N
  2. P ( F n | A 1 ) = P ( F n A 1 ) P ( A 1 ) = q n - 1 p q N - n N p q N - 1 = 1 N
    (see [link] )
  3. Since probability not all from n th are good is 1 - q N - n ,
    P ( B 2 | F n ) = P ( B 2 F n ) P ( F n ) = q n - 1 p ( 1 - Q N - 1 ) q n - 1 p = 1 - q N - n

Got questions? Get instant answers now!

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Applied probability. OpenStax CNX. Aug 31, 2009 Download for free at http://cnx.org/content/col10708/1.6
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Applied probability' conversation and receive update notifications?

Ask