A Super Mega Bowl guide
Everyone uses the word random, but it is surprisingly slippery. A shuffled deck, a coin toss, and a computer picking a number all feel random, yet they get there in very different ways. Here is what randomness really means, and where it actually comes from.
Something is random when its outcome cannot be predicted in advance, even with complete knowledge of the rules. A fair coin is random because there is no way to know whether the next flip is heads or tails. Crucially, random does not mean uncaused or lawless. A random process still follows a clear distribution, so while any single outcome is a surprise, the long-run pattern is completely predictable. A fair coin is unpredictable flip by flip and reliably close to half heads over thousands of flips.
People often expect randomness to look evenly mixed, with no clumps or streaks. Real randomness is the opposite. It naturally produces runs, clusters, and coincidences. Six heads in a row is not a glitch, it is exactly what chance does now and then. A sequence that looks too tidy, alternating neatly, is actually a sign that something is not random. This gap between what random is and what we expect it to look like is why humans are so bad at judging randomness.
True randomness comes from physical processes that are genuinely unpredictable. Radioactive decay, electronic noise, the exact motion of a tumbling die, atmospheric static, and the timing of your own keystrokes are all used as sources. These are not just hard to predict, they are believed to be fundamentally unpredictable, which is what makes them a source of true random values.
Computers have a problem: they are built to be perfectly predictable, so on their own they cannot produce true randomness. Instead they use a pseudo-random number generator, a formula that starts from a seed value and produces a stream of numbers that looks random and passes statistical tests, but is actually fully determined by the seed. Feed in the same seed and you get the same sequence every time.
For almost everything, from games to simulations to fair coin flips, pseudo-randomness is more than good enough, because the output is statistically uniform and unpredictable in practice. For security, such as generating passwords or encryption keys, a special cryptographic generator is used, often seeded from true physical randomness. The full mechanics are covered in how random number generators work.
This is partly a physics question. At the everyday scale, a coin or a die is technically deterministic. If you knew every force and angle precisely, you could in principle predict the result. It is random to us only because we cannot measure or compute all of that. At the quantum scale, however, events like radioactive decay appear to be truly random in a way no hidden detail can explain. So the honest answer is that most everyday randomness is really unpredictability, while nature does seem to hold genuine randomness at its smallest scales.
Watch randomness in action → Flip a long run of coins and look for the streaks. They are not a flaw. They are what real randomness looks like.Randomness means unpredictable outcomes that still follow a stable long-run pattern, and it naturally looks lumpy rather than evenly mixed. Computers fake it convincingly with pseudo-random generators, true randomness comes from physical noise, and whether anything is random at the deepest level is a question for physics. For everyday chance, unpredictable is exactly what you need.