REVIEW 5 major objections 5 minor 1 cited by
Concise Reasoning, Big Gains: Pruning Long Reasoning Trace with Difficulty-Aware Prompting
T0 review · 5 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Concise, difficulty-matched reasoning traces train better student models than eight times more verbose data.
desk verdict Useful dataset and a fair 25K-vs-25K comparison, but the paper's central claim about pruning is confounded with rewriting; the practical pipeline works, the mechanism is unproven. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the difficulty-aware prompt template, a three-tier instruction set that makes the teacher both grade the problem and compress its own solution to match the grade. The easy tier requests a direct solution and summary, the medium tier requests an initial approach, reflection, and improvement, and the hard tier requests subproblem decomposition, integration, and overall reflection. This single prompt performs the entire data curation without training an auxiliary compression model, and the resulting LiteCoT dataset is what is used for supervised fine-tuning of the Liter models.
What would settle it
Take a random sample of LiteCoT items and run the teacher on the original long trace and on the rewritten short trace with identical decoding settings, comparing final answers: if a nontrivial share of rewrites change the answer or omit a required step, the claim that pruning is lossless fails. A second check is to train only on problems the teacher labeled easy and medium and test on held-out hard problems; if AIME-level accuracy collapses, then the difficulty labels, not the shorter length, are doing the work.
Extended reading notes
Core claim
The central discovery is that pruning reasoning traces by difficulty, rather than leaving them uniformly long, makes the student better, not worse. In the DAP pipeline, the teacher receives each question together with its long trace, judges the difficulty, and rewrites the trace according to a three-level template: direct solution for simple problems, analysis-initial approach-reflection-improvement for medium ones, and decomposition into subproblems with integration and reflection for hard ones. Trained on 100K such rewrites, the Liter models outperform the same base models distilled on 800K original long traces, with the gains appearing consistently across model sizes from 1.5B to 32B. The paper concludes that uniform-length verbose traces teach overthinking, while concise difficulty-adaptive traces teach students to match reasoning effort to the problem.
Load-bearing premise
The whole method rests on the teacher's difficulty labels and shortened rewrites being faithful: if a hard problem is mislabeled easy, or the rewrite drops a necessary calculation, the student learns incomplete reasoning and the reported gains would not survive on harder or out-of-distribution problems.
Editorial extensions
If this is right
- A student trained on 100K LiteCoT samples, averaging 720 tokens per solution, outperforms the same base model trained on 800K original long traces on 11 benchmarks.
- Inference cost drops sharply: the 32B Liter reaches 74.2% Pass@1 on AIME24 with roughly 5K inference tokens per problem, fewer than comparable methods consume for lower accuracy.
- The difficulty-adaptive trace style transfers across model scales from 1.5B to 32B and to a different base architecture (Llama3.1-8B), so the benefit is not tied to one model family.
- Against other CoT compression approaches, such as Chain-of-Draft, LLMLingua-2, and budget-aware reasoning, the DAP-trained model keeps or improves accuracy while using less inference time on most tested benchmarks.
- Verbose uniform traces are not merely costly; models trained on them are consistently less accurate than models trained on shorter, difficulty-matched traces.
Reading between the lines
- Beyond the paper: if short traces train better students than long ones, then much of the verbosity in teacher traces is not harmless padding but a form of noise that imitation learning picks up; pruning is then data denoising, not just compression.
- Beyond the paper: the same teacher-driven difficulty rewrite should be testable on verifiable domains such as code generation or planning, where the optimal trace length per difficulty can be measured directly by pass rates.
- Beyond the paper: because the teacher supplies both the difficulty label and the rewrite, the pipeline would be stronger with an independent difficulty signal such as contest ratings or an external solver's step count, to check whether label errors cap the gains.
- Beyond the paper: the paper reports downstream accuracy but not whether each rewritten trace preserves the original final answer; a programmatic answer check on the LiteCoT subset would separate the effect of pruning from the effect of rewriting errors.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Difficulty-Aware Prompting (DAP), a pipeline in which a teacher model (DeepSeek-R1) assigns each problem a difficulty label and rewrites the original long chain-of-thought trace into a shorter, difficulty-adapted solution. The resulting dataset, LiteCoT (100K examples, averaging 720 tokens per solution), is used to fine-tune Qwen2.5-based student models (Liter 1.5B/7B/14B/32B). The authors report three experiments: (Exp-1) short vs. long CoT fine-tuning on the same 25K OpenThoughts questions; (Exp-2) comparison of Liter models with DeepSeek-R1-distilled and other mainstream reasoning models; (Exp-3) comparison with Chain-of-Draft, LLMLingua-2, and Budget-Aware reasoning. The central claim is that difficulty-pruned concise CoT traces are a drop-in replacement for verbose traces, yielding equal or better accuracy with an order-of-magnitude reduction in tokens and cost.
Significance. If the central claim were fully established, the paper would be a valuable contribution: it provides a simple prompt-based method to generate compact, difficulty-adaptive distillation data, and it releases code and the LiteCoT dataset. The detailed training configs in the appendix support reproducibility, and the evaluation across 11 benchmarks is broad. However, the evidence as presented supports the weaker claim that DAP-processed short traces train competitive student models; it does not isolate the contribution of trace-length pruning from the contribution of the teacher rewrite itself. The reader's and skeptic's concerns about confounded comparisons are well grounded. Given that the core method is an empirical data-curation pipeline, the missing control conditions are fixable within the paper's scope, which in my view calls for major revision rather than rejection.
major comments (5)
- [§3.1, Eqs. (2)-(3); Table 2] The DAP transform is defined as a full regeneration of the trace under a difficulty-specific template, not as a length-respecting edit. Consequently, Exp-1's short-vs-long comparison varies at least three factors at once: token count, structured section formatting (Analysis/Approach/Summary, etc.), and content changes introduced by the DeepSeek-R1 rewrite. The paper's central claim that 'pruning' the trace yields the gains is therefore not supported: no condition holds rewriting constant while varying length, and no condition holds length constant while varying difficulty-awareness. I request two control conditions: (i) a generic 'be concise' rewrite of the same Long CoT at matched token budget, and (ii) a difficulty-aware rewrite that preserves the original length. Without these, the gains in Table 2 cannot be attributed to pruning rather than to the teacher rewrite or template formatting.
- [§4.2.2, Table 3] The headline comparison of 100K LiteCoT with 800K DeepSeek-R1-Distilled models is confounded by data source and question set: LiteCoT is derived from 100K OpenThoughts samples, whereas DS-R1-Distilled models were trained on DeepSeek-R1's 800K outputs from a different question distribution. The abstract's statement that the student 'outperforms a model distilled on 800K original Long CoT samples' is a product-level comparison, not a controlled test of DAP. I ask the authors to add a baseline trained on the same 100K OpenThoughts raw Long CoT with the same training recipe and hyperparameters, and to clearly frame the 800K comparison as an external benchmark rather than as evidence for the pruning effect.
- [§4.2.3, Table 4] Exp-3 compares DAP-trained models with inference-time compression methods (Chain-of-Draft, LLMLingua-2, Budget-Aware) applied to a Vanilla model that has not been trained on any distilled traces. These are not alternative training-data-generation pipelines, so the comparison does not control for the teacher-rewrite confound identified above. To support the claim that DAP is a superior data-curation method, the authors should compare against other training-data pipelines, such as DLCoT or Long-Short CoT mixture SFT (references 20 and 27), using the same base model and the same training budget.
- [Tables 2-3, §4.2] No error bars, multiple seeds, or significance tests are reported, and several headline differences are within sampling noise on small benchmarks. In particular, AIME24 has only 30 problems: Table 3's Liter-32B vs. DS-R1-Distilled-32B AIME24 scores (76.7 vs. 72.6) are 23/30 vs. 22/30, and several Table 2 AIME24 differences (e.g., 3.3 vs. 0.0) are single-problem differences. The paper's claim of 'consistent' gains is stronger than the evidence supports; I request standard errors or per-seed results, and a discussion of which differences exceed noise.
- [§3.1 Step 2; Abstract] The paper asserts that the rewritten traces are 'concise yet complete reasoning traces,' but it does not validate the correctness or completeness of the rewritten solutions, nor does it report the distribution of difficulty labels produced by the teacher. If the teacher mislabels hard problems as easy, or if the rewrite omits a necessary calculation, the student will be trained on incomplete reasoning; downstream accuracy is only an indirect check. I ask the authors to report the difficulty-label statistics and to include a sample-level correctness audit (e.g., LLM-as-judge or automated verification on a subset) to support the completeness claim.
minor comments (5)
- [§4.1, Table 2] The base-model list in §4.1 does not include Qwen2.5-3B, but Table 2 and Figure 4 report results for 'QW-3B'. Please add the missing model to the setup or explain where it comes from.
- [Figure 5, §4.2.2; Table 3] There are internal inconsistencies in reported numbers: the text says Liter-7B reaches 60.6% on Math500, while Table 3 lists 93.8%; Figure 5 shows DeepSeek-R1-Distilled-32B at 48.0% on AIME24, while Table 3 reports 72.6%. These discrepancies need to be reconciled; otherwise the reader cannot trust which numbers are official and which are retested.
- [Table 2] The entry '1.61' in the College Math row for LM-8B under 'long' appears to be a typo (likely 16.1 or similar). Please check all numeric entries in Table 2 and Figure 5 for consistency.
- [References] Reference [33] (Choquette-Choo et al.) appears to be a differentially-private learning paper, not an OlympiadBench resource; please update the citation for the OlympiadBench dataset.
- [Author affiliation] The author affiliation 'Indepent Researcher' should read 'Independent Researcher.'
Circularity Check
No significant circularity: the DAP pipeline is an empirical data-curation method whose claims are tested on external benchmarks against independently trained baselines.
full rationale
The paper's central claim is that a student model trained on 100K difficulty-pruned short CoT traces (LiteCoT) outperforms a model trained on 800K original long CoT traces. This is an empirical comparison, not a derivation, and none of the benchmark numbers are constructed from the method's inputs. The difficulty labels in Eq. (1) are produced by the teacher model, but they are not fitted to the reported evaluation results; the evaluation is performed on external benchmarks (AIME24, MATH500, GPQA, etc.) using separate test-time inference. The short CoT rewrites in Eqs. (2)-(3) take the long CoT as input, but the output is a new teacher-generated trace under a difficulty-specific prompt; there is no equation that equates the claimed accuracy gain to the rewriting by construction. The most plausible circularity concern is that the same teacher model (DeepSeek-R1) generated the original long traces and also rewrote them, but this does not force the student-model outcomes: Exp-1 directly compares models trained on the original 25K long traces against models trained on the corresponding 25K DAP short traces from the same OpenThoughts samples, and the student accuracies are measured externally. The paper's self-citations ([16], [17], [18]) appear only in the related-work discussion and are not load-bearing for the main empirical result. The experimentally uncontrolled confound between length reduction, structured formatting, and teacher content rewriting is a real experimental-design criticism, but it is a correctness/validity concern rather than circularity: the paper does not define its prediction in terms of its inputs, nor does it fit a parameter and then rename it as a prediction. Under the stated rules, no circular step can be exhibited with a quoted equation that reduces to itself, so the appropriate finding is no significant circularity.
Assumptions & free parameters
free parameters (4)
- Number of difficulty levels =
3 (easy, medium, hard)
- Dataset size =
100K
- Fine-tuning epochs =
3
- Learning rate =
5e-5
assumptions (4)
- domain assumption DeepSeek-R1's difficulty assessment is accurate enough for length-adaptive rewriting.
- domain assumption Rewritten concise CoT traces preserve the essential reasoning and are free of errors.
- domain assumption The 100K OpenThoughts samples are representative of the evaluation benchmarks.
- domain assumption Supervised fine-tuning on teacher CoT traces transfers reasoning ability.
Cite this review
Pith. "Pith review of Concise Reasoning, Big Gains: Pruning Long Reasoning Trace with Difficulty-Aware Prompting." pith.science (2026). https://pith.science/paper/XQMSJNDT
@misc{pith2026250519716,
author = {Pith},
title = {Pith review of: Concise Reasoning, Big Gains: Pruning Long Reasoning Trace with Difficulty-Aware Prompting},
year = {2026},
howpublished = {\url{https://pith.science/paper/XQMSJNDT}},
note = {Machine review of arXiv:2505.19716}
}
abstract
Existing chain-of-thought (CoT) distillation methods can effectively transfer reasoning abilities to base models but suffer from two major limitations: excessive verbosity of reasoning traces and inadequate adaptability to problem difficulty. Long reasoning traces significantly increase inference costs, and uniform-length solutions prevent base models from learning adaptive reasoning strategies. To address these issues, we propose a difficulty-aware prompting (DAP) method to dynamically shorten reasoning traces without performance loss. In our approach, a large teacher model first judges each problem's difficulty and then rewrites its reasoning traces to an appropriate shorter length, yielding concise yet complete reasoning traces. Leveraging the DAP pipeline, we curate a distilled dataset called LiteCoT consisting of 100K concise reasoning examples, with solutions averaging only 720 tokens (an order of magnitude shorter than typical CoTs). Using LiteCoT, we distilled a new family of reasoning models called Liter (1.5B, 7B, and 32B) based on the Qwen2.5 architecture. Experiments show that a student model fine-tuned on just 100K of these difficulty-pruned CoT samples outperforms a model distilled on 800K original Long CoT samples, while significantly reducing training and inference costs. Our method also generalizes well: across 11 diverse benchmarks, the shorter difficulty-aware CoTs achieve equal or better accuracy than Long chains, using far fewer tokens. For example, on the challenging AIME24 exam, our approach reaches $74.2\%$ Pass@1 using only about 5K inference tokens, surpassing other methods that consume many more tokens. Our code and data are available at https://github.com/Evanwu1125/LiteCoT.
Figures
Figures from the paper (4 more)
Forward citations
Cited by 1 Pith paper
-
Towards Concise and Adaptive Thinking in Large Reasoning Models: A Survey
A comprehensive review that categorizes methods for shortening and adaptively triggering chain-of-thought reasoning in large language models.
Reference graph
Works this paper leans on
-
[1]
Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning,
D. Guo, D. Yang, H. Zhang, J. Song, R. Zhang, R. Xu, Q. Zhu, S. Ma, P. Wang, X. Biet al., “Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning,” arXiv preprint arXiv:2501.12948, 2025
arXiv 2025
-
[2]
OpenAI, “Introducing openai o1,” 2025. [Online]. Available: https://openai.com/o1/
work page 2025
-
[3]
Limo: Less is more for reasoning,
Y . Ye, Z. Huang, Y . Xiao, E. Chern, S. Xia, and P. Liu, “Limo: Less is more for reasoning,”arXiv preprint arXiv:2502.03387, 2025
arXiv 2025
-
[4]
Large language models are reasoning teachers,
N. Ho, L. Schmid, and S.-Y . Yun, “Large language models are reasoning teachers,” arXiv preprint arXiv:2212.10071, 2022
arXiv 2022
-
[5]
B. Liu, X. Li, J. Zhang, J. Wang, T. He, S. Hong, H. Liu, S. Zhang, K. Song, K. Zhu et al., “Advances and challenges in foundation agents: From brain-inspired intelligence to evolutionary, collaborative, and safe systems,” arXiv preprint arXiv:2504.01990, 2025
arXiv 2025
-
[6]
N. Muennighoff, Z. Yang, W. Shi, X. L. Li, L. Fei-Fei, H. Hajishirzi, L. Zettlemoyer, P. Liang, E. Candès, and T. Hashimoto, “s1: Simple test-time scaling,” arXiv preprint arXiv:2501.19393, 2025
arXiv 2025
-
[7]
Light-r1: Curriculum sft, dpo and rl for long cot from scratch and beyond,
L. Wen, Y . Cai, F. Xiao, X. He, Q. An, Z. Duan, Y . Du, J. Liu, L. Tang, X. Lvet al., “Light-r1: Curriculum sft, dpo and rl for long cot from scratch and beyond,” arXiv preprint arXiv:2503.10460, 2025
arXiv 2025
-
[8]
Reasonflux: Hierarchical llm reasoning via scaling thought templates,
L. Yang, Z. Yu, B. Cui, and M. Wang, “Reasonflux: Hierarchical llm reasoning via scaling thought templates,” arXiv preprint arXiv:2502.06772, 2025
arXiv 2025
Show all 65 references
-
[9]
Do not think that much for 2+ 3=? on the overthinking of o1-like llms,
X. Chen, J. Xu, T. Liang, Z. He, J. Pang, D. Yu, L. Song, Q. Liu, M. Zhou, Z. Zhanget al., “Do not think that much for 2+ 3=? on the overthinking of o1-like llms,” arXiv preprint arXiv:2412.21187, 2024
2024 arXiv
-
[10]
Stop overthinking: A survey on efficient reasoning for large language models,
Y . Sui, Y .-N. Chuang, G. Wang, J. Zhang, T. Zhang, J. Yuan, H. Liu, A. Wen, S. Zhong, H. Chenet al., “Stop overthinking: A survey on efficient reasoning for large language models,”arXiv preprint arXiv:2503.16419, 2025
2025 arXiv
-
[11]
Seal: Steerable reasoning calibration of large language models for free,
R. Chen, Z. Zhang, J. Hong, S. Kundu, and Z. Wang, “Seal: Steerable reasoning calibration of large language models for free,” arXiv preprint arXiv:2504.07986, 2025
2025
-
[12]
Over-reasoning and redundant calculation of large language models,
C.-H. Chiang and H.-y. Lee, “Over-reasoning and redundant calculation of large language models,”arXiv preprint arXiv:2401.11467, 2024
2024 arXiv
-
[13]
Open Thoughts,
O. T. Team, “Open Thoughts,” Jan. 2025
2025
-
[14]
Sky-t1: Train your own o1 preview model within $450,
N. Team, “Sky-t1: Train your own o1 preview model within $450,” https://novasky-ai.github.io/posts/sky-t1, 2025, accessed: 2025-01-09
2025
-
[15]
rstar-math: Small llms can master math reasoning with self-evolved deep thinking,
X. Guan, L. L. Zhang, Y . Liu, N. Shang, Y . Sun, Y . Zhu, F. Yang, and M. Yang, “rstar-math: Small llms can master math reasoning with self-evolved deep thinking,”arXiv preprint arXiv:2501.04519, 2025
2025 arXiv
-
[16]
Aflow: Automating agentic workflow generation,
J. Zhang, J. Xiang, Z. Yu, F. Teng, X. Chen, J. Chen, M. Zhuge, X. Cheng, S. Hong, J. Wanget al., “Aflow: Automating agentic workflow generation,” arXiv preprint arXiv:2410.10762, 2024
2024 arXiv
-
[17]
Self-supervised prompt optimization,
J. Xiang, J. Zhang, Z. Yu, F. Teng, J. Tu, X. Liang, S. Hong, C. Wu, and Y . Luo, “Self-supervised prompt optimization,” arXiv preprint arXiv:2502.06855, 2025
2025 arXiv
-
[18]
Lead: Iterative data selection for efficient llm instruction tuning,
X. Lin, Y . Qi, Y . Zhu, T. Palpanas, C. Chai, N. Tang, and Y . Luo, “Lead: Iterative data selection for efficient llm instruction tuning,” arXiv preprint arXiv:2505.07437, 2025
2025 arXiv
-
[19]
A survey of efficient reasoning for large reasoning models: Language, multimodality, and beyond,
X. Qu, Y . Li, Z. Su, W. Sun, J. Yan, D. Liu, G. Cui, D. Liu, S. Liang, J. He et al. , “A survey of efficient reasoning for large reasoning models: Language, multimodality, and beyond,” arXiv preprint arXiv:2503.21614, 2025
2025
-
[20]
Deconstructing long chain-of-thought: A structured reasoning optimization framework for long cot distillation,
Y . Luo, Y . Song, X. Zhang, J. Liu, W. Wang, G. Chen, W. Su, and B. Zheng, “Deconstructing long chain-of-thought: A structured reasoning optimization framework for long cot distillation,” arXiv preprint arXiv:2503.16385, 2025
2025 arXiv
-
[21]
Atom of thoughts for markov llm test-time scaling,
F. Teng, Z. Yu, Q. Shi, J. Zhang, C. Wu, and Y . Luo, “Atom of thoughts for markov llm test-time scaling,” arXiv preprint arXiv:2502.12018, 2025
2025
-
[22]
Lightthinker: Thinking step-by-step compression,
J. Zhang, Y . Zhu, M. Sun, Y . Luo, S. Qiao, L. Du, D. Zheng, H. Chen, and N. Zhang, “Lightthinker: Thinking step-by-step compression,” CoRR, vol. abs/2502.15589, 2025. [Online]. Available: https://doi.org/10.48550/arXiv.2502.15589 10
2025 doi
-
[23]
Sketch-of-thought: Efficient llm reasoning with adaptive cognitive- inspired sketching,
S. A. Aytes, J. Baek, and S. J. Hwang, “Sketch-of-thought: Efficient llm reasoning with adaptive cognitive- inspired sketching,” arXiv preprint arXiv:2503.05179, 2025
2025
-
[24]
Adar1: From long-cot to hybrid-cot via bi-level adaptive reasoning optimization,
H. Luo, H. He, Y . Wang, J. Yang, R. Liu, N. Tan, X. Cao, D. Tao, and L. Shen, “Adar1: From long-cot to hybrid-cot via bi-level adaptive reasoning optimization,” 2025. [Online]. Available: https://arxiv.org/abs/2504.21659
2025 arXiv
-
[25]
Rethinking the generation of high-quality cot data from the perspective of llm-adaptive question difficulty grading,
Q. Yu, K. Wu, Z. Chen, C. Zhang, M. Mei, L. Huang, F. Tan, Y . Du, K. Liu, and Y . Zhu, “Rethinking the generation of high-quality cot data from the perspective of llm-adaptive question difficulty grading,”arXiv preprint arXiv:2504.11919, 2025
2025 arXiv
-
[26]
1.4 million open-source distilled reasoning dataset to empower large language model training,
H. Zhao, H. Wang, Y . Peng, S. Zhao, X. Tian, S. Chen, Y . Ji, and X. Li, “1.4 million open-source distilled reasoning dataset to empower large language model training,” arXiv preprint arXiv:2503.19633, 2025
2025 arXiv
-
[27]
Long-short chain-of-thought mixture supervised fine-tuning eliciting efficient reasoning in large language models,
B. Yu, H. Yuan, Y . Wei, B. Wang, W. Qi, and K. Chen, “Long-short chain-of-thought mixture supervised fine-tuning eliciting efficient reasoning in large language models,” arXiv preprint arXiv:2505.03469, 2025
2025 arXiv
-
[28]
Open r1: A fully open reproduction of deepseek-r1,
H. Face, “Open r1: A fully open reproduction of deepseek-r1,” January 2025. [Online]. Available: https://github.com/huggingface/open-r1
2025
-
[29]
Measuring mathematical problem solving with the math dataset,
D. Hendrycks, C. Burns, S. Kadavath, A. Arora, S. Basart, E. Tang, D. Song, and J. Steinhardt, “Measuring mathematical problem solving with the math dataset,” arXiv preprint arXiv:2103.03874, 2021
2021 arXiv
-
[30]
Training verifiers to solve math word problems,
K. Cobbe, V . Kosaraju, M. Bavarian, M. Chen, H. Jun, L. Kaiser, M. Plappert, J. Tworek, J. Hilton, R. Nakano et al., “Training verifiers to solve math word problems,” arXiv preprint arXiv:2110.14168, 2021
2021 arXiv
-
[31]
Aime 2024,
AI-MO, “Aime 2024,” 2024. [Online]. Available: https://huggingface.co/datasets/AI-MO/ aimo-validation-aime
2024
-
[32]
Aime 2025,
——, “Aime 2025,” 2025. [Online]. Available: https://huggingface.co/datasets/yentinglin/aime_2025
2025
-
[33]
Correlated noise provably beats independent noise for differentially private learning,
C. A. Choquette-Choo, K. Dvijotham, K. Pillutla, A. Ganesh, T. Steinke, and A. Thakurta, “Correlated noise provably beats independent noise for differentially private learning,” arXiv preprint arXiv:2310.06771, 2023
2023 arXiv
-
[34]
Minervamath,
math ai, “Minervamath,” 2025. [Online]. Available: https://huggingface.co/datasets/math-ai/minervamath
2025
-
[35]
Gpqa: A graduate-level google-proof q&a benchmark,
D. Rein, B. L. Hou, A. C. Stickland, J. Petty, R. Y . Pang, J. Dirani, J. Michael, and S. R. Bowman, “Gpqa: A graduate-level google-proof q&a benchmark,” in First Conference on Language Modeling
-
[36]
Evaluating the performance of large language models on gaokao benchmark,
X. Zhang, C. Li, Y . Zong, Z. Ying, L. He, and X. Qiu, “Evaluating the performance of large language models on gaokao benchmark,” arXiv preprint arXiv:2305.12474, 2023
2023 arXiv
-
[37]
Mmlu-stem,
TIGER-Lab, “Mmlu-stem,” 2024. [Online]. Available: https://huggingface.co/datasets/TIGER-Lab/ MMLU-STEM
2024
-
[38]
Chain of draft: Thinking faster by writing less,
S. Xu, W. Xie, L. Zhao, and P. He, “Chain of draft: Thinking faster by writing less,” arXiv preprint arXiv:2502.18600, 2025
2025 arXiv
-
[39]
Token-budget-aware llm reasoning,
T. Han, Z. Wang, C. Fang, S. Zhao, S. Ma, and Z. Chen, “Token-budget-aware llm reasoning,” arXiv preprint arXiv:2412.18547, 2024
2024 arXiv
-
[40]
Llmlingua-2: Data distillation for efficient and faithful task-agnostic prompt compression,
Z. Pan, Q. Wu, H. Jiang, M. Xia, X. Luo, J. Zhang, Q. Lin, V . Rühle, Y . Yang, C.-Y . Lin et al. , “Llmlingua-2: Data distillation for efficient and faithful task-agnostic prompt compression,” arXiv preprint arXiv:2403.12968, 2024. Appendices A Difficulty Aware Prompt This se...
2024 arXiv
-
[41]
For simple problems: **Analysis:** [Understand the core elements and goals of the problem] **Approach:** [Propose direct solution methods] **Summary:** [Concisely summarize the solution approach and key points]
-
[42]
For moderately complex problems: **Analysis:** [Understand the problem and identify key points and challenges] **Initial Approach:** [Propose preliminary solutions] **Reflection:** [Evaluate the pros and cons of the initial approach] **Improvement:** [Refine the solution based...
-
[43]
0,...,n-1
For highly complex problems: **Analysis:** [Analyze various aspects of the problem and break down its structure] **Problem Decomposition:** [Break complex problem into manageable sub-problems] **Sub-problem Processing:** (Repeat the following steps for each sub-problem) - Sub-...
2024
-
[44]
Use the division formula: \( n = 7q + r \), where \( 0 \leq r < 7 \)
-
[45]
Set \( q = r \), leading to \( n = 7r + r = 8r \)
-
[46]
Since \( r \) must be a natural number (remainder \geq 1) and \( r < 7 \), valid values for \( r \) are \( 1, 2, 3, 4, 5, 6 \)
-
[47]
natural numbers,
Calculate \( n \) for each \( r \): - \( r = 1 \Rightarrow n = 8 \) - \( r = 2 \Rightarrow n = 16 \) - \( r = 3 \Rightarrow n = 24 \) - \( r = 4 \Rightarrow n = 32 \) - \( r = 5 \Rightarrow n = 40 \) 17 - \( r = 6 \Rightarrow n = 48 \) Thus, the natural numbers are: \[ \boxed{...
-
[48]
**Express heights via area**: For a triangle with sides \(a, b, c\) and corresponding heights \(h_1, h_2, h_3\), the area \(S\) is: \[ h_1 = \frac{2S}{a},\quad h_2 = \frac{2S}{b},\quad h_3 = \frac{2S}{c}. \]
-
[49]
**Sum of heights**: \[ h_1 + h_2 + h_3 = 2S\left(\frac{1}{a} + \frac{1}{b} + \frac{1}{c}\right). \]
-
[50]
**Relate \(S\) to inradius \(r\)**: Using \(S = p \cdot r\) (where \(p = \frac{a+b+c}{2}\) is semiperimeter): \[ h_1 + h_2 + h_3 = 2pr\left(\frac{1}{a} + \frac{1}{b} + \frac{1}{c}\right). \]
-
[51]
\] Since \(a + b + c = 2p\), this simplifies to: \[ \frac{1}{a} + \frac{1}{b} + \frac{1}{c} \geq \frac{9}{2p}
**Apply Cauchy-Schwarz inequality**: \[ (a + b + c)\left(\frac{1}{a} + \frac{1}{b} + \frac{1}{c}\right) \geq (1 + 1 + 1)^2 = 9. \] Since \(a + b + c = 2p\), this simplifies to: \[ \frac{1}{a} + \frac{1}{b} + \frac{1}{c} \geq \frac{9}{2p}. \]
-
[52]
\] Thus, the inequality \(h_1 + h_2 + h_3 \geq 9r\) is proven
**Substitute into height sum**: \[ h_1 + h_2 + h_3 \geq 2pr \cdot \frac{9}{2p} = 9r. \] Thus, the inequality \(h_1 + h_2 + h_3 \geq 9r\) is proven. \[ \boxed{h_{1} + h_{2} + h_{3} \geq 9r} \] <|end_of_solution|> 21 solutions of medium problems in OpenThoughts <|begin_of_though...
-
[53]
Inradius r = \Delta/s = 6/6 = 1
Area \ Delta = (3*4)/2 = 6. Inradius r = \Delta/s = 6/6 = 1. Heights: h1 = 2\ Delta/a = 12/3 = 4, h2 = 12/4 = 3, h3 = 12/5 = 2.4. Sum of heights: 4 + 3 + 2.4 = 9.4. 9r = 9*1 = 9. So 9.4 \geq 9, which holds. So the inequality is satisfied here. Another example: a = 2, b = 2, c ...
-
[55]
So \Del ta approaches 0, and r = \Delta/s approaches 0. The heights: h1 and h2 (correspo nding to sides a=1 and b=1) will be h1 = 2\Delta/a = 2\Delta/1 = 2\Del ta, h2 sim ilarly 2\Delta, and h3 = 2\Delta/c \approx 2\Delta/(2 - \epsilon) 27 \ap prox \Del ta. So sum of heights \...
-
[56]
Express the heights in terms of the area and sides
-
[57]
Express the inradius in terms of the area and semiperimeter
-
[58]
Formulate the inequality in terms of the sides and semiperimeter
-
[59]
Apply the AM-HM inequality to establish the required result
-
[60]
Therefore, the inequality \( h_1 + h_2 + h_3 \geq 9r \) is proven
Verify with specific examples to ensure validity. Therefore, the inequality \( h_1 + h_2 + h_3 \geq 9r \) is proven. <|end_of_thought|> <|begin_of_solution|> To prove that the sum of the heights of a triangle \( h_1 + h_2 + h_3 \) is at l east nine times the inradius \( r \), ...
-
[61]
- Sum of heights: \( h_1 + h_2 + h_3 = 2\Delta\left(\frac{1}{a} + \ frac{1}{b} + \frac{1}{c}\right) \)
**Express Heights and Inradius**: - Heights: \( h_a = \frac{2\Delta}{a}, \, h_b = \frac{2\Delta}{b}, \, h_c = \ frac{2\Delta}{c} \), where \( \Delta \) is the area and \( a, b, c \) 29 are the si des. - Sum of heights: \( h_1 + h_2 + h_3 = 2\Delta\left(\frac{1}{a} + \ frac{1}{...
-
[62]
\] Cancel \( \Delta \) and multiply through by \( s \): \[ 2s\left(\frac{1}{a} + \frac{1}{b} + \frac{1}{c}\right) \geq 9
**Formulate the Inequality**: Substitute \( h_1 + h_2 + h_3 \) and \( 9r \) into the inequality: \[ 2\Delta\left(\frac{1}{a} + \frac{1}{b} + \frac{1}{c}\right) \geq \f rac{9\Delt a}{s}. \] Cancel \( \Delta \) and multiply through by \( s \): \[ 2s\left(\frac{1}{a} + \frac{1}{b...
-
[63]
**Simplify Using Semiperimeter**: Substitute \( s = \frac{a + b + c}{2} \): \[ (a + b + c)\left(\frac{1}{a} + \frac{1}{b} + \frac{1}{c}\right) \ge q 9. \]
-
[64]
\] Equality holds if and only if \( a = b = c \) (equilateral triangle )
**Apply the AM-HM Inequality**: The Arithmetic Mean-Harmonic Mean (AM-HM) inequality states: \[ \frac{a + b + c}{3} \geq \frac{3}{\frac{1}{a} + \frac{1}{b} + \frac {1}{c}}, \] which rearranges to: \[ (a + b + c)\left(\frac{1}{a} + \frac{1}{b} + \frac{1}{c}\right) \ge q 9. \] E...
-
[65]
Examples and edge cas es confirm 30 the validity of the result
**Conclusion**: The inequality \( h_1 + h_2 + h_3 \geq 9r \) follows directly from the AM-HM inequality applied to the sides of the triangle. Examples and edge cas es confirm 30 the validity of the result. **Final Answer**: \boxed{h_{1} + h_{2} + h_{3} \geq 9r} <|end_of_solution|> 31
-
[375]
So r = 1.984 / 3.5 \approx 0.567
\approx 1.984. So r = 1.984 / 3.5 \approx 0.567. Heights: h1 = 2\ Delta/a \a pprox 2*1.984 /2 \approx 1.984, h2 same as h1, h3 = 2*1.984 /3 \approx 1.323. Su m \approx 1.984 + 1.984 + 1.323 \approx 5.291. 9r \approx 5.103. So 5. 291 \geq 5 .103. Holds as well. Wait, but accord...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.