I have created a style of Poker that I call Texas Jack which combines the betting simplicity of Blackjack with the excitement of a Texas Hold 'em race. It is a single player banking style game in which a player places bets on which set of hole cards will win after a flop, turn, and river. I have created this video tutorial to easily demonstrate the gameplay. As you can see in the video, there is also a side bet option on the hand ranking of the winning hand. Written instructions can be found further down.
Texas Jack Tutorial Video
I have also developed an app game, so you can try out the game for free with Apple and Android devices. Click the link from your phone to be directed to the app store, or view my website: Texas Jack Website
Texas Jack App Game
I would love to hear some feedback of what you think of the game. Thanks!
Written Instructions for Texas Jack Poker:
Texas Jack Poker is a banking style poker game in which a player attempts to accurately bet on the set of hole cards that will end up making the best 5 card hand after a flop, turn, and river.
The game begins with the player placing an initial bet (or wager) in the amount that they choose.
The dealer will then deal 3 sets of hole cards upright, containing 2 cards each, for a total of 6 visible cards.
The player will then distribute their initial chip bet onto the hand that they determine will win the hand. A bet may be placed entirely on a single hand, or split between multiple hands. Splitting your bet will minimize your risk of losing chips, but also minimize your winnings.
After the initial bet has been distributed to the hand(s) chosen, you have the option to place a side bet on the winning hand ranking, or you can deal the flop, river, and turn cards to determine the winner. (See below for side bet rules).
Any bet placed on a winning hand will receive a 1/1 return plus the original bet. (For example, a bet of 5 chips placed on the winning hand would receive a 5 chip reward plus your original bet of 5 chips back.)
All hands that tie for a win are considered a winning hand and receive 1/1 return. If the best 5 cards are all on the flop, turn, and river, then all 3 hands tie, all 3 are considered winners, and all bets placed receive a 1/1 return.
Any bet that is placed on a hand that does not win, is lost to the dealer without a return.
Side bets rules:
An optional side bet can be placed after the 3 sets of hole cards are revealed and before the remaining 5 cards are dealt. A player may place a bet on which hand ranking the winning hand will have. (For example you could bet that the winning hand will be 2 Pair, or 3 of a Kind, or a Flush, etc..) If the winning hand wins with the ranking that was bet on, you will receive a return based on which hand was chosen.
ZCore13
SF Pays 100/1
4K Pays 20/1
FH Pays 3/1
FL Pays 2/1
ST Pays 2/1
3K Pays 2/1
2P Pays 1/1
1P Pays 1/1
HC Pays 3/1
Payouts for the side bet is tricky bc a player can wait for the best position to place a side betting after the cards are out. It makes the house edge quite high on the majority of hands, but smaller when the right sets of hands are dealt.
What steps did you use to calculate the 1.1% house edge on the main game?
When none of the spots' probability is higher than 50%, then the house has the advantage. When 1 spot's probability is higher than 50%, then the player has the advantage for that game.
So when calculating the house edge, the question boils down to:
what is the frequency of Max (P1, P2, P3) > 50% ?
which, i don't know how to calculate.
According to WoO, it's only 3.77%:Quote: andysifSo if I understand correctly, under the camouflage of Texas hold'em, this game is really just 3 spots, each having a different probability of winning (that sums to 100%), that pays 1:1.
When none of the spots' probability is higher than 50%, then the house has the advantage. When 1 spot's probability is higher than 50%, then the player has the advantage for that game.
So when calculating the house edge, the question boils down to:
what is the frequency of Max (P1, P2, P3) > 50% ?
which, i don't know how to calculate.
https://wizardofodds.com/games/texas-hold-em/3-player-game/
The rules of the OP's game change things somewhat by paying all players a full win on what, in Hold'em, would be a split pot.
select count(winsHi(p1)or tiesHi(p1))
from game="holdem", p1="**", p2="**",p3="**"
where handRankingFor(p1,'3h')<handRankingFor(p2,'3h')
and handRankingFor(p1,'3h')<handRankingFor(p3,'3h')
Quote: mipletI used http://www.propokertools.com/pql for a higher sample of 322753. The highest ranking hand won or tied 157124 (48.68%) for a house edge of 2.635%. You'll still want a higher sample and one that selects the best hand of the 3 instead of just the highest ranking one.
select count(winsHi(p1)or tiesHi(p1))
from game="holdem", p1="**", p2="**",p3="**"
where handRankingFor(p1,'3h')<handRankingFor(p2,'3h')
and handRankingFor(p1,'3h')<handRankingFor(p3,'3h')
Well done! A small amendment gets you there, I think:
select count(winsHi(p1)or tiesHi(p1))
from game="holdem", p1="**", p2="**",p3="**"
where equity(p1,preflop)>=equity(p2,preflop)
and equity(p1,preflop)>=equity(p3,preflop)
This ran for about 10 seconds and returned 790 trials, of which 381 (48.23%) were winners. That's an edge of 3.54%, but I think the sample is too small. I'd do a desktop run overnight and see what it converged to. Either way, somewhere in the 2.5%-3.5% range is decent for a fast-ish game like this.
Edit: definitely do a longer run; I re-ran it with strictly greater-than in the equity calculation and it came out to 51%, that is, a player advantage. So I'd need to think about which is the right operator to use, but either way the sample size needs to be larger.
I just did a 5-minute skim of the docs, I'm not sure if I set up the right query because I've never used this tool before. Please double check the query semantics vs. the rules described by the OP. I don't know whether it should beQuote: BTLWII have the paid desktop version of PPT, I can run that PQL for a long time once I get home.
equity(p1,preflop)>=equity(p2,preflop)
or
equity(p1,preflop)>equity(p2,preflop)
from game="holdem", p1="**", p2="**",p3="**"
where equity(p1,preflop)>=equity(p2,preflop)
and equity(p1,preflop)>=equity(p3,preflop)
600,000 trials
49.3535% (296121) Count 1
from game="holdem", p1="**", p2="**",p3="**"
where equity(p1,preflop)>equity(p2,preflop)
and equity(p1,preflop)>equity(p3,preflop)
600,000 trials
49.3640% (296184) Count 1
The more I think about it, the more I think it should be >=. Otherwise the results would exclude cases where the top hand has exactly the same equity as one or more of the other hands, such asQuote: MathExtremistI just did a 5-minute skim of the docs, I'm not sure if I set up the right query because I've never used this tool before. Please double check the query semantics vs. the rules described by the OP. I don't know whether it should be
equity(p1,preflop)>=equity(p2,preflop)
or
equity(p1,preflop)>equity(p2,preflop)
AhKd / AdKc / AcKh (all are exactly 1/3) or
AcAs / AdAh / 2c2d (about 40/40/20).
They're rare but, for the sake of completeness, important to consider.
~8 Hours on a 6-core Intel i7 3970X w 32GB DDR3.