Luck adjusted winnings in SNGs

Questions and discussion about PokerTracker 4 for Windows

Moderators: WhiteRider, kraada, Flag_Hippo, morny, Moderators

Re: Luck adjusted winnings in SNGs

Postby PJs Ronin » Wed Feb 01, 2012 12:34 am

I have a conceptual problem trying to quantify a concept like 'luck'.
PJs Ronin
 
Posts: 978
Joined: Fri Dec 25, 2009 11:55 pm

Re: Luck adjusted winnings in SNGs

Postby pavels4444 » Wed Feb 01, 2012 6:05 am

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

Here is the graph in chips (below EV)
Image
image hosting

Here is the same graph in tournaments with the new EV (overley net adjusted) (above EV)
Image
image host

To me, it doesn't make sense in husng
pavels4444
 
Posts: 1
Joined: Sat Dec 24, 2011 6:24 pm

Re: Luck adjusted winnings in SNGs

Postby WhiteRider » Wed Feb 01, 2012 6:49 am

Please see this post earlier in this thread - the development team are discussing these issues.
If you could attach the hand history files for these tournaments to a Support Ticket and post your ticket number here we'll make sure the development team see them - examples are always useful in cases like this.
Thanks.
WhiteRider
Moderator
 
Posts: 54017
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: Luck adjusted winnings in SNGs

Postby Yogi Rob » Wed Feb 01, 2012 10:38 am

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


1) Chip EV is hand-by-hand, 2) Tourney "Net Adjusted" is the ICM of the EV adjusted chip stacks of the final hand. For Heads up, 1 is much more important. Please see earlier posts in the thread.
Yogi Rob
Developer
 
Posts: 1078
Joined: Tue Jul 07, 2009 9:33 pm

Re: Luck adjusted winnings in SNGs

Postby Yogi Rob » Wed Feb 01, 2012 12:01 pm

_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).

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.
Yogi Rob
Developer
 
Posts: 1078
Joined: Tue Jul 07, 2009 9:33 pm

Re: Luck adjusted winnings in SNGs

Postby Voyeurism » Sun Mar 04, 2012 5:11 am

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.


Any news yet on when we are likely to see a beta with this fixed?
Voyeurism
 
Posts: 31
Joined: Mon Jan 12, 2009 1:23 pm

Re: Luck adjusted winnings in SNGs

Postby Parket » Sun Mar 04, 2012 10:47 am

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.
Parket
 
Posts: 367
Joined: Mon Mar 24, 2008 1:03 pm

Re: Luck adjusted winnings in SNGs

Postby WhiteRider » Sun Mar 04, 2012 5:04 pm

I will make sure Rob sees your reply.
WhiteRider
Moderator
 
Posts: 54017
Joined: Sat Jan 19, 2008 7:06 pm
Location: UK

Re: Luck adjusted winnings in SNGs

Postby Zangeeph » Mon Mar 05, 2012 5:37 pm

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.

This is completely wrong. Not sure how you came up with that, but you'll find that if you used it, it wouldn't work at all.

HU SnGs and 9 man SnGs should be treated exactly the same in terms of the calculation. Because when there's two people, the ICM calculations are exactly the same as cash calculations - there's no reason to switch to any other calculation method as they will give the same result.

Also, with the correct calculation it IS possible to win more than the prize pool and lose more than the buy-in. See this topic on 2+2 of HEM's luck adjusted winnings. It has over a thousand posts in because people love to get confused by mathematical calculations. I would read the ones by jukofyork (you may end up more confused if you read posts by others as they are mostly wrong).
Zangeeph
 
Posts: 205
Joined: Thu Jun 23, 2011 6:27 pm

Re: Luck adjusted winnings in SNGs

Postby Yogi Rob » Tue Mar 06, 2012 4:05 pm

thanks Zangeeph. And thanks Parket, I too am curious as to the reference for that method. I was preparing a pm similar to what Zangeeph posted, but I wouldn't go as far to say "it wouldn't work at all". All of these methods have flaws in my opinion and at best give a rough idea of a luck-neutral result.

The consensus reached in that huge 2+2 thread is how we're going at least for the initial release. I know it's counter intuitive, but Juk explains why it's OK for this value to go beyond the scope of the normal P/L of a tourney.
Yogi Rob
Developer
 
Posts: 1078
Joined: Tue Jul 07, 2009 9:33 pm

PreviousNext

Return to PokerTracker 4

Who is online

Users browsing this forum: No registered users and 37 guests

cron
highfalutin