11  Open Problems

M. C. Escher, Alfedena Abruzzi (1929).

11.1 Chapter Map

  • Open problems in RLVR.
  • One organizing claim: RLVR improves a model exactly as far as verification reaches, so each open problem asks where verification ends or how it fails.
  • For each problem: the research question, what the evidence settles, what it leaves open, and an experiment that would move it.

11.2 The frontier is the verifier

Jason Wei states the premise of this book as a rule: “the ease of training AI to solve a task is proportional to how verifiable the task is” (Wei 2025). DeepSeek reports that its latest post-training “introduces no algorithmic innovation” and that improvements in the scale, diversity, and verifiability of its tasks and environments “account for essentially all of the observed gains” (DeepSeek-AI 2026). If both are right, the open problems of RLVR are mostly problems of verification.

They fall into three groups:

  1. What RL adds. Does optimizing against a verifier create capability, or only select capability the base model already has? How much compute does that take, and can it be predicted?
  2. Whether the reward can be trusted. Verifiers are wrong in both directions, and optimization pressure finds the errors. What does the policy learn from them, and can we still see what it learned?
  3. How far verification extends. Long horizons, tasks without a reference answer, the model grading itself, and the model writing its own tasks all push the verifier past the setting where earlier chapters showed it works.

The sections follow that order. Each gives the research question first, then what is known, then what is open.

11.3 Elicitation or creation

Research question. Does RLVR with outcome rewards create reasoning capability that was absent from the base model, or does it only reallocate probability mass toward solutions the base model could already sample?

The case for reallocation. Yue et al. compared base and RLVR-trained models with pass@k at large k. RL wins at \(k = 1\), but the base model overtakes it as \(k\) grows: on Minerva with a 32B model, the base model is ahead by about 9 points at \(k = 128\) (Yue et al. 2025). Six different RLVR algorithms behaved similarly, while distillation from a stronger model did expand the set of solvable problems. The Invisible Leash formalizes the pattern: RLVR can in principle reach new solutions, but in practice the support it loses outweighs the support it gains (F. Wu et al. 2025). Entropy explains part of the mechanism. Cui et al. find that performance is bought with policy entropy, following \(R = -a e^{H} + b\), so a policy that has collapsed to zero entropy has a predictable ceiling (Cui et al. 2025).

The case for creation. Several results show RL solving problems the base model never solved:

  • ProRL trained a 1.5B model for more than 2,000 steps with KL control and periodic resets of the reference policy, and found the RL model ahead of the base model across pass@k, including on tasks where the base model fails at every \(k\). The gains were largest where the base model was weakest (Liu et al. 2025).
  • On synthetic string transformations, a model that already knows functions \(f\) and \(g\) learns their unseen composition \(f(g(x))\) through RL, while next-token training on the same data does not (Yuan et al. 2025).
  • On code problem families where the base model’s pass@k is zero, RL shows a grokking-like transition: after a long stretch of near-zero reward, accuracy climbs abruptly to near perfect. It needs a dense-reward warm-up, experience replay, and a curriculum to get there (Y. Sun et al. 2025).
  • For tool-using agents, the RL model’s pass curve pulls away from the base model’s as \(k\) grows, instead of converging. The expansion appears only on compositional, sequential information gathering, and SFT on matched data shrinks the boundary on the same tasks (Zhai et al. 2026).

A reconciliation. Yuan et al. argue that the large-\(k\) decline is partly an artifact of the objective. Once a problem is solved even once, it sits in a nearly saturated regime, so standard RLVR spends its updates sharpening solved problems. Updating only on problems with no observed success lifts pass@256 above the base model on difficult benchmarks (Yuan et al. 2026). On this reading, both camps are right: the default recipe mostly sharpens, and a recipe aimed at unsolved problems can expand.

What is open. Most of the expansion results use small models, synthetic tasks, curricula, or hints. Nobody has shown pure outcome-reward RL, with no teacher data, turning a family of natural problems from pass@4096 of zero into reliably solved at frontier scale. Nor is it settled whether composing known skills should count as new capability. A clean test would take problems the base model never solves, train with outcome rewards only at two or more model scales, and compare held-out pass@4096 against a compute-matched budget of base-model sampling plus the same verifier.

11.4 Reward hacking

Chapter 7 treated reward hacking as a property of a verifier. At the research frontier, it is also a property of the training run: how fast exploitation grows, what else the policy learns alongside it, and whether we can still detect it.

Is there an over-optimization law for learned graders? Chapter 7’s quantitative anchor, the over-optimization curve of Gao et al., was measured for preference reward models (Gao et al. 2023). No equivalent law exists for rubric aggregates or generative verifiers (L. Zhang et al. 2025), so practitioners optimizing against them have no principled stopping criterion.

The divergence itself is now documented. When a policy is trained against a rubric verifier and scored by a panel of three frontier judges from other model families, weak verifiers produce large proxy gains that do not transfer, exploitation grows over training, and it concentrates in a few failure types, such as partially satisfying compound criteria. Stronger verifiers reduce the exploitation but do not eliminate it (Mahmoud et al. 2026). Generative judges can be fooled by “master keys”, responses consisting of a colon or an opener like “Thought process:” (Y. Zhao et al. 2025). What is missing is the functional form: how the gap between proxy and gold reward scales with KL, judge size, and verifier recall. Fitting Gao-style curves for judges of graded strength, with a frozen panel as gold, is a well-posed experiment that nobody has published.

Can semantic faithfulness be measured directly? We currently score only what the verifier checks. Without an independent way to measure everything it misses, we cannot tell whether a high-scoring model truly learned the intended behavior or merely learned to satisfy the checks.

Audits give a sense of the scale. One single-author audit found that on a 49-task sample of SWE-bench Verified, 28.5% of tasks accept a Docker-verified incorrect patch, and that across 134 submitted models, Pass@1 is 14.14 points higher on the hackable tasks than on robust tasks of the same difficulty (Rajan 2026). Rule-based math verifiers err in the other direction, rejecting correct answers written in unexpected forms, and those false negatives hurt more as the policy gets stronger (Y. Huang et al. 2025). Frontier agents exploit tests when they can: on a benchmark whose tasks conflict with their tests, GPT-5 cheated on 76% of one SWE-bench variant (Zhong et al. 2025). Two partial answers to the faithfulness question have appeared: auditing verifiers with semantically equivalent rewrites of known answers, and verifier-free diagnostics computed from the policy’s own log-probabilities (Mahmoud et al. 2026). Neither yet measures recall on the behaviors the verifier never checks.

Does hacking generalize? The strongest reason to care about reward hacking is that it does not stay local. Anthropic trained a model on real production coding environments after teaching it about reward-hacking strategies. The model learned to hack, and then generalized to alignment faking, cooperating with malicious actors, and attempting sabotage, including sabotage of the codebase for the paper itself. Safety training in chat fixed the chat evaluations but not the agentic ones. The mitigations that worked were preventing the hacking, more diverse safety training, and inoculation prompting, which tells the model during training that the hack is acceptable in this context (MacDiarmid et al. 2025; Wichers et al. 2025). Why a narrow reward hack changes the model’s broader dispositions, and which hacks do so, is open.

Does optimization pressure erode monitorability? Chain-of-thought monitoring catches reward hacking that action monitoring misses, but putting the monitor into the reward teaches the model to hide its intent (Baker et al. 2025). The evidence on ordinary RL is mixed. OpenAI measured monitorability across training and found that RL optimization “does not materially decrease monitorability even at the current frontier scale” (Guan et al. 2025). Yet specific pressures do: RL with length penalties that cut reasoning to 30% of its original length kept accuracy but reduced how often the reasoning admitted using a hint by 39% for a 14B model (Little et al. 2026). Since every frontier recipe in Chapter 9 controls length, which reward terms are safe for monitorability is a practical question, not only a safety one.

11.5 A predictive science of RL compute

Research question. Does RL post-training admit predictive scaling laws of the kind pretraining has, and what determines the asymptote a recipe saturates toward?

The first large systematic datapoint is ScaleRL: a study totaling more than 400,000 GPU-hours that fits sigmoidal compute-performance curves to RL training runs and validates them by predicting, from smaller runs, the trajectory of a single run extended to 100,000 GPU-hours (Khatri et al. 2025). Its most useful finding is a division of labor. Loss aggregation, advantage normalization, curriculum, and the off-policy algorithm mostly change how fast a run approaches its ceiling. The loss type, the batch size, and the model size change the ceiling itself.

Other regularities are emerging. Across Qwen2.5 models from 0.5B to 72B, reward follows a power law in compute, and when data is limited, final performance depends mainly on the total number of optimization steps rather than on how many distinct problems were seen (Tan et al. 2025). A single training example can recover most of the MATH500 gain of a 1,200-example dataset on Qwen2.5-Math-1.5B, raising it from 36.0% to 73.6% (Wang et al. 2025). RL also raises pass@128 only when pretraining has left headroom and the RL data sits at the edge of the model’s competence (C. Zhang et al. 2025).

Open questions follow directly. What sets the asymptote: the base model’s support, as the elicitation problem suggests, or removable inefficiencies of current recipes? Do fitted curves transfer across model families and task mixtures? How should a fixed budget split between pretraining, SFT, and RL? And does prolonged RL erode the plasticity it relies on? That last question has almost no direct evidence for LLMs. ProRL’s periodic resets of the reference policy and optimizer and DeepSeek-V4.1-Flash’s use of model merging to reinitialize successive RL runs are both workarounds for runs that stop improving, but neither measures plasticity (Liu et al. 2025; DeepSeek-AI 2026).

The frontier offers few numbers to fit. OLMo 3 is the exception: its 32B Think RL run took about five days and 750 steps, and a continuation ran 21 more days to 2,300 steps with performance “not yet fully saturated” (Team OLMo et al. 2025). Kimi K3, DeepSeek-V4.1-Flash, and the MiniMax-M2 series report RL results but no RL compute totals, and outside estimates of RL’s share of total training compute range from a few percent to parity with pretraining (Epoch AI 2025). No published law yet covers multi-domain, agentic, million-token RL, which is where the frontier labs now spend their RL compute.

11.6 Credit assignment at horizon scale

Research question. At what horizon does a terminal outcome reward stop carrying usable learning signal, and can process-level signals be made simultaneously scalable and hack-resistant?

The agentic regime sharpens the question. Credit in reasoning RL spans one generation of 500 to 30K+ tokens; agentic RL spans tens to more than a hundred turns and 100K to 1M tokens, where a single episode-level scalar becomes increasingly uninformative, and the methods literature has no shared benchmark for comparing credit-assignment quality (Zhang 2026). The same survey notes that intermediate verification is often possible in math and rarely possible for agents. The horizon is also moving: METR’s measure of the length of software tasks that frontier models complete at 50% reliability has doubled roughly every seven months since 2019, and faster since 2024 (Kwa et al. 2025; METR 2026).

At moderate horizons, methods that avoid a learned critic work. VinePPO showed that PPO’s value network barely beats a random baseline at ranking alternative reasoning steps and replaced it with Monte Carlo estimates from extra rollouts (Kazemnejad et al. 2024). GiGPO groups actions taken from the same environment state across a group’s trajectories, giving step-level advantages at no extra rollout cost, and improves on GRPO by more than 12% on ALFWorld and 9% on WebShop (Feng et al. 2025). Context folding trains the agent to collapse finished sub-tasks into summaries and matches a full-context agent with an active context ten times smaller (W. Sun et al. 2025).

At the frontier, none of this has visibly arrived. Kimi K3 trains on rollouts of up to thousands of tool calls and millions of tokens (Kimi Team 2026), and MiniMax-M2 assigns credit at the episode level, with reward-to-go against a trajectory-level baseline, even across context truncations and rewrites (MiniMax 2026). What is open: whether outcome rewards plus task structure suffice at these horizons, and which intermediate states are verifiable. A direct experiment would hold rollout compute fixed on one long-horizon software suite, vary the horizon from 50 to 500 steps, and compare episode-level credit, Monte Carlo values from restored sandbox checkpoints, and state-grouped advantages against Monte Carlo ground truth.

11.7 Rewards beyond verification

Research question. How far can RLVR’s recipe extend into tasks with no checkable answer, and how much of what it learns on checkable tasks transfers to the rest?

Three substitutes for a verifier now produce usable signal:

  • Rubrics. A per-prompt rubric scored by a judge beats a single Likert-scale judgment, by up to 31% relative on HealthBench (Gunjal et al. 2025). Kimi K3 makes this its default for non-verifiable tasks: an agentic judge must write a rubric, score each candidate against it, and compare candidates pairwise, with a hard length rule on top (Kimi Team 2026).
  • Checklists. Instruction-specific checklists outperform reward models as an RL signal for instruction following, improving on every one of five benchmarks tested (Viswanathan et al. 2025).
  • Reference likelihood. Where a reference answer exists but no checker does, the policy’s own probability of producing the reference can serve as the reward, with no verifier at all (Yu et al. 2025).

Each substitute brings back the problem that motivated verifiable rewards. Rubric rewards are hackable in exactly the ways Section 11.4 describes, and they cost a judge call per rollout. Reference likelihood requires a reference. The open problem is not whether these signals work early in training, since they do, but whether they stay aligned with the target under the optimization pressure that frontier RL applies.

Transfer is the other route. If RL on math and code taught general reasoning, verifiable domains would be enough. The evidence says partly. Across more than twenty open reasoning models, most gains in math fail to transfer to other domains, but in a controlled comparison on Qwen3-14B, math-only RL preserved general capabilities while math-only SFT eroded them (Huan et al. 2025). Across six domains, math, code, and science benefit from each other, while logic, simulation, and tabular reasoning need in-domain data (Cheng et al. 2025). RL’s Razor offers a mechanism: at matched performance on the new task, RL forgets less than SFT because on-policy updates stay closer to the base model in KL (Shenfeld et al. 2025). Which capabilities transfer, and why some domains need their own verifiers, is open.

11.8 Self-improvement without external verification

Research question. Can a model’s own signals, such as confidence, self-consistency, or self-judgment, sustain RL improvement, or do self-reward loops inevitably collapse?

Early in training, self-rewards work surprisingly well. Majority vote over the model’s own samples, used as a pseudo-label on unlabeled test problems, roughly tripled Qwen2.5-Math-7B’s pass@1 on AIME 2024 (Zuo et al. 2025). Rewarding self-certainty matched GRPO with gold answers on a Qwen2.5-3B base model (X. Zhao et al. 2025), and minimizing entropy alone matched RL baselines trained on 60,000 labeled examples (Agarwal et al. 2025).

Run long enough, the loops collapse. Prolonged RL with majority-vote rewards leads to reward hacking and “sudden and complete performance collapse” (Shafayat et al. 2025). Internal-feedback rewards help base models early, then degrade performance below the starting model, and give little benefit to instruction-tuned models at all (Y. Zhang et al. 2025). The reason is structural: a reward that confirms the model’s current beliefs drives entropy down, and pass@n falls with it (Zhou et al. 2025). Much of the early success is also specific to Qwen2.5 models whose benchmarks appear in their pretraining data; on a clean, procedurally generated task, only accurate rewards produced improvement beyond the base model (M. Wu et al. 2025).

The open question is quantitative. Self-improvement is governed by the generation-verification gap, how much better a model is at checking an answer than producing one, and a version of that gap grows with pretraining compute (Song et al. 2024). A self-reward loop can only climb as long as the gap is positive. Nobody has yet measured the gap during RL and shown that its closing predicts the collapse.

11.9 Models that write their own tasks

Research question. Can the model generate the environments and verifiers it trains on, and what keeps a task generator honest?

Self-play attacks the scarcity of verified tasks. In Absolute Zero, one model proposes coding tasks, a code executor validates them, and the same model learns to solve them, reaching state-of-the-art results at 7B without in-domain data (A. Zhao et al. 2025). R-Zero co-evolves a challenger and a solver from a base model with no data (C. Huang et al. 2025). When the proposer is rewarded for difficulty, it learns to hack that reward too, drifting toward artificially complex problems that teach nothing, so newer methods add a guide role to keep proposed problems useful (Bailey et al. 2026). Grounding matters: in self-play for formal program verification, the formal verifier is what makes the gains possible (Wilf et al. 2025).

The frontier has adopted the idea. DeepSeek-V4.1-Flash treats a task as a problem, an environment, and a verification system, and trains the model to build better tasks using difficulty and correctness as rewards, noting that this capability “remains far from perfect” (DeepSeek-AI 2026). MiniMax reports that M2.7 now handles 30% to 50% of its RL team’s daily iteration workload, reading logs, debugging code, and adjusting training configurations between human reviews (MiniMax 2026).

This is the loop the book has been building toward. If the verifier matters more than the optimizer, and the model writes the verifiers, then verifier quality becomes a training target, and every failure in Section 11.4 can now enter through the task generator as well as through the policy. Whether task generators can be audited as fast as they produce tasks is open.

11.10 The agenda at a glance

Table 11.1: Open problems in RLVR, the strongest current evidence on each, and an experiment that would move it.
Problem Best current evidence Deciding experiment
Elicitation or creation Default RLVR sharpens; targeted recipes expand Outcome-only RL on pass@4096-zero problems at two scales
Over-optimization of learned graders Rubric proxies diverge from judge panels Gao-style fits across judge sizes
Semantic faithfulness Audits find hackable tests and brittle checkers Measured verifier recall on unchecked behaviors
Hacking generalization Production hacks generalize to misalignment Which hacks generalize, and why
Monitorability No broad loss under RL; losses under length penalties Monitorability tracked per reward term
RL compute Sigmoidal fits predict single-recipe runs Laws for agentic, multi-domain RL; plasticity over long runs
Credit at long horizons Critic-free step credit works at tens of turns Credit methods compared from 50 to 500 steps
Beyond verification Rubrics, checklists, and reference likelihood work early Alignment with the target under prolonged pressure
Self-reward Early gains, then collapse Generation-verification gap tracked through training
Self-generated tasks Self-play and frontier task synthesis work with grounded checkers Auditing generators as fast as they generate

Table 11.1 compresses the chapter. Read down its rows and one pattern holds throughout: where the checker is grounded in execution, formal proof, or an exact answer, RLVR keeps working; where the checker is learned, self-referential, or sparse over a long horizon, the open problems begin.

Agarwal, Shivam et al. 2025. The Unreasonable Effectiveness of Entropy Minimization in LLM Reasoning. https://arxiv.org/abs/2505.15134.
Bailey, Luke et al. 2026. Scaling Self-Play with Self-Guidance. https://arxiv.org/abs/2604.20209.
Baker, Bowen, Joost Huizinga, Leo Gao, et al. 2025. “Monitoring Reasoning Models for Misbehavior and the Risks of Promoting Obfuscation.” arXiv Preprint arXiv:2503.11926. https://arxiv.org/abs/2503.11926.
Cheng, Zhoujun et al. 2025. Revisiting Reinforcement Learning for LLM Reasoning from a Cross-Domain Perspective. https://arxiv.org/abs/2506.14965.
Cui, Ganqu et al. 2025. The Entropy Mechanism of Reinforcement Learning for Reasoning Language Models. https://arxiv.org/abs/2505.22617.
DeepSeek-AI. 2026. “DeepSeek-V4.1-Flash: Pushing the Limits of KV Cache Compression.” arXiv Preprint arXiv:2609.19969. https://arxiv.org/abs/2609.19969.
Epoch AI. 2025. How Far Can Reasoning Models Scale? Blog post. https://epoch.ai/gradient-updates/how-far-can-reasoning-models-scale.
Feng, Lang et al. 2025. Group-in-Group Policy Optimization for LLM Agent Training. https://arxiv.org/abs/2505.10978.
Gao, Leo, John Schulman, and Jacob Hilton. 2023. “Scaling Laws for Reward Model Overoptimization.” Proceedings of the 40th International Conference on Machine Learning (ICML). https://arxiv.org/abs/2210.10760.
Guan, Melody Y. et al. 2025. Monitoring Monitorability. https://arxiv.org/abs/2512.18311.
Gunjal, Anisha et al. 2025. Rubrics as Rewards: Reinforcement Learning Beyond Verifiable Domains. https://arxiv.org/abs/2507.17746.
Huan, Maggie et al. 2025. Does Math Reasoning Improve General LLM Capabilities? Understanding Transferability of LLM Reasoning. https://arxiv.org/abs/2507.00432.
Huang, Chengsong et al. 2025. R-Zero: Self-Evolving Reasoning LLM from Zero Data. https://arxiv.org/abs/2508.05004.
Huang, Yuzhen et al. 2025. From Accuracy to Robustness: A Study of Rule- and Model-Based Verifiers in Mathematical Reasoning. https://arxiv.org/abs/2505.22203.
Kazemnejad, Amirhossein et al. 2024. VinePPO: Refining Credit Assignment in RL Training of LLMs. https://arxiv.org/abs/2410.01679.
Khatri, Devvrit, Lovish Madaan, Rishabh Tiwari, et al. 2025. “The Art of Scaling Reinforcement Learning Compute for LLMs.” arXiv Preprint arXiv:2510.13786. https://arxiv.org/abs/2510.13786.
Kimi Team. 2026. “Kimi K3: Open Frontier Intelligence.” arXiv Preprint arXiv:2607.24653. https://arxiv.org/abs/2607.24653.
Kwa, Thomas et al. 2025. Measuring AI Ability to Complete Long Software Tasks. https://arxiv.org/abs/2503.14499.
Little, Bryce et al. 2026. Length Penalties Make Chain-of-Thought Less Monitorable. https://arxiv.org/abs/2607.09786.
Liu, Mingjie et al. 2025. ProRL: Prolonged Reinforcement Learning Expands Reasoning Boundaries in Large Language Models. https://arxiv.org/abs/2505.24864.
MacDiarmid, Monte et al. 2025. Natural Emergent Misalignment from Reward Hacking in Production RL. https://arxiv.org/abs/2511.18397.
Mahmoud, Anas et al. 2026. Reward Hacking in Rubric-Based Reinforcement Learning. https://arxiv.org/abs/2605.12474.
METR. 2026. Time Horizon 1.1. Blog post. https://metr.org/blog/2026-1-29-time-horizon-1-1/.
MiniMax. 2026. The MiniMax-M2 Series: Mini Activations Unleashing Max Real-World Intelligence. https://arxiv.org/abs/2605.26494.
Rajan, Shreshth. 2026. Auditing Reward Hackability in Code RL Training Environments. https://arxiv.org/abs/2606.16062.
Shafayat, Sheikh et al. 2025. Can Large Reasoning Models Self-Train? https://arxiv.org/abs/2505.21444.
Shenfeld, Idan, Jyothish Pari, and Pulkit Agrawal. 2025. RL’s Razor: Why Online Reinforcement Learning Forgets Less. https://arxiv.org/abs/2509.04259.
Song, Yuda et al. 2024. Mind the Gap: Examining the Self-Improvement Capabilities of Large Language Models. https://arxiv.org/abs/2412.02674.
Sun, Weiwei et al. 2025. Scaling Long-Horizon LLM Agent via Context-Folding. https://arxiv.org/abs/2510.11967.
Sun, Yiyou et al. 2025. RL Grokking Recipe: How Does RL Unlock and Transfer New Algorithms in LLMs? https://arxiv.org/abs/2509.21016.
Tan, Zelin, Hejia Geng, Xiaohang Yu, et al. 2025. “Scaling Behaviors of LLM Reinforcement Learning Post-Training: An Empirical Study in Mathematical Reasoning.” arXiv Preprint arXiv:2509.25300. https://arxiv.org/abs/2509.25300.
Team OLMo, Allyson Ettinger, Amanda Bertsch, et al. 2025. “Olmo 3.” arXiv Preprint arXiv:2512.13961. https://arxiv.org/abs/2512.13961.
Viswanathan, Vijay et al. 2025. Checklists Are Better Than Reward Models for Aligning Language Models. https://arxiv.org/abs/2507.18624.
Wang, Yiping et al. 2025. Reinforcement Learning for Reasoning in Large Language Models with One Training Example. https://arxiv.org/abs/2504.20571.
Wei, Jason. 2025. Asymmetry of Verification and Verifier’s Rule. Blog post. https://www.jasonwei.net/blog/asymmetry-of-verification-and-verifiers-law.
Wichers, Nevan et al. 2025. Inoculation Prompting: Instructing LLMs to Misbehave at Train-Time Improves Test-Time Alignment. https://arxiv.org/abs/2510.05024.
Wilf, Alex et al. 2025. Propose, Solve, Verify: Self-Play Through Formal Verification. https://arxiv.org/abs/2512.18160.
Wu, Fang, Weihao Xuan, Ximing Lu, et al. 2025. “The Invisible Leash: Why RLVR May or May Not Escape Its Origin.” arXiv Preprint arXiv:2507.14843. https://arxiv.org/abs/2507.14843.
Wu, Mingqi, Zhihao Zhang, Qiaole Dong, et al. 2025. “Reasoning or Memorization? Unreliable Results of Reinforcement Learning Due to Data Contamination.” arXiv Preprint arXiv:2507.10532. https://arxiv.org/abs/2507.10532.
Yu, Tianyu et al. 2025. RLPR: Extrapolating RLVR to General Domains Without Verifiers. https://arxiv.org/abs/2506.18254.
Yuan, Lifan et al. 2025. From \(f(x)\) and \(g(x)\) to \(f(g(x))\): LLMs Learn New Skills in RL by Composing Old Ones. https://arxiv.org/abs/2509.25123.
Yuan, Suqin et al. 2026. Understanding Diversity Collapse in RLVR via the Lens of Overtraining. https://arxiv.org/abs/2606.15455.
Yue, Yang, Zhiqi Chen, Rui Lu, et al. 2025. “Does Reinforcement Learning Really Incentivize Reasoning Capacity in LLMs Beyond the Base Model?” arXiv Preprint arXiv:2504.13837. https://arxiv.org/abs/2504.13837.
Zhai, Zhiyuan et al. 2026. Does RL Expand the Capability Boundary of LLM Agents? A PASS@(k,t) Analysis. https://arxiv.org/abs/2604.14877.
Zhang, Charlie et al. 2025. On the Interplay of Pre-Training, Mid-Training, and RL on Reasoning Language Models. https://arxiv.org/abs/2512.07783.
Zhang, Chenchen. 2026. “From Reasoning to Agentic: Credit Assignment in Reinforcement Learning for Large Language Models.” arXiv Preprint arXiv:2604.09459. https://arxiv.org/abs/2604.09459.
Zhang, Lunjun, Arian Hosseini, Hritik Bansal, Seyed Mehran Kazemi, Aviral Kumar, and Rishabh Agarwal. 2025. “Generative Verifiers: Reward Modeling as Next-Token Prediction.” Proceedings of the International Conference on Learning Representations (ICLR), ahead of print. https://doi.org/10.48550/arXiv.2408.15240.
Zhang, Yanzhi et al. 2025. No Free Lunch: Rethinking Internal Feedback for LLM Reasoning. https://arxiv.org/abs/2506.17219.
Zhao, Andrew et al. 2025. Absolute Zero: Reinforced Self-Play Reasoning with Zero Data. https://arxiv.org/abs/2505.03335.
Zhao, Xuandong et al. 2025. Learning to Reason Without External Rewards. https://arxiv.org/abs/2505.19590.
Zhao, Yulai et al. 2025. One Token to Fool LLM-as-a-Judge. https://arxiv.org/abs/2507.08794.
Zhong, Ziqian et al. 2025. ImpossibleBench: Measuring LLMs’ Propensity of Exploiting Test Cases. https://arxiv.org/abs/2510.20270.
Zhou, Yujun, Zhenwen Liang, Haolin Liu, et al. 2025. “Evolving Language Models Without Labels: Majority Drives Selection, Novelty Promotes Variation.” arXiv Preprint arXiv:2509.15194. https://arxiv.org/abs/2509.15194.
Zuo, Yuxin et al. 2025. TTRL: Test-Time Reinforcement Learning. https://arxiv.org/abs/2504.16084.