show/hide this revision's text 5 Add prng tag
show/hide this revision's text 4 Linked to related question

Is there a difference between generating multiple numbers using a single random number generator (RNG) versus generating one number per generator and discarding it? Do both implementations generate numbers which are equally random? Is there a difference between the normal RNGs and the secure RNGs for this?

I have a web application that is supposed to generate a list of random numbers on behalf of clients. That is, the numbers should appear to be random from each client's point of view. Does this mean I need retain a separate random RNG per client session? Or can I share a single RNG across all sessions? Or can I create and discard a RNG on a per-request basis?

Outstanding questions

UPDATE:

How do you know that clients will get random numbers if they all share a single RNG? Who This question is related to say that the numbers will pass statistical tests for randomness from each client's point of view? Is there a mathematical property that guarantees that a subset of a random sequence is also random even if you don't know how selection/division takes place?http://stackoverflow.com/questions/471157/is-a-subset-of-a-random-sequence-also-random

show/hide this revision's text 3 edited body

Is there a difference between generating multiple numbers using a single random number generator (RNG) versus generating one number per generator and discarding it? Do both implementations generate numbers which are equally random? Is there a difference between the normal RNGs and the secure RNGs for this?

I have a web application that is supposed to generate a list of random numbers on behalf of clients. That is, the numbers should appear to be random from each client's point of view. Does this mean I need retain a separate random RNG per client session? Or can I share a single RNG across all sessions? Or can I create and discard a RNG on a per-request basis?

Outstanding questions:

How do you know that clients will get random numbers if they all share a single RNG? Who is to say that the numbers will pass statistical tests for randomness from each client's point of view? Is there some sort of a mathematical property that guarantees thisthat a subset of a random sequence is also random even if you don't know how selection/division takes place?

show/hide this revision's text 2 added 219 characters in body
show/hide this revision's text 1
    Post Made Community Wiki by Community