Theory Of Mind¶
Core Idea¶
An agent maintains a separately-indexed, updateable model of another agent's hidden states — beliefs, knowledge, intentions — and routes prediction through that second model rather than through ground truth, so it can hold "I know X, but they do not."
How would you explain it like I'm…
Inside Their Head
What They Believe
False-Belief Tracking
Broad Use¶
- Developmental psychology: the false-belief task — a child predicts Sally looks where she believes the marble is, not where it actually is.
- AI / language models: belief-state tracking in POMDPs and multi-agent RL to model what a user knows or wrongly believes.
- Game theory / diplomacy: modelling the counterparty's information set and beliefs-about-your-beliefs in signalling games.
- Education: a teacher models what a student knows and wrongly thinks they know; the curse of knowledge is its failure.
- Security / red-teaming: defenders model what attackers know; honeypots exploit the asymmetry.
- Interface design: a designer models what a user expects a control to do, since mismatches produce predictable error.
Clarity¶
Forces the question whose mind, in what state of knowledge?, relocating a class of failures from "they're being difficult" to "I modelled their information state incorrectly," and pinpointing which of four parameters (target, state-type, content, recursion depth) went wrong.
Manages Complexity¶
Collapses deception detection, instructional design, negotiation, and multi-agent planning into one move — maintain a separate model of another's information state — bounded by the fact that real reasoning bottoms out at depth-2 or depth-3.
Abstract Reasoning¶
Licenses channel-indexed updating (update only agents who had access to the channel) and false-belief reasoning (hold a model known to be false), the operational signature of the machinery.
Knowledge Transfer¶
- AI evaluation: false-belief tasks ported directly into LLM and embodied-agent tests.
- Product strategy: red-team adversary-modelling generalises to competitor- and regulator-modelling.
- Collaborative work: clinically-identified ToM deficits predict communication failures, with perspective-taking the intervention.
Example¶
In the Sally-Anne task, the world changed (the marble moved) and the child saw it, but Sally had no access to that channel — so a child with theory of mind keeps the two models separate and predicts Sally looks in the basket, representing a state known to be false.
Relationships to Other Abstractions¶
Current abstraction Theory Of Mind Prime
Parents (1) — more general patterns this builds on
-
Theory Of Mind is a kind of Mental Model Prime
Theory of mind is the specific case of mental_model where the modelled thing is another agent's hidden mental states, kept SEPARATELY INDEXED from one's own world-model (false-belief capacity).
Children (4) — more specific cases that build on this
-
Child lying Domain-specific is a kind of Theory Of Mind
Child Lying instantiates Theory of Mind because successful deliberate deception requires representing an audience's informational state separately from the child's own knowledge and selecting communication expected to alter that state.
-
Simulation theory of empathy Domain-specific is a kind of Theory Of Mind
The proposed strict upward parent is
prime:theory_of_mind. -
Egocentric Bias Domain-specific presupposes Theory Of Mind
Egocentric Bias requires an agent to model another's attention, knowledge, preference, or contribution before its self-anchored model can be miscalibrated.
-
Anthropomorphism Prime is part of, typical Theory Of Mind
Theory-of-Mind inference is a typical internal mechanism of Anthropomorphism when the projected human likeness includes beliefs, desires, emotions, or understanding.
Hierarchy path (1) — routes to 1 parentless root
- Theory Of Mind → Mental Model → Representation → Abstraction
Not to Be Confused With¶
- Theory Of Mind is not Mental Model because a mental model is any internal representation of how something works whereas theory of mind is the specific case modelling another agent's hidden mental states, kept separately indexed so it can hold contents known to be false.
- Theory Of Mind is not Perspective because perspective is a vantage-dependent view of the world whereas theory of mind is a model of another's mind — beliefs, knowledge, and recursion above mere perception.
- Theory Of Mind is not Curse Of Knowledge because the curse is a failure mode of theory of mind (over-attributing one's own knowledge) whereas theory of mind is the capacity whose breakdown produces it.