hotShot, on Jan 20 2010, 04:04 PM, said:
Just to add a little facts:
1000000 random deals
average HCP NS 20.0017
std. deviation 4.77
Thanks for providing the results of the simulation.
I did a quick sanity check and 68.5% of the observations fall within 15 and 25.
Earlier, someone asked what the odds were that NS would get dealt at least "X" HCPs on each and every board in a tournament.
Let's assume that the tournament is 24 boards (a popular length). Furthermore, lets assume that we're interested in the odds that NS had at least 26 HCPs on each and every hand.
If we use the table that HotShot provided, there were 126,557 deals where NS had at least 26 HCPs. North - South will have at least 26 HCPs ~12.7% of the time. Conversely, N-S will have 25 or less HCPs 87.3% of the time.
Next, let's calculate the chance that N-S are deal 26+ HCPs on boards 1+2. Furthermore, lets assume that the number of HCPs on board 1 and the number of HCPs on board 2 are independent events. The odds of this happening is
(The percentage chance that N-S gets 26+ HCPs on board 1) X (The percentage chance that N-S gets 26+ HCPs on board 2) = 12.7% x 12.7% = 1.6129%
In a similar fashion, the odds that NS would get 26+ HCP on each and every board in a 24 round tournament is (12.7%)^24 = 3.0995e-022
Here's another interesting factoid...
Once again, we'll use HotShot's table.
The odds that NS are dealt 21+ HCPs (an above average hand) on any one board is about 46%
The odds that NS are dealt 21+ HCPs on each and every board of a 24 board tournament is 8.0573e-009
For kicks and giggles - and because I have MATLAB sitting on my desk - I generated a Bernouli distribution to show the percentage chance that NS would get dealt an above average hand X times times during a 24 board tournament.
x = 0:24;
y = binopdf(x,24,0.46);
Distribution =
# of Occurances Frequency
0 3.7796e-007
1 7.7273e-006
2 7.5699e-005
3 0.00047288
4 0.0021148
5 0.0072061
6 0.019439
7 0.04258
8 0.077078
9 0.11673
10 0.14915
11 0.16171
12 0.14923
13 0.11734
14 0.078538
15 0.044602
16 0.021372
17 0.0085673
18 0.0028382
19 0.00076348
20 0.00016259
21 2.6382e-005
22 3.0646e-006
23 2.27e-007
24 8.0573e-009