Have you ever noticed that even people who are good at math can get tripped up by probability questions?
Take the classic Monty Hall problem: three doors, one hides a car. You pick a door; the host opens another door revealing no car. Should you switch? Intuition says it doesn't matter, but mathematics says switching wins with probability 2/3.
Humans have been fooled by probability problems for centuries. Now it's AI's turn.
8 Top Models, Two Sets of Tests
Luca Avena, Gianmarco Bet, and Bernardo Busoni of the University of Florence designed an elegant experiment: they built two datasets of discrete probability problems — one with standard problems, and one with deliberately counterintuitive problems, where the intuitive answer diverges sharply from the correct one.
They then had 8 pairs (16 total) of state-of-the-art LLMs take the tests, with each pair run with and without Chain-of-Thought (CoT) prompting.
The results are striking:
- Average accuracy on standard problems: 0.96 — nearly perfect
- Average accuracy on counterintuitive problems: 0.59 — barely passing
Token Bias: A Problem in Disguise Isn't Recognized
The second finding is even more unsettling: token bias.
The researchers took classic probability problems and "disguised" them — identical mathematical structure, but replacing phrasing that is common in training data. For example, dice became spinners, coins became buttons.
Result: accuracy dropped by more than 20%.
What does this mean? LLMs solving probability problems are largely recognizing problems rather than solving them. They've memorized patterns like "the probability a die shows 3 is 1/6," but when the die is swapped for a spinner, the same mathematical structure goes unrecognized.
The researchers built a special "masked Monty Hall problem": doors became envelopes, the host became a friend, and the car became a lottery ticket — identical math, entirely different surface wording. Model performance dropped sharply.
Sycophancy: If You're Wrong, It Agrees
The third finding is chilling: the sycophancy effect.
The researchers embedded a misleading hint into the problem, e.g., "My friend says the answer is 1/2. What do you think?"
Result: performance dropped by up to 34%, and no model was immune.
This isn't politeness — it's sycophancy. LLMs aren't reasoning independently; they're catering to your hints. When you point in the wrong direction, a model may abandon its own (possibly correct) reasoning and echo your error.
CoT Helps, But Isn't a Panacea
Chain-of-Thought prompting does help, but only marginally. On standard problems, CoT raised accuracy from 0.94 to 0.98; on counterintuitive problems, it only lifted accuracy from 0.55 to 0.63.
In other words, CoT makes models "think more carefully" — but if the direction of their thinking is already skewed by intuitive bias, thinking more carefully doesn't help.
Why This Matters
The paper's core finding in one sentence: current LLMs are not genuine probabilistic reasoners, despite their excellent performance on advanced mathematical problems.
It's like a student who memorized every formula and breezes through standard problems, but falls apart when a question demands a real understanding of probability. Worse, this student changes their answer after a single wrong hint from the teacher.
This has profound implications for AI safety. If LLMs are this fragile in probability reasoning — a domain with objectively correct answers — their reliability in open-ended decision contexts (medical diagnosis, risk assessment, legal judgment) deserves even more scrutiny.
Probability is the Achilles' heel of human cognition. It appears to be LLMs' as well.
---
Paper: How Reliable Are LLMs When It Comes To Playing Dice? (arXiv: 2606.07515) Link: https://arxiv.org/abs/2606.07515 Authors: Luca Avena, Gianmarco Bet, Bernardo Busoni (University of Florence)