|
|
|
|
|
by pgn674
1827 days ago
|
|
I thought that pseudo random referred to the way that the seed number was generated. Like, by sampling disk I/O metrics, thermometer readings, and mouse movements and combining them together. Pretty random, but still predictable in certain ways. If you wanted a truly random seed, you'd need to sample something the physicists say is actually random, such as cosmic microwave background radiation or certain subatomic processes following the uncertainty principle. Did I learn wrong? Are all random numbers derived from an appropriate recursive function considered pseudo random, no matter how the seed was derived? |
|
Psuedo-RNGs typically use an algorithm (such as a hash) which is very hard to reverse. The next value is deterministic and easy to predict if you know the algorithm and input values, but effectively impossible (i.e., 'random') if not.
[0] https://news.ycombinator.com/item?id=27447766