Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Fisher-Yates theory

by Abigail-II (Bishop)
on Jul 24, 2003 at 08:25 UTC ( [id://277473]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Fisher-Yates theory
in thread Fisher-Yates theory

The biggest problem with shuffling algorithms (not just Fisher-Yates) is the imperfectness of the RNG. The sequence of numbers it returns is determined by the seed, and only by the seed. And if from the seed only 32 bits are being used, there will be at most 2**32 different sequences. Which means that for a deck of more than 2 cards, Fisher-Yates cannot be 'fair', as N! won't be a divisor of any power of 2. Furthermore, 13! > 2**32, so even if you shuffle a deck of 13 cards, some permutations will *never* be selected, no matter how many times you perform the shuffle.

This was pointed out by R. Salfi: COMPSTAT 1974, Vienna: 1974, pp 28 - 35.

See also the documentation of the Shuffle module on CPAN.

Abigail

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://277473]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-25 14:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found