INQUIRING LINE

How do ordering effects compound across different prompt component scales?

This explores whether the order in which prompt pieces appear matters the same way at every scale — single tokens, the placement of examples, the flow of the question itself, and the sequence of training tasks — and whether those effects stack on top of each other.


This explores whether 'order matters' is one effect or several, operating at different grain sizes inside a prompt. The corpus suggests ordering is not a single phenomenon but a layered one — it shows up at the token scale, the example scale, the question-flow scale, and the training scale, and each layer has its own mechanism. At the finest grain, certain tokens carry far more weight than their neighbors: words like 'Wait' and 'Therefore' spike in mutual information with the correct answer, and suppressing them damages reasoning while suppressing random tokens does not Do reflection tokens carry more information about correct answers?. So even within a single reasoning trace, where the high-signal tokens fall changes the outcome.

Move up a scale to demonstrations and the effect gets dramatic. Repositioning an identical block of examples from the start of a prompt to the end can swing accuracy by up to 20% and flip nearly half of all predictions — purely from position, independent of what the examples say How much does demo position alone affect in-context learning accuracy?. And it's not just where examples sit but in what sequence: ordering few-shot demonstrations by representation sparsity (harder-to-easier) yields real gains without any difficulty labels Can representation sparsity order few-shot demonstrations effectively?. There's also a flow requirement underneath all this — chain-of-thought only helps when the question's information aggregates into the prompt structure *before* reasoning begins; when it doesn't, step-by-step prompting actively hurts simple questions Why do some questions perform better without step-by-step reasoning?.

The largest scale is training order itself, and here the same logic compounds: structured tasks drive output entropy down while creative tasks drive it up, so training structured material first (then open-ended) prevents entropy collapse from wrecking creative ability — worth a 6.2% gain over mixing everything together Does training order reshape how models handle different task types?. That's ordering operating over the whole learning trajectory rather than a single prompt, yet it rhymes with the smaller scales: sequence determines what capability survives.

The surprising part — what you might not have known to ask — is that these scales aren't independent; the corpus hints they interact and amplify. Prompt quality behaves like a structured space where improving one dimension cascades into others rather than staying isolated Can we measure prompt quality independent of model outputs?, and the whole edifice rests on a non-obvious fact: models respond to statistical mass from pre-training, not meaning, so even 'equivalent' orderings land differently because the model is reading frequency, not intent Why do semantically identical prompts produce different LLM outputs?. That's why ordering compounds — every layer is a separate lever on the same frequency-sensitive machinery, and a weakness at one scale isn't washed out by strength at another.

There's a real escape hatch, though. Confidence buys robustness: highly confident models resist prompt rephrasing while low-confidence ones swing wildly Does model confidence predict robustness to prompt changes?, and models can even be trained to ignore irrelevant prompt changes using their own clean responses as targets Can models learn to ignore irrelevant prompt changes?. So the compounding isn't fixed — it's strongest exactly where the model is least sure, which is where the layered ordering effects have the most room to stack.


Sources 9 notes

Do reflection tokens carry more information about correct answers?

Specific tokens like "Wait" and "Therefore" show sharp spikes in mutual information with correct answers. Suppressing them harms reasoning while suppressing equal random tokens does not, and representation recycling improves accuracy 20%.

How much does demo position alone affect in-context learning accuracy?

Repositioning an identical demo block from prompt start to end swaps up to 20% accuracy and flips nearly half of predictions. This spatial effect operates independently of demo content and spans multiple task types.

Can representation sparsity order few-shot demonstrations effectively?

Sparsity-Guided Curriculum In-Context Learning uses last-layer activation sparsity to order demonstrations from sparse (harder) to dense (easier), yielding considerable performance improvements. This approach requires no external difficulty labels and works across diverse in-context learning tasks.

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.

Does training order reshape how models handle different task types?

Omni-Thinker shows structured domains decrease output entropy while creative domains increase it. BWT-guided scheduling—training structured tasks first—yields 6.2% gains over joint training by preventing entropy collapse from damaging open-ended capabilities.

Can we measure prompt quality independent of model outputs?

Research identifies six evaluable dimensions—Communication, Cognition, Instruction, Logic, Hallucination, and Responsibility—with 20 sub-criteria based on Grice, cognitive load theory, and instructional design. Improvements in one dimension cascade to others, revealing prompt quality as a structured space rather than a flat checklist.

Why do semantically identical prompts produce different LLM outputs?

Cao et al. and Adam's Law show that semantically identical prompts with different sentence-level frequencies produce systematically different output quality. Higher-frequency phrasings win because models register statistical mass from pre-training, not meaning.

Does model confidence predict robustness to prompt changes?

ProSA found that when models are highly confident, they resist prompt rephrasing; low confidence causes major output swings. Larger models, few-shot examples, and objective tasks all correlate with higher confidence and greater robustness.

Can models learn to ignore irrelevant prompt changes?

Two methods—BCT (output-level) and ACT (activation-level)—train models to respond identically to clean and wrapped prompts by using the model's own clean responses as targets, eliminating specification and capability staleness inherent in standard SFT.

Next inquiring lines