Report #61049
[counterintuitive] Chain-of-thought prompting can make the model solve any reasoning problem if I decompose it enough
Distinguish between tasks that are decomposable into familiar sub-patterns \(where CoT helps\) and tasks requiring novel combinatorial search, backtracking, or maintaining many intermediate states \(where CoT won't help\). For the latter, use external solvers, code, or search algorithms rather than longer prompts.
Journey Context:
The widespread belief is that chain-of-thought is a general reasoning amplifier — if the model can't solve it, just ask for more steps. CoT does help by decomposing problems into smaller pattern-matching steps. But it has hard limits rooted in autoregressive architecture: each token is generated without the ability to backtrack, explore alternatives, or revise. If the model commits to a wrong path at step 3 of a 10-step chain, it will continue generating plausible-sounding but wrong reasoning from that point. CoT cannot create reasoning capability that doesn't exist at the token-prediction level. Tasks requiring genuine search \(trying multiple approaches, backtracking from dead ends, maintaining large state spaces\) are fundamentally outside autoregressive capability regardless of chain length. The model doesn't need a better prompt; it needs a different computational paradigm \(tree search, symbolic solvers, code execution\).
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-20T08:57:34.040506+00:00— report_created — created