I am working on an application where I need to calculate poker odds. There would be 2 or more players getting 2 cards each as in preflop condition. Now I have to calculate the percentage to win/lose/tie for all the players. I have searched too much on internet and found several articles but could not find one addressing my problem. Can some one please help me with the formula that I should be using to calculate the percentage. There are so many sites finding these odds but i could not find any site explaining it.

Thanks
Pankaj

link|improve this question

3  
deleted all tags linked to programming languages, added "math" and "card-games" Link to SO Question about same topic, link to Wikipedia page with explanation – cularis Jul 6 '11 at 8:51
These guys, these guys, always looking for "formulas" on google to plug numbers into. Isn't it just a question of listing all the possible card combinations, classifying each as win/lose/tie according to the rules du jour, and tallying up the results? – Jean-François Corbett Jul 6 '11 at 9:02
so you mean I have to prepare a database with all the possibilities? – pankaj Jul 6 '11 at 9:50
but how will I calculate the winning/losing/tie percentage then? – pankaj Jul 6 '11 at 9:54
feedback

closed as off topic by Paul R, bažmegakapa, mauris, Quentin, Gamecat Jul 6 '11 at 11:21

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

Computing these probabilities for all players exactly requires quite some effort. So most probably, you will find approximated odds more useful.

That said, in case you can invest the time and effort, here's a rundown of the general idea on how to compute exact winning percentages:

  • Let N be the total number of cards in the deck and P the number of players. Let M be the remaining cards, i.e. M = N-2*P

  • loop over all possible flops+turn+river cards that may come up (select 5 out of the M remaining cards). Let T be the total number of these possible board situations.

    • for each board of 5 such cards, determine who wins this hand (i.e. the two hole cards of each player plus the 5 board cards). If player P wins this hand, increase W(P) by one, where W(P) is the number of hands this player wins.

Finally, for a player P you can get his pre-flop winning percentage as W(P) / T. In words: the number of board situation in which this player wins the hand, divided by the number of all possible board situations.

This process can be adapted easily for calculating the post-flop and post-river percentages. For those cases, simply adjust the loop for the number of remaining cards.

link|improve this answer
isn't there some formula of combination to calculate the odds depending upon the card required to win? I have found on a web some website calculating this using some permutations and combinations pocketodds.com/crunch.php?path=AsKs-QsJs Please check this url where AsS-QsJs are the cards of two players – pankaj Jul 6 '11 at 10:24
I need to get some output similar to this. what approach you think they are following? – pankaj Jul 6 '11 at 10:25
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.