: Benchmarking Scientific Instruction Following
Towards Rigorous Scientific Intelligence

Encheng Su1,2,, Jianyu Wu1,3,, Lintao Wang1,5, Pengze Li1,6,
Aoran Wang1, Jinouwen Zhang1, Yizhou Wang1,4, Yuan Meng7,
Chen Tang1,4,*, Xinzhu Ma1,8,*, Shixiang Tang1,4,*, Houqiang Li2,*
1Shanghai AI Laboratory 2University of Science and Technology of China 3Shanghai Jiao Tong University
4The Chinese University of Hong Kong 5University of Sydney 6Fudan University
7Tsinghua University 8Beihang University
Equal contribution. *Corresponding authors.


Abstract

As large language models (LLMs) transition from general knowledge retrieval to complex scientific discovery, their evaluation standards must also incorporate the rigorous norms of scientific inquiry. Existing benchmarks exhibit a critical blind spot: general instruction-following metrics focus on superficial formatting, while domain-specific scientific benchmarks assess only final-answer correctness, often rewarding models that arrive at the right result with the wrong reasons. To address this gap, we introduce scientific instruction following: the capability to solve problems while strictly adhering to the constraints that establish scientific validity. Specifically, we introduce SciIF, a multi-discipline benchmark that evaluates this capability by pairing university-level problems with a fixed catalog of constraints across three pillars: scientific conditions (e.g., boundary checks and assumptions), semantic stability (e.g., unit and symbol conventions), and specific processes (e.g., required numerical methods). Uniquely, SciIF emphasizes auditability, requiring models to provide explicit evidence of constraint satisfaction rather than implicit compliance. By measuring both solution correctness and multi-constraint adherence, SciIF enables fine-grained diagnosis of compositional reasoning failures, ensuring that LLMs can function as reliable agents within the strict logical frameworks of science. Data and code are available at https://github.com/suencgo/SciIF.git.

1 Introduction↩︎

“What we observe is not nature itself, but nature exposed to our method of questioning.”

— Werner Heisenberg

With the rapid adoption of large language models (LLMs) in scientific discovery, the expectation for model capability is shifting from simple knowledge retrieval to complex problem solving [1]. However, a fundamental gap exists in how we evaluate these foundation models: in scientific context, the validity of an answer is not intrinsic to the result itself, but is contingent upon whether it is produced within a specific framework of constraints. Unlike everyday user requests where a helpful answer is sufficient, scientific problems are governed by strict norms within the inputs (e.g., assumptions, boundary conditions, definitions, and procedures) that dictate whether a solution is scientifically meaningful or merely numerically plausible. Therefore, as models increasingly tackle rigor-grounded scientific tasks [2][4], evaluation must go beyond answer plausibility to assess whether they can strictly adhere to the constraints that establish the scientific validity of that result, namely scientific instruction-following.

However, current benchmarks fail to capture the critical interplay between scientific solutions and justifying constraints. Mainstream instruction-following benchmarks [5][8] primarily emphasize surface-level format compliance. For example, IFEval [5] evaluates properties like word counts or JSON validity. While effective for general-purpose dialogue, these criteria are insufficient for science tasks. A model may perfectly satisfy formatting rules yet violating critical scientific rigor, such as applying a formula where it is mathematically undefined or conflating incompatible unit systems. Conversely, prevailing scientific benchmarks [9], [10] focus almost exclusively on final-answer correctness. By treating the reasoning and constraint sanctification process as a black box, these evaluation systematically overlook “right-for-the-wrong-reasons” failures, failing to distinguish a rigorous scientific agent from one that merely arrives at the correct answer without adhering to the underlying scientific framework.

We address this issue by first defining scientific instruction following: the ability to solve a scientific problem while explicitly satisfying the constraints that govern correctness, meaning, and process. Unlike general instruction following, which often concerns stylistic preferences and fluency [11], this capability rests on three pillars of scientific validity. First, it requires adherence to scientific conditions: models must explicitly check applicability ranges, verify boundary conditions, and state assumptions to prove the solution is valid under the given parameters [12]. Second, it demands semantic stability: models must rigorously adhere to unit conventions, symbol definitions, and terminology standards to prevent “meaning drift”, where a model implicitly substitutes one quantity for another. Third, it necessitates adherence to specific scientific processes: when a specific numerical method or experimental protocol is requested, the model must provide auditable, executable steps rather than a generic conclusion.

In this paper, we introduce SciIF, a benchmark for scientific instruction following across multiple disciplines. Each instance contains: (i) a university-level scientific problem, (ii) an enabled subset of constraints drawn from a predefined catalog, and (iii) a reference solution that is validated to be correct and consistent with the enabled constraints. The catalog is designed around scientific practice and spans three families. Condition constraints regulate modeling validity (e.g., assumptions, boundary conditions, applicability range, unit conventions). Terminology constraints prevent meaning drift (e.g., cross-disciplinary disambiguation, in-domain term definitions, symbol and constant conventions, variable naming consistency). Process constraints require a specific scientific procedure (e.g., numerical methods or experimental methods). Because constraints are drawn from a fixed catalog and combined in controlled ways, SciIF  can test compositional instruction following: whether models can coordinate multiple scientific requirements in a single coherent answer [13].

A central design goal of SciIF  is auditability. For each enabled constraint, we specify required evidence that must appear in the model output; judges are instructed not to infer missing evidence. This makes compliance decisions depend on what the model explicitly commits to, rather than on judge guesswork. We report answer correctness, overall multi-constraint compliance, and per-constraint pass rates, enabling fine-grained diagnosis of where scientific instruction following breaks. Furthermore, we demonstrate that fine-tuning on SciIF  confers dual benefits, delivering a 2.8% boost on general instruction following (IFEval) and a remarkable 8.0% improvement on scientific tasks (MMLU-Physics). This indicates that the rigor required for scientific constraints generalizes effectively, sharpening the model’s ability to follow complex rules while deepening its domain expertise.

In summary, our contributions are as follows:

  • We introduce SciIF, a multi-discipline benchmark that shifts the evaluation focus from mere numerical correctness to the rigorous execution of scientific instructions.

  • We construct a predefined catalog of constraints that supports the generation of controlled problem mixtures for fine-grained failure diagnosis.

  • We propose an auditable, evidence-based evaluation protocol that ensures compliance is measured by explicit logical commitments rather than implicit guesswork.

  • We demonstrate the utility of SciIF  for model alignment, showing that learning strict scientific constraints generalizes to improve both general instruction following and domain-specific reasoning.

2 Related Work↩︎

2.0.0.1 Answer-Centric Scientific Benchmarks.

Most scientific and academic evaluations score models primarily by final-answer correctness. This includes both single-discipline benchmarks such as PhysUniBench [14] that target a specific domain and multi-discipline suites—such as MMLU [9] and BIG-Bench Hard [15]—as well as science-focused evaluations such as SciBench [10] and SciEvalKit[16]. While these benchmarks effectively quantify knowledge and reasoning under objective metrics, they often treat the derivation process as a black box. As a result, models can be “right for the wrong reasons”: producing a correct value while violating constraints that govern scientific validity and meaning (e.g., unstated assumptions, missing applicability checks, unit inconsistencies, or symbol drift). SciIF complements correctness-centric evaluation by explicitly measuring scientific constraint compliance as a separate axis. Concretely, it scores whether required scientific evidence is stated and checked in the output (e.g., explicit boundary substitutions or applicability-range validation), rather than assuming that a plausible derivation implicitly satisfies the rules.

2.0.0.2 General Instruction Following Evaluation.

Instruction following has been studied as cross-task generalization from natural language instructions [5][8], [17], [18], and improved through instruction tuning and synthetic instruction generation [19][21]. Human-centric evaluation and LLM-as-a-judge frameworks optimize for preference and overall assistant quality [22][28], but they typically do not require explicit evidence that scientific constraints are satisfied; fluent outputs can appear acceptable even when scientific conventions are violated. SciIF is complementary: it evaluates whether models both solve the task and explicitly satisfy the scientific constraints that justify the solution, and it enables tracking trade-offs between correctness and constraint compliance under controlled mixtures of constraints.

3 Benchmark Construction↩︎

Figure 1: Overview of SciIF. We curate scientific QA data from multiple sources and apply a four-stage human-in-the-loop process to produce well-posed problems paired with explicit scientific constraints and auditable evidence checklists. For evaluation, prompt builders generate answer-generation and per-constraint judge prompts, and two independent model judges audit both answer correctness and constraint compliance under Strict or Loose policies. The example highlights a core failure mode: an answer can match the reference numerically yet fail compliance when required evidence such as units and a one-line unit check is missing.

SciIFis designed to evaluate scientific instruction following as a capability distinct from answer accuracy. In scientific problem solving, constraints such as unit discipline, symbol meaning, validity conditions, and method requirements are not cosmetic—they determine whether an answer is interpretable, reproducible, and even semantically correct. To surface these failures, SciIFseparates evaluation into two axes: (i) correctness of the scientific outcome, and (ii) explicit, auditable compliance with enabled scientific constraints.

3.1 Task Definition↩︎

SciIFevaluates scientific instruction following along two separate axes. Given a scientific problem, we score not only whether a model reaches the correct scientific result, but also whether it explicitly follows the enabled scientific constraints.

Each instance is a triple \((x, C, y^\star)\). Here \(x\) is a university-level scientific problem, \(C\) is a small set of enabled constraints drawn from a fixed catalog, and \(y^\star\) is a reference solution that is both correct and compliant with \(C\). A model receives \((x, C)\) and produces an output \(\hat{y}\).

3.1.0.1 Answer Correctness.

We score whether \(\hat{y}\) matches \(y^\star\) on the required scientific outcome, using task-appropriate equivalence criteria.

3.1.0.2 Constraint Compliance.

In parallel, we score whether \(\hat{y}\) provides explicit, problem-grounded evidence for each enabled constraint in \(C\). Judges check evidence presence rather than infer missing assumptions or validity checks, which cleanly separates correct-but-non-compliant outputs from compliant-but-incorrect ones.

3.2 Dataset and Constraint Catalog↩︎

SciIFuses a fixed test set of 334 university-level problems across Biology, Chemistry, Materials, and Physics, and we additionally release 910 training problems used for SFT and verifier-based RL. Each test instance enables a small set of constraints drawn from a fixed catalog of ten atomic constraints. The catalog spans three families: condition constraints (Assumptions, Boundary Conditions, Applicability Range, Units Standard), terminology constraints (Cross-disciplinary Term Disambiguation, Intra-discipline Term Definitions, Symbols & Constants Standardization, Variable Naming Consistency), and process constraints (Numerical Methods, Experimental Methods). Constraints are format-agnostic; we do not require a rigid template. A constraint passes only when the model states explicit, problem-grounded evidence tied to the instance’s symbols and values, rather than generic boilerplate.

3.3 Construction Pipeline↩︎

We construct candidate instances and apply a three-stage quality control pipeline. The stages are designed to separate three failure modes: ill-posed problems, incorrect references, and ungrounded constraints. Only instances that pass all stages are included in the final benchmark.

3.3.0.1 Stage 1: Problem Validity.

Goal: ensure the problem statement itself is well-posed. We check that the prompt provides sufficient information to determine the target quantity, that the scientific setting is internally consistent, and that the enabled constraints are relevant to the task described by the prompt. Instances fail this stage if the question is under-specified, contradictory, or if a constraint is enabled without any anchor in the problem statement that makes it applicable.

3.3.0.2 Stage 2: Reference Correctness.

Goal: ensure the reference solution provides the correct scientific outcome. Independently of constraint evidence, we solve or verify the problem and confirm that \(y^\star\) matches the requested target result and key conclusions. Instances fail this stage if the reference contains numerical errors, incorrect reasoning that changes the result, or mismatches the stated targets.

3.3.0.3 Stage 3: Constraint Grounding and Auditability.

Goal: ensure constraints are truly binding and auditable for this instance. We verify that every enabled constraint is instantiated by the prompt and that the reference explicitly provides the required evidence to satisfy that constraint. This stage is necessary because correctness alone does not guarantee that a constraint is meaningful or checkable. Instances fail this stage when a constraint is nominal rather than binding, or when the reference does not contain explicit, problem-grounded evidence that would allow a judge to audit compliance.

3.3.0.4 Stage 4: Domain Expert Review.

Goal: ensure the instance reflects realistic scientific practice and remains interpretable to practitioners. After passing automated and internal checks, each candidate is reviewed by a domain expert who assesses (i) whether the scientific context and assumptions are plausible for the stated domain, (ii) whether quantities, units, and parameter ranges are scientifically meaningful, and (iii) whether the reference solution communicates conclusions in a way consistent with field conventions. Instances fail this stage if an expert flags the setting as implausible, identifies domain-knowledge contradictions, or judges that the prompt or reference would mislead a practitioner despite being formally solvable.

Figure 2: No caption
Table 1: Per-constraint correctness under the Strict mode. Abbrev.: A=Assumptions; BC=Boundary Conditions; AR=Applicability Range; US=Units Standard; CTD=Cross-disciplinary Term Disambiguation; ITD=Intra-discipline Term Definitions; SCS=Symbols & Constants Standardization; VNC=Variable Naming Consistency; NM=Numerical Methods; EM=Experimental Methods.
Model Condition Terminology Process
A BC AR US Avg. CTD ITD SCS VNC Avg. NM EM Avg.
Closed-source models
GPT-5.2 [29] 65.3% 74.8% 32.7% 38.3% 53.2% 52.4% 81.9% 41.2% 73.1% 63.7% 82.4% 94.1% 88.3%
GPT-5.1 [30] 71.3% 63.0% 30.6% 45.8% 53.4% 54.3% 74.1% 47.1% 72.4% 62.8% 70.6% 88.2% 79.4%
GPT-4o [31] 1.0% 0.0% 2.0% 0.0% 0.7% 2.9% 0.0% 4.9% 10.3% 4.8% 0.0% 0.0% 0.0%
GPT-o3 [32] 36.6% 46.2% 15.3% 19.2% 30.0% 29.5% 41.4% 27.5% 38.6% 34.7% 58.8% 76.5% 67.7%
GPT-o4mini [33] 42.6% 38.7% 12.2% 19.2% 28.6% 28.6% 25.0% 18.6% 40.0% 29.0% 76.5% 82.4% 79.5%
Gemini-3 [34] 52.5% 52.9% 23.5% 20.8% 38.0% 53.8% 65.5% 47.1% 69.0% 59.7% 88.2% 82.4% 85.3%
Grok-4 [35] 43.6% 53.8% 15.3% 33.3% 37.3% 70.5% 59.5% 53.9% 60.7% 61.0% 58.8% 100.0% 79.4%
Claude-4.5Sonnet [36] 39.6% 47.1% 26.5% 25.8% 35.0% 36.2% 42.2% 35.3% 49.0% 41.5% 52.9% 82.4% 67.7%
Qwen3-Max [37] 40.6% 47.9% 15.3% 18.3% 31.0% 25.7% 44.0% 21.6% 55.2% 38.0% 82.4% 64.7% 73.6%
Open-source models
Minimax-M2  [38] 18.8% 33.6% 5.1% 18.3% 19.5% 15.2% 16.4% 9.8% 33.1% 19.8% 52.9% 58.8% 55.9%
Kimi-K2  [39] 31.7% 37.8% 17.3% 23.3% 27.8% 25.7% 31.9% 26.5% 45.5% 33.4% 88.2% 58.8% 73.5%
GLM-4.7  [40] 41.6% 36.1% 17.3% 15.8% 27.8% 43.8% 44.8% 26.5% 53.1% 42.8% 58.8% 100.0% 79.4%
Qwen3-235b  [41] 24.8% 35.3% 9.2% 17.5% 22.1% 15.2% 20.7% 15.7% 31.7% 21.6% 76.5% 64.7% 70.6%
Qwen3-80b  [41] 25.7% 36.1% 11.2% 8.3% 20.5% 17.1% 10.3% 24.5% 31.7% 21.2% 35.3% 58.8% 47.1%
Deepseek-v3.2  [42] 31.7% 34.5% 12.2% 11.7% 22.8% 17.1% 21.6% 20.6% 34.5% 24.0% 64.7% 64.7% 64.7%

3.4 Evaluation and Auditing↩︎

SciIFfollows a generate–then–audit protocol. Given a problem and its enabled constraint set, the model first produces an answer \(\hat{y}\). We then audit answer correctness and constraint compliance as two separate axes, so that being numerically correct can be distinguished from being scientifically auditable.

3.4.0.1 Constraint Auditing and Aggregation.

For each enabled constraint \(c \in C\), the auditor assigns PASS or FAIL by checking whether the model output contains explicit, instance-grounded evidence for that constraint. Evidence must be clearly stated and tied to the concrete symbols and values in the problem. If evidence is missing, vague, or contradicted by the solution, the constraint fails. For items with multiple constraints, we aggregate with a logical AND over enabled constraints: an item is compliant only if every \(c \in C\) passes. This makes failures directly attributable at the constraint level.

3.4.0.2 Correctness as an Independent Axis.

Correctness is audited independently by comparing \(\hat{y}\) to the reference \(y^\star\) under task-appropriate equivalence criteria for the final outcome and key conclusions. The correctness audit ignores constraint-following issues to avoid conflating scientific reporting failures with arithmetic or reasoning errors. This separation isolates two common regimes in scientific QA: correct-but-non-compliant outputs and compliant-but-incorrect outputs.

3.5 Hybrid Auditing↩︎

3.5.0.1 Rules First, Judges as Fallback.

To maximize reproducibility and minimize subjectivity, we use a hybrid auditing pipeline that prioritizes deterministic checks. We first apply a rule-based auditor for signals that admit stable verification, including parsing LaTeX math expressions, checking numerical equivalence under tolerances, validating required unit declarations, and matching constraint-specific evidence patterns. When a rule-based check is not applicable or yields an unreliable decision, we fall back to model-based judging under a strict evidence standard.

3.5.0.2 Dual Judging with Aligned Standards.

Model-based judging uses two independent judges, GPT-5.1 and Gemini-3-Flash, with a conservative agreement rule: a constraint passes only if both judges mark it PASS. In practice, different judges can apply systematically different strictness even on the same response. We therefore align judging standards using a held-out calibration set that is never used for reported results. We identify recurring disagreement modes and encode the corresponding decision thresholds into a fixed, standardized judging prompt. The standardized prompt instructs judges to evaluate evidence presence and consistency only, and to avoid reconstructing missing checks, assumptions, or derivations. After calibration, the judging prompts are fixed for all experiments.

4 Experiments↩︎

We evaluate whether scientific QA models can be both correct and scientifically auditable. SciIFreports two metrics per model: answer correctness and multi-constraint compliance.

4.1 Setup↩︎

We evaluate on the 334-item SciIFtest set spanning Biology, Chemistry, Materials, and Physics. We include a mix of frontier and open models, with the full list deferred to Appendix 9.1. All models use identical decoding settings and the same prompting template (Appendix 6). Compliance and correctness are scored with our dual-judge auditing protocol.

4.1.0.1 Post-Training Variants.

To test whether SciIF training improves both scientific QA and scientific auditability, we post-train Qwen3-8B on our 910-item training set in two stages. SFT targets stronger scientific problem solving and higher answer correctness. We then apply verifier-based RL that rewards explicit, problem-grounded constraint evidence, encouraging the model to proactively surface domain-relevant validity information such as assumptions, applicability limits, unit discipline, and boundary checks. We evaluate the base model, SciIF-SFT, and SciIF-RL on SciIFand on external benchmarks (Appendix 8).

Table 2: Transfer effects beyond . IFEval (Strict) reports pass rate. MMLU reports accuracy on three STEM subjects and their macro-average.
Model Compliance\(\uparrow\) Correctness\(\uparrow\) IFEval (Strict)\(\uparrow\) MMLU-Bio\(\uparrow\) MMLU-Chem\(\uparrow\) MMLU-Phys\(\uparrow\) MMLU Avg\(\uparrow\)
qwen3-8B (Base) 2.1% 24.3% 80.4% 61.0% 61.0% 68.0% 63.3%
w/ IFEval (SFT) 43.0% (-18.0%) 37.0% (-24.0%) 61.0% (-7.0%) 47.0% (-16.3%)
w/  (SFT) 3.1% (+1.0%) 30.2% (+5.9%) 81.7% (+1.3%) 67.0% (+6.0%) 58.0% (-3.0%) 76.0% (+8.0%) 67.0% (+3.7%)
w/  (SFT+RL) 7.0% (+4.9%) 31.7% (+7.4%) 83.2% (+2.8%)

4.2 Correctness is not Compliance↩︎

Our central finding is a persistent gap between getting the right answer and meeting scientific constraints. Across all evaluated models, answer correctness is substantially higher than strict multi-constraint compliance. Even strong models exceed \(80\%\) correctness, yet overall multi-constraint pass remains below \(30\%\) (best: \(29.6\%\)). This pattern holds across model families, indicating a systematic failure mode: models often reach the correct final result while omitting explicit evidence for one or more constraints that govern validity, meaning, and reproducibility.

Among closed-source models, GPT-5.2 and Grok-4 demonstrate superior performance, excelling in language understanding and computational reasoning respectively. In the open-source category, GLM-4.7 shows particularly strong capabilities across most dimensions.

Figure 3: Comparison of three metrics: answer correctness, single-constraint pass, and multi-constraint overall pass. Single-constraint pass is computed on the 60 items with exactly one enabled constraint. Multi-constraint overall pass is computed on the 274 items with multiple enabled constraints, where an item passes only if all enabled constraints pass.

We furthre visualize this gap in Figure 3. For most models, single-constraint pass is relatively strong, which indicates that many scientific requirements are individually achievable when they are the only thing to remember. The failure appears when constraints must be coordinated: multi-constraint overall pass collapses to a much lower regime even when correctness stays high. This separation shows that the dominant error is not inability to solve the underlying scientific problem, but inability to reliably produce a solution as a reproducible artifact with explicit, problem-grounded scientific discipline. In practice, this means an accuracy-only evaluation can label an output as “solved” even when it omits units, leaves assumptions implicit, fails to state validity limits, or drifts in symbol meaning—issues that can silently break interpretation or downstream reuse.

4.3 Compositional Effects↩︎

Correctness and compliance are related but asymmetric. Compliant answers are typically correct, while correct answers are frequently non-compliant, so accuracy-only evaluation overestimates scientific instruction-following ability. We also observe a consistent compositional collapse: compliance drops sharply as the number of enabled constraints increases from \(k{=}2\) to \(k{=}5\) (Appendix 9.2), revealing a coordination bottleneck in maintaining multiple scientific requirements within one derivation.

4.4 Generalizability↩︎

We test whether training on SciIF data improves performance outside SciIF. Starting from Qwen3-8B, we compare the base model to an SciIF-SFT checkpoint and an SciIF-RL checkpoint. Table 2 shows consistent gains on IFEval (Strict) (Appendix 7.6) and improved performance on MMLU science subjects (Appendix 8.7 Fig. 7), suggesting that constraint-oriented post-training can transfer to broader instruction adherence and scientific QA rather than only improving in-domain compliance (Appendix 6.1).

4.5 Where Models Break↩︎

Constraint-level analysis shows that failures concentrate on global semantic requirements such as Units Standard and Applicability Range, which demand explicit, problem-grounded statements and penalize silent assumptions. Full per-constraint breakdowns are reported in Appendix 9.

4.6 Explicit rubrics reduce judge variance↩︎

Because our evaluation uses LLM-as-a-judge, the judge prompt effectively defines the scoring rule. When constraints are under-specified, different judge models apply different implicit thresholds (e.g., treating \(0.1\) vs.\(0.01\) error as “correct”), leading to non-comparable compliance scores. We therefore make scoring points and decision thresholds explicit in the prompt (Appendix 6.4). This calibration sharply reduces inter-judge discrepancy: before clarification, GPT-5.1 vs.Gemini-3-Flash yields \(68.7\%\) vs.\(88.0\%\); after clarification, \(79.1\%\) vs.\(81.4\%\), reducing the gap from 19.3 to 2.3 points. This motivates treating prompt-level rubric specification as a first-class part of protocol.

4.7 Compositional Collapse: Patterns and Anomalies across Models↩︎

Beyond aggregate scores, the per-\(k\) breakdown reveals a consistent coordination bottleneck. As the number of enabled constraints increases, compliance drops steeply for nearly all models, even when answer correctness remains comparatively stable. Figure 4 visualizes this effect for ten representative models selected to cover typical and atypical curve shapes.

4.7.0.1 A shared baseline shape: smooth exponential-like decay.

Strong closed models such as GPT-5.2 and GPT-5.1 exhibit a similar high-start curve at \(k{=}2\), followed by a near-monotonic decline through \(k{=}5\). This pattern suggests that failures are rarely caused by a single missing skill. Instead, they arise from global constraint scheduling: maintaining unit discipline, symbol meaning, and required validity checks while completing the derivation.

4.7.0.2 Cliff-drop regimes: fragile constraint composition in open models.

Several models enter a “cliff” regime where compliance collapses rapidly once \(k{\ge}3\). For example, Qwen3-235b reaches low but non-zero compliance at \(k{=}2\) and \(k{=}3\), then drops to \(0\%\) for \(k{\ge}4\). This shape indicates that the model can sometimes satisfy isolated constraints, but fails to keep multiple constraints active across a longer solution trajectory.

4.7.0.3 Non-monotonic anomalies: brittleness and measurement effects.

A small set of models exhibit non-monotonic behavior, including partial rebounds at \(k{=}5\), or “zero-then-recovery” patterns. We treat these as diagnostics rather than evidence of improved compositional ability. Two factors can produce such anomalies: (i) small-sample variance at high \(k\) due to fewer items, and (ii) discrete rubric thresholds where a model occasionally “remembers” to add a missing evidence sentence that flips an AND-aggregated decision from FAIL to PASS. These anomalies reinforce a key point: compliance failures are often driven by missing explicit evidence, not necessarily by incorrect scientific reasoning.

Figure 4: Compositional collapse under increasing constraint load: strict compliance rate versus the number of enabled constraints k for ten representative models.

4.8 Takeaway↩︎

SciIFmakes visible a gap that correctness-centric benchmarks systematically miss: scientific correctness and scientific auditability are distinct capabilities. Current models often produce correct results without reliably producing the explicit evidence needed for reproducible scientific reasoning, and this weakness becomes sharper under multi-constraint composition.

5 Conclusion↩︎

We introduce SciIF to evaluate scientific instruction following, addressing the limitations of current benchmarks that overlook the interplay between solution correctness and constraint satisfaction. Through a taxonomy of domain-specific constraints and an auditable evaluation protocol, SciIF distinguishes between rigorous reasoning and lucky guessing. In addition, our protocol emphasizes transparency and reproducibility, enabling consistent comparisons across models and settings. Crucially, we show that the rigor demanded by SciIF generalizes: models fine-tuned on our data exhibit dual improvements, boosting IFEval by 2.8 points and MMLU-Physics by 8.0 points. We will release SciIF to facilitate the development of LLMs that are not only knowledgeable but strictly compliant with the norms of scientific practice.

Limitation↩︎

We acknowledge that our dataset focuses on text-based problems, omitting multimodal scientific tasks (e.g., DNA, RNA sequence generation/understanding). Future work will extend SciIF to multimodal settings and explore iterative, multi-turn scientific agents.

Appendix Contents

AEvaluation Protocol and Prompt Templates
A.1Generate–then–audit protocol
A.2Rule-based verifier with judge fallback
A.3Answer generation prompts
A.4Judge prompts
A.5Decision policies
A.6Strict vs.Loose summary
A.7External consistency check on instruction following
A.8Constraint rubric summary
BBenchmark Details
B.1Source-type composition of the 1244-item pool
B.2Evidence-based rubrics
B.3Optional regeneration and stability filtering
B.4Judge scale alignment
B.5Case study: judge disagreement and prompt calibration
CPost-Training Details
C.1Case study: what verifier-based RL changes on IFEval
C.2Case study: SciIF SFT improves structured reasoning on MMLU
DAdditional Experimental Results and Diagnostics
D.1Models and inference settings
D.2Compositional collapse vs.number of constraints
EAI Assistant Use
FHuman Validation Protocol for Equivalence Between Model and Reference Answers

6 Evaluation Protocol and Prompt Templates↩︎

This appendix provides the information needed to reproduce our evaluation and training signals. We first document the generate–then–audit protocol and the rule-based verifier–judge pipeline, then list the answer-generation prompts, judge prompts, and decision policies used in Strict and Loose modes.

6.1 Generate–then–audit protocol↩︎

6.1.0.1 Two-axis evaluation.

Each model output is evaluated on two axes: answer correctness and constraint compliance. Correctness checks whether the required scientific outcome matches the reference under task-appropriate equivalence criteria. Compliance checks whether the output contains explicit, problem-grounded evidence for each enabled constraint. Judges evaluate evidence presence rather than infer missing checks, assumptions, or definitions.

6.1.0.2 Per-constraint auditing and aggregation.

Each enabled constraint is audited independently and receives PASS/FAIL. For multi-constraint items, item-level compliance is the logical AND across enabled constraints.

6.1.0.3 Dual-judge robustness.

We use two independent judges and apply a two-of-two rule. A constraint passes only if both judges return PASS, reducing sensitivity to single-judge drift and stylistic preference.

6.2 Rule-based verifier with judge fallback↩︎

We prioritize deterministic checks when feasible and fall back to LLM judges when a rule-based check is not applicable or fails to parse the output. Rule-based checks include numerical equivalence under task-defined criteria, expression parsing when needed, unit and dimensional consistency checks when units are stated, and mechanical substitution checks for boundary or limiting cases. When a rule cannot be executed reliably, the decision is delegated to the judge prompts below.

6.3 Answer generation prompts↩︎

A.1 Strict Mode: Answer Generation Prompt You are solving a university-level scientific problem.

PROBLEM (verbatim): [RAW_QUESTION_WITH_CONSTRAINTS]

Enabled constraints: [CONSTRAINT_NAME_LIST]

Required evidence (MUST appear; missing any item => non-compliant): [CONSTRAINT_SPECIFIC_EVIDENCE_POINTS]

Writing rules: - Integrate evidence into the solution narrative with natural transitions. - Do not use checklist-style rubric blocks or fixed labels. - Do not claim compliance with slogans; show explicit, auditable statements and checks. - Do not use markdown tables for definitions; define symbols inline in sentences. - Follow the problem’s stated units and precision requirements.

Answer format: - Short plan - Derivation / reasoning (equations if needed) - Final Answer (clearly stated, with units if applicable)

Answer:

6.4 Judge prompts↩︎

We audit correctness and constraint compliance separately. For compliance, judges evaluate one enabled constraint at a time against explicit evidence points and return a pointwise verdict.

A.3 Strict Mode: Per-Constraint Judge Prompt You are an expert validator for university-level [SUBJECT] problems.

Constraint name: [CONSTRAINT_NAME]

Constraint description: [CONSTRAINT_DESCRIPTION]

Required evidence points (evaluate EACH independently): POINT_1: [POINT_1_DESC] POINT_2: [POINT_2_DESC] ...

Problem: [QUESTION]

Reference answer (if provided): [GOLD_ANSWER]

Model answer: [MODEL_ANSWER]

Decision policy: - Decide whether each point has explicit, problem-grounded evidence in the model answer. - Do NOT infer missing evidence. - If the model claims a check, verify it is correct and consistent with its own work.

Output format (MUST follow exactly): POINT_1: YES or NO [brief reason if NO] POINT_2: YES or NO [brief reason if NO] ... OVERALL: YES or NO OVERALL_REASON: [<=150 chars, list failed points]

A.4 Loose Mode: Per-Constraint Judge Prompt You are an expert validator for university-level [SUBJECT] problems.

Constraint name: [CONSTRAINT_NAME]

Constraint description: [CONSTRAINT_DESCRIPTION]

Required evidence points (evaluate EACH independently): POINT_1 [MAIN]: [POINT_1_DESC] POINT_2 [MAIN]: [POINT_2_DESC] POINT_3 [SECONDARY]: [POINT_3_DESC] ...

Problem: [QUESTION]

Reference answer (if provided): [GOLD_ANSWER]

Model answer: [MODEL_ANSWER]

Decision policy: - Same as STRICT for pointwise evidence, non-inference, and truthfulness checks. - OVERALL is YES only if all MAIN points are YES. SECONDARY points may be NO.

Output format (MUST follow exactly): POINT_1: YES or NO [brief reason if NO] POINT_2: YES or NO [brief reason if NO] POINT_3: YES or NO [brief reason if NO] ... OVERALL: YES or NO OVERALL_REASON: [<=150 chars, list failed MAIN points]

6.5 Decision policies↩︎

6.5.0.1 Strict policy.

A point is YES only when the model output contains explicit evidence that is problem-grounded, correct, and consistent with the model’s own derivation. Missing evidence is NO. Incorrect claimed checks are NO.

6.5.0.2 Loose policy.

Loose mode keeps the same non-inference and truthfulness requirements, but only MAIN points are required for overall PASS. SECONDARY points may fail without failing the constraint.

6.6 Strict vs.Loose summary↩︎

We use two compliance modes to separate missing-evidence failures from substantive violations. Strict is the primary reporting setting and is designed for auditability. Loose is a diagnostic setting used to test whether low scores are driven mainly by omission of write-ups.

7 Benchmark Details↩︎

This section provides additional information about rubric structure, instance construction, and judge calibration.We provide a high-level overview of the ten constraints in Table 4 to clarify what constitutes auditable evidence at a glance.The full point-wise definitions, edge cases, and the Strict/Loose point split are provided in the supplementary rubric specification.

7.1 Source-type composition of the 1244-item pool↩︎

Our full data pool contains 1244 items and is intentionally dominated by textbook-style problems. We use web-derived items as a secondary source to broaden coverage, while keeping QA-style items as a smaller component. Overall, the source-type mixture follows an approximate 7:2:1 ratio: about 70% textbook, about 20% web, and about 10% QA. This design emphasizes academically grounded problem structures while still injecting topical diversity and alternative phrasing patterns.

Table 3: High-level differences between Strict and Loose compliance modes.
Aspect Strict Loose
Overall verdict All points must pass All main points must pass
Missing evidence Always FAIL Always FAIL
Semantic checks Applied broadly Focused on main points
Use case Main leaderboard, auditable scoring Diagnosis of omission vs.violation
Table 4: High-level rubric summary for the ten constraints. Detailed point-wise definitions and decision policies are in Appendix A.3–A.4.
Constraint Family Main evidence required (high level)
Assumptions Condition State at least one key assumption used, explain its impact on the method, and anchor it to a concrete step in this solution.
Boundary Conditions Condition Extract the boundary or hard conditions from the prompt and provide at least one mechanical verification that the derived solution satisfies them.
Applicability Range Condition Name the approximation or model used, state an explicit validity range, and describe a failure mode outside the range with a correct direction or trend.
Units Standard Condition Give units for key variables at first use, keep units consistent, and include a short dimensional or unit self-check tied to the target quantity.
Cross-disciplinary Disambiguation Terminology Identify ambiguous terms, state the intended meaning and a non-intended meaning, and point to where the intended meaning is used in the solution.
Intra-discipline Definitions Terminology Provide a plain definition and a formal criterion, then apply the criterion in one concrete step of the solution.
Symbols & Constants Standardization Terminology Define symbols used in the final result, declare constants with units and source when required, and avoid symbol drift.
Variable Naming Consistency Terminology Maintain one symbol per quantity throughout the solution and prevent semantic drift in symbol meaning and units.
Numerical Methods Process Name the algorithm, provide the update rule using problem symbols, and show at least one instantiated numerical iteration.
Experimental Methods Process Provide an executable procedure tied to problem variables, include auditable anchors, and state how uncertainty affects the target quantity.

7.2 Evidence-based rubrics↩︎

Each enabled constraint is accompanied by evidence points designed to be checkable without reconstruction or guesswork. A constraint passes only if all required points pass. Any missing, vague, or contradictory evidence causes failure. We release the full point-level rubric specification in machine-readable form as supplementary material.

7.3 Optional regeneration and stability filtering↩︎

For a small subset of items, generation can yield good problems but brittle references. When needed, we regenerate reference candidates and retain instances that fall within a target stability window, filtering out instances that are effectively trivial or near-impossible under the same constraints.

7.4 Judge scale alignment↩︎

Two-of-two voting reduces noise but does not guarantee that judges apply identical evidence thresholds. We align judge scales using a held-out calibration set that is never used for reported scores. We compare judge outputs per evidence point, identify recurring disagreement patterns, and refine judge prompts by making those thresholds explicit and executable. After calibration, prompts are fixed for all experiments.

7.5 Case study: judge disagreement and prompt calibration↩︎

We conducted a targeted case study to quantify and reduce judge arbitrariness. We sampled 50 instances and re-audited the same model outputs with two judge models, then compared pointwise PASS/FAIL decisions under the same rubric. We observed non-trivial disagreement: 19 out of 50 instances had at least one constraint-level mismatch, with 20 constraint-level mismatches in total. Disagreements concentrated on globally semantic constraints such as Symbols & Constants Standardization and Intra-discipline Definitions, where the effective threshold for “explicit evidence” differed across judges. These findings motivated prompt calibration that removes packaging-dependent expectations and rewrites evidence points into problem-grounded, executable checks, leaving minimal room for stylistic interpretation.

Figure 5: Judge disagreement by constraint type on a 50-item audit set. Bars count constraint-level mismatches between two judges, split by which judge is stricter. Across the 50 items, we observe 20 constraint-level mismatches spanning 19 items, with disagreements concentrated in Symbols & Constants and Intra-discipline Definitions.
Figure 6: A concrete pre-calibration disagreement case.The same model output is accepted by one judge and rejected by the other due to different implicit thresholds for symbol explicitness.Prompt and rubric calibration rewrites evidence points into packaging-neutral, executable requirements to reduce judge-specific interpretation space.

7.6 External consistency check on instruction following↩︎

As an external sanity check, we evaluated Qwen3-8B and its post-trained variants on IFEval under Strict and Loose settings. Verifier-guided reinforcement learning improves instruction following beyond supervised fine-tuning alone, with the RL variant achieving higher Strict performance than both the base and SFT variants. This supports the interpretation that constraint-oriented post-training strengthens general instruction discipline rather than only improving in-domain compliance on SciIF.

7.7 Constraint rubric summary↩︎

We define ten atomic constraints grouped into three families. Table 4 summarizes the main evidence requirements at a high level.

8 Post-Training Details↩︎

This section documents the SFT and verifier-based RL objectives, reward construction, and implementation notes.

8.1 SFT objective↩︎

We train a LoRA adapter on top of Qwen3-8B with the standard next-token likelihood objective: \[\mathcal{L}_{\mathrm{SFT}}(\theta) \;=\; - \sum_{t} \log \pi_\theta\!\big(y_t^\ast \mid q, y_{<t}^\ast\big), \label{eq:sft95objective95app}\tag{1}\] where \(y^\ast\) is the reference solution.

8.2 RL objective↩︎

We optimize a KL-regularized RL objective: \[\begin{align} J(\pi_\theta) &= \mathbb{E}_{(q,r)\sim \mathcal{D}} \Big[ \mathbb{E}_{o \sim \pi_\theta(\cdot \mid q)} \big[ R(q,o,r) \big] \\ &\qquad - \beta\, D_{\mathrm{KL}}\!\big(\pi_\theta(\cdot \mid q)\,\|\,\pi_{\mathrm{ref}}(\cdot \mid q)\big) \Big] \end{align} \label{eq:rl95objective95app}\tag{2}\]

where \(\pi_{\mathrm{ref}}\) is initialized from the SFT checkpoint and \(\beta\) controls deviation from the reference.

8.3 Constraint verifier↩︎

The verifier evaluates a response against the enabled constraints: \[V:(q,o,r)\mapsto \mathbf{v}\in\{0,1\}^d,\] where \(v_i=1\) iff the output provides the required evidence to satisfy constraint \(r_i\).

8.4 Reward construction with grouped severity↩︎

Let \(s_i\in\{0,1\}\) denote PASS/FAIL for constraint \(r_i\) from the verifier. We partition constraints into groups \(g\in\mathcal{G}\), assign within-group weights \(w_i\), and between-group weights \(W_g\).

For a group \(g\), the normalized group score is: \[R_g \;=\; \frac{\sum_{i\in g} w_i\, s_i}{\sum_{i\in g} w_i}.\] We combine group scores into an overall constraint-compliance score: \[R_{\mathrm{c}}(q,o,r) \;=\; \frac{\sum_{g\in\mathcal{G}} W_g\, R_g}{\sum_{g\in\mathcal{G}} W_g}.\] We add a binary answer-correctness signal \(R_{\mathrm{a}}(q,o)\) and compute the final scalar reward: \[R(q,o,r) \;=\; 0.7\,R_{\mathrm{c}}(q,o,r) \;+\; 0.3\,R_{\mathrm{a}}(q,o). \label{eq:final95reward95app}\tag{3}\]

8.5 Implementation notes and selected results↩︎

We perform PPO-style optimization with KL regularization to the SFT reference policy. On our evaluation, RL increases the single-constraint pass rate from \(5.0\%\) to \(11.7\%\) and answer correctness from \(24.3\%\) to \(25.7\%\). Among individual constraints, symbol and constant conventions improve from \(5.9\%\) to \(24.5\%\).

8.6 Case study: what verifier-based RL changes on IFEval↩︎

To understand what our verifier-based RL stage changes beyond in-domain compliance on SciIF, we run an external consistency check on IFEval under the Strict setting. We compare Qwen3-8B in a zero-shot setting against Qwen3-8B-RL. The RL variant improves Strict accuracy from 80.41% (435/541) to 83.18% (450/541), a gain of 2.77 points corresponding to 15 additional passing instances. To characterize the behavioral shift, we focus on the 48 cases where RL passes while zero-shot fails.

8.6.0.1 Where the gains concentrate.

The RL gains are not uniformly distributed across instruction types. They cluster in constraints that penalize extra “helpful” text and require precise surface-form control. The most frequent improved categories are sentence and word length constraints, case transformation constraints, forbidden keyword constraints, letter-frequency constraints, and punctuation bans. This pattern indicates that RL primarily reduces a consistent failure mode of general chat-style models: they often prefer conversational packaging and elaboration over strict compliance when the instruction demands a tight output envelope.

8.6.0.2 Behavioral shift: from conversational packaging to executable compliance.

Across improved cases, we observe three recurring corrections. First, the RL model reduces preambles and meta-commentary that violate strict formatting requirements. Second, it exhibits tighter control of quantitative length constraints, often showing implicit self-monitoring behavior such as stopping early and compressing content while preserving task intent. Third, it better coordinates multiple constraints simultaneously, avoiding partial satisfaction where one constraint is met but another is silently violated.

8.6.0.3 Representative examples.

We present three representative Strict-mode examples that illustrate the dominant error patterns. In all examples, the task content is easy for both models. The failures arise from instruction-following discipline rather than missing knowledge.

Instruction. “Make an advertisement for a new diaper product. The entire output must be JSON format.”

Zero-shot failure. The model adds an explanatory preamble and wraps the JSON in a Markdown code block. This violates the requirement that the entire output be valid JSON.

RL success. The model outputs raw JSON directly with no surrounding text.

Takeaway. RL suppresses the “helpful assistant” habit of adding extra text that breaks a strict output envelope.

Instruction. “Write a short blog post about a trip to Japan using less than 300 words.”

Zero-shot failure. The model produces a coherent post but exceeds the word limit substantially. The failure is not semantic but quantitative. It reflects weak internal length control during generation.

RL success. The RL model stays under the limit and preserves narrative coherence. In several improved instances, the RL model also shows self-verification behavior, such as ending early and compressing details while keeping the post well-formed.

Takeaway. RL improves quantitative constraint control without requiring external tools, suggesting the policy learns to budget output length as part of instruction-following.

Instruction. “Write a tweet without using capital letters. Include at least four hashtags starting with #.”

Zero-shot failure. The model satisfies the lowercase constraint but adds extra explanatory text and quotation-style packaging. It also risks failing the implied “tweet-only” output expectation in strict instruction-following evaluation.

RL success. The model outputs a tweet-like text directly, meets the lowercase constraint, and includes four or more hashtags.

Takeaway. RL improves coordination across multiple simultaneous constraints and reduces “partial compliance” where one constraint is met but the output format drifts into meta-commentary.

8.6.0.4 Implication for our training objective.

These results support an interpretation consistent with our SciIFfindings. Verifier-based RL strengthens a general notion of instruction discipline, especially in constraints that demand explicit surface-form control. This aligns with our benchmark design, where compliance is judged from written evidence. The IFEval case study suggests that the same training signal that improves auditable scientific constraint satisfaction also reduces format and length violations in a different instruction-following domain.

8.7 Case study: SciIF SFT improves structured reasoning on MMLU↩︎

We include a concrete MMLU-style example to illustrate a qualitative change we repeatedly observe after SciIF SFT 7: the model becomes more stable during solution writing and more reliable at making the final discrete decision that the task demands. In this item, all variants know the correct physics formula, yet they differ sharply in execution discipline. The SciIF SFT variant keeps exponent arithmetic explicit, performs a quick order-of-magnitude sanity check, and maps the estimate to the closest option without drifting into irrelevant text or misreading the scale.

None

Figure 7: A representative MMLU-style item where SciIF SFT improves both solution stability and the final multiple-choice decision. All variants know the correct formula, but they differ in execution discipline: the SciIF SFT variant makes order-of-magnitude reasoning explicit and selects the closest option correctly, while the IFEval variant mis-maps the scale and the baseline exhibits generation drift..

9 Additional Experimental Results and Diagnostics↩︎

This section reports extended tables and diagnostic analyses that complement the main paper.

Table 5: Multi-constraint compliance rate (%) as a function of the number of enabled constraints \(k\). Compliance drops rapidly as \(k\) increases, showing a compositional collapse effect: models that perform well on few constraints often fail to coordinate multiple scientific requirements simultaneously.
Model \(k=2\) \(k=3\) \(k=4\) \(k=5\)
GPT-5.2 55.2% 29.9% 14.6% 5.9%
GPT-5.1 52.8% 27.1% 13.5% 5.2%
Gemini-3 49.3% 23.4% 11.7% 4.3%
Qwen3-Max 44.7% 21.5% 10.1% 3.7%
Grok-4 43.8% 22.2% 9.4% 3.1%
Claude-4.5Sonnet 38.5% 18.7% 8.2% 2.9%
GPT-o3 35.1% 15.9% 7.5% 2.5%
Deepseek-v3.2 33.6% 14.1% 6.8% 2.7%
Minimax-M2 31.7% 13.3% 6.2% 2.0%
Kimi-K2 27.6% 12.7% 4.2% 0.0%
GLM-4.7 27.6% 11.9% 2.1% 5.9%
GPT-o4mini 20.7% 5.2% 0.0% 2.9%
Qwen3-80b 17.2% 4.5% 0.0% 0.0%
Qwen3-235b 13.8% 3.7% 0.0% 0.0%
GPT-4o 3.3% 1.2% 0.0% 0.0%
Qwen3-8b 0.0% 0.0% 0.0% 0.0%

9.1 Models and inference settings↩︎

We evaluate: GPT-5.2, GPT-5.1, Gemini-3, Grok-4, Qwen3-max, GPT-o3, GPT-o4mini, Claude-4.5sonnet, Deepseek-v3.2, Minimax-M2, and GPT-4o. All models use identical inference settings: temperature \(=0\), max tokens \(=4096\), no tools or web.

9.2 Compositional collapse vs.number of constraints↩︎

Compliance drops sharply as the number of enabled constraints increases. We report the per-\(k\) breakdown in Table 5.

10 AI Assistant Use↩︎

We used GPT and Gemini for code refactoring/optimization and for polishing the manuscript’s language and formatting. All changes were reviewed by the authors, who take full responsibility for the final content and results.

11 Human Validation Protocol for Equivalence Between Model and Reference Answers↩︎

This appendix explains, for human readers, how we manually assess whether a model’s answer is equivalent to the reference (gold) answer. The process targets university-level problems and focuses on the equivalence of numerical results, key conclusions, and core reasoning, while keeping style or compliance issues out of scope.

1. What We Check↩︎

  • Numerical agreement: When a numerical result is required, we verify that the final numbers match the reference. To ensure comparability, all reported numbers use exactly four significant figures; if the reference specifies a range or tolerance, we adhere to that.

  • Conclusion agreement: Categorical outcomes (true/false, multiple-choice selection, sign/direction, inequality relations) must match the reference. If the reference states “undetermined” or “requires more information,” any definite conclusion in the model answer is considered non-equivalent.

  • Conceptual and reasoning equivalence: Different wording is acceptable, but the core method or theorem employed should be equivalent (e.g., the same physical law or the same convergence criterion). Alternative methods are acceptable if they are logically equivalent for this problem and properly justified.

2. What We Do Not Penalize↩︎

  • Minor formatting or wording differences, different paragraphing, or non-essential elaborations that do not affect the substance of the answer.

3. Step-by-Step Procedure↩︎

  1. Preparation: Review the problem and the reference answer; extract key data, conditions, and the final conclusion.

  2. Evidence tagging: Read the model answer and highlight explicit, problem-specific evidence (data, formulas, method statements), ensuring it ties to the symbols/conditions of this problem.

  3. Numerical check: Compare all numerical conclusions item by item, reporting numbers with exactly four significant figures and verifying units and sign/direction where applicable.

  4. Conclusion check: Verify that selections, truth values, and relational/directional statements match the reference; if the reference is “indeterminate,” ensure the model maintains the same stance.

  5. Reasoning check: Confirm that the core concepts and methods align with the reference. If a different method is used, verify that it is logically equivalent and correct for this problem.

  6. Final decision: If numerical results, key conclusions, and core reasoning align, we mark the answers as equivalent. Otherwise, we record the discrepancy with a brief reason (e.g., “different final value,” “method not equivalent,” “definite conclusion given where reference is indeterminate”).

4. Boundaries and Notes↩︎

  • This process does not evaluate formatting templates, submission style, or other compliance requirements (handled separately).

  • When the reference specifies units or measurement conventions, we follow them; if not specified, we use the conventions implied by the problem statement.

  • For readability, we integrate evidence within a natural narrative rather than relying on checklists.

Using this protocol, we provide transparent, reproducible, and academically rigorous judgments of equivalence between model answers and the reference solutions.

References↩︎

[1]
M. Hu et al., “A survey of scientific large language models: From data foundations to agent frontiers,” arXiv preprint arXiv:2508.21148, 2025.
[2]
L. Mitchener et al., “Kosmos: An ai scientist for autonomous discovery,” arXiv preprint arXiv:2511.02824, 2025.
[3]
H. Wu et al., “BigBang-proton technical report: Next-word-prediction is scientific multitask learner,” arXiv preprint arXiv:2510.00129, 2025.
[4]
Y. Wang et al., “SciReasoner: Laying the scientific reasoning ground across disciplines,” arXiv preprint arXiv:2509.21320, 2025.
[5]
J. Zhou et al., “Instruction-following evaluation for large language models,” arXiv preprint arXiv:2311.07911, 2023, [Online]. Available: https://arxiv.org/abs/2311.07911.
[6]
Y. Jiang et al., “Followbench: A multi-level fine-grained constraints following benchmark for large language models,” in Proceedings of the 62nd annual meeting of the association for computational linguistics (volume 1: Long papers), 2024, pp. 4667–4688.
[7]
T. Zhang et al., “Cfbench: A comprehensive constraints-following benchmark for llms,” in Proceedings of the 63rd annual meeting of the association for computational linguistics (volume 1: Long papers), 2025, pp. 32926–32944.
[8]
Y. Qin et al., “Infobench: Evaluating instruction following ability in large language models,” arXiv preprint arXiv:2401.03601, 2024.
[9]
D. Hendrycks et al., “Measuring massive multitask language understanding,” in International conference on learning representations, 2021, [Online]. Available: https://openreview.net/forum?id=d7KBjmI3GmQ.
[10]
X. Wang et al., “Scibench: Evaluating college-level scientific problem-solving abilities of large language models,” arXiv preprint arXiv:2307.10635, 2023.
[11]
J. Wei et al., “Emergent abilities of large language models,” arXiv preprint, 2022.
[12]
M. Ribeiro et al., “Beyond accuracy: Behavioral testing of NLP models,” in ACL, 2020.
[13]
B. Lake and M. Baroni, “Generalization without systematicity: On the compositional skills of sequence-to-sequence recurrent networks,” in International conference on machine learning, 2018, pp. 2873–2882.
[14]
L. Wang et al., “PhysUniBench: An undergraduate-level physics reasoning benchmark for multimodal models.” 2025, [Online]. Available: https://arxiv.org/abs/2506.17667.
[15]
M. Suzgun et al., “Challenging BIG-bench tasks and whether chain-of-thought can solve them,” arXiv preprint arXiv:2210.09261, 2022, [Online]. Available: https://arxiv.org/abs/2210.09261.
[16]
Y. Wang et al., “SciEvalKit: An open-source evaluation toolkit for scientific general intelligence.” 2026, [Online]. Available: https://arxiv.org/abs/2512.22334.
[17]
S. Mishra, D. Khashabi, C. Baral, and H. Hajishirzi, “Cross-task generalization via natural language crowdsourcing instructions,” in Proceedings of the 60th annual meeting of the association for computational linguistics (volume 1: Long papers), 2022, pp. 3470–3487, doi: 10.18653/v1/2022.acl-long.244.
[18]
V. Sanh et al., “Multitask prompted training enables zero-shot task generalization,” in International conference on learning representations, 2022, [Online]. Available: https://openreview.net/forum?id=9Vrb9D0WI4.
[19]
J. Wei, M. Bosma, et al., “Finetuned language models are zero-shot learners,” in International conference on learning representations, 2022, [Online]. Available: https://openreview.net/forum?id=gEZrGCozdqR.
[20]
H. W. Chung et al., “Scaling instruction-finetuned language models,” arXiv preprint arXiv:2210.11416, 2022, [Online]. Available: https://arxiv.org/abs/2210.11416.
[21]
Y. Wang et al., “Self-instruct: Aligning language models with self-generated instructions,” in Proceedings of the 61st annual meeting of the association for computational linguistics (volume 1: Long papers), 2023, pp. 13484–13508, doi: 10.18653/v1/2023.acl-long.754.
[22]
L. Ouyang et al., “Training language models to follow instructions with human feedback,” in Advances in neural information processing systems, 2022, [Online]. Available: https://arxiv.org/abs/2203.02155.
[23]
Y. Bai et al., “Training a helpful and harmless assistant with reinforcement learning from human feedback,” arXiv preprint arXiv:2204.05862, 2022, [Online]. Available: https://arxiv.org/abs/2204.05862.
[24]
Y. Bai et al., “Constitutional AI: Harmlessness from AI feedback,” arXiv preprint arXiv:2212.08073, 2022, [Online]. Available: https://arxiv.org/abs/2212.08073.
[25]
Y. Dubois et al., “AlpacaFarm: A simulation framework for methods that learn from human feedback,” arXiv preprint arXiv:2305.14387, 2023, [Online]. Available: https://arxiv.org/abs/2305.14387.
[26]
tatsu-lab, Accessed 2025-12-22“AlpacaEval: An automatic evaluator of instruction-following language models.” https://github.com/tatsu-lab/alpaca_eval, 2023.
[27]
L. Zheng et al., “Judging LLM-as-a-judge with MT-bench and chatbot arena,” arXiv preprint arXiv:2306.05685, 2023, [Online]. Available: https://arxiv.org/abs/2306.05685.
[28]
The Vicuna Team, Accessed 2025-12-22“Vicuna: An open-source chatbot impressing GPT-4 with 90% ChatGPT quality.” https://lmsys.org/articles/vicuna-an-open-source-chatbot-impressing-gpt-4-with-90-chatgpt-quality, 2023.
[29]
OpenAI, “Introducing GPT-5.2.” https://openai.com/index/introducing-gpt-5-2/, Dec. 2025.
[30]
OpenAI, GPT-5.1: A smarter, more conversational ChatGPT.” https://openai.com/index/gpt-5-1/, Nov. 2025.
[31]
OpenAI, “Hello GPT-4o.” https://openai.com/index/hello-gpt-4o/, May 2024.
[32]
OpenAI, Published 2025-04-16. Accessed 2026-01-06“Introducing OpenAI o3 and o4-mini.” https://openai.com/index/introducing-o3-and-o4-mini/, Apr. 2025.
[33]
OpenAI, GPT-4o mini: Advancing cost-efficient intelligence.” https://openai.com/, Jul. 2024.
[34]
Google, “A new era of intelligence with Gemini 3.” https://blog.google/products/gemini/gemini-3/, Nov. 2025.
[35]
xAI, “Grok 4.” https://x.ai/news/grok-4, Jul. 2025.
[36]
Anthropic, Official product page“Claude sonnet 4.5.” https://www.anthropic.com/claude/sonnet, 2025, Accessed: Jan. 06, 2026. [Online].
[37]
Qwen, Official Qwen blog post“Qwen3-max — our largest and most capable model to date.” https://qwen.ai/blog?id=qwen3-max, 2025, Accessed: Jan. 06, 2026. [Online].
[38]
MiniMax, “MiniMax M2.1: Significantly enhanced multi-language programming, built for real-world complex tasks.” https://www.minimax.io/news/minimax-m21, 2025, Accessed: Jan. 06, 2026. [Online].
[39]
Moonshot-AI, “Kimi K2: Open agentic intelligence,” arXiv preprint arXiv:2507.20534, 2025, Accessed: Jan. 06, 2026. [Online]. Available: https://arxiv.org/abs/2507.20534.
[40]
Z.AI, GLM-4.7 — overview. Z.AI; https://docs.z.ai/guides/llm/glm-4.7, 2025.
[41]
Qwen, “Qwen3 technical report,” arXiv preprint arXiv:2505.09388, 2025, [Online]. Available: https://arxiv.org/abs/2505.09388.
[42]
Deepseek, “DeepSeek-V3.2: Model overview and capabilities,” arXiv preprint arXiv:2512.02556. 2025, [Online]. Available: https://arxiv.org/abs/2512.02556.