GameWheelClub LogoGameWheelClub
Back to Learn Hub
Pillar 3: Science & PRNG Tech

The Science of Decision Making & Cryptographic PRNGs

Understanding the cognitive science of decision fatigue alongside the software engineering that guarantees unbiased computational randomness.

1. What is Decision Fatigue?

In social psychology, Decision Fatigue refers to the deteriorating quality of decisions made by an individual after a long session of decision-making. Popularized by psychologists Roy F. Baumeister and John Tierney (Willpower, 2011), the brain consumes glucose and executive control reserves when weighing minor tradeoffs.

By outsourcing trivial choices (such as what to eat for lunch, picking an icebreaker, or choosing a classroom participant) to a randomized wheel, individuals preserve executive cognitive energy for complex tasks.

2. How Pseudorandom Number Generators (PRNGs) Work

Computers are inherently deterministic machines. To generate randomness, software utilizes Pseudorandom Number Generators (PRNGs)—mathematical algorithms that transform an initial seed value into an unpredictable sequence of numbers.

Modern Web browsers utilize algorithms like the Mersenne Twister or xorshift variants. For enhanced cryptographic security, browsers access the native crypto.getRandomValues() API, which samples hardware entropy (such as thermal noise and CPU clock jitter) to generate true cryptographic randomness.

3. Why Randomness Reduces Anxiety

When faced with overchoice (the burden of choosing between many appealing options), individuals experience regret and cognitive dissonance. A decision wheel acts as an external, unbiased referee.

Interestingly, research shows that if a user feels disappointed by the wheel's outcome, it reveals their subconscious preference—helping them realize what option they actually preferred all along!