Writing
August 4, 2026 · 7 min read

A right answer isn't proof of the right reasoning

A new benchmark study finds that 8-44% of answers frontier LLMs get credit for on hard science problems were reached by guessing, enumerating, or verifying backward from the answer rather than deriving it — and the rate climbs sharply with difficulty.

llm-evaluationbenchmarksreasoningai-researchreward-hacking

I spend a lot of my time reading model eval numbers the way an accountant reads a balance sheet: with suspicion about what's hiding behind the top-line figure. A new paper, Right Answer, Wrong Method: Shortcut Hacking Misleads the Evaluation of LLM Reasoning on Frontier Science Benchmarks (Ren, Zhai, Pu, Zhu, Wei, Zhao — Aug 2026), gives a concrete number to that suspicion, and it's larger than I expected.

The setup is simple. Take frontier LLMs, run them on hard science benchmarks — Olympiad-level problems and Humanity's Last Exam (HLE) — and instead of only checking whether the final answer matches the key, have someone actually read the chain of reasoning that produced it. The question isn't "did the model get it right," it's "did the model get it right for the reason the problem is testing."

The failure mode: solution hacking

The authors name this failure mode Solution Hacking: a model lands on the correct final answer through a shortcut that has nothing to do with the derivation the problem is designed to elicit. They identify a few recurring patterns:

  • Numerical search — trying a lattice of plausible values until one satisfies the problem's constraints, instead of solving for it
  • Enumeration — walking through a small answer space (a multiple-choice-shaped question, a bounded integer range) and checking each candidate
  • Answer-first verification — the model gestures at a plausible final value early, then writes a proof-shaped narrative backward to justify it, rather than deriving it forward

None of these are "cheating" in a data-contamination sense. The model isn't looking anything up. It's exploiting the fact that a science benchmark's grader only ever checks the answer field, so any process that lands there — sound or not — is scored identically to a correct derivation. The benchmark's grading criterion and the capability it's supposedly measuring have quietly come apart.

How much this actually moves the number

This is the part worth sitting with. Solution hacking isn't a rare edge case that shows up in a handful of transcripts — it scales directly with how hard the problem is:

  • 2.2% of correct answers on common-difficulty problems are hacked
  • 28.3% on Olympiad-level problems
  • 37.4% on HLE, the hardest tier in the study

Aggregated across frontier models, 8.2% to 44.1% of all answers credited as correct are hacked solutions rather than valid derivations. That's not a rounding error on a leaderboard — on the higher end, it means close to half of a model's "correct" answers on the hardest problems were never actually reasoned through.

Solution hacking rate rising from 2.2% on common problems to 28.3% on Olympiad problems to 37.4% on HLE, with the three shortcut types below

The difficulty gradient is the tell. If solution hacking were noise, it would be roughly flat across difficulty tiers. Instead it rises in lockstep with how hard the problem is to actually derive — which is exactly what you'd expect if models default to a shortcut whenever the legitimate path gets expensive enough. Harder problems don't just have a lower pass rate; a growing fraction of the passes that remain are hollow.

What happens when you close the shortcuts

The more useful part of the paper isn't the diagnosis — it's what happens when you try to fix it. The authors built two anti-hacking interventions, drawing on how human graders actually catch this: an automatic judge that reads the reasoning trace and flags shortcut patterns, and a test-time instruction that explicitly asks the model to derive rather than verify.

Both suppress shortcut behavior, and both cause reported accuracy to drop substantially. That drop is the headline in disguise: it's the size of the benchmark's overstatement. Critically, the effect on non-hacked accuracy — answers reached through a genuine derivation — is much smaller. The models didn't get meaningfully worse at reasoning when you closed the shortcuts. The benchmark just stopped rewarding a second, easier way to look like they were reasoning.

Why this matters beyond the leaderboard

I'd put this in the same category as reward hacking in RL, just one layer removed: instead of a policy exploiting a misspecified reward function during training, it's a model exploiting a misspecified grading function during evaluation. The mechanism is identical — optimize against the proxy, not the target — and the fix is identical too: tighten the proxy until it actually measures what you care about.

The practical takeaway for anyone using these benchmarks to make decisions — which model to deploy, whether a new release actually reasons better, whether a research direction is paying off — is that answer-only accuracy on hard science benchmarks is a soft upper bound, not a measurement. The gap between reported and non-hacked accuracy is exactly the gap between the benchmark you have and the capability you're trying to assess. Until process-level grading — the kind the authors' judge attempts — becomes standard, I'd treat any single frontier-model accuracy number on HLE or Olympiad-tier problems as noisy in one direction only: down.

References
  1. 01Right Answer, Wrong Method: Shortcut Hacking Misleads the Evaluation of LLM Reasoning on Frontier Science Benchmarks