Reordering random numbers by fixed substitution does not change the degree of randomness.
So, if you have the perfect source of random numbers, then the same shuffled bits will be equally random. This will be true if the βshuffleβ is a fixed reordering (for example, reversing all bits) or a shuffle generated by a pseudo random number generator (which is actually a very confusing way to determine a fixed reordering from some initial seed).
This is provable from the underlying mathematics - if you reorder a set of truly independent identically distributed random variables, then the resulting distribution will be the same as the one you started with. Therefore, it is equally random.
However, this does not work if the shuffling somehow depends on the values ββof the random bits. If, for example, you sort the bits rather than rearrange them, then you will not have very good random output :-).
source share