INQUIRING LINE

How do pretrained language models represent inferential patterns versus lexical and positional cues?

This explores whether language models actually encode logical inference (does the premise support the conclusion?) or whether they lean on surface signals — which words appear, how often they've been seen, where they sit in the sequence.


This question is really asking: when an LLM looks like it's reasoning, is it tracking the logical relationship between statements, or is it riding surface cues — familiar words, memorized phrases, token order, and raw probability? The corpus leans hard toward the second answer, and the most direct evidence is the discovery of 'attestation bias.' Models predicting whether one sentence entails another mostly check whether the conclusion *looks like something they saw in training*, not whether the premise actually supports it — swap in a random, irrelevant premise and the model still confidently says 'entails' as long as the hypothesis is familiar Do LLMs predict entailment based on what they memorized?. The inferential relationship is the thing it's *supposed* to represent, and it's the thing it quietly skips.

That pattern shows up again when researchers strip the familiar meaning out of a reasoning task. Give a model correct logical rules but decouple them from sensible semantics, and performance collapses — meaning it was leaning on commonsense word associations the whole time, not manipulating the rules symbolically Do large language models reason symbolically or semantically?. The same dependence on surface form explains why models stumble as sentences get structurally deeper: they reliably misread embedded clauses and complex phrases, capturing statistical regularities of how words co-occur rather than the grammatical scaffolding underneath Why do large language models fail at complex linguistic tasks?. And one elegant framing ties it together — treat the model as a pure next-token probability machine, and you can *predict in advance* which logically-trivial tasks it will flunk, simply because the correct answer is a low-probability string Can we predict where language models will fail?. Inference loses to position and probability.

The interesting wrinkle — the thing you might not expect — is that the inferential capability sometimes *is there*, just buried under the surface machinery. Logit-lens work shows models can compute a correct answer in their early layers and then actively overwrite it in later layers to emit format-compliant filler instead; the reasoning representation exists but gets suppressed in favor of producing the expected-looking output Do transformers hide reasoning before producing filler tokens?. Relatedly, when you force the surface process to slow down and externalize — explicit chain-of-thought — models can build genuine syntactic trees and metalinguistic analyses they fail at in one shot Can language models actually analyze language structure?. So inferential structure isn't simply absent; it competes with, and usually loses to, the strong pull of lexical familiarity and positional output habits.

That competition is itself a recurring corpus theme. Strong parametric priors — the lexical associations baked in during training — routinely override what's actually present in the context window, so much so that prompting alone can't fix it; you have to intervene in the representations directly Why do language models ignore information in their context?. There's even a representational ceiling: on a task like classifying argument schemes (which demands tracking inferential structure), models flatline unless they're large *and* given worked examples, hinting that the inference-representing capacity only emerges with scale Can large language models classify argument schemes reliably?.

If you want the deeper 'why,' the corpus points to a foundational claim: a system trained purely on form-to-form prediction has no independent channel to the meanings that ground real inference, so what it represents is relational structure compressed from text rather than the world the text refers to Can language models learn meaning from text patterns alone? Can language models learn meaning without engaging the world?. Read that way, the lexical-and-positional cues aren't a shortcut the model takes *instead* of inference — they're the only material it was ever given to build inference out of.


Sources 10 notes

Do LLMs predict entailment based on what they memorized?

McKenna et al. (2023) identified attestation bias: LLMs predict entailment based on whether the hypothesis appears in training data, not whether the premise actually supports it. Random premise experiments show models maintain high entailment predictions when hypotheses are attested, proving they respond to memorized propositions rather than premise-hypothesis relationships.

Do large language models reason symbolically or semantically?

When semantic content is decoupled from reasoning tasks, LLM performance collapses even with correct rules in context. Models rely on parametric commonsense and token associations rather than formal logical manipulation, constraining reasoning to training distribution semantics.

Why do large language models fail at complex linguistic tasks?

Top-tier LLMs like Llama3-70b consistently misidentify embedded clauses, verb phrases, and complex nominals. Performance degrades predictably as syntactic depth increases, revealing that statistical learning captures surface patterns but not deep grammatical rules.

Can we predict where language models will fail?

By framing LLMs as autoregressive probability machines, researchers predicted tasks with low-probability target responses would be systematically harder, even when logically simple. Experiments confirmed predictions like backwards alphabet and letter counting.

Do transformers hide reasoning before producing filler tokens?

Logit lens analysis shows models trained with hidden CoT tokens compute correct answers in layers 1-3, then actively suppress these representations in final layers to produce format-compliant filler output. The reasoning is fully recoverable from lower-ranked token predictions.

Can language models actually analyze language structure?

OpenAI's o1 model successfully constructs syntactic trees and phonological generalizations through explicit step-by-step reasoning, revealing that LLM linguistic capability extends far beyond behavioral language tasks to genuine language analysis.

Why do language models ignore information in their context?

Research demonstrates that LMs generate outputs inconsistent with their context because parametric knowledge from training dominates over in-context information. Textual prompting alone cannot override strong priors; causal intervention in representations is required.

Can large language models classify argument schemes reliably?

Zero-shot prompting fails uniformly across models. Few-shot with scheme descriptions helps, but only larger models exceed F1 0.55, with Claude reaching 0.65. Smaller models plateau around 0.53, suggesting a representational capacity threshold.

Can language models learn meaning from text patterns alone?

Bender & Koller argue that meaning requires the relation between expressions and communicative intents. Since LLMs are trained only on form-to-form prediction with no access to shared attention or intent, they cannot reconstruct the meaning that grounds language.

Can language models learn meaning without engaging the world?

Research shows LLMs learn culturally situated discourse patterns by compressing relational structure from text, demonstrating that fluent language generation requires no external referents or embodied grounding.

Research prompt for your LLMexpand ↓

Copy into ChatGPT or Claude to take this line of inquiry further — it asks the model to find newer work and re-test which earlier constraints still hold.

You are a mechanistic interpretability researcher re-testing a dated synthesis on LLM reasoning. The core question remains open: do pretrained language models represent *inferential patterns* (logical dependencies between statements) or do they reduce reasoning to *lexical and positional cues* (word familiarity, token order, probability surfaces)?

What a curated library found — spanning 2023–2025 (dated claims, not current truth):
• Attestation bias: models predict entailment by checking hypothesis familiarity, not premise-conclusion fit; swapping the premise doesn't hurt confidence (~2023).
• Semantic collapse: models with decoupled semantics fail symbolic reasoning tasks, relying instead on word associations (~2023).
• Systematic linguistic blind spots worsen with structural depth; models misparse embedded clauses (~2025).
• Logit-lens reveals early-layer correct answers actively overwritten by later layers for format-compliant output (~2025).
• Chain-of-thought externalization can surface genuine metalinguistic and syntactic structure; single-shot reasoning fails (~2023–2025).

Anchor papers (verify; mind their dates):
• arXiv:2305.14825 (In-Context Semantic vs. Symbolic Reasoners, May 2023)
• arXiv:2503.19260 (Linguistic Blind Spots, March 2025)
• arXiv:2412.04537 (Hidden Computations in CoT, December 2024)
• arXiv:2508.12863 (Word Meanings in Transformers, August 2025)

Your task:
(1) RE-TEST each constraint. For attestation bias, semantic collapse, and structural blindness: have stronger models, better-tuned in-context prompting (e.g., soft CoT, domain injection), or improved fine-tuning substantially *relaxed* these limits? Separate the durable question (do models learn inference?) from perishable limitation (do *current* scales/training regimes* exhibit bias?). Ground any relaxation in post-August 2025 work.
(2) Surface the strongest *contradicting* or *superseding* work from the last 6 months. Does any recent paper claim models *do* learn robust inferential structure under specific conditions?
(3) Propose 2 research questions that assume the regime may have shifted: (a) What training objective or architectural change would force models to learn grounded, non-attestational inference? (b) Can mechanistic interventions (like logit steering or representation surgery) durably move inference above lexical surface?

Cite arXiv IDs; flag anything you cannot ground in a real paper.

Next inquiring lines