Question

In: Statistics and Probability

Sally plays a game and wins with probability p. Every week, she plays until she wins...

Sally plays a game and wins with probability p. Every week, she plays until she wins two games, and then stops for the week. Sally calls it a "lucky week" if she manages to achieve her goal in 7 or less games.

a) If p = 0.2, what's the probability that Sally will have a "lucky week" next week?

b) What's the probability of exactly 3 "lucky weeks" in the next 5 weeks? What's the expected number of "lucky weeks" Sally will have in the next 10 weeks?

c) Let X be the number of games Sally plays in a week, and let q = 1 – p. Find the expectation E[X].

d) If Sally pays $1 to play each game, and gets $5 for each game she wins, what's her expected earning at the end of each week?

Solutions

Expert Solution

a)

Sally achieve in 2 games = P ( X =    2   ) = C(2,2) * 0.2^2 * (1-0.2)^0 =            0.040

Sally achieve in 3 games = P ( X =    2  ) = C(2,1) * 0.2^1 * (1-0.2)^1 * 0.2 = 0.064

Sally achieve in 4 games = P ( X =    2   ) = 0.0768

Sally achieve in 5 games = P ( X =    2  ) = 0.0819

Sally achieve in 6 games = P ( X =    2   ) =0.0819

Sally achieve in 7 games = P ( X =    2   ) = 0.0786

Probability = 0.4232

b)

Exactly 3 lucky weeks in 5 weeks =

P ( X =    3   ) = C(5,3) * 0.4232^3 * (1-0.4232)^2 =            0.252

Expecetd number of lucky weeks in 10 weeks = np = 10 *0.4232 = 4.232

c)

Since we know

Mean = np

here mean = 2(games to win)

np =2

n = 2/0.2 = 10

d)

Expecetd games = 10
she pays $1 and gets $5 for each game she wins


expected earning =  (50 - 10) = 40

Please revert back in case of any doubt.

Please upvote. Thanks in advance.


Related Solutions

Sally plays a game and wins with probability p. Every week, she plays until she wins...
Sally plays a game and wins with probability p. Every week, she plays until she wins two games, and then stops for the week. Sally calls it a "lucky week" if she manages to achieve her goal in 7 or less games. a) If p = 0.2, what's the probability that Sally will have a "lucky week" next week? b) What's the probability of exactly 3 "lucky weeks" in the next 5 weeks? What's the expected number of "lucky weeks"...
The probability that A wins B is p. And the probability that B wins A is...
The probability that A wins B is p. And the probability that B wins A is q. If you win 2 more times than opponent, the game is over. What is the the probability that A two more wins and the game end?
A local euchre champion wins 78% of the games she plays. She plays 16 games in...
A local euchre champion wins 78% of the games she plays. She plays 16 games in a tournament. A. What is the probability she wins 12 or more games? B. What is the probability she wins fewer than 8 games? C. What is the probability she wins exactly 10 games?
A gambler plays a sequence of games that she either wins or loses. The outcomes of...
A gambler plays a sequence of games that she either wins or loses. The outcomes of the games are independent, and the probability that the gambler wins is 2/3. The gambler stops playing as soon as she either has won a total of 2 games or has lost a total of 3 games. Let T be the number of games played by the gambler. Find the probability mass function of T. Find the mean of T. Find the standard deviation...
A player plays the following game with a casino: a coin is tossed until a tail...
A player plays the following game with a casino: a coin is tossed until a tail appears. The player wins 2^n dollars where n is the number of heads before a tail appears. If there are no heads, the player wins 2^0 = $1. Find the standard deviation of the amount the casino pays the player if the casino has only $17 (so, if the player wins more than $17, the casino still only pays $17). Do not round any...
Assume the probability that Cleveland wins a game over Golden State is 2/5 or 0.4. A)...
Assume the probability that Cleveland wins a game over Golden State is 2/5 or 0.4. A) What is the probability that Golden State wins the best of seven series over Cleveland in seven games? B) What is the probability that Cleveland wins the series over Golden State in 6 games? C) What is the probability that Golden State wins the series in 5 games? D) What is the probability that Cleveland wins the NBA Championship?
In a dice game, Alice wins 5 (tokens) if she guesses the roll in advance; otherwise...
In a dice game, Alice wins 5 (tokens) if she guesses the roll in advance; otherwise she loses 1. The dice shows six equally likely values as usual. Verify that Alice's expected win G1 is 0. In a second experiment, Bob has two different dice in his sleeve, of which he selects one with equal probability and rolls them. One shows only even numbers, the other only odd numbers. The expected profit G2 is still 0. In the third case,...
"Fun Life" claims that the probability that a customer comes back every week; P(repeat customer)= 54%....
"Fun Life" claims that the probability that a customer comes back every week; P(repeat customer)= 54%. On May 6th, you randomly selected 10 customers from the store. Create a probability distribution table for the Binomial probability that the customer is a repeat customer. Fun Life Strange Love 9/2/19 $    10,499.94 $    15,602.13 9/9/19 $    12,570.94 $    15,266.79 9/16/19 $      3,005.02 $      4,081.42 9/23/19 $    14,248.23 $      1,382.24 9/30/19 $      8,636.75 $      8,275.37 10/7/19 $    14,204.85 $      1,245.25 10/14/19 $      9,543.69 $    10,673.07 10/21/19 $      5,263.17 $    10,464.89 10/28/19 $      7,371.62 $      8,938.07 11/4/19 $      5,008.26 $    10,442.26 11/11/19 $      3,489.96 $      2,108.36...
Sally lives in town with an ongoing pandemic. If she goes to work, theres a probability,...
Sally lives in town with an ongoing pandemic. If she goes to work, theres a probability, p, of getting infected by the virus that is causing the epidemic, where 0 < p < 1. If she stays at home, she can't be infected and will not earn income. Suppose when she goes to work and does not get infected, she will earn $50. If she gets infected he will lose $80 in health care cost, but will still earn an...
Program Created Last Week: #Program plays a guessing the number game with the user. #Importing random...
Program Created Last Week: #Program plays a guessing the number game with the user. #Importing random number with min number being 1 and max being 10 import random min_number = 1 max_number = 10 rand = random.randint(min_number, max_number) #Prints the header, welcoming the user print("Welcome to the Guess My Number Program!") while (True): #While loop, comparing the users guessed number with the random number. #If it matches, it will say you guessed it. guess = eval(input("Please try to guess my...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT