TL;DR for operators
Zhijie Wang’s GRPO and Reflection Reward for Mathematical Reasoning in Large Language Models1 offers two practical signals for teams tuning reasoning models.
First, additional post-training stages do not compose automatically. On Qwen2.5-Math-7B, the base model scores 58.6% on MATH-500, supervised fine-tuning reaches 66.2%, and reinforcement learning applied directly to the base model reaches 73.8%. Yet the model that receives supervised fine-tuning before reinforcement learning falls to 57.6%. The authors attribute this weakness mainly to differences in the size and distribution of the datasets used at the two stages.
Second, the reinforcement-learning objective does more than reward correct answers. It combines correctness, output-format compliance, and a reflection signal intended to encourage checking, reconsideration, backtracking, intermediate subgoals, and backward reasoning. A comparison against an Open R1 result without that reflection component reports 73.8% versus 69.4% on MATH-500.
The business takeaway is not that every reasoning model needs a “reflection reward.” It is that reward composition and compatibility between successive training datasets deserve explicit design and evaluation. The study does not establish gains outside mathematical and STEM reasoning, does not report repeated-run uncertainty, and does not isolate reflection through a fully matched in-study ablation.
More post-training can produce a worse model
A model team has two broad levers after pretraining. It can show the model better worked examples, changing what patterns it learns to imitate. Or it can optimize the model against a reward signal, changing which generated behaviors become more probable.
It is tempting to treat these as cumulative upgrades: first teach the domain, then reinforce better reasoning. The 7B results make that assumption unsafe.
| Qwen2.5-Math-7B variant | MATH-500 | GPQA Diamond | AIME2024 |
|---|---|---|---|
| Base | 58.6% | 26.26% | 16.67% |
| SFT | 66.2% | 37.37% | 16.67% |
| SFT + GRPO | 57.6% | 41.41% | 16.67% |
| GRPO only | 73.8% | 34.34% | 20.00% |
The main experiment therefore does not produce one universal ordering. Direct reinforcement learning is strongest on MATH-500 and AIME2024, while the two-stage SFT-plus-GRPO model produces the highest GPQA Diamond score.
That matters because “best post-training recipe” is underspecified. The choice depends on the target evaluation distribution. More importantly, the weak MATH-500 result from SFT-plus-GRPO shows that a useful first stage can leave the model in a state from which the next stage adapts poorly.
The paper points to a likely culprit: SFT and GRPO use substantially different datasets in both scale and distribution. That attribution is plausible within the reported setup, but it is not independently isolated by a controlled data-alignment experiment. The result is better read as a warning about stage compatibility than as evidence that SFT and reinforcement learning are inherently antagonistic.
The reward specifies what kind of reasoning survives optimization
The paper’s reinforcement-learning method updates the model by generating groups of candidate responses, comparing their rewards, and increasing the probability of relatively better candidates while constraining large policy shifts. This is Group Relative Policy Optimization, or GRPO.
The distinctive design choice is the reward itself:
Correctness is one component. Output format is another. The third component rewards reflection, which the paper associates with verification, backtracking, subgoal setting, and backward chaining.
This changes the role of reward engineering. If optimization sees only final-answer correctness, many reasoning trajectories can receive the same signal once they reach the right answer. Adding a reflection component attempts to distinguish how the model gets there, favoring trajectories that contain forms of reconsideration the designers want preserved.
The training-trajectory evidence is supportive rather than decisive. Reflection reward rises during training for both reported GRPO-only models and rises more strongly for the 7B model. That figure is useful as a diagnostic that optimization is increasingly satisfying the supplied reflection criterion. It does not, by itself, establish that those behaviors are responsible for benchmark improvement.
For a product team, the broader design principle is more transferable than the particular reward: when outputs are objectively scoreable, reinforcement learning can encode intermediate behavioral preferences alongside task success. Whether those preferences improve reliability must still be tested against the actual failure modes of the application.
Reflection looks promising, but the 4.4 points are not a clean causal estimate
The paper’s most direct evidence for the reflection component compares its 73.8% MATH-500 result with a 69.4% Open R1 result using accuracy and format rewards without reflection. The difference is 4.4 percentage points.
That comparison has the role of an ablation: it asks whether removing one reward component changes performance while the other reward categories remain. But its evidentiary boundary matters. The no-reflection value comes from Open R1 rather than a clearly documented matched rerun conducted within this study, and the paper reports no repeated-run variance, confidence intervals, or significance tests.
So the defensible interpretation is narrower: adding the reflection signal is associated with higher MATH-500 performance under the compared setups. It is not enough to attribute the full 15.2-point rise from the 58.6% base model to reflection. That larger improvement comes from GRPO using the combined accuracy, format, and reflection objective.
This distinction matters operationally because reward components can interact. A team deciding whether to implement reflection scoring needs the marginal value of that component, not the total value of the entire reinforcement-learning stage.
Full fine-tuning can buy accuracy, but not uniformly
The 1.5B experiments add another resource-allocation decision. Full-parameter SFT reaches 58.2% on MATH-500, compared with 42.2% for the merged LoRA model—a 16-point gap. The pretrained 1.5B baseline is 45.4%, so LoRA also falls below the base model on this benchmark.
That is strong evidence for full SFT in this particular adaptation setup, not a general verdict against parameter-efficient tuning. The benchmark pattern itself prevents that conclusion: LoRA scores 6.67% on AIME2024 versus 3.33% for full SFT.
Cognaptus inference: teams choosing between full adaptation and parameter-efficient methods should price the additional compute against gains on the tasks that determine product value, rather than assuming that lower-cost adaptation preserves a fixed fraction of full-tuning performance. The relevant comparison is workload-specific accuracy per unit of training and serving cost.
Treat the training pipeline as a coupled system
The study suggests three controls worth separating in a reasoning-model pipeline.
Example selection determines what demonstrations the model absorbs during supervised adaptation. Reward composition determines which generated behaviors reinforcement learning promotes. Stage compatibility determines whether one training phase produces a useful starting point for the next.
Those controls can interfere with one another. The 7B results are the clearest demonstration: SFT improves MATH-500 from 58.6% to 66.2%, and GRPO-only improves it to 73.8%, yet combining them yields 57.6%. A pipeline assembled from individually reasonable stages is not necessarily an additive system.
For an engineering team, that argues for evaluating transitions, not just components. Before committing compute to a multi-stage recipe, compare direct reinforcement learning, supervised adaptation alone, and the combined sequence on the same deployment-relevant evaluation set. Where possible, align the stages by difficulty, domain coverage, and response distribution so that the second phase is not correcting for an avoidable distribution shift introduced by the first.
The evidence stops at mathematical and STEM reasoning
The practical boundary is substantial. Evaluation covers MATH-500, GPQA Diamond, and AIME2024. These tasks offer relatively crisp notions of correctness, which makes reward-based post-training especially tractable.
The study therefore does not show that rewarding reflection improves coding agents, research workflows, customer-support systems, tool use, or interactive decision-making. It also does not test whether extra reflective behavior changes latency, token consumption, calibration, or error recovery in production.
The exact computational scoring rule for the reflection reward is also not specified in enough detail in the reported record to reconstruct that component from the paper description alone. That limits reproducibility of the most novel part of the method.
These boundaries leave a useful result intact. The study shows that reasoning post-training should not be treated as a single dial labeled “more reasoning.” What the optimizer rewards, what data each stage sees, and how those stages connect can materially change the resulting model. Reflection is one candidate behavior to reward. The more durable design lesson is to make those behavioral incentives explicit—and test their marginal contribution before paying for another training stage.
Cognaptus: Automate the Present, Incubate the Future.
-
Zhijie Wang (2026). GRPO and Reflection Reward for Mathematical Reasoning in Large Language Models. arXiv:2603.14041. https://arxiv.org/abs/2603.14041 ↩︎