RLVR mostly sharpens what the base model already knew
Reinforcement learning with verifiable rewards is now the default way to post-train reasoning models: sample a group of rollouts per prompt, check each one, and push probability toward the correct ones. A growing body of evidence says this process rarely adds new solutions; it concentrates the distribution on solutions the base model could already reach. The symptom is a model whose pass@1 rises while its pass@256 falls below the base model's.
Group-relative methods make the sampling structure explicit. GRPO scores each rollout against its own group, , so when every rollout in the group is right or every one is wrong, the advantage is zero and nothing updates. The group size therefore controls which prompts speak on each step, and the field offers conflicting advice about it: two rollouts suffice in one analysis, while another argues for scaling rollouts broadly. We wanted to know what finite actually does to rare correct behavior.
The tail-miss event: active updates that never see the rare answer
Fix one prompt and call a subset of its correct rollouts rare when its probability is a small slice of the total success probability . The dangerous event is not sampling failure in general. It is the conjunction: the group contains both successes and failures, so the update fires, and yet no sample lands in the rare region, so the update can only reinforce the common solutions.
An active update that misses the tail
One prompt, N = 8This event has a closed form. We show its probability is exactly , and the shape of that expression is the story: small groups are usually inactive, huge groups eventually cover the tail, and intermediate groups combine frequent activity with poor coverage. The curve peaks exactly where practical compute budgets live.
Tail-miss probability against group size
P(active update misses E)Total correct mass can grow while unsampled correct mass shrinks
Missing the tail once would be harmless if the update left unsampled solutions alone. It does not. In the categorical abstraction, where a softmax policy over a finite action set makes every quantity observable, we derive the one-step change of the unsampled-correct mass and show it can be negative even while the total correct mass increases: a direct drift term pushes unsampled logits down whenever the batch is reward-positive, and softmax normalization drains further mass toward the sampled winners.
We simulated this with 128,000 actions of which 10,000 are correct. Total correct mass rises for every group size, which looks like healthy training. The fraction of initially correct actions that keep their probability tells another story: it collapses at intermediate , stays high for tiny because updates rarely fire, and stays high for enormous because the tail gets sampled; at retention holds near one throughout. Sharpening is not a mystery of deep networks. It falls out of finite sampling plus softmax bookkeeping.
Price the update by how much the group already succeeds
The rare set is invisible during training, but a good proxy for its danger is visible in every group: the empirical success rate , where counts correct rollouts. High success means the sampled correct set is broad and the reward-positive drift on everything unsampled is strong. So we borrow the shape of Focal loss from object detection and scale each group's advantage by , giving .
One scalar per group
Focal exponent 0.5The design is deliberately minimal. The weight multiplies the group-relative advantage without touching rewards, clipping bounds, or importance ratios, so it composes with any group-relative objective; is the only new hyperparameter and there are no extra rollouts, networks, or reference models. We select per setup from a small sweep, and the winner is always 0.5 or 1.0.
The sweep that shows the dip, and the fix at fixed cost
GRPO across group sizes versus F-GRPO at N = 8
average math scoreThe sweep matches the theory qualitatively: keeps pass@256 high mostly by rarely updating, intermediate sizes trade the tail for pass@1, and buys the tail back with compute. Our diagnostic agrees. On correct trajectories that were rare under the base model, the negative log-likelihood increase is 0.19 at , 0.68 at , and 0.52 at ; F-GRPO at sits at 0.46, deviating less from the base distribution exactly where deviation hurts.
One reweighting, three optimizers, three models
Because the weight only rescales the group advantage, it drops into DAPO and CISPO unchanged. Across nine method-model combinations, Qwen2.5-7B, Qwen3-4B-Base, and Llama-3.2-3B-Instruct at , focal weighting improves both math and out-of-domain pass@256 in nine of nine cases, by 3.9 and 4.1 points on average, while math pass@1 is preserved or improved in all nine, by up to 2.8 points on Qwen3-4B-Base.
Adding the focal weight at N = 8, Qwen2.5-7B
pass@256A single-solution Maze setting from concurrent work sharpens the interpretation: with exactly one correct sequence per prompt, F-GRPO at still improves pass@1 to between 74.4 and 93.6 against 65.6 to 75.8 for GRPO across group sizes, so the effect is not only about preserving alternative solutions within a prompt. It also protects coverage across prompts.
Against regularization and update-scale controls
| Method | Math pass@1 / pass@256 | OOD pass@1 / pass@256 |
|---|---|---|
| GRPO, lower learning rate | 37.8 / 69.2 | 16.4 / 57.9 |
| GRPO + entropy bonus | 37.8 / 69.5 | 18.7 / 59.9 |
| GRPO + KL penalty | 37.2 / 72.0 | 19.4 / 60.0 |
| DS-GRPO | 37.7 / 73.8 | 17.9 / 68.3 |
| F-GRPO, ours | 38.6 / 70.3 | 19.2 / 63.3 |
Where the analysis stops
The theory is prompt-local and one-step: the tail-miss probability and the mass-redistribution result describe regimes, not quantitative predictions for full LLM training, and the concentration-zone boundaries in our simulation depend on the initial distribution. We probed group sizes 2 through 32, not an exhaustive map, and still has to be chosen; our runs use one value rather than a schedule.
The claim we stand behind is the mechanism. Finite groups make active-but-blind updates common at exactly the group sizes people can afford, and a success-conditioned weight is a near-free way to keep those updates from erasing what they never sampled. Anything that estimates the unseen correct mass better than does should improve on us.
Sharpening is a sampling artifact you can price into the update rule: damp what the group already gets right, and the rare trajectories survive.