A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Perhaps “random” does not necessarily mean “unique.”
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Two unrelated students obtain identical random samples. How is that possible?
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Perhaps “random” does not necessarily mean “unique.”
AI answer
If the samples were generated with a pseudo-random method, identical samples are possible because pseudo-random numbers come from an algorithm, not true randomness.
Two common reasons are:
Random objects are created with the same seed, they generate the same sequence of numbers.Random() constructor derives its default seed from the system clock. If two generators are created close together, they can receive the same seed and therefore produce identical sequences.Relevant details from the platform behavior:
Random represents a pseudo-random number generator.Random objects produces the same series of random numbers.Random() can create identical sequences when objects are instantiated close together because the default seed comes from the system clock.So, two unrelated students can get identical “random” samples if the software used a pseudo-random generator with the same starting seed, especially if the generator was initialized the same way each time.