INQUIRING LINE

What makes knowledge-rich specialized domains structurally different from general reasoning tasks?

This explores why domains packed with facts (like medicine) behave differently under training than open-ended reasoning tasks (like math) — and what that difference is made of.


This explores why knowledge-heavy fields like medicine respond differently to training than open-ended reasoning tasks like math, and the corpus points to something concrete: the two actually live in different parts of the model. One striking finding is that factual knowledge sits in the lower layers of a network while reasoning adjustments happen in the higher layers Why does reasoning training help math but hurt medical tasks?. That physical separation explains a frustrating pattern practitioners keep hitting — training a model to reason harder improves math but can actively *degrade* its performance on knowledge-intensive domains, because you're tuning the wrong floor of the building.

The deeper structural difference shows up in how each type of capability is acquired. Reasoning generalizes because it draws on broad, transferable procedural patterns scattered across many pretraining documents, while factual recall depends on narrow, document-specific memorization of the exact target fact Does procedural knowledge drive reasoning more than factual retrieval?. So a specialized domain isn't just "reasoning plus more facts" — it's a different kind of substance that has to be *internalized* rather than *derived*. This is why generic reasoning tricks that work on math don't transfer cleanly: chain-of-thought, for instance, imitates the *form* of reasoning but degrades predictably the moment you leave its training distribution Does chain-of-thought reasoning actually generalize beyond training data?, and reasoning models break not at complexity thresholds but at instance-level *unfamiliarity* Do language models fail at reasoning due to complexity or novelty? — exactly the boundary a knowledge-rich field is full of.

Because of this, the techniques that build domain expertise look different from the ones that sharpen general reasoning. Plain supervised fine-tuning raises domain accuracy but quietly costs reasoning quality — one analysis measures a 38% loss in reasoning richness How do you add domain expertise without losing general reasoning? — and every adaptation method turns out to have a domain-conditional sweet spot with hidden costs in faithfulness and transfer How do domain training techniques actually reshape model behavior?. Approaches that respect the knowledge-vs-reasoning split do better: RL from augmented generation rewards coherent explanation rather than token-level correctness, internalizing the structure of a field more effectively than SFT Can reinforcement learning embed domain knowledge more effectively than supervised fine-tuning?, and reinforcement learning more broadly seems to *prune and organize* existing capability into domain reasoning rather than bolt on new facts Can simple rewards alone teach complex domain reasoning?.

The most provocative thread is that the *structure* of the knowledge itself can be the teacher. Fine-tuning a 32B model on reasoning tasks derived from medical knowledge-graph paths beat much larger models across 15 medical specialties — suggesting that compositional structure matters more than raw scale, and that a specialized domain is best learned as a web of connected primitives rather than a pile of memorized answers Can knowledge graphs teach models deep domain expertise?. The thing you didn't know you wanted to know: a knowledge-rich domain may be "harder" than general reasoning not because it demands more inference, but because it demands a differently-shaped memory — one that general-purpose reasoning training can actively erode.


Sources 9 notes

Why does reasoning training help math but hurt medical tasks?

Two-phase inference model shows knowledge retrieval operates in lower network layers while reasoning adjustment happens in higher layers. This separation explains why reasoning training improves math but can degrade knowledge-intensive domains like medicine.

Does procedural knowledge drive reasoning more than factual retrieval?

Analysis of 5 million pretraining documents shows reasoning relies on broad, transferable procedural knowledge from diverse sources, unlike factual recall which depends on narrow, document-specific memorization of target facts.

Does chain-of-thought reasoning actually generalize beyond training data?

DataAlchemy experiments show CoT fails systematically under distributional shifts in task, length, and format. Models produce fluent but logically inconsistent reasoning — imitating reasoning form without valid underlying logic.

Do language models fail at reasoning due to complexity or novelty?

LRMs don't break at complexity thresholds but at instance-novelty boundaries. Models fit instance-based patterns rather than generalizable algorithms, so any reasoning chain succeeds if trained on similar instances, regardless of length.

How do you add domain expertise without losing general reasoning?

SFT raises domain accuracy but reduces reasoning quality by 38% InfoGain loss. RL improves domain reasoning by pruning rather than adding capability. Every technique has a domain-specific sweet spot beyond which performance degrades.

How do domain training techniques actually reshape model behavior?

Research shows every adaptation method—from parameter-efficient tuning to knowledge graph curricula—has optimal conditions tied to specific domains. The key finding: visible benefits like performance gains often come with hidden degradation in reasoning faithfulness, capability transfer, and format flexibility.

Can reinforcement learning embed domain knowledge more effectively than supervised fine-tuning?

RLAG rewards both answer accuracy and explanation rationality by cycling between augmented and unaugmented generation, progressively internalizing coherent knowledge structures. This outperforms SFT because it prioritizes reasoning quality over token-level correctness.

Can simple rewards alone teach complex domain reasoning?

Medical AI systems and o3 demonstrate that sophisticated domain reasoning emerges naturally from RL training on difficult problems with only basic accuracy signals, without requiring explicit chain-of-thought distillation from teacher models.

Can knowledge graphs teach models deep domain expertise?

Fine-tuning a 32B model on 24,000 reasoning tasks derived from medical knowledge graph paths produces state-of-the-art performance across 15 medical domains, demonstrating that structured knowledge composition matters more than scale.

Next inquiring lines