How to Win Rock-Paper-Scissors (More Often)

Rock-paper-scissors is the world's purest mixed-strategy game: three options, perfect symmetry, and a mathematical proof that the optimal strategy is to choose each throw with exactly one-third probability. Play truly randomly and nobody can beat you long-term β€” but nobody can lose to you either. The game only becomes winnable because of one glorious fact: humans cannot do random.

The statistics of human throws

Large tournament datasets and lab studies agree on the big patterns:

The exploits

Round one: against a typical opponent, open with paper. It beats the most common throw (rock) and rock-lovers are everywhere.

After they win: expect a repeat. If their rock just beat your scissors, don't throw scissors again β€” throw paper to beat the rock that's coming.

After they lose: expect the forward cycle. If their scissors just lost to your rock, they'll likely jump to paper (which would have beaten your rock). Throw scissors.

Against announced throws: if someone says "here comes rock," they're probably lying β€” but at amateur level, surprisingly often they're not. Gladiatorial double-bluffing is a pro sport.

The defense: be a robot

Every exploit above works only against humans leaking patterns. The counter is to remove the human: pre-commit your throws using an external random source. A die works perfectly β€” 1-2 rock, 3-4 paper, 5-6 scissors. Now you're playing the Nash equilibrium and your opponent's psychology degree is useless. You won't win more than a third, but in a "loser does the dishes" negotiation, guaranteed unexploitability is exactly what you want.

Randomize your throws

Generate 1-6 before each round: 1-2 rock, 3-4 paper, 5-6 scissors. Perfectly unexploitable.

Open the number generator β†’

Sicilian reasoning and its limits

"He knows that I know that he overplays rock, so he expects paper, so he'll throw scissors, so I should throw rock…" β€” this recursion has no floor. Game theory's answer is elegant: when the levels of second-guessing become unbounded, the only strategy that can't be out-thought is randomness. Deep wisdom for a playground game: sometimes the smartest move is to stop being smart on purpose.