SYNTHESIS NOTE
TopicsReasoning Critiquesthis note

Do models fail worse when their own errors fill the context?

As a model's prior mistakes accumulate in context, does subsequent accuracy degrade predictably? And can scaling or architectural changes prevent this self-contamination effect?

Synthesis note · 2026-02-22 · sourced from Reasoning Critiques
How should we spend compute at inference time?

A model executing a long-horizon task makes errors. Those errors remain in the context. The model then predicts the next token conditioned on a history that contains its own mistakes. Error probability increases. More errors accumulate. Performance degrades faster than a constant per-step error rate would predict.

This self-conditioning effect is empirically verified by controlling the error rate in the history shown to the model. As the error rate in prior context increases, subsequent step accuracy drops sharply. The mechanism is straightforward: models are trained to predict the most likely next token given context; when the context contains errors, those errors become part of the distribution being continued.

Unlike humans — who typically improve at a task with repetition — LLMs become less reliable as their context fills with their own mistakes. Practice does not help; contamination does.

Three practical implications:

  1. Model scaling does not fix this — larger models self-condition just as much as smaller ones. The problem is not capability but the conditional prediction objective itself.

  2. Long-horizon failure attribution matters — what looks like a reasoning or planning failure in long tasks is often an execution failure caused by error accumulation. The model had the capability; its own prior outputs degraded it. The DELEGATE-52 evidence — see Do frontier LLMs silently corrupt documents in long workflows? — is this mechanism at the workflow scale: a 50-round-trip relay is a maximally adversarial setup for self-conditioning, and the corruption curve decelerates but never plateaus, exactly the pattern this note predicts.

  3. Thinking models fix self-conditioning — thinking models (like R1) are not affected by prior mistakes in the same way; sequential test-time compute greatly improves the length of task a model can complete (DeepSeek-V3 fails at 2 steps; R1 executes 200). The thinking process appears to insulate reasoning from error-contaminated context.

This is distinct from Does self-revision actually improve reasoning in language models?. Self-revision is a model's deliberate re-examination of its own reasoning, which introduces errors. Self-conditioning is a passive contamination mechanism — no deliberate revision required, just the accumulation of prior errors in context.

Inquiring lines that read this note 66

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

Does self-reflection enable models to reliably correct their errors? What are the consequences of models training on synthetic data? Why does finetuning cause catastrophic forgetting of model capabilities? Does domain specialization cause models to lose capabilities elsewhere? How can AI systems learn from failures without cascading errors? When does architectural design matter more than raw model capacity? How does example difficulty affect learning efficiency in language models? Do corrupted reasoning traces serve as effective supervision signals? Does parallel reasoning outperform sequential thinking under fixed compute budgets? How can identical external performance mask different internal representations? Does fine-tuning modify underlying model capabilities or only behavioral outputs? Why does self-revision increase model confidence while degrading accuracy? Can model confidence signals reliably improve reasoning quality and calibration? How faithfully do LLMs reflect their actual reasoning in outputs and explanations? Does externalizing cognitive work and state improve agent reliability? How can models identify insufficient information and respond appropriately without guessing? How do self-generated feedback mechanisms enable effective model learning? Why does verification consistently lag behind AI generation? How do evaluation mechanisms prevent error accumulation in autonomous research systems? Why do language models reinforce false assumptions instead of correcting them? Why do multi-turn conversations degrade AI intent and coherence? Why do benchmark improvements fail to reflect actual reasoning quality? What mechanisms enable AI systems to generate and spread false beliefs? What causes silent corruption to amplify through delegated workflows? Do harness improvements transfer across model scales or memorize shortcuts? How should memory consolidation strategies shape agent performance over time? What actually drives chain-of-thought reasoning improvements in language models? What memory architectures best support persistent reasoning across extended interactions? How do prompt structure and constraints affect model instruction reliability? Do base models contain latent reasoning that training can unlock? Why do reasoning models fail at systematic problem-solving and search? Why do self-improving systems struggle without clear external performance metrics?

Related concepts in this collection 8

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
22 direct connections · 226 in 2-hop network ·dense cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

self-conditioning effect — prior errors in context history amplify future error rates in long-horizon tasks