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
  #1  
Old 09-04-2003, 05:04 PM
ML4L ML4L is offline
Senior Member
 
Join Date: May 2003
Location: NC
Posts: 530
Default Here\'s What To Search...

Search:

"Way Tougher Two Round Game Theory Problem"
Last 6 months
General Theory

ML4L
Reply With Quote
  #2  
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
  #3  
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
  #4  
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
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 10:37 PM.


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