Two Plus Two Older Archives  

Go Back   Two Plus Two Older Archives > Tournament Poker > Multi-table Tournaments
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 11-07-2005, 04:40 AM
tonypaladino tonypaladino is offline
Senior Member
 
Join Date: Jun 2005
Location: props to Stuey for fixing my avatar
Posts: 498
Default Re: How not to deal at the final table

[ QUOTE ]
[ QUOTE ]
maybe he didn't even know about ICM calcs? he was a noob that luckboxed his way to the FT.

[/ QUOTE ]

[/ QUOTE ]

I'm a tourney retard, what's ICM calcs?
Reply With Quote
  #2  
Old 11-07-2005, 04:50 AM
IHateKeithSmart IHateKeithSmart is offline
Senior Member
 
Join Date: Mar 2005
Location: check folding the nuts
Posts: 182
Default Re: How not to deal at the final table

[ QUOTE ]
[ QUOTE ]
[ QUOTE ]
maybe he didn't even know about ICM calcs? he was a noob that luckboxed his way to the FT.

[/ QUOTE ]

[/ QUOTE ]

I'm a tourney retard, what's ICM calcs?

[/ QUOTE ]

Independent Chip Model - Basically, a method for determining chip value during a tourney.

BTW, how is the butter treating you?
Reply With Quote
  #3  
Old 11-07-2005, 12:49 PM
Exitonly Exitonly is offline
Junior Member
 
Join Date: Dec 2004
Location: New Jersey
Posts: 3
Default Re: How not to deal at the final table

Awesome Avatar.

Just, awesome.
Reply With Quote
  #4  
Old 11-07-2005, 01:15 PM
Lee Jones Lee Jones is offline
Senior Member
 
Join Date: Mar 2003
Location: San Jose, CA
Posts: 271
Default ICM

[ QUOTE ]
Independent Chip Model - Basically, a method for determining chip value during a tourney.

[/ QUOTE ]

So, being ICM-clueless myself, I went to that page and read about it. Then I downloaded the C source, compiled it (Cygwin) without difficulty and ran it. It looked to my cursory glance like it was s'posed to determine the EV's for stacks of 18, 24, and 30 in a tournament down to three players with payoffs of .2, .3, and .5

So Q1: Are my assumptions correct?

When I ran it, it printed out:

72.000 0.25 0.3333 0.4166667

which seems to be:


total_chips %stack1 %stack2 %stack3

Then it went into a long waiting period and then spit out one row of numbers:

1816214400 0.250000 0.303571 0.446429 0.000000 0.000000 0.000000 0.305357

and a table. The table appears to be probabilities of people finishing in certain positions. But there's no guidance on how to interpret that.

In short, this program (presumably) does the heavy lifting nicely, but doesn't cross the t's and dot the i's, enabling a lay user to make much use of it.

(Even a comment or two tossed into the source would have gone a long way)

I may go have a look at the C++ source now and see if it's more useful. Does anybody wanna sell me a vowel?

Regards, Lee
Reply With Quote
  #5  
Old 11-07-2005, 01:20 PM
Lee Jones Lee Jones is offline
Senior Member
 
Join Date: Mar 2003
Location: San Jose, CA
Posts: 271
Default Re: ICM

So I grabbed the C++ source and tried to compile it. I get a gazillion compilation errors - it looks like maybe I don't have some include files I need (#include "vector").

Help.

Thanks, Lee
Reply With Quote
  #6  
Old 11-07-2005, 01:27 PM
Guest
 
Posts: n/a
Default Re: ICM

Lee,

The Single Table Tournaments board has a whole lot of experience using ICM, so I took your questions and posted them over in STT. They'll probably have the best answers.
Reply With Quote
  #7  
Old 11-07-2005, 02:14 PM
Guest
 
Posts: n/a
Default Re: ICM

Send a private message to Eastbay.
Reply With Quote
  #8  
Old 11-07-2005, 02:27 PM
IHateKeithSmart IHateKeithSmart is offline
Senior Member
 
Join Date: Mar 2005
Location: check folding the nuts
Posts: 182
Default Re: ICM

[ QUOTE ]
Send a private message to Eastbay.

[/ QUOTE ]

Yes, eastbay is the man WRT ICM calcs. The SNGPT (SNG Analyzer) is a tool that helps run through the ICM calcs for SNG pushbotting in an automated fashion.

(BTW Exit - the avatar is my dog from halloween ) [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #9  
Old 11-07-2005, 01:23 PM
maddog2030 maddog2030 is offline
Senior Member
 
Join Date: Feb 2005
Location: Virginia Tech, $33s
Posts: 200
Default Re: ICM

[ QUOTE ]
I may go have a look at the C++ source now and see if it's more useful. Does anybody wanna sell me a vowel?


[/ QUOTE ]

With that site there is actually a javascript ICM Calculator. It is easier to use, though its limited to only 3 payout places.
Reply With Quote
  #10  
Old 11-07-2005, 07:51 PM
Insty Insty is offline
Senior Member
 
Join Date: Jan 2005
Posts: 121
Default Re: ICM

[ QUOTE ]
[ QUOTE ]
Independent Chip Model - Basically, a method for determining chip value during a tourney.

[/ QUOTE ]

So, being ICM-clueless myself, I went to that page and read about it. Then I downloaded the C source, compiled it (Cygwin) without difficulty and ran it. It looked to my cursory glance like it was s'posed to determine the EV's for stacks of 18, 24, and 30 in a tournament down to three players with payoffs of .2, .3, and .5

So Q1: Are my assumptions correct?


[/ QUOTE ]
Yes.

[ QUOTE ]

When I ran it, it printed out:

72.000 0.25 0.3333 0.4166667

which seems to be:

total_chips %stack1 %stack2 %stack3


[/ QUOTE ]
Which is actually: total_chips and then the probability of finishing first for each player,
which is simply the proportion of the chips in play that they currently hold.

[ QUOTE ]

Then it went into a long waiting period and then spit out one row of numbers:

1816214400 0.250000 0.303571 0.446429 0.000000 0.000000 0.000000 0.305357


[/ QUOTE ]
The first number seems to be the number of times the innermost loop ran.
The second number is player 1's chance of winning.
The third number is player 1's chance of finishing second.
The fourth number is player 1's chance of finishing third.
I supect the fifth, sixth, seventh numbers are 4th 5th + 6th position probability.
The last number is player 1's ICM value. - this is the useful number.

[ QUOTE ]

and a table. The table appears to be probabilities of people finishing in certain positions. But there's no guidance on how to interpret that.


[/ QUOTE ]

The table seems to be:
Postion, percentage of prizepool for that spot, chance player1 will finish in that spot, chance player1 will finish in a lower spot.

I'm not sure why this table is useful.

The last number is player 1's ICM value. (again).

[ QUOTE ]

In short, this program (presumably) does the heavy lifting nicely, but doesn't cross the t's and dot the i's, enabling a lay user to make much use of it.


[/ QUOTE ]
It only seems to give the numbers for player1.
It also seems to be much more complicated and take much longer than I expected it should.
Although it does seem to be able to cope with 16 players and paying out 10 spots.

My ICM code only calculates for paying out 3 spots but is effectively instant.

Insty.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:10 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.