Definition
RNG (Random Number Generator) is the certified software component that decides the outcome of every spin, deal, or roll in a casino game. It continuously produces unpredictable numbers; the game engine maps each number to a result the moment a player acts.
Mechanics
Online casino games use pseudo-random number generators (PRNGs) — deterministic algorithms seeded with unpredictable inputs, cycling thousands of numbers per second. When a spin is triggered, the game takes the number drawn at that instant and maps it to reel positions through weighted symbol tables.
Two properties matter for how the industry is actually built:
- Each outcome is independent. The draw at spin n carries no memory of spin n−1. There is no streak logic, no compensation logic, no "due" payout.
- RTP does not live in the RNG. The generator is (and must be certified as) uniform and unbiased. The house edge is created downstream — in how numbers map to symbols and how the paytable prices each combination. A game's math model, not its randomness, sets the economics.
Certification labs (GLI, iTech Labs, BMM, eCOGRA) test both layers: statistical randomness of the generator (distribution, unpredictability, seeding) and conformance of the game's realized RTP to its declared math model. Licensed operators must run certified builds; regulators can audit outcome logs against the approved model.
How operators use it
For an operator, RNG integrity needs third-party proof attached. Source games from providers with current lab certificates, make the relevant certificate or register path discoverable, and keep audit trails aligned with the exact licence and product rules. Do not claim a conversion uplift or universal logging standard without a named study or regulator requirement.
The second operator concern is perception management. Players systematically misread randomness — decades of cognitive research (reviewed in Clark, 2010, Phil. Trans. R. Soc. B, doi:10.1098/rstb.2009.0147) show gamblers over-estimate winning chances through erroneous beliefs like the gambler's fallacy and illusion of control. Every losing streak generates "rigged RNG" support tickets that are statistically unremarkable. Operators that respond with verifiable artifacts — certificate links, game-round IDs players can query, published RTP per title — convert suspicion into trust more cheaply than any bonus can.
Common misconceptions
- "Machines run hot and cold." Each draw is independent; streaks are a property of randomness, not of the machine's state. Human intuition expects random sequences to alternate more than they really do, so genuine randomness looks streaky and therefore rigged.
- "After many losses, a win is due." This is the gambler's fallacy — one of the core erroneous beliefs by which gamblers over-estimate their chances of winning (Clark, 2010). The RNG has no memory.
- "The casino turns down the RNG remotely." The RNG is uniform by design and certification; the economics sit in the certified math model. What does exist — documented in regulator-approved PAR sheets — is multiple certified RTP versions of the same game title. That is a licensing-and-configuration fact, not live manipulation, and the versions are approved by regulators before deployment.
Related terms: RTP (Return to Player) · House Edge · Provably Fair · Gambling License
Common questions
What does RNG mean in casino games?
Random Number Generator — the certified software that produces the unpredictable numbers deciding each game outcome. Every licensed online slot, card game, and virtual roulette wheel resolves through an RNG draw at the moment of the bet.
How do I know an RNG is fair?
Independent testing labs (GLI, iTech Labs, BMM, eCOGRA) certify both the generator's statistical randomness and the game's conformance to its declared RTP. Licensed operators must use certified builds and display verifiable certificates.
Is RNG the same as provably fair?
No. Certified RNG relies on third-party lab testing under a license. Provably fair is a cryptographic scheme (common in crypto casinos) that lets each player verify individual outcomes themselves. They solve the same trust problem by different routes.