Abstract
Math reasoning has become the poster child of progress in large language models, with new models rapidly surpassing human-level performance on benchmarks like MATH and AIME. But as math leaderboards improve week by week, it is worth asking: do these gains reflect broader problem-solving ability, or just narrow overfitting? We evaluate over 20 open-weight reasoning-tuned models across a broad suite of tasks, including math, scientific QA, agent planning, coding, and standard instruction-following. We surprisingly find that most models that succeed in math fail to transfer their gains to other domains. Through controlled experiments and detailed ablations, we identify on-policy fine-tuning as the key mechanism underlying cross-domain transfer, regardless of whether the training signal comes from RL or supervised learning. Latent-space and token-distribution analyses reveal that off-policy SFT induces substantial representation and output drift, while on-policy RL preserves general-domain structure. Our results suggest a need to rethink post-training recipes, particularly the reliance on off-policy SFT-distilled data to advance reasoning models.
1 Do math gains transfer?
Background. Reasoning-tuned LLMs now surpass human-level scores on MATH and AIME, and math is widely treated as a proxy for reasoning at large.
Question. Do math gains transfer to broader capabilities — or are they narrow overfitting?
Approach. We audit 20+ open-weight reasoning models on 12 benchmarks in 3 task groups (math reasoning: MATH500, AIME24/25, OlympiadBench; other reasoning: GPQA-Diamond, LiveCodeBench, ACPBench, HeadQA; non-reasoning: CoQA, IFEval, HaluEval, MC-TACO), and quantify transfer with a Transferability Index (TI), built up in three steps:
A signed square root tempers extreme benchmarks and harder tasks are up-weighted. \(\mathrm{TI}_g \gt 0\) indicates positive transfer; \(\mathrm{TI}_g \lt 0\) indicates forgetting.
RL-tuned transfers · SFT-tuned often forgets
2 Controlled study: UniReason
Design. Hold everything fixed except the fine-tuning paradigm:
- Base & data: Qwen3-14B-Base; identical math queries (MATH + DeepScaleR, ~47K examples).
- SFT (off-policy): imitate CoT traces distilled from Qwen3-32B; rejection sampling keeps only traces with correct answers.
- RL (on-policy): GRPO with an answer-correctness reward computed from the same labels.
The resulting models are named UniReason.
3 Why? Latent & token-space diagnostics
Hypothesis. Transfer depends on how much fine-tuning perturbs the base model. We measure this drift in two spaces, on identical inputs before vs after tuning: the latent space (PCA of hidden states across layers) and the output space (KL divergence and token-rank shifts).
\(m^{(*)}_{i,1}, m^{(*)}_{i,2}\) are the PC1/PC2 mean projections of layer-\(i\) hidden states; smaller \(d^{(*)}\) and lower KL both mean the tuned model stays closer to the base.
4 On-policy updates drive transfer
Approach. Write SFT and RL as the same objective and ablate each lever. Standard supervised fine-tuning maximizes the likelihood of fixed reference completions \(y^\star\):
\(q\): sampling distribution (off- vs on-policy) · \(w\): credit assignment (uniform vs advantage \(A\)) · \(\beta\): KL regularization · plus negative gradients from failed rollouts.
Ablation — Qwen3-8B-Base, same math queries (Table 4)
| Setting | Math | Other | Non | TI-Other | TI-Non |
|---|---|---|---|---|---|
| Base | 27.6 | 23.6 | 33.6 | – | – |
| Off-policy SFT | 41.9 | 34.4 | 26.6 | 18.3 | −40.5 |
| On-policy SFT | 33.7 | 35.7 | 35.0 | 68.6 | 30.2 |
| Off-policy RL | 45.5 | 35.9 | 31.7 | 36.4 | 4.5 |
| On-policy RL (no KL) | 37.1 | 38.2 | 35.8 | 65.6 | 39.3 |
| On-policy RL | 38.6 | 39.9 | 35.0 | 63.7 | 32.4 |
- Advantage weighting and negative gradients concentrate updates on task-salient tokens; KL regularization plays only a subtle role.
- On-policy methods also show steadier gradient norms — no abrupt early-step spikes (Figure 5).
Takeaways
- On-policy fine-tuning — whether RL or SFT — is the key mechanism behind cross-domain transfer.
- Math gains ≠ general gains: off-policy SFT-distilled models catastrophically forget non-reasoning skills.
- The fine-tuning paradigm — not model size or architecture — predicts transferability.
- Post-training recipes should rethink their reliance on massive off-policy SFT-distilled data.
BibTeX
@inproceedings{huan2026transferability,
title = {Does Math Reasoning Improve General {LLM} Capabilities?
Understanding Transferability of {LLM} Reasoning},
author = {Huan, Maggie Ziyu and Li, Yuetai and Zheng, Tianyu and Xu, Xiaoyu
and Kim, Seungone and Du, Minxin and Poovendran, Radha
and Neubig, Graham and Yue, Xiang},
booktitle = {Proceedings of the 43rd International Conference on Machine Learning (ICML)},
year = {2026}
}