Question

Suppose the Sixers and the Warriors are playing in the NBA finals (a seven game series)....

Suppose the Sixers and the Warriors are playing in the NBA finals (a seven game series). The first team to win four games wins the series. Assume the Sixers have a win probability for each game of 0.483. If the Sixers lose the first game, what is the probability that they win the series? Perform a Monte Carlo simulation to answer this question.

use r-studio!!! plz

Homework Answers

Answer #1

A Mote Carlo Simulation code (in RStudio) to simulate the seven games times and calculating the probability of win of Sixers if they loose the first game is given below.

set.seed((57778))
n <- 10000
p <- 0
for( i in 1:n)
{
X <- sample(c(1,0),size=7,replace = TRUE, prob=c(0.483,1-0.483)) # 1 stands for Sixers win, 0 loss
if(X[1]==0)
{
if(length(X[which(X==1)])>=4)
{
p <- p + 1/n
}
}
}
p

We find the probability of win to be  0.1538.

Know the answer?
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
Similar Questions
Suppose that two teams are playing a series of games, each team independently wins each game...
Suppose that two teams are playing a series of games, each team independently wins each game with 1/2 probability. The final winner of the series is the first team to win four games. Let X be the number of games that the two teams have played. Find the distribution of X.
Baseball's World Series is a maximum of seven games, with the winner being the first team...
Baseball's World Series is a maximum of seven games, with the winner being the first team to win four games. Assume that the Atlanta Braves and the Minnesota Twins are playing in the World Series and that the first two games are to be played in Atlanta, the next three games at the Twins' ballpark, and the last two games, if necessary, back in Atlanta. Taking into account the projected starting pitchers for each game and the home field advantage,...
Suppose you are playing a series of ping pong games with Cl ́emonell until one of...
Suppose you are playing a series of ping pong games with Cl ́emonell until one of you has won six. Suppose that the probability that Clemonemon wins is 0.58 and that the games are independent. 1. What is the probability that the series ends at the ninth game? 2. If the series ends at the ninth game, what is the probability that you will win it
Two teams, A and B, are playing a best of 5 game series. (The series is...
Two teams, A and B, are playing a best of 5 game series. (The series is over once one team wins 3 games). The probability of A winning any given game is 0.6. Draw the tree diagram for all possible outcomes of the series.
The World Series in baseball is won by the first team to win 4 games in...
The World Series in baseball is won by the first team to win 4 games in a series of 7. Clearly it cannot go longer than 7 games. Assume the two teams are evenly matched. (a) What is the probability that the team to win the first game wins the series? Explain the reasoning behind your computation in words. (b) Suppose that a team wins the first two games. What is the chance that it wins the series?
Baseball's World Series is a maximum of seven games, with the winner being the first team...
Baseball's World Series is a maximum of seven games, with the winner being the first team to win four games. Assume that the Atlanta Braves and the Minnesota Twins are playing in the World Series and that the first two games are to be played in Atlanta, the next three games at the Twins' ballpark, and the last two games, if necessary, back in Atlanta. Taking into account the projected starting pitchers for each game and the home field advantage,...
The probability that Cleveland wins a game over Golden State is 2/5 (0.4) 1 - What...
The probability that Cleveland wins a game over Golden State is 2/5 (0.4) 1 - What is the probability that Golden State won the best of seven series over Cleveland in seven games? 2 - What is the probability that Cleveland won the series over Golden State in 6 games? 3 - What is the probability that Golden State won the series over Cleveland in 5 games? 4 - What is the probability that Cleveland win the NBA championship?
A team that wins 4 games out of 7 is the winner. Suppose that Team S...
A team that wins 4 games out of 7 is the winner. Suppose that Team S and Team R face each other in the final game and that Team S has probability 0.55 of winning a single game over Team R . Find: The probability that Team S will win the series.
A team play a series of games with win, lose, or draw outcomes. The transition probabilities...
A team play a series of games with win, lose, or draw outcomes. The transition probabilities between winning, losing, and drawing are averaged over a long time and treated as independent: Loss Draw Win Loss 0.3 0.4 0.3 Draw 0.4 0.5 0.1 Win 0.2 0.4 0.4 A. If the team wins two games in a row, what is the probability that it will draw its next game? B. On average the team wins 50% of the time, draws 20% of...
Two teams A and B play a series of at most five games. The first team...
Two teams A and B play a series of at most five games. The first team to win these games win the series. Assume that the outcomes of the games are independent. Let p be the probability for team A to win each game. Let x be the number of games needed for A to win. Let the event Ak ={A wins on the kth trial}, k=3,4,5. (a) What is P(A wins)? Express the probability with p and k. Show...