2026.02 · 6 min · Aayushya Patel

Why Theory of Mind Is the Hardest Problem in AI

Reflections from building benchmark datasets and watching GPT-4o and Phi-Mamba struggle in very different ways.

Last year I led a team of seven researchers at Algoverse to build three novel Theory of Mind benchmark datasets. We called the project DIG-DIS, and it taught me more about the limitations of AI than any paper I had read. Theory of Mind is the ability to attribute mental states — beliefs, intentions, desires — to others. It is what lets you understand that someone might believe something false, or want something they have not expressed. Humans develop it around age four. AI systems struggle with it at every scale.

01Building the benchmarks

Our approach was simple: create scenarios that require reasoning about what characters in a story know, believe, or want, then measure whether AI systems could track those mental states accurately. We focused on three types of reasoning: distraction scenarios, indirect speech, and nested beliefs — reasoning about what A thinks B thinks C believes.

02Transformers versus state space models

The most interesting finding was not about performance, it was about failure modes. GPT-4o Mini was better at handling complex nested beliefs but struggled when distracting information was present; it seemed to forget earlier context when processing new information. Phi-Mamba showed the opposite pattern. Its recurrent architecture maintained context better across long sequences, but it struggled with the compositional reasoning required for nested beliefs.

03What this means

We do not have a model architecture that robustly handles Theory of Mind. Transformers are great at parallel attention but lose context. State space models maintain context but struggle with composition. The path forward probably is not choosing one architecture over the other, it is understanding why each fails and designing hybrids. Theory of Mind might be the hardest problem in AI because it requires everything at once: memory, attention, composition, and common-sense reasoning.