A popular thesis in the AI community, championed by architectures like OpenAI o1 and DeepSeek-R1, suggests that the longer a model "thinks" (inference-time compute), the smarter it becomes. However, a new study by Dongxin Guo of the University of Hong Kong (HKU), alongside colleagues from Stellaris AI and Brain Investing Limited, delivers a harsh verdict on the decoder-only architecture. In tasks involving deterministic state spaces—where precision is paramount, such as programming or formal verification—extended reasoning inevitably leads to failure. There is no room for hallucinations or "roughly correct" answers here: a single error at any stage nullifies the entire result. While neural Chain-of-Thought (CoT) processes embarrassingly collapse to 24–42% accuracy, hybrid systems utilizing external tool calls maintain a confident 86–94%. The issue isn't model laziness; it’s a fundamental physical limit.

The Bottleneck Theorem and the d* Horizon

Researchers traced the root of the problem to the "Attention Bottleneck Theorem." In modern architectures, a model's ability to track an object's state is strictly limited by the complexity of the attention mechanism itself. With every new step in a logical chain, contextual errors accumulate, eventually leading to a super-exponential crash in accuracy. Guo’s team introduced a "deterministic horizon" metric (d*), which for most current models ranges from 19 to 31 steps. Once a reasoning chain crosses this threshold, the model loses the thread entirely and begins generating nonsense.

"Across 12 tested models and 8 different task domains, the use of external tools consistently outperforms pure neural Chain-of-Thought."

To rule out the possibility that models simply "prefer" shorter answers (length bias), scientists applied the State-Space Jaccard metric. They found that even fine-tuning on perfect reasoning logs yielded a measly 5% improvement. This confirms we have hit an architectural ceiling, not a training flaw. The high correlation across different models (r=0.81–0.91) suggests that size doesn't matter—both tiny and giant models are equally helpless against the physics of transformer attention.

The Economics of Delegation: When to Take the Mic

For CTOs and AI architects, this is a signal for a paradigm shift: stop trying to squeeze out accuracy through infinite CoT. If your task requires more than 30 sequential logical steps, you are already in the "dead zone" beyond the d* horizon. Tools provide precise computation without the overhead of maintaining states in the "memory" of attention. By offloading complex subtasks to external code, the system preserves the integrity of the entire chain from the initial state to the finish line.

The industry has reached the limit of scaling laws for inference time. In complex scenarios like SWE-bench or SQL-Multi, raw power and parameter counts fail against transformer architectural constraints. Business value in the next phase of AI transformation will be defined by the quality of the delegation layer rather than the length of reasoning chains.

You must clearly identify the moment to pull the model out of the reasoning loop and hand the task to deterministic code. Those who continue to believe in the magic of "infinite thinking" will simply burn GPU resources to generate high-tech garbage.

Large Language ModelsGenerative AIAI in BusinessDeepSeekOpenAI