Question

This is a question for a stats course for science students... In one version of the...

This is a question for a stats course for science students... In one version of the game played by a dealer and a player, 2 cards of a standard 52-card bridge deck are dealt to the player and 2 cards to the dealer. For this exercise, assume that drawing an ace and a face card (Jack, Queen and King for each shape) is called blackjack. If the dealer does not draw a blackjack and the player does, the player wins. If both the dealer and player draw blackjack, a tie occurs.

(a) What is the probability that the dealer will draw a blackjack?

(b) What is the probability that the player will wins with a blackjack?

please explain the answer

0 0
Add a comment Improve this question Transcribed image text
Answer #1

4 cards in the pack are aces.
16 cards in the pack (4 each of king, queen, jack, 10) are worth 10.

a)
There are two ways to get 21: ace then 10, or 10 then ace.
p(ace then 10) = 4/52 * 16/51
p(10 then ace) = 16/52 * 4/51

=> p(blackjack) = 4/52 * 16/51 + 16/52 * 4/51 = 2 * 16 * 4 / (52*51) = 0.048 (approx)
=> p(dealer gets blackjack) = p(blackjack) = the number above.

BUT, if the player gets the first card then it goes (4/51)(16/49)(2) = 0.51 would be the dealers probability for getting a blackjack.

b)
For the player to win with blackjack, we must multiply p(blackjack) [above] by the odds that the dealer does not then get blackjack. If a player gets blackjack, there are then only 50 cards left for the dealer, including 3 aces and 15 tens (because the player has taken 1 ace and 1 ten).

=> p(dealer gets blackjack after player does) = 3/50 * 15/49 + 15/50 * 3/49 = 2 * 3 * 15 / (50*49)

=> p(dealer does not get blackjack after player does) = 1-p(dealer gets blackjack after player does)

=> p(player wins with blackjack) = p(player gets blackjack) * p(dealer does not get blackjack after player does) = 2 * 16 * 4 / (52*51) * (1 - 2 * 3 * 15 / (50*49)) = 0.046 (approx)

Add a comment
Know the answer?
Add Answer to:
This is a question for a stats course for science students... In one version of the...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • 4. In one version of the game played by a dealer and a player, 2 cards...

    4. In one version of the game played by a dealer and a player, 2 cards of a standard 52-card bridge deck are dealt to the player and 2 cards to the dealer. For this exercise, assume that drawing an ace and a face card (Jack, Queen and King for each shape) is called blackjack. If the dealer does not draw a blackjack and the player does, the player wins. If both the dealer and player draw blackjack, a tie...

  • 2. (10 points) Suppose you are playing blackjack against a dealer. In a freshly shuffled deck, what is the probabil...

    2. (10 points) Suppose you are playing blackjack against a dealer. In a freshly shuffled deck, what is the probability that either you or the dealer is dealt a blackjack? (Recall the game of blackjack is played with each player obtaining two cards at random from a regular deck. We say these two cards form a blackjack if one card is an ace and the other card is either a 10, Jack, Queen or King) 2. (10 points) Suppose you...

  • I need to build the card game of War in C++. It will be a 2...

    I need to build the card game of War in C++. It will be a 2 player game. Each player will have their own deck of 52 cards. 2-10, Jack=11, Queen=12, King=13, Ace=14. Each player will draw one card from their deck. The player with the higher card wins both cards. If the card drawn is the same, then each player will draw 3 cards and on the 4th card drawn will show it. The player that shows the higher...

  • Create a simplified Blackjack game using the Deck and Card classes (download the attached files to...

    Create a simplified Blackjack game using the Deck and Card classes (download the attached files to start).  There is also a "TestCard" class that creates a Deck and runs some simple code. You may choose to use this file to help you get started with your game program. 1) Deal 2 cards to the "player" and 2 cards to the "dealer".  Print both the player's cards, print one of the dealer's cards. Print the total value of the player's hand. 2) Ask...

  • Describe a sample space for successively drawing and keeping 4 cards from a standard deck of...

    Describe a sample space for successively drawing and keeping 4 cards from a standard deck of 52 cards if we record the value and suit of each card. Find the probability of each of the following: a. Ace, King, Queen, Jack of spades in that order; b. Ace, King, Queen, Jack of spades in any order; c. Ace, King, Queen, Jack: any suit, any order; d. all 4 selected cards are red; e. the cards selected are 3 hearts and...

  • Please write the program in python: 3. Design and implement a simulation of the game of...

    Please write the program in python: 3. Design and implement a simulation of the game of volleyball. Normal volleyball is played like racquetball, in that a team can only score points when it is serving. Games are played to 15, but must be won by at least two points. 7. Craps is a dice game played at many casinos. A player rolls a pair of normal six-sided dice. If the initial roll is 2, 3, or 12, the player loses....

  • Program 4: C++ The Game of War The game of war is a card game played by children and budding comp...

    Program 4: C++ The Game of War The game of war is a card game played by children and budding computer scientists. From Wikipedia: The objective of the game is to win all cards [Source: Wikipedia]. There are different interpretations on how to play The Game of War, so we will specify our SMU rules below: 1) 52 cards are shuffled and split evenly amongst two players (26 each) a. The 26 cards are placed into a “to play” pile...

  • programming language c++ its a project if anyone can help me it's will be appreciated thnk...

    programming language c++ its a project if anyone can help me it's will be appreciated thnk u. u have to create a code based on the information im giving u you can do it in 1 or 2 day i can wait 1:26 #WW 2.53% Example: A user starts with 1000 points. Game #1 - user chooses to risk 200 points. User wins game (beats the dealer). User now has 1200 points. Game #2 - user chooses to risk 500...

  • Need a blackjack code for my assignment its due in 3 hours: it has to include...

    Need a blackjack code for my assignment its due in 3 hours: it has to include classes and object C++. Create a fully functioning Blackjack game in three separate phases. A text based version with no graphics, a text based object oriented version and lastly an object oriented 2D graphical version. Credits (money) is kept track of throughout the game by placing a number next to the player name. Everything shown to the user will be in plain text. No...

  • Prisha has a standard deck of 52 playing cards. The deck contains 4 suits (hearts, diamonds, clubs, and spades), and each suit contains 13 cards labeled 2 through 10, as well as jack, queen, king, and...

    Prisha has a standard deck of 52 playing cards. The deck contains 4 suits (hearts, diamonds, clubs, and spades), and each suit contains 13 cards labeled 2 through 10, as well as jack, queen, king, and ace. Four friends are trying to determine some probabilities related to drawing cards from the deck. Two cards will be randomly drawn from the deck, and after the first card is drawn, it is not replaced before the second card is drawn. Consider the...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT