Video Poker

Video Poker (similar to Jacks or Better) is a game where in the first turn 5 cards will be drawn and the player can then choose to redraw any of these 5 cards on their second (last) turn. Since the redraw and thus the outcome depends on the player's input, the player should understand the game and otherwise decreases their chances of winning. The player can win by combining cards and making specific poker hands. Read more about Video Poker and an explanation on poker hands.

Hands, Probability and Multiplier

There are 52 cards in a deck, thus the probability of hitting one specific card is 1.923% (100/52). A player receives 5 cards and can choose to redraw either of those, thus the player has 32 total combinations of playing a specific hand (2^5=32). There are 9 hands that give a payout and can be achieved through several combinations. The hands have the following probabilities and multipliers:

The multipliers can be verified in the Video Poker contract at the first number displayed after return:

return (100, 9);                         // royal flush
return (50, 8);                          // straight flush
return (30, 7);                          // four of a kind
return (8, 6);                           // full house
return (6, 5);                           // flush
return (5, 4);                           // straight
return (3, 3);                           // three of a kind
return (2, 2);                           // two pairs
return (1, 1);                           // jacks or better
return (0, 0);                           // less than a pair of jacks

The average return is calculated at 0.994445.

You can use this Video Poker Analyser to verify the return: Standard Video Poker -> Jacks or Better -> input all the multipliers correctly in the Prize column and change wager coin to 1 -> Analyze. You can also use this https://www.beatingbonuses.com/vp_pay.php.

House Edge

The house edge is incorporated in the multiplier. With the return being 0.994445, the house edge is 0.5555% ((1-0.994445)*100).

Odds

The above leads to the following odds for Video Poker:

Last updated