Question

4. Rock-paper-scissors #3 Aa Aa A common way for two people to settle a frivolous dispute is to play a game of rock-paper-scissors. In this game, each personScISSors simultaneously displays a hand signal to indicate a rock, a piece of paper, or a pair of scissors. Rock beats scissors, scissors beats paper, and paper beats rock. If both players select the same hand signal, the game results in a tie beats paper Paper beats rock Two roommates, roommate A and roommate B, are expecting company and are arguing over who should have to wash the dishes before the company arrives. Roommate A suggests a game of rock-paper-scissors to settle the dispute Rock beats scissors Consider the game of rock-paper-scissors to be an experiment. In the long run, roommate A chooses rock 62% of the time, and roommate B chooses rock 62% of the time; roommate A selects paper 16% of the time, and roommate B selects paper 23% of the time; roommate A chooses scissors 22% of the time, and roommate B chooses scissors 15% of the time. (These choices are made randomly and independently of each other.) The probabilities were assigned using the Define event B as the event that roommate B wins the game and thus does not have to wash the dishes What is P(B), the probability of event B? O P(B)0.43 O P(B)0.30 O P(B) 0.22 O P(B)-0.76 Let event C be the event that the game ends in a tie What is P(C), the probability of event C? P(C) 0.86 O P(C) 0.55 O P(C) 0.45 O P(C) 0.50

Define event A as the event that roommate A wins the game and thus does not have to wash the dishes. What is the probability that roommate A wins the game? O P(A) 0.43 O P(A) 0.24 O P(A) 0.50 O P(A) 0.37 What is the complement of event B? BCevent B O Bc event A BC event C The probability of Bc is 0 BC-event A or event C

0 0
Add a comment Improve this question Transcribed image text
Know the answer?
Add Answer to:
4. Rock-paper-scissors #3 Aa Aa A common way for two people to settle a frivolous dispute...
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
  • A common way for two people to settle a frivolous dispute is to play a game of rock-paper-scissors.

    6. Defining probability terms using rock-paper-scissorsA common way for two people to settle a frivolous dispute is to play a game of rock-paper-scissors. In this game, each person simultaneously displays a hand signal to indicate a rock, a piece of paper, or a pair of scissors. Rock beats scissors, scissors beats paper, and paper beats rock. If both players select the same hand signal, the game results in a tie.On a given evening, two roommates, Roommate A and Roommate B,...

  • Scissors bet par Paper beats rack Rock beats schoors Consider the game of rock-paper-scissors to be...

    Scissors bet par Paper beats rack Rock beats schoors Consider the game of rock-paper-scissors to be an experiment. In the long run, roommate A chooses rock 21% of the time, and roommate 3 chooses rock 61% of the time; roommate A selects paper 39% of the time, and roommate B selects paper 21% of the time; roommate A chooses scissors 40% of the time, and roommate B chooses scissors 18% of the time. (These choices are made randomly and independently...

  • C++ Write a program that plays the rock, paper, scissors game. Rock beats scissors; scissors beats...

    C++ Write a program that plays the rock, paper, scissors game. Rock beats scissors; scissors beats paper; paper beats rock. You must use these specific functions in your program. These are the prototypes: char generateP2toss(); int checkThrow(char, char); void printStatistics(int, int, int, int); void finalStatistics(int, int, int, int); void welcome(); Notes on these functions: generateP2toss() will generate the computer's toss (the computer is player2). It returns either an "r", "p", or "s/" checkThrow(char char) will check the throw by passing...

  • JAVA Beginnings of a paper-rock-scissors game. Paper-rock-scissors is a game often used to make decisions. There...

    JAVA Beginnings of a paper-rock-scissors game. Paper-rock-scissors is a game often used to make decisions. There are two players. Each player secretly chooses either, paper, rock or scissors. At the count of three, each player reveals what they have chosen. The winner of the game is determined this way: paper beats rock (because paper covers rock) rock beats scissors (because rock crushes scissors) scissors beat paper (because scissors cut paper) If the two players choose the same item, it is...

  • java pls Rock Paper Scissors Lizard Spock Rock Paper Scissors Lizard Spock is a variation of...

    java pls Rock Paper Scissors Lizard Spock Rock Paper Scissors Lizard Spock is a variation of the common game Rock Paper Scissors that is often used to pass time (or sometimes to make decisions.) The rules of the game are outlined below: • • Scissors cuts Paper Paper covers Rock Rock crushes Lizard Lizard poisons Spock Spock smashes Scissors Scissors decapitates Lizard Lizard eats Paper Paper disproves Spock Spock vaporizes Rock Rock crushes Scissors Write a program that simulates the...

  • Rock, Paper, Scissors (also known by several other names, see http://en.wikipedia.org/wiki/Rock p...

    Help needed in Perl language program! Note : Perl Language Rock, Paper, Scissors (also known by several other names, see http://en.wikipedia.org/wiki/Rock paper scissors) is an extremely popular hand game most often played by children. Often, it is used as a method of selection similar to flipping a coin or throwing dice to randomly select a person for some purpose. Of course, this game is not truly random since a skilled player can often recognize and exploit the non-random behavior of...

  • For this week’s assignment, we will be recreating the Rock, Paper, Scissors program using Object-...

    For this week’s assignment, we will be recreating the Rock, Paper, Scissors program using Object-Oriented Programming. You will be working with me on a team to build the program. I have already written my part of the program, and the Game.java file is attached. Your task will be to write a RockPaperScissors class that contains the following methods: getUserChoice: Has the user choose Rock, Paper, or Scissors. After validating the input, the method returns a String containing the user choice....

  • Two people are playing rock, paper, scissors. The loser will give the winner $100, nothing occurs when there is a tie. L...

    Two people are playing rock, paper, scissors. The loser will give the winner $100, nothing occurs when there is a tie. Let X represent Adam and Y represent Lisa.   Rock prob, .33 X= Paper prob .33 Scissors prob, .33 Y= Rock prob .60 Paper prob .20 Scissors prob .20 A.) Draw a joint probability density table B.) What is the probability that Adam wins? C.) What is the Expected profit of the game?      

  • 3. In the game Rock-Paper-Scissors, two players simultaneously choose their actions, each of which can be...

    3. In the game Rock-Paper-Scissors, two players simultaneously choose their actions, each of which can be Rock, Paper or Scissors. If both choose the same action, no money changes hands. If they choose different actions, then one player wins and receives $1 from the other player. Rock beats Scissors; Scissors beats Paper; and Paper beats Rock. Represent this game using a payoff matrix. (You don’t need to find a solution.)

  • Objective: Write a program that simulates a game of rock, paper, scissors between a human and...

    Objective: Write a program that simulates a game of rock, paper, scissors between a human and the computer in best 2 out of 3 rounds. Requirements: . The player can enter either "rock", "paper", or "scissors'". o If the player enters anything other than that the computer automatically gets a point . The computer randomly selects one of the gestures o Use the Random type to make this easier o Also make sure you import java.util.Random o You can use...

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