Two Plus Two Older Archives  

Go Back   Two Plus Two Older Archives > General Gambling > Probability
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 09-25-2005, 01:09 PM
Uglyowl Uglyowl is offline
Member
 
Join Date: Nov 2002
Posts: 66
Default \"non-random\" raffle on Empire..what are the odds

web page

There is an argument about the odds of the 10 winners coming from the same part of the alphabet in this raffle.

Thanks in advance for your help.
Reply With Quote
  #2  
Old 09-25-2005, 01:23 PM
Guest
 
Posts: n/a
Default Re: \"non-random\" raffle on Empire..what are the odds

Haha I was waiting for this.

10 winners, Aceberber through to CaesarDoggy. Assuming equal distribution of names on the alphabet (A-Z), that's roughly 2.1/26 of the alphabet (all As, all Bs, beginning of Cs). To odds of getting that ten times consecutively should be:

(2.1/26)^10

= (1.18 * 10)^-11

or roughly 1 in 100 billion.

BruceZ probably has some nCr crap though [img]/images/graemlins/grin.gif[/img]

edit: I had a look at your analysis and it should be more accurate since you took the sample of actual names on the site. Either way it's a HUGE number. No question their randomization algorithm was [censored] up. I can think of a couple of ways code could be written that would produce a sample like this. One possibility is that the random integer the system returned each time was limited to 32,000 (if it was a code default, or they used the wrong integer type, or some guy missed a 0 in the multiplier [img]/images/graemlins/grin.gif[/img]), which would sample about 13% of 250,000 players names stored alphabetically. Seems about right?
Reply With Quote
  #3  
Old 09-25-2005, 01:56 PM
jman220 jman220 is offline
Senior Member
 
Join Date: May 2005
Location: No Poker Sept-May
Posts: 822
Default Re: \"non-random\" raffle on Empire..what are the odds

[ QUOTE ]
Haha I was waiting for this.

10 winners, Aceberber through to CaesarDoggy. Assuming equal distribution of names on the alphabet (A-Z), that's roughly 2.1/26 of the alphabet (all As, all Bs, beginning of Cs). To odds of getting that ten times consecutively should be:

(2.1/26)^10

= (1.18 * 10)^-11

or roughly 1 in 100 billion.

BruceZ probably has some nCr crap though [img]/images/graemlins/grin.gif[/img]

edit: I had a look at your analysis and it should be more accurate since you took the sample of actual names on the site. Either way it's a HUGE number. No question their randomization algorithm was [censored] up. I can think of a couple of ways code could be written that would produce a sample like this. One possibility is that the random integer the system returned each time was limited to 32,000 (if it was a code default, or they used the wrong integer type, or some guy missed a 0 in the multiplier [img]/images/graemlins/grin.gif[/img]), which would sample about 13% of 250,000 players names stored alphabetically. Seems about right?

[/ QUOTE ]

I would think that less names begin with A's B's and C's especially when compared to letters such as RSTLNEP etc. etc. Regardless, this clearly wasn't a random drawing, thats a hell of a stastical outlier.
Reply With Quote
  #4  
Old 09-25-2005, 02:30 PM
Guest
 
Posts: n/a
Default Re: \"non-random\" raffle on Empire..what are the odds

I would have thought the same, however OP did a sample of a large tournament and came up with 13.8% that fall in the range, which comes out to about 1 in 380 million odd.

If anyone is interested, here are two ways this mistake could have happened.

1. Database query.

It's possible they used a software program to do a query on their player database, but either the function they used or the array they put the data into could only hold 32,000 or 64,000 names. This is common for certain databases and query programs. Given the 13% figure, and the fact that they probably have in the order of several hundred thousand to a million players in their database, you can see how the numbers match up.

2. They selected 10 random numbers using an RNG and matched them with player IDs

An RNG usually returns a number between 0 and 1, which is the mulitiplied by whatever you wish to get a random number range. For example, if you wish to get random numbers from 1-10, you multiply the output of the RNG by 10. It's possible that someone missed a digit in the mulitplier (say 54284 instead of 542874), then you'd only get around the first 10% of names selected.

If there is 10,000 to 1 chance of someone making a mistake like this (and having spoken to customer service, I'd say that's quite conservative), then it's around 38,000 to 1 this is mistake and not a random fluctuation (using Owl's numbers).

Case closed as far as I'm concerned.
Reply With Quote
  #5  
Old 09-25-2005, 03:36 PM
PrayingMantis PrayingMantis is offline
Senior Member
 
Join Date: Nov 2003
Location: 11,600 km from Vegas
Posts: 489
Default Re: \"non-random\" raffle on Empire..what are the odds

[ QUOTE ]
No question their randomization algorithm was [censored] up.

[/ QUOTE ]

While your calculation is very clear, I have a very difficult time understanding how exactly you got to the quoted conclusion. In fact I don't see how can any conclusion about the goodness of an RNG be a result of such an "experiment". As I said in the original thread, the probability of getting _any specific group_ of names is equal to the probability of getting _any other specific group_ of names.

It is exactly the same as tossing a dice n times, getting a sequence of n heads in a row and then say: "this dice is clearly biased". Well, it might or might not be biased. The fact that you have a "suspicious" sequence is far from being enough in order to make such a strong assertion about the "randomness" of it.

Here's maybe another perspective to think about it:

Suppose Empire randomly chooses names, with a very good RNG or whatever, and the result is exactly this group of names that goes from A to C. Now they obviously think (like most of the people on 2+2, it seems) that this result won't look random, or in fact isn't random for some reason, so they "delete" it and start again. Won't you agree that there's some problematic aspect in even considering that there's something "wrong" (i.e, non-random) with the first group, if this is the practical result?

To be clear: I'm not trying to defend Empire or anything, as far as I care it could be any other site or company or whatever. I'm only interested in the pure theoretical discussion.

I'll be very interested to read your reply and more opinions.
Reply With Quote
  #6  
Old 09-25-2005, 06:59 PM
Uglyowl Uglyowl is offline
Member
 
Join Date: Nov 2002
Posts: 66
Default Re: \"non-random\" raffle on Empire..what are the odds

The odds of winning powerball are 1 in 146,107,962. Compare this to the odds of the alphabet abnormality and I think it is clear that something is amiss here.
Reply With Quote
  #7  
Old 09-25-2005, 09:33 PM
Jimbo Jimbo is offline
Senior Member
 
Join Date: Sep 2002
Location: Planet Earth but relocating
Posts: 2,193
Default Re: \"non-random\" raffle on Empire..what are the odds

[ QUOTE ]
The odds of winning powerball are 1 in 146,107,962.

[/ QUOTE ]

And yet someone still wins.
Reply With Quote
  #8  
Old 09-25-2005, 11:38 PM
Guest
 
Posts: n/a
Default Re: \"non-random\" raffle on Empire..what are the odds

[ QUOTE ]
No question their randomization algorithm was [censored] up/

[/ QUOTE ]
This was a poor choice of words on my part. Did you read my second post?

Firstly let me say that this case doesn't involve their RNG or software used in gameplay. I'm 99.99% certain that's random or close enough to random that it doesn't matter.

Drawing the winner would have consisted of an employee sampling a database or writing a piece of code to pick random numbers between 1 and N(the number of players who took the survey). There are many ways this can go wrong, some of which are listed above in my second post. It's not a long shot to see how this could happen.

[ QUOTE ]
It is exactly the same as tossing a dice n times, getting a sequence of n heads in a row and then say: "this dice is clearly biased"....

[/ QUOTE ]
Not really. The difference in this case is that the results generated are exactly what's you'd expect if someone screwed up in picking the numbers. If the names went JJKKKKLLLL I'd be less inclined to believe there was a mistake, even though it's also a long shot. The result that happened in this case is very explicable in terms of another hypothesis, and even given 10,000 to one against them making such a mistake, that leaves 38,000 to 1 in favor of the mistake hypothesis. We're talking huge numbers here. Additionally, there aren't that many ways in which randomly selected names can look incredibly suspect.

[ QUOTE ]
this result won't look random, or in fact isn't random for some reason, so they "delete" it and start again. Won't you agree that there's some problematic aspect in even considering that there's something "wrong" (i.e, non-random) with the first group, if this is the practical result?

[/ QUOTE ]
I agree. However, if they can prove that the draw was flawed in some way, then they should redo it IMO. Just being a long shot with no further evidence is not enough though.

Finally, if there are an infinite number of multiverses, then in every 380 millionth one this is going to happen and someone will cry bullshit! Maybe Empire customer service just happened to be in the wrong multiverse that day. [img]/images/graemlins/grin.gif[/img]
Reply With Quote
  #9  
Old 09-26-2005, 12:45 AM
Guest
 
Posts: n/a
Default Re: \"non-random\" raffle on Empire..what are the odds

[ QUOTE ]
[ QUOTE ]
The odds of winning powerball are 1 in 146,107,962.

[/ QUOTE ]

And yet someone still wins.

[/ QUOTE ]

Someone wins powerball because there are millions of entrants playing several games each. Each powerball draw is equivalent to Empire holding a raffle hundreds of millions of times.

Have you ever seen the powerball numbers come 1,2,3,4,5,6? How about 2,4,6,8,10,12? These are the kind of odds we're talking about. However in this case we can see the draw happening (the balls getting tumbled around), so this would most likely be random and just a freak occurrence. In the Empire case, a software program or some employee written code is picking the numbers.
Reply With Quote
  #10  
Old 09-26-2005, 07:30 AM
Guest
 
Posts: n/a
Default Re: \"non-random\" raffle on Empire..what are the odds

[ QUOTE ]
[ QUOTE ]
The odds of winning powerball are 1 in 146,107,962.

[/ QUOTE ]

And yet someone still wins.

[/ QUOTE ]

LOL but the odds of "someone winning it" are not that remarkable if enough are trying
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 02:02 PM.


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