|
本帖最后由 Howard 于 2014-12-26 00:48 编辑
长夜晚空 发表于 2014-12-25 21:42
I just played 14k hands this week, TWICE flush over flush on the flop!
Both of them were SB vs BB
5 ...
这问题至少有四种理解方式:
1. 6Max桌任意一手牌,有多大概率出现flopped flush over flush?
答案是0.072%
- select count(handshaving(exactFlopHandCategory,FLOPFLUSH) >= 2) /* How often at least 2 players flop hand category is flush */ as COUNT1
- from game='holdem', syntax='Generic',
- PLAYER_1='*',
- PLAYER_2='*',
- PLAYER_3='*',
- PLAYER_4='*',
- PLAYER_5='*',
- PLAYER_6='*'
复制代码
2. 6Max桌,两人已经是同花色的suited hands,求这两人both flop flush概率?
答案0.49%
- select count(boardInRange('hhh')) /* How often the board matches range hhh */ as COUNT1
- from game='holdem', syntax='Generic',
- PLAYER_1='hh',
- PLAYER_2='hh',
- PLAYER_3='*',
- PLAYER_4='*',
- PLAYER_5='*',
- PLAYER_6='*'
复制代码
3. 6Max桌,某人是suited cards且flop flush。求:至少有另一人也flop flush的概率?
答案12.5%
- select count(( handshaving(minFlopHandCategory,FLOPFLUSH) >= 2)) /* How often ( at least 2 players flop hand category at least flush) */ as COUNT1
- from game='holdem', syntax='Generic',
- board='hhh',
- PLAYER_1='hh',
- PLAYER_2='*',
- PLAYER_3='*',
- PLAYER_4='*',
- PLAYER_5='*',
- PLAYER_6='*'
复制代码
4. 6Max桌,某人是suited cards且flop flush。求:至少有一人flop higher flush的概率?
这问题取决于flop和底牌的高低,仅举两个例子
Hero = Kh3h, 则flop = hhh(无Ah)。则答案为3.2%
- select count(( handshaving(inRange,'AhRh') >= 1)) /* How often ( at least 1 player match hand range AhRh) */ as COUNT1
- from game='holdem', syntax='Generic',
- board='hhh!A',
- PLAYER_1='Kh3h',
- PLAYER_2='*',
- PLAYER_3='*',
- PLAYER_4='*',
- PLAYER_5='*',
- PLAYER_6='*'
复制代码
Hero = 7h6h, 则flop = Qh9h2h。则答案为11.2%
- select count(( handshaving(inRange,'[8-A]R:hh') >= 1)) /* How often ( at least 1 player match hand range [8-A]R:hh) */ as COUNT1
- from game='holdem', syntax='Generic',
- board='Qh9h2h',
- PLAYER_1='7h6h',
- PLAYER_2='*',
- PLAYER_3='*',
- PLAYER_4='*',
- PLAYER_5='*',
- PLAYER_6='*'
复制代码 |
|