What happens if you hand an AI a problem in a format that deliberately doesn't fit it?
Can problem structure and representation format be mismatched intentionally?
This explores whether you can deliberately give a model a problem in a format that doesn't fit the problem's underlying logic (for example illogical reasoning examples, corrupted traces, or half-formalized text), and what that does to performance.
This explores whether a problem's underlying structure and the format you present it in can be mismatched on purpose, and what happens when they are. The corpus has no note that treats this as a design principle. But several notes show mismatch working better than it should, and a few show where it backfires. The pattern is that models respond to the shape of reasoning more than to whether the shape fits the problem.
The starkest cases are on the reasoning side. Chain-of-thought examples with invalid logic performed nearly as well as valid ones on BIG-Bench Hard, which suggests the model learns the form of reasoning rather than doing inference (Does logical validity actually drive chain-of-thought gains?). Models trained on deliberately irrelevant reasoning traces kept their accuracy and sometimes generalized better out-of-distribution, so the traces look more like computational scaffolding than meaningful steps (Do reasoning traces need to be semantically correct?). In both cases the format is doing the work, and it doesn't need to match the logic of the problem.
Mismatch also works as a dial rather than a switch. Adding a few symbolic elements to natural language (QuaSAR, Logic-of-Thought) gained 4-8% accuracy. Replacing the language with full formal logic lost semantic information, and pure language lacked structure (Why does partial formalization outperform full symbolic logic?). So a mismatch that is only partial can keep the strengths of both formats. A related warning comes from autoformalization. Formalizing one statement at a time looks like a clean format match, but real formalization needs a whole web of axioms, definitions, and lemmas. Statement-level methods only appear to work by leaning on prebuilt libraries like Mathlib (Can autoformalization work on individual statements alone?). There the format hides a mismatch instead of resolving one.
The cost is that a good-looking format can cover for failure. Trace length seems to signal effort, but in controlled maze experiments it tracked difficulty only in-distribution and decoupled entirely out-of-distribution, because it mostly reflects recall of training schemas (Does longer reasoning actually mean harder problems?). Models can also explain a principle correctly (87% accuracy) and then fail to apply it (64%), which suggests explanation and execution run on separate pathways (Can language models understand without actually executing correctly?, Can LLMs understand concepts they cannot apply?). Knowledge held in one format doesn't automatically carry into another. Frontier models degrade documents by corrupting content while keeping the surface intact, where weaker models visibly delete it (Does model capability change how documents degrade?). Surface and substance can come apart without anyone choosing it.
So yes, mismatch can be intentional, and it is often cheap and effective, especially as scaffolding or as a partial hybrid. The catch is that the same lever makes failures harder to spot: output that looks right is weak evidence that the reasoning or content underneath is. The corpus doesn't vary the degree of mismatch in a single study, so treat this as a pattern across separate findings rather than a tested rule.
Sources 8 notes
Illogical chain-of-thought exemplars matched valid CoT performance on BIG-Bench Hard, showing that structural properties—not logical validity—drive the gains. The model learns the form of reasoning, not genuine inference.
Models trained on systematically irrelevant traces maintain solution accuracy and sometimes improve out-of-distribution generalization, suggesting traces function as computational scaffolding rather than meaningful reasoning steps.
QuaSAR and Logic-of-Thought both achieve 4-8% accuracy gains by enriching natural language with selective symbolic elements rather than replacing it. Full formalization loses semantic information; pure language lacks structure. Augmentation preserves both.
Real formalization requires theory-level work: even one theorem needs a coherent web of axioms, definitions, and lemmas. Statement-level approaches only succeed by borrowing from prebuilt libraries like Mathlib, hiding the actual complexity involved.
Controlled A* maze experiments show trace length correlates with difficulty only in-distribution but decouples entirely out-of-distribution. Trace length primarily reflects recall of training schemas, not adaptive computation.
Show all 8 sources
Large language models can articulate correct principles but systematically fail to apply them due to dissociated instruction and execution pathways. The 87% accuracy in explanations versus 64% in actions reveals this is not knowledge deficit but structural disconnect.
Models can explain concepts accurately, fail to apply them, and recognize the failure—a triple pattern incompatible with human cognition. This indicates functionally disconnected explanation and execution pathways rather than simple knowledge gaps.
DELEGATE-52 shows weaker LLMs degrade documents through visible deletion, while frontier models degrade through subtle corruption that preserves surface integrity. This shift makes frontier failures harder to detect and potentially more dangerous at workflow scale.
Papers this line draws on 8
The research behind the notes this line reads — ranked by how closely each paper relates.
- Large Language Model Reasoning Failures
- Beyond Accuracy: Evaluating the Reasoning Behavior of Large Language Models -- A Survey
- Comprehension Without Competence: Architectural Limits of LLMs in Symbolic Computation and Reasoning
- Performative Thinking? The Brittle Correlation Between CoT Length and Problem Complexity
- Is Chain-of-Thought Reasoning of LLMs a Mirage? A Data Distribution Lens
- Explain-Query-Test: Self-Evaluating LLMs Via Explanation and Comprehension Discrepancy
- Six misconceptions about large language models: A minimal model and diagnostic taxonomy
- Beyond Semantics: The Unreasonable Effectiveness of Reasonless Intermediate Tokens