PFA


Bet.Me Data Science Test Carry out your workings in R, Python or Go and separately, state any assumptions you make and the consequences of a departure from those assumptions. 1) In a best of 9 frame snooker match between Player A and Player B, it is estimated that the probability for Player A to win the first frame is 55%. Using this information: a) estimate the probability for Player A to win the match, b) estimate the probability for there to be at least 8 frames played in the match c) what would be an appropriate level of odds (in decimal format) to offer for Player B to win the match. 2) In a football match between Team A and Team B, Team A is estimated to have a goals expectancy of 1.5 goals and Team B is estimated to have a goals expectancy of 1.25 goals. Using the Poisson Distribution: a) estimate the probability for Team A to win the match, b) estimate the probability for there to be at least 2.5 goals in the match c) what would be an appropriate level of odds (in decimal format) to offer for the match to be drawn. 3) In a tennis match, the probability of Player A winning a given point on serve in the first game of the match is 0.52. Find the probability that Player B wins the first game, given player A is serving. 4) In a five horse race, the following table sets out the decimal odds for each horse to win the race. What should the price be for an exact 1-2-3 finish based on Horse A winning, Horse B coming 2nd and Horse C coming 3rd? Horse A 3.03 Horse B 6.66 Horse C 3.12 Horse D 6.25 Horse E 25
Answered 8 days AfterMay 22, 2022

Answer To: PFA

Pooja answered on May 31 2022
83 Votes
#1# pA=0.55, pB=0.45
> #a# P(A win) = P(X_A>=5) = 1-P(X_A<=4)
> 1-pbinom(4, 9, 0.55)
[1] 0.621420
9
> #b# P(at least 8 frames) = (P(X_A = 4)*P(X_B = 3)) + (P(X_A=3)*P(X_B=4))
> (dbinom(4, 9, 0.55)*dbinom(3, 9, 0.45))+(dbinom(3, 9, 0.45)*dbinom(4, 9, 0.55))
[1] 0.09015853
> #c# P(odds) = P(B win) / P(A wins)
>...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here