Randomness Analysis
Five classical tests run continuously against the simulator's frequency stream. Together they measure whether the underlying RNG is producing genuinely uniform random output, and at what statistical resolution.
What "passing" means
Each test asks a slightly different question of the same data. Chi-square tests compare observed counts against the hypothesis "all numbers are equally likely." A χ² well below the critical value means we can't reject that hypothesis — the simulator looks uniform. Entropy is the maximum if the distribution is uniform; any drop is a signature of bias. Variance ratios near 1.0 confirm the variance matches what an unbiased process would produce.
The simulator passes all five tests because it uses a cryptographic RNG (CSPRNG) that is, for all practical purposes, indistinguishable from true randomness. The tests run continuously to demonstrate the statistical signature of randomness in real time, on real data, at scale.
Caveat: These tests detect bias of certain kinds. No finite suite of tests can prove an RNG is "truly random" — only that it has not yet failed any of them at the resolution provided by the sample size.