INQUIRING LINE

How should reasoning prompts adapt based on question complexity and type?

This explores how the way you prompt a model for reasoning should change depending on how hard a question is and what kind of question it is — and whether "always think step-by-step" is actually the right default.


This explores whether reasoning prompts should be tuned to question complexity and type rather than applied uniformly — and the corpus is surprisingly emphatic that one-size-fits-all step-by-step prompting is a mistake. The cleanest starting point is the finding that chain-of-thought sometimes *hurts*: for simple questions, a direct question-to-answer flow beats step-by-step reasoning, and the deciding factor is whether the question's information aggregates into the prompt before reasoning starts — a property of the specific question, not its task category Why do some questions perform better without step-by-step reasoning?. That undercuts the common instinct that more reasoning is always safer.

How much reasoning helps also depends on the model you're talking to and how long the chain gets. Optimal CoT length follows an inverted-U: accuracy peaks at a medium length that grows with task difficulty but *shrinks* as the model gets more capable — stronger models prefer shorter chains Why does chain of thought accuracy eventually decline with length?. The same model-tier dependence shows up in applied settings: rephrasing and background-knowledge prompts lift cheap models, while forcing step-by-step reasoning actually *reduces* accuracy in high-performance ones Do prompt techniques work the same across all LLM tiers?. So "adapt to complexity" really means adapting along two axes at once — question difficulty and model capability — and they pull in opposite directions.

The deeper twist is what "complexity" even means. One study argues reasoning doesn't break at a complexity threshold at all — it breaks at *unfamiliarity*. Models fit instance-level patterns rather than general algorithms, so a long chain succeeds if the model has seen similar instances and fails on novel ones regardless of length Do language models fail at reasoning due to complexity or novelty?. That reframes prompt adaptation: the right signal may be novelty, not surface length or step count. And question *type* matters independently — different models bring distinct reasoning styles (minimax, trust-based, belief-anticipation) whose payoff depends on the structure of the problem, not raw depth Do large language models use one reasoning style or many?.

The field's most promising answer is to stop choosing manually. Instead of you deciding when to engage heavy reasoning, models can learn to route: Thinkless trains a single model to pick between extended thinking and a quick direct answer, self-calibrating without difficulty labels Can models learn when to think versus respond quickly?. At the compute level, the same idea appears as adaptively allocating inference budget per prompt — spend little on easy prompts, more on hard ones — which beats a uniform budget even with a bigger model Can we allocate inference compute based on prompt difficulty?. For genuinely hard problems, the *shape* of reasoning can be made more rigorous rather than just longer: structured critical-question prompts force the model to check its warrants and catch failures plain CoT glides past Can structured argument prompts make LLM reasoning more rigorous?.

One caveat worth carrying away: adapting prompts only works if the reasoning machinery holds up at all. Reasoning accuracy degrades sharply with input length — dropping from 92% to 68% with just a few thousand tokens of padding, far below the context window and even with CoT in place Does reasoning ability actually degrade with longer inputs?. So the surprising lesson is that prompt adaptation isn't only about adding structure for hard questions — it's just as much about *removing* reasoning where it backfires, keeping inputs tight, and ideally letting the model decide for itself which mode a question deserves.


Sources 9 notes

Why do some questions perform better without step-by-step reasoning?

Saliency analysis reveals that CoT prompting fails when question information doesn't aggregate into the prompt structure before reasoning begins. For simple questions, direct question-to-answer flow outperforms step-by-step reasoning, showing the optimal prompt depends on question type, not just task category.

Why does chain of thought accuracy eventually decline with length?

Task accuracy peaks at intermediate CoT length, with optimal length increasing alongside task difficulty but decreasing with model capability. RL training naturally gravitates toward shorter chains as models improve, revealing that simplicity emerges from reward signals rather than explicit training.

Do prompt techniques work the same across all LLM tiers?

A 23-prompt benchmark across 12 LLMs shows rephrasing and background-knowledge prompts boost cheap models, while step-by-step reasoning reduces accuracy in high-performance models. Task structure, not generic best practices, determines which prompts help.

Do language models fail at reasoning due to complexity or novelty?

LRMs don't break at complexity thresholds but at instance-novelty boundaries. Models fit instance-based patterns rather than generalizable algorithms, so any reasoning chain succeeds if trained on similar instances, regardless of length.

Do large language models use one reasoning style or many?

Analysis of 22 LLMs across behavioral game theory reveals three dominant profiles: GPT-o1 uses minimax reasoning, DeepSeek-R1 uses trust-based reasoning, and GPT-o3-mini uses belief-anticipation. Performance correlates with game structure, not raw reasoning depth.

Can models learn when to think versus respond quickly?

Thinkless trains a single model to select between extended reasoning and direct responses using DeGRPO, which decouples mode selection from answer refinement. This prevents mode collapse and enables self-calibrated routing without explicit difficulty labels.

Can we allocate inference compute based on prompt difficulty?

Research shows inference effectiveness varies dramatically by prompt difficulty. Reallocating the same total compute adaptively—giving easy prompts less and hard ones more—substantially outperforms larger models under uniform budgets.

Can structured argument prompts make LLM reasoning more rigorous?

Applying Toulmin's argument model as explicit prompting steps (CQoT) improves LLM reasoning by forcing models to identify warrants and backing rather than skipping implicit premises. The method catches failures that standard chain-of-thought prompting allows.

Does reasoning ability actually degrade with longer inputs?

FLenQA shows reasoning accuracy drops from 92% to 68% at just 3000 tokens of padding, far below context window capacity. The degradation is task-agnostic, uncorrelated with language modeling performance, and persists even with chain-of-thought prompting.

Next inquiring lines