Question

Anja, Bengt and Carola play a game. What the game is about and how it works, we don't care. We only need to know tha...

Anja, Bengt and Carola play a game. What the game is about and how it works, we don't care. We only need to know that the highest score wins, that Anja's score is a Poisson-distributed stochastic variable with parameter 2, that Bengt's score is Poisson distributed with parameter 3, that Carola's score is Poisson distributed with parameter 4 and that the players' points are independent of each other . The score was 1, 2 and 3, but we don't know who got what. What is the conditional probability given to this information that it was Carola who won?
0 0
Add a comment Improve this question Transcribed image text
Answer #1

X = score by Anja

Y = score by bengt

Z = Carola

since Carol won hence score is 3 is hers

P((X = 1 , Y = 2 , Z = 3) or (X = 2 , Y = 1 ,Z = 3)) | (Z = 3))

as X, Y and Z are independent

required probability reduce to

P(X = 1 , Y = 2) + P(X = 2 , Y = 1)

X follow poisson with mean 2 , Y follow poisson with mean 3

P(X = 1) 0.270671
P(X = 2) 0.270671
P(Y = 1) 0.149361
P(Y = 2) 0.224042

formula in excel

P(X = 1) =POISSON(1,2,0)
P(X = 2) =POISSON(2,2,0)
P(Y = 1) =POISSON(1,3,0)
P(Y = 2) =POISSON(2,3,0)

P(X = 1 , Y = 2) + P(X = 2 , Y = 1)

= 0.270671*(0.149361 + 0.224042)

= 0.101069

Add a comment
Know the answer?
Add Answer to:
Anja, Bengt and Carola play a game. What the game is about and how it works, we don't care. We only need to know tha...
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
  • Players A and B each roll a fair 6-sided die. The player with the higher score...

    Players A and B each roll a fair 6-sided die. The player with the higher score wins ¤1 from the other player. If both players have equal scores, the game is a draw and no one wins anything. i. Let X denote the winnings of player A from one round of this game. State the probability mass function of X. Calculate the expectation E(X) and variance Var(X). ii. What is the conditional probability that player A rolls , given that...

  • answee quick please ill give good rating 1) A video game company wants to know whether...

    answee quick please ill give good rating 1) A video game company wants to know whether adolescents better prefer 1 of the 3 types of video games they have recently created. The games all have similar underlying rules and goals, however the themes are different (Ninjas, Secret Agents, or Vigilantes), and the video game company doesn't assume that players will have any preference, but they want to be sure. They assemble a focus group of 30 people and ask them...

  • This program should be in c++. Rock Paper Scissors: This game is played by children and...

    This program should be in c++. Rock Paper Scissors: This game is played by children and adults and is popular all over the world. Apart from being a game played to pass time, the game is usually played in situations where something has to be chosen. It is similar in that way to other games like flipping the coin, throwing dice or drawing straws. There is no room for cheating or for knowing what the other person is going to...

  • “Oh I know, let’s play Rock, Paper, Scissors, Lizard, Spock. It’s very simple.” What better way...

    “Oh I know, let’s play Rock, Paper, Scissors, Lizard, Spock. It’s very simple.” What better way to expand the classic Rock, Paper, Scissors game than to add Lizard and Spock! Sheldon and Raj brought Sam Kass’s game to life on The Big Bang Theory in “The Lizard-Spock Expansion” episode.   Assignment & Discussion Your task in Programming Assignment 8 is to create a C# console app-version of Rock, Paper, Scissors, Lizard, Spock (RPSLS). Use any of the programming tools and techniques...

  • Write a program in the Codio programming environment that allows you to play the game of...

    Write a program in the Codio programming environment that allows you to play the game of Rock / Paper / Scissors against the computer. Within the Codio starting project you will find starter code as well as tests to run at each stage. There are three stages to the program, as illustrated below. You must pass the tests at each stage before continuing in to the next stage.  We may rerun all tests within Codio before grading your program. Please see...

  • One of the students in this class has created a game and would like for you to play. You have calculated that you will lose the game 45% of the time. At the same time you know that 30% of players will...

    One of the students in this class has created a game and would like for you to play. You have calculated that you will lose the game 45% of the time. At the same time you know that 30% of players will be paid $1 while 20% of players will be paid $2. It is calculated that all other players will receive the $100 prize. What is the expected value for this game? (Enter your solution as a decimal without...

  • The Binomial and Poisson Distributions Both the Binomial and Poisson Distributions deal with discrete data where...

    The Binomial and Poisson Distributions Both the Binomial and Poisson Distributions deal with discrete data where we are counting the number of occurrences of an event. However, they are very different distributions.  This problem will help you be able to recognize a random variable that belongs to the Binomial Distribution, the Poisson Distribution or neither. Characteristics of a Binomial Distribution Characteristics of a Poisson Distribution The Binomial random variable is the count of the number of success in n trials:   number of...

  • Java Constructor and method

    Player Class Specification The Player class represents a player that will play a simple game. In this game, a player can play the number 0, 1, or 2. The Player class contains the following four fields: private String name; private int play; private int [] tally; private StringBuffer history; The Player class contains the following 2 constructors and 5 methods that you must implement: 1. Constructor with String parameter – If the argument is null, throw the IllegalArgumentException with the...

  • how do I write this code without the imports? I don't know what pickle is or...

    how do I write this code without the imports? I don't know what pickle is or os.path import pickle # to save and load history (as binary objects) import os.path #to check if file exists # character value mapping values = {'A': 1, 'B': 3, 'C': 3, 'D': 2, 'E': 1, 'F': 4, 'G': 2, 'H': 4, 'I': 1, 'J': 8, 'K': 5, 'L': 1, 'M': 3, 'N': 1, 'O': 1, 'P': 3, 'Q': 10, 'R': 1, ' S': 1,...

  • This is my code for a TicTacToe game. However, I don't know how to write JUnit...

    This is my code for a TicTacToe game. However, I don't know how to write JUnit tests. Please help me with my JUnit Tests. I will post below what I have so far. package cs145TicTacToe; import java.util.Scanner; /** * A multiplayer Tic Tac Toe game */ public class TicTacToe {    private char currentPlayer;    private char[][] board;    private char winner;       /**    * Default constructor    * Initializes the board to be 3 by 3 and...

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