Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators
pavels4444 wrote:How is this possible. My graph of only 15s HU SnG (2-man only). Once I'm below and once above EV. What's the explanation? Thanks
To me, it doesn't make sense in husng
_dave_ wrote:There does exist a perfect method for luck adjusted winnings in all single table tournaments..<clip> fanagle that with the prizepool and you get a perfect result (easy for HU lol).
Yogi Rob wrote:I disagree with using the word 'perfect' here esp for non HU, or using that word in any EV discussion, ..but we'll get this method in ASAP.
Parket wrote:I was told in a different thread to wait for the next beta to see the luck adjusted results fixed. But I wonder whether it will fix my actual issue. From reading this thread, it doesn't look like it.
Above I read that for HU SNGs it makes more sense to do a hand-per-hand cEV calculation. But that would still be incorrect as it could lead to results that are bigger than the actual prizepool.
Simple example. Suppose both players have 500 chips.
H1: I win 250 chips at showdown, so cEV = actual result = +250.
H2: We flip and I loose, and we're back at 500 chips each. cEV = 0 (flip).
H3: I again win 250 chips at showdown, so again cEV = +250.
H4: We flip and I again loose, and we're back at 500 chips each. cEV = 0.
H5: etc
So repeat this enough and you see that the total cEV may easily be way bigger than the max. number of chips that can be won. This is also why the cEV per hand graph is also not usable for HU SNGs.
The proper way to calculate this, is to iterate over all all-in hands. In algorithmic terms, this is the recursive definition :
EV (series of hands) =
if (hand is not an all-in) : EV (series of hands - hand 1)
else :
if (our stack is bigger) :
if (we win) : p(win) * prize + (1-p(win)) * prize * (startstack - our stack)/startstack # chip equity when lost
else : p(win) * prize + (1-p(win)) * EV (series of hands - hand 1)
else :
if (we loose) : p(win) * prize * our stack / startstack # chip equity when we won
else : p(win) * EV (series of hands - hand 1)
E.g. if you had a huge chiplead after a number of big showdowns, and then loose 3 flips in a row, this means your EV is already 87.5% of the prize, because you had 3 times 50% to win the tournament.
For +2 players, a similar approach can be taken, but then using ICM values for the moment you bust out of the tournament.
Users browsing this forum: No registered users and 31 guests