Two Plus Two Older Archives  

Go Back   Two Plus Two Older Archives > General Poker Discussion > Poker Theory
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #11  
Old 09-03-2003, 04:23 PM
ML4L ML4L is offline
Senior Member
 
Join Date: May 2003
Location: NC
Posts: 530
Default Are You Sure?

Hey emanon,

I might be mistaken, but I don't think that you can apply the simple $2 concept to the $3 or $n cases. This stems from the fact that, under the $2 case, if a player has won once, he will either win or be tied after the next flip. But, beyond $2, you get into situations (e.g. after having won the first flip) where you don't encounter both alternatives at the same time.

To my knowledge, the only way to solve the $3 or $n problem is by using methodology similar to that which elindauer used to solve the $2 problem. I'll try to post the solution sometime tomorrow (unless someone beats me to it...).

ML4L
Reply With Quote
  #12  
Old 09-03-2003, 04:33 PM
ML4L ML4L is offline
Senior Member
 
Join Date: May 2003
Location: NC
Posts: 530
Default PS for David (and others)

David,

You never posted an answer or critique for the "Way Tougher Two Round Game Theory Problem" that you posted a few months back. Pink Bunny and I (and a couple others) thought that we got the answer, but there was still some doubt. Anyway, if you happen to get a chance, I've been curious about how close we got. Or, others are obviously welcome to bring the thread back and post their thoughts...

Thanks.

ML4L
Reply With Quote
  #13  
Old 09-03-2003, 05:24 PM
DrSavage DrSavage is offline
Senior Member
 
Join Date: Jul 2003
Location: Brooklyn
Posts: 634
Default Re: Cute Applicable Math Question

Let's say probability of winning a freezeout is x
you win immidiately if you flip tails twice and you are in the exact same situation if you flip one tails and one heads
therefore:
x = 0.6 ^ 2 + (0.6 * 0.4 * 2) x
or
x = 0.36 + 0.48 x
therefore x = 0.36/0.52 = 0.6923
Reply With Quote
  #14  
Old 09-03-2003, 06:14 PM
Ilovephysics Ilovephysics is offline
Member
 
Join Date: Jul 2003
Posts: 40
Default Re: The Answer

hmm.. it's amazing how simple it is when you just 'think' about it for a second.. I knew there was some reason I took linear algebra, I just didn't know it until know.
Reply With Quote
  #15  
Old 09-03-2003, 08:06 PM
DrSavage DrSavage is offline
Senior Member
 
Join Date: Jul 2003
Location: Brooklyn
Posts: 634
Default Re: Are You Sure?

I did a calculation for 3$ with algebra method while riding subway home and arrived at the very same number, namely
0.6^n/(0.6^n + 0.4^n). So it appears that the formula must be correct, but i still don't see why. I have a problem understanding why probability of having n more wins is 0.6^n, if somebody will get me through this the formula would be correct
Reply With Quote
  #16  
Old 09-03-2003, 09:01 PM
David Sklansky David Sklansky is offline
Senior Member
 
Join Date: Aug 2002
Posts: 241
Default Re: PS for David (and others)

[ QUOTE ]
David,

You never posted an answer or critique for the "Way Tougher Two Round Game Theory Problem" that you posted a few months back. Pink Bunny and I (and a couple others) thought that we got the answer, but there was still some doubt. Anyway, if you happen to get a chance, I've been curious about how close we got. Or, others are obviously welcome to bring the thread back and post their thoughts..

ML4L

[/ QUOTE ]

I don't know the answer to that one.
Reply With Quote
  #17  
Old 09-03-2003, 11:16 PM
Terry Terry is offline
Senior Member
 
Join Date: Sep 2002
Location: The Appalachian Trail
Posts: 660
Default Re: Cute Applicable Math Question

This is a simple game to simulate. (No comments needed on the quick & dirty code.)

================================================== ===========================
RANDOMIZE TIMER: DIM NumFlips, Awon, Bwon, i AS LONG
PRINT "Working..."

BRofA = 2: BRofB = 2: Awon = 0: Bwon = 0

FOR i = 1 TO 20000000

Flip = INT(RND(1) *10)
IF Flip < 6 THEN BRofA = BRofA + 1 ELSE BRofB = BRofB + 1
IF Flip < 6 THEN BRofB = BRofB - 1 ELSE BRofA = BRofA - 1

IF BRofA = 0 THEN Bwon = Bwon + 1: BRofA = 2: BRofB = 2
IF BRofB = 0 THEN Awon = Awon + 1: BRofA = 2: BRofB = 2

NEXT i

PRINT "Player A (60% advantage) won "; Awon; " out of "; Awon; Awon + Bwon; "completed games."
PRINT 100 * (Awon / (Awon + Bwon)); "%"
================================================== ==========================

Repeated runs give 69.2% with the next digit varying from 0 to 5.

Reply With Quote
  #18  
Old 09-04-2003, 01:57 AM
slider77 slider77 is offline
Member
 
Join Date: Sep 2003
Posts: 73
Default Re: Cute Applicable Math Question

I would ratio the winning streaks required for each player.

P(Player 1 Streak) = .6^2 = .36
P(Player 2 Streak) = .4^2 = .16

The game must start at the same "node point" - i.e. the start of the game and a win/loss are at the same point.

So, P(Player 1 Wins) = .36/(.36+.16) = .692
Reply With Quote
  #19  
Old 09-04-2003, 12:54 PM
Ilovephysics Ilovephysics is offline
Member
 
Join Date: Jul 2003
Posts: 40
Default Re: PS for David (and others)

Could someone re-post this problem (or at least provide a link to the old post)?
Reply With Quote
  #20  
Old 09-04-2003, 03:58 PM
emanon emanon is offline
Junior Member
 
Join Date: Aug 2003
Posts: 8
Default Re: Are You Sure?

I'm quite sure the answer is right. I also wrote a quick excel program to make sure.

hmm, let me see if I can think of a better way of explaining why... its a bit of a mish-mash of stuff, maybe someone like brucez can give a clearer picture if this doesn't help.

1. There are only 2 events which matter:
i. A has 3 more wins than B
ii. B has 3 more wins than A

2. Regardless of the number of flips to reach event i or ii, the difference between Winner_victories and Loser_victories = 3. ie-->
Wins - Loses = 3.

3. In $2
(Wins -2) = Loses
So the only thing that mattered was reaching 2.
In $3
(Wins -3) = Loses
So the only thing that mattered is reaching 3.

4. Therefore, just as we did in the $2 case, we need only concern ourselves with calculating the probabilities of reaching the requisite number of wins. The steps taken to get there (ie, the path) is irrelevant. All that matters is reaching 3.
Thus we the prob (+3) and prob(-3) is the total prob space with which we are concerned.
---------------

Now, to give an example of why this doesn't neccessarily work in a tournament:
Depending on relevant stack sizes, etc, a player may change his actions to adjust his EV/SD. This means that my probability changes depending on the results of the flips(cards), and we can now no longer ignore the path taken to acheive victory.

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 12:39 AM.


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