---
title: 'Unlearnability in RLVR: Limits and Impacts'
url: https://www.emergentmind.com/topics/unlearnability-phenomenon-in-rlvr
type: topic
---

# Unlearnability in RLVR: Limits and Impacts

Reinforcement Learning with Verifiable Rewards (RLVR) has become a central paradigm for post-training large language models (LLMs) on complex reasoning and compositional tasks. Despite empirical advances, a wide range of theoretical, algorithmic, and empirical studies have consistently identified “unlearnability” phenomena—the persistent failure to acquire or retain certain capabilities even in the presence of correct reward signals, algorithmic refinements, or abundant data. This article synthesizes the technical origins, manifestations, and consequences of unlearnability in RLVR, referencing key contributions, formal definitions, and experimental findings from the most current arXiv literature.

## 1. Foundational Definitions and Formalism

Unlearnability in RLVR refers to the systematic inability of an RLVR process to acquire, retain, or recover specific solution patterns or reasoning capabilities, regardless of positive reward signals or extensive training. Formally, RLVR typically operates in either an autoregressive LLM regime or as a learner from positive/verifiable data under an equivalence relation.

Consider a model parameterized by $\theta$, acting via policy $\pi_\theta$, which generates solutions $y$ for prompt $x$ and receives reward $R(x, y) \in \{0,1\}$. For compositional tasks, “instance-level solvability” $S(x) \equiv P_e(x)$ is the probability of generating a correct solution for $x$. When $x$ decomposes into $N$ atomic steps $s_1,...,s_N$, and $p_i(x)$ denotes the stepwise success, the composite success is approximated as $S(x) \approx \prod_{i=1}^{N} p_i(x)$. 

Unlearnability arises when either:

- $S(x)$ cannot be elevated above a minimal threshold for some $x$ even with RLVR.
- The support of $\pi_\theta$ fails to include correct solutions not already present in the base model.
- Certain atomic primitives or sub-tasks suffer performance regressions during global reward optimization (“capability erosion”).
- Empirical RLVR training plateaus or collapses, preventing asymptotic improvement in accuracy (as characterized through the “Gradient Gap” and step size thresholds).

In positive-equivalence RLVR (learning in the limit from positive data), unlearnability is formalized through the failure of explanatory, behavioral, vacillatory, or confident learning on infinite families or ascending union sets [2012.01466].

## 2. Theoretical Mechanisms and Sharp Barriers

Unlearnability in RLVR arises from multiple, precisely characterized mechanisms:

- **Multiplicative Decay and Atomic Sharpening**: For long-chain reasoning, each atomic error probability $p<1$ leads to exponential decay in $S(x)$, rendering multi-step tasks unsolvable unless atomic skills are “sharpened” collectively [2602.08281].
- **Task-Advantage Ratio $\rho$ and Structural Advantage**: For a composite reasoning step $s$ and candidate move $j$, learning proceeds only if the task-advantage ratio $\rho_{s,j} > 1$. If this signal is absent or exponentially small, RLVR cannot enhance the correct path and may reinforce suboptimal solutions [2602.07992].
- **Gradient Gap and Step-Size Thresholds**: The optimization dynamics depend critically on the “Gradient Gap” $\Delta(\theta)$. If the learning rate $\eta$ is too large relative to $\Delta(\theta)$ and response length $T$, training stalls (plateau) or collapses (accuracy $\rightarrow 0$) rather than converging to optimality [2510.08539].
- **Support Preservation (Invisible Leash)**: Standard RLVR with on-policy updates cannot place any probability mass on solutions with zero base-model support. As a result, the set of discoverable solutions is restricted—the empirical support shrinkage usually outweighs expansion [2507.14843].
- **Verifier Noise and Phase Transition**: The net discriminative power of the verifier, captured by Youden’s index $J = \mathrm{TPR} - \mathrm{FPR}$, induces a phase transition: if $J > 0$ learning succeeds, if $J = 0$ learning stalls (“neutral drift”), if $J < 0$ anti-learning occurs (collapse to incorrect solutions) [2601.04411].
- **Adversarial and Ascent-Union Family Barriers**: Algorithmic learning in positive data settings inherits impossibility results from Gold’s theorem—no behavioral correct learner exists for ascending union families, and other sharp class-separation results persist for any positive equivalence [2012.01466].

## 3. Empirical Manifestations and Case Studies

Unlearnability is not merely theoretical; it manifests in diverse practical RLVR deployments:

- **Capability Erosion**: Empirical studies using the Algebrarium framework reveal that, when optimizing global expected reward, RLVR can “sacrifice” certain atomic skills (high $p_i^{\mathrm{base}}$ falling to low $p_i^{\mathrm{RLVR}}$) to maximize aggregate performance, especially for under-sampled or minority patterns. This is strictly quantifiable via negative $\Delta p_i$ and high Pearson correlation between composite and atomic-step probabilities ($\rho \in [0.69, 0.96]$) [2602.08281].
- **Persistent Unsolvability**: For “hard” examples with low initial pass@1, a substantial subset remains unlearnable, i.e., pass@1 remains $<\tau$ for all $N$ validation rollouts, even after observing correct training trajectories and despite positive reward signals. Gradient similarity analysis reveals that unlearnable cases are representation outliers—no amount of increased rollouts, relaxed PPO constraints, or standard data augmentation remedies this deficit [2605.16787].
- **Limits in Combinatorial Reasoning**: On tasks such as Activity Scheduling and Longest Increasing Subsequence, RLVR amplifies superficial heuristics already present in the base model (e.g., format mimicry, greedy patterns) rather than acquiring new algorithmic reasoning—genuine combinatorial reasoning remains unlearnable under conventional RLVR schemes [2510.27044].
- **Generalization Collapse Under Noise**: Even moderate label noise (10–50%) in the verifier or output labels reduces reasoning accuracy and contracts the set of solvable problems. Algorithmic variants (Dr.GRPO, TIS, DAPO, SAPO, PGFC) do not materially mitigate the destructiveness of noise [2603.16140].

## 4. Diagnosis via Representation and Optimization Analysis

Cross-example gradient similarity and concept-network analyses have provided systematic tools for diagnosing unlearnability:

- **Gradient Similarity Metrics $\Phi(i)$**: For each training example $i$, the mean cosine similarity of its correct-rollout gradient to other examples, $\Phi(i)$, serves as an indicator of representation alignment. Unlearnable examples exhibit distinctly low $\Phi(i)$, marking them as isolated from the broader training geometry. Attempts to augment data or subtask decomposition do not elevate $\Phi(i)$ or performance for these cases [2605.16787].
- **Complex Network Frustration**: RLVR-trained LLMs induce a sparse semantic complex network. The “frustration index” $F(t)$, measuring the network’s fragmentation into disconnected skill islands, peaks at the regime of maximal unlearnability. The emergence and resolution of this plateau can be tracked via the number of connected components and cluster entropy [2509.23629].
- **Empirical Support Transitions**:

  | Metric             | Shrinkage     | Expansion     | Preservation  |
  |--------------------|--------------|--------------|--------------|
  | OlympiadBench (k=8192) | 26           | 3            | 600          |
  | MATH500 + Minerva      | Dozens lost  | Few gained   | Majority     |

  Shrinkage in support (correct completions with reduced mass) exceeds expansion by wide margins [2507.14843].

## 5. Broader Implications and Mitigation Strategies

Unlearnability reveals fundamental limits of RLVR and prescribes requirements for more robust capability acquisition.

- **Necessity of High-Quality, Verified Data**: Empirically, RLVR cannot compensate for noisy or incorrect labels. High label quality is indispensable; algorithmic tweaks or bias corrections are insufficient [2603.16140].
- **Instance-wise Constraints and Diversity-Aware Sampling**: Mitigation may require enforcing minimal per-instance solvability thresholds (e.g., via Lagrangian penalties), or batch stratification to maintain representation of rare atomic primitives [2602.08281].
- **Reward Redesign and Intermediate Verification**: Enhancing the inductive structure of the reward (e.g., process-level or partial reward on intermediate steps) and incorporating auxiliary objectives that validate reasoning traces can create the structural advantage needed for new solution discovery [2602.07992, 2510.27044].
- **Exploration and Off-Policy Mass Injection**: Overcoming the “invisible leash” necessitates explicit exploration mechanisms—exploration mixtures, diversity-promoting regularization, or off-policy data augmentation—that inject probability mass into underrepresented or previously zero-probability solution regions [2507.14843].
- **Representation-Aligned Mid-Training**: Addressing deep representational flaws may require curriculum mid-training or pre-training on reasoning-heavy corpora before RLVR, as post-hoc RLVR updates do not repair misaligned features [2605.16787].
- **Annealed Training Procedures**: Temporarily increasing exploration via supervised fine-tuning (e.g., “Annealed-RLVR”) at frustration peaks can break skill-competition bottlenecks and reduce catastrophic forgetting [2509.23629].

## 6. Connections to Classical and Modern Learning Theory

Unlearnability phenomena in RLVR are consistent with classical impossibility results in algorithmic learning theory. For any positive (r.e.) equivalence relation on data, there exist infinite ascending chain families, as well as non-behaviorally correctly learnable, non-vacillatorily learnable, and non-confidently learnable r.e. families [2012.01466]. These limitations are inherited in modern RLVR by both deterministic and stochastic outcome-level feedback, linking theoretical barriers in computability to practical inductive failures in LLMs.

## 7. Outlook and Future Directions

The persistent and multifaceted nature of unlearnability in RLVR underscores the need for a rigorous, geometry-aware understanding of representation, reward structure, verifier quality, and optimization stability. Breakthroughs will require theoretical innovations in credit assignment, process-level verification, and algorithmic exploration, as well as scalable systems for precise and diverse data curation. Further progress in RLVR as a route to robust reasoning capability will depend on systematically addressing the multiple sharp failure modes catalogued in current research [2603.16140, 2605.16787, 2602.07992, 2507.14843, 2509.23629, 2510.08539, 2510.27044, 2012.01466, 2602.08281].

Source: https://www.emergentmind.com/topics/unlearnability-phenomenon-in-rlvr