SilentBob420BMFJ
SilentBob420BMFJ
  • Threads: 21
  • Posts: 104
Joined: May 8, 2011
October 9th, 2011 at 12:42:36 PM permalink
Most people think it's the same hand, but are probably mistaken. Well, unlike in a real casino, I can check my history on 5Dimes, and I can tell you that I couldn't believe my eyes. So much so that I took a screenshot.

What are the chances of getting back to back identical hands, with all the cards in the same position? Now, the suits weren't the same (every single card changed suit), but still. I have an idea of the calculation, but the hardest part is finding the probability that all 5 cards land in the same spot too. Let's assume that suit doesn't matter for this calculation.

Perhaps this is a case of the RNG not really being random.
Paigowdan
Paigowdan
  • Threads: 115
  • Posts: 5692
Joined: Apr 28, 2010
October 9th, 2011 at 2:33:56 PM permalink
The probabilities of getting one exact five-card hand (or the same hand on the next next deal) is 1 in 2,598,960 with no joker.
For it to be dealt out in the same order, the odds after that fly off the roof, but perhaps the display algorithm sorts the cards on display, I dunno.
It might be a rare bug in the computer code, RNG or otherwise. A transient glitch. WTF.
Beware of all enterprises that require new clothes - Henry David Thoreau. Like Dealers' uniforms - Dan.
SilentBob420BMFJ
SilentBob420BMFJ
  • Threads: 21
  • Posts: 104
Joined: May 8, 2011
October 14th, 2011 at 12:15:44 PM permalink
And this is ignoring suit? So 23456 of diamonds and 23456 of clubs = exact same hand?

So you think I'm onto something here? Do I actually have an example of how the RNG really isn't random? Or something worse? The problem is, until you get to the billions, it's "possible", thus not proof.

So does anybody know how to calculate this exactly? Ignoring suit, what are the chances you get the same value cards in the same slots in back to back hands? And just like he put it above, it's the same as asking, what are my chances of getting 69385 in that exact order?
thecesspit
thecesspit
  • Threads: 53
  • Posts: 5936
Joined: Apr 19, 2010
October 14th, 2011 at 2:11:18 PM permalink
4/52 * 4/51 * 4/50 * 4/49 * 4/48

Assuming all five cards were different.

=> 1024/311,875,200 or about 1 in 305,000

One result cannot be the sign of a non-random RNG.
"Then you can admire the real gambler, who has neither eaten, slept, thought nor lived, he has so smarted under the scourge of his martingale, so suffered on the rack of his desire for a coup at trente-et-quarante" - Honore de Balzac, 1829
dwheatley
dwheatley
  • Threads: 25
  • Posts: 1246
Joined: Nov 16, 2009
October 14th, 2011 at 2:18:08 PM permalink
I agree with 1 in 304566. To build on this, if you play 100,000 hands of video poker you have about a 28% chance of witnessing this at least once. At up to 1000 hands per hour (a fast but not unattainable speed online), you only have to play 100 hours to have this chance.

200 hours (200,000 hands) gives you a 48% chance of witnessing this.
Wisdom is the quality that keeps you out of situations where you would otherwise need it
SilentBob420BMFJ
SilentBob420BMFJ
  • Threads: 21
  • Posts: 104
Joined: May 8, 2011
October 14th, 2011 at 6:28:09 PM permalink
Wow. The first guy had me thinking I was really onto something. However, you guys didn't calculate the chance of each card being in the same position. How would you calculate that? 1/5 ^ 5, then multiply that by 1 in 305,000? That would be .00000000104918, or about 1 in 10,000,000,000? Ya...
Switch
Switch
  • Threads: 12
  • Posts: 934
Joined: Apr 29, 2010
October 14th, 2011 at 6:42:34 PM permalink
Quote: SilentBob420BMFJ

And this is ignoring suit? So 23456 of diamonds and 23456 of clubs = exact same hand?

So you think I'm onto something here? Do I actually have an example of how the RNG really isn't random? Or something worse? The problem is, until you get to the billions, it's "possible", thus not proof.

So does anybody know how to calculate this exactly? Ignoring suit, what are the chances you get the same value cards in the same slots in back to back hands? And just like he put it above, it's the same as asking, what are my chances of getting 69385 in that exact order?



It's the ignoring of the suit that drastically reduces the probability too.

For 2, 3, 4, 5 & 6 in order (ignoring suit) then, to calculate the probability, you just multiply each fraction obtained by dividing the number of ways an event can occur by the total possible number of outcomes.

So, probability of a 2 as the first card is 4/52.

The probability of a 3 as the next card is 4/51 (as you are assuming a 2 has been drawn as the 1st card)

4 as 3rd card = 4/50, p(5) = 4/49 and p(6) = 4/48

To get the probability of them all occurring then you just multiply the fractions together.

If you had to get the suits correct as well then this would equate to 1/52 X 1/51 X 1/50 X 1/49 X 1/48 or, to put another way, the answer to the 'ignoring suit' multiplied by 4x4x4x4x4 or 4^5.
thecesspit
thecesspit
  • Threads: 53
  • Posts: 5936
Joined: Apr 19, 2010
October 14th, 2011 at 8:33:11 PM permalink
Quote: SilentBob420BMFJ

Wow. The first guy had me thinking I was really onto something. However, you guys didn't calculate the chance of each card being in the same position. How would you calculate that? 1/5 ^ 5, then multiply that by 1 in 305,000? That would be .00000000104918, or about 1 in 10,000,000,000? Ya...



Nope, I did calculate same rank in each position... assuming five different ranks.

It's just not crazy rare.
"Then you can admire the real gambler, who has neither eaten, slept, thought nor lived, he has so smarted under the scourge of his martingale, so suffered on the rack of his desire for a coup at trente-et-quarante" - Honore de Balzac, 1829
SilentBob420BMFJ
SilentBob420BMFJ
  • Threads: 21
  • Posts: 104
Joined: May 8, 2011
October 15th, 2011 at 5:16:58 PM permalink
So what would the math be if you excluded position? 20/52 * 19/52 ... ?
thecesspit
thecesspit
  • Threads: 53
  • Posts: 5936
Joined: Apr 19, 2010
October 15th, 2011 at 6:06:30 PM permalink
20/52 * 16/51 * 12 /50 * 8/49 * 4/48

(any of the 5 ranks in first position, any of the 4 remaining ranks in the next position... etc)

= 122,880 / 311,875,200

=> 1 in 2,538 (to the nearest whole number).

Again assuming the cards are all different.

Which means you are more likely to see a repeating hand than a royal flush.
"Then you can admire the real gambler, who has neither eaten, slept, thought nor lived, he has so smarted under the scourge of his martingale, so suffered on the rack of his desire for a coup at trente-et-quarante" - Honore de Balzac, 1829
TIMSPEED
TIMSPEED
  • Threads: 89
  • Posts: 1246
Joined: Aug 11, 2010
October 21st, 2011 at 2:37:33 PM permalink
I've done this many times..
gotten the exact same five cards in the exact same position, BACK TO BACK.
I've also gotten a Royal Flush, and on the next hand, Quad Aces...
Gambling calls to me...like this ~> http://www.youtube.com/watch?v=4Nap37mNSmQ
  • Jump to: