Two cards to come
Let's now consider the point at which two cards will still come. Here, we will find the probability of winning for any number of outs.
At this point, there are 3 cards face up, and 2 in your hand. With 52 total cards in the deck, this leaves 47 unseen cards, so the denominator is \({47 \choose 2}\) to represent the total number of combinations for the two cards to come.
An often-used approximation among poker players is that the win probability is equal to \(\frac{4 \times outs}{100}\). How good is this approximation?
Este exercício faz parte do curso
Probability Puzzles in R
Instruções do exercício
- Use the
outs
vector to fill in the numerator ofp_no_outs
, which counts the number of ways that none of the outs will come in the next two cards. - Calculate the probabilities of winning corresponding to each number of outs.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
outs <- c(0:25)
# Calculate probability of not winning
p_no_outs <- ___/choose(47, 2)
# Calculate probability of winning
p_win <- ___
print(p_win)