Interpretability · Chain-of-Thought · Large Reasoning Models

Models make up their minds
long before they say so.

Daniel Scalena and Sara Candussio  ·  Luca Bortolussi  ·  Elisabetta Fersini  ·  Malvina Nissim  ·  Gabriele Sarti

University of Groningen  ·  University of Milano-Bicocca  ·  University of Trieste  ·  Northeastern University

What is the commitment boundary?

When a Large Reasoning Model solves a hard problem, it generates a Chain-of-Thought before writing its answer. In this monologue, the model hedges, tries alternatives and re-checks its statements. But is it really all necessary to produce the answer? Turns out that it is not, and that we can precisely locate the step at which the model becomes sure of the final answer.

We call this step i* the commitment boundary, falling typically around the midpoint of the CoT. Beyond this moment, the models often engage in what we defined epiphenomenal reasoning: on the surface, they seem to hedge, re-check, verify their guess, but they are not. The confidence of their guess remains unaltered.

How?

For each sentence in the reasoning trace, we truncate the CoT to the end of each sentence and force the model to commit to an answer. Comparing that answer to the one the full trace produces gives a step-by-step confidence signal about the moment in which the model becomes sure.

Truncation experiment — Q10, trace 1
Cut after step Last sentence in CoT P(2220) Forced answer
step 1 "We need smallest positive integer multiple of 30…" 0.061 2000
step 20 "Let's try length 2… number 20." 0.001 20
step 38 "So we need both middle digits to be 2." 0.357 2200
step 39 ← i* "So number is 2220?" 0.995 2220 ✓
step 45 "So 2220 is a multiple of 30?" 0.999 2220 ✓
step 73 (full) "So answer is 2220." 1.000 2220 ✓

Rows shaded blue: cutting anywhere after step 39 yields the same correct answer. Steps 40–73 are causally redundant.

Before the commitment boundary, we get wrong or uncommitted answers. After the boundary (even if the model is writing "wait, let me re-check...") we get the same answer consistently at each truncation. The post-boundary tail of hedging and re-verification is epiphenomenal: it looks like deliberation, but it has no causal role in producing the answer.

We trained a small causal attention probe to recognize this moment online instead of post-hoc with over 90% detection accuracy on in-distribution data.

A real example: MATH-500, question 10

Models: gpt-oss-20b · gemma-4-26B-it · Qwen3-14B  |  Benchmarks: MATH-500 · AIME 2025 · GPQA Diamond · ZebraLogic

Question (MATH-500, Q10)

What is the least positive integer multiple of 30 that can be written with only the digits 0 and 2?

Ground truth answer: 2220

The trace below is one of sixteen independent reasoning chains sampled from gpt-oss-20b on this question. Each point is one sentence; its y-position is the model's actual confidence in its final answer if reasoning were stopped there, measured by truncating the trace and forcing an answer.

This trace has four distinct mid-guesses: first 20 (step 20, very brief), then 200 (steps 14–15, 24), then 2000 (step 25), and finally 2200 (step 38), each held with high confidence before being revised. Along the reasoning trace, the model correctly eliminates each candidate (due to wrong digit count, not divisible by 3, ...) and at step 39 commits to 2220, where P(final) jumps from 0.36 to 0.995 in a single step.

gpt-oss-20b · MATH-500 Q10 · trace 1 · 73 sentences
No guess Mid-guess: 20 Mid-guess: 200 / 2000 Mid-guess: 2200 Final guess: 2220
step — hover a point to read the reasoning step

The commitment boundary falls at step 39 out of 73 — 53% into the trace. The four mid-guesses before it are genuine: each is held with high P(wrong) while P(final) stays near zero, and each gets explicitly refuted in the text. After step 39, P(wrong) collapses to near zero and stays there for all 34 remaining sentences.

What we found

Paper and citation

Beyond the Commitment Boundary: Probing Epiphenomenal Chain-of-Thought in Large Reasoning Models. Daniel Scalena, Sara Candussio, Luca Bortolussi, Elisabetta Fersini, Malvina Nissim, Gabriele Sarti. 2026.

@inproceedings{scalena2026commitment,
  title     = {Beyond the Commitment Boundary: Probing Epiphenomenal
               Chain-of-Thought in Large Reasoning Models},
  author    = {Scalena, Daniel and Candussio, Sara and Bortolussi, Luca
               and Fersini, Elisabetta and Nissim, Malvina and Sarti, Gabriele},
  year      = {2026}
}