Question

In: Math

Alper, Beatta, and Grandma each pick five cards from a shuffled standard deck. Alper replaces the...

Alper, Beatta, and Grandma each pick five cards from a shuffled standard deck. Alper replaces the card and reshuffles each time he picks. Beatta picks from the deck without replacement. Grandma repeatedly picks the top card from the deck and puts it back on the top of the deck. Count an ace as 14, a king as 13, and so on. Let X,Y,Z be the sum of the numbers Alper, Beatta, and Grandma get, respectively. Which of X,Y,Z has or have the largest expected value?
Which of X,Y,Z has or have the largest variance?

Would someone please help me out with correct and detailed answer please?

Solutions

Expert Solution

Only 1 simulation can be skewed so we need to perform it several times to be sure

R code below to copy paste

#Let's perform this experiement once and visualize the outcome
set.seed(100) #so that we can have same random numbers
cards=rep(2:14,4)
cards
#Total cards with points in cards variable as each point is repeated 4 times
alper=sample(size = 5,x = cards,replace = TRUE) # Picks cards with replacement
beatta=sample(size=5,x=cards,replace = FALSE) # Picks cards without replacement
grandma=rep(sample(size=1,x=cards,replace = FALSE),5) #Grandma picks one 1 card 5 times as she puts the same on the deck and repeat to pick 1st

#Now let's simulate the same for 1000 times and find the average of each
  
alper=0
beatta=0
grandma=0
for(i in 1:10000){
cards=rep(2:14,4)
cards
#Total cards with points in cards variable as each point is repeated 4 times
alper=alper+sum(sample(size = 5,x = cards,replace = TRUE)) # Picks cards with replacement
beatta=beatta+sum(sample(size=5,x=cards,replace = FALSE)) # Picks cards without replacement
grandma=grandma+sum(rep(sample(size=1,x=cards,replace = FALSE),5)) #Grandma picks one 1 card 5 times as she puts the same on the deck and repeat to pick 1st
  
}
sum(alper)/10000
sum(beatta)/10000
sum(grandma)/10000

#Hope the above answer has helped you in understanding the problem. Please upvote the ans if it has really #helped you. Good Luck!!


Related Solutions

Alper, Beatta, and Grandma each pick five cards from a shuffled standard deck. Alper replaces the...
Alper, Beatta, and Grandma each pick five cards from a shuffled standard deck. Alper replaces the card and reshuffles each time he picks. Beatta picks from the deck without replacement. Grandma repeatedly picks the top card from the deck and puts it back on the top of the deck. Count an ace as 14, a king as 13, and so on. Let X,Y,Z be the sum of the numbers Alper, Beatta, and Grandma get, respectively. Which of X,Y,Z has or...
Alper, Beatta, and Grandma each pick five cards from a shuffled standard deck. Alper replaces the...
Alper, Beatta, and Grandma each pick five cards from a shuffled standard deck. Alper replaces the card and reshuffles each time he picks. Beatta picks from the deck without replacement. Grandma repeatedly picks the top card from the deck and puts it back on the top of the deck. Count an ace as 14, a king as 13, and so on. Let X, Y, Z be the sum of the numbers Alper, Beatta, and Grandma get, respectively. Which of X,...
A hand of five cards is drawn from a standard 52 card deck. (a) What is...
A hand of five cards is drawn from a standard 52 card deck. (a) What is the probability of getting only one pair? (b) What is the probability of getting all cards with the same suit?
Suppose three cards are drawn without replacement from a standard deck of cards. A standard deck...
Suppose three cards are drawn without replacement from a standard deck of cards. A standard deck of cards contains 52 cards, each card is one of 4 types (hearts, diamonds, spades, clubs) and cards within each type are labelled 2, 3, 4, …, 10, J, Q, K, A. Compute the probability for each of the following. a. All three cards selected is a Heart. b. All three cards selected is a King. c. None of the three cards is either...
You pick two cards, with replacement, from a standard 52 card deck. The probability that both...
You pick two cards, with replacement, from a standard 52 card deck. The probability that both are red 7's is approximately: Question options: .0001 .0027 .0015 .0004
Pick two cards at random from a well-shuffled deck of 52 cards (pick them simultaneously so...
Pick two cards at random from a well-shuffled deck of 52 cards (pick them simultaneously so they are not the same card). There are 12 cards considered face cards. There are 4 cards with the value 10. Let X be the number of face cards in your hand. Let Y be the number of 10's in your hand. Explain why X and Y are dependent.
. If 2 cards are selected from a standard deck of cards. The first card is...
. If 2 cards are selected from a standard deck of cards. The first card is not replaced in the deck before the second card is drawn. Find the following probabilities: a) P(2 Aces) b) P(Queen of hearts and a King) c) P(Q of Hearts and Q of hearts )
choose exactly 7 red cards when you pick 10 cards from a deck.
choose exactly 7 red cards when you pick 10 cards from a deck.
Four cards are drawn at random from a standard deck of 52 cards. a. What’s the...
Four cards are drawn at random from a standard deck of 52 cards. a. What’s the probability that at least one card is a 7? b. What’s the probability that 3 of the 4 cards are the same suit? c. What’s the probability that they are all the same suit?
1. In the game of poker, five cards from a standard deck of 52 cards are...
1. In the game of poker, five cards from a standard deck of 52 cards are dealt to each player. Assume there are four players and the cards are dealt five at a time around the table until all four players have received five cards. a. What is the probability of the first player receiving a royal flush (the ace, king, queen, jack, and 10 of the same suit). b. What is the probability of the second player receiving a...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT