---
title: Spatially Situated Social Intelligence Test (S3IT)
url: https://www.emergentmind.com/topics/spatially-situated-social-intelligence-test-s-3-it
type: topic
---

# Spatially Situated Social Intelligence Test (S3IT)

The Spatially Situated Social Intelligence Test (S$^{3}$IT) is a suite of benchmarks designed to rigorously evaluate the integration of social reasoning and spatial intelligence in artificial agents within physically and socially complex environments. S$^{3}$IT comprises two principal instantiations: a 3D embodied seat-ordering benchmark for embodied social intelligence [2512.19992], and a multi-agent gridworld question-answering framework targeting spatially situated Theory of Mind (ToM) reasoning [2509.05066]. Together, they constitute a comprehensive set of methodologies for probing both social cognition and physical constraint integration in large language model (LLM) and vision–language model (VLM) agents.

## 1. Formal Task Definitions and Mathematical Frameworks

### (A) Embodied Seat-Ordering as Multi-Objective Optimization

In the 3D seat-ordering S$^{3}$IT benchmark, the core task is to find an injective assignment $A: N \to S$ mapping $n$ non-player characters (NPCs) each with a set of preferences $P_i$ onto $m \geq n$ chairs in a simulated 3D environment [2512.19992]. Preferences are organized in $C$ categories (embodied, social, conflict), and each item $p_{i, j|c}$ has an associated weight $w_{i,j|c} \in \{1,2,3\}$.

Preference satisfaction is formalized as:
\[
g_{i,j|c}(A) = 
\begin{cases}
1 & \text{if $A$ satisfies $p_{i,j|c}$} \\
0 & \text{otherwise}
\end{cases}
\]
Raw satisfaction score in category $c$:
\[
s_c(A) = \frac{\sum_{i=1}^n \sum_{j=1}^{m_{i,c}} w_{i,j|c}\;g_{i,j|c}(A)}{\sum_{i=1}^n \sum_{j=1}^{m_{i,c}} w_{i,j|c}}
\]
A nonlinear penalty mapping $F: [0,1]\to[0,1]$ penalizes partial satisfaction:
\[
F(x) = -10.87 x^5 + 21.99 x^4 - 12.65 x^3 + 2.568 x^2 - 0.045 x
\]
The global utility is:
\[
U(A)=\sum_{c=1}^C W_c\,F(s_c(A)) \qquad \text{with}\quad W_c = \sum_{i,j} w_{i,j|c}
\]

Assignment is subject to spatial and social constraints including adjacency prohibitions for conflicting pairs and seating geometry. The optimal assignment $A^*$ maximizes $U(A)$ under injectivity and physical feasibility.

### (B) Multi-Agent Gridworld and Partially Observable Markov Decision Process (POMDP) Formalism

The ToM-SSI instantiation of S$^{3}$IT operationalizes multi-agent social cognition as a discrete gridworld POMDP [2509.05066]. Given up to $N=4$ agents in an $M \times M$ grid, the global state is $s \in \mathcal{S} \equiv X \times I$ with:
- $X = (x_1, y_1, ..., x_N, y_N)$, agent positions,
- $I = (I_{A_1}, ..., I_{A_N})$, knowledge sets per agent.

Actions per agent are movement along grid axes ($\{up,down,left,right\}$) or communication ($comm(i)$ for $i \in I_{A_j}$). Deterministic transitions update agent positions and share information with adjacent agents ($L_1$-distance $\leq1$, including diagonals). Observations $o_j$ reveal the full position map and locally audible communications:
\[
O_j(o_j|s) = 1 \iff o_j \text{ reports $X$ and precisely those communications from neighboring agents}
\]
Belief updates are rational but non-probabilistic, assuming agents infer the most probable state compatible with their percepts and known rules.

## 2. Scenario Generation and Task Variants

### Procedurally Extensible 3D Scenes and Dialogue (Embodied Benchmark)

Scenarios are generated by procedurally sampling from a template set of 3D layouts ($T_1$…$T_5$) with varying table/room configurations and seating graphs [2512.19992]. NPC selection leverages a predefined resident world with intricate social graphs and support for 1–5 embodied/social preferences and 0–2 interpersonal conflicts per NPC, drawn to match empirical frequency distributions. For each test instance, a “reverse-engineered” construction guarantees that ground-truth assignments satisfy all derived constraints.

NPC preference profiles are elicited by the test agent (“T-Agent”) via rule-based dialogue, directly querying needs (e.g., “Do you want to be near a window?”) and recording responses and meta-data. Dialogue is subsequently processed by an LLM summarizer, mapping free-form interaction to structured constraints.

### Multimodal Gridworld Q&A (ToM-SSI Benchmark)

Each sample is composed of:
- A rendered or ASCII grid,
- A natural-language description of context, initial knowledge, agent attitudes, and event,
- A multiple-choice question (with answer) about a target agent’s percept, belief, or intention.

Five scenario types are implemented: Cooperative Movement–Single Communication (CMSC), Cooperative Movement–Concurrent Communication (CMCC), Probabilistic Cooperative Communication (PCC), Obstructive Communication (OC), and Mixed Cooperative-Obstructive Communication (MC). Group sizes range from dyadic to tetradic interactions. All communication and knowledge update rules strictly adhere to the formal POMDP process.

## 3. Evaluation Pipelines and Metrics

### Embodied Social Optimization

The evaluation in the 3D seat-ordering task utilizes:
- Category-level satisfaction $s_c(A)$, mapped and weighted into the composite score $U(A)$ (range: 0–100),
- Prioritization gap (PG): the difference in satisfaction fraction between strong ($w=3$) and weak ($w=1$) preferences:
  \[
  PG = r_{high} - r_{low} \quad \text{where $r_{high}$ and $r_{low}$ are fractions of satisfied strong and weak preferences, respectively}
  \]

An iterative “generate-and-reflect” loop guides agent behavior: at each round, a seating proposal $A^{(t)}$ is made, a reflection report $R^{(t)}$ identifies unmet preferences, and the context is refined toward convergence or budget exhaustion.

### Theory of Mind Reasoning

Accuracy is measured for Percept, Belief, Intention, and their conjunctions:
\[
Acc_P = \frac1N\sum_{i=1}^N \mathbf{1}[\hat p_i=p_i], \quad
Acc_B = \frac1N\sum_{i=1}^N \mathbf{1}[\hat b_i=b_i], \quad
Acc_I = \frac1N\sum_{i=1}^N \mathbf{1}[\hat \ell_i=\ell_i]
\]
\[
Acc_{PB} = \frac1N\sum_{i=1}^N \mathbf{1}[\hat p_i=p_i \wedge \hat b_i=b_i], \quad
Acc_{PBI} = \frac1N\sum_{i=1}^N \mathbf{1}[\hat p_i=p_i \wedge \hat b_i=b_i \wedge \hat \ell_i=\ell_i]
\]

These metrics are applied to performance on 6,000 questions (balanced across tasks and question types), without a train/validation/test split.

## 4. Empirical Findings and Analysis

| Setting              | Human Avg. | Best LLM/VLM Avg. | Embodied    | Social      | Conflict    |
|----------------------|------------|-------------------|-------------|-------------|-------------|
| 3D Seat-Ordering [2512.19992] | 84.7       | 47.8 (Gemini-2.5-pro) | 40.6 (Best) | 56.2 (Best) | 85.7 (Best) |
| POMDP/ToM-SSI [2509.05066]    | 73–85% (PBI) | <30% (PBI) o4-mini, Claude 3.5 | —           | —           | —           |

Humans achieve substantially higher PBI/conjunctive scores and balanced satisfaction across preference strengths. LLMs reach near-human conflict satisfaction when cues are explicit, but exhibit severe deficiencies in spatial and embodied constraint satisfaction as well as higher prioritization gaps. Ablation results confirm that providing ground-truth perception drastically reduces the performance gap, indicating spatial grounding as the limiting factor. Reflective iterations improve performance incrementally (3–6 points on average).

In gridworld, model performance sharply declines from Percept to Belief to Intention prediction. Models excel at straightforward adjacency detection, but substantially underperform in tracking hidden knowledge and predicting intention-based planning. CMCC tasks (concurrent communication and second-order inference) are especially challenging (≤5% PBI for models).

Common model failures include disregarding given initial knowledge (Llama-3.2), misencoding grid coordinates (GPT-4o), and overlooking cascading communications in mixed-motive tasks.

## 5. Limitations and Open Technical Challenges

Both S$^{3}$IT benchmarks are characterized by certain simplifications and limitations:

- The 3D seat-ordering environment adopts discrete viewpoint sets; continuous 6-DoF exploration is not required.
- All NPCs are cooperative; adversarial or noisy responses are not modeled.
- The nonlinear penalty function $F(x)$ is user-designed rather than learned or calibrated.
- The human baseline in [2512.19992] is small ($n=3$); test scenarios cover 70 hand-selected cases.
- In the ToM-SSI gridworld, scenarios lack continuous time, rich perceptual streams, or advanced path planning; only basic cooperation/obstruction motives are modeled, with group size capped at four.

Open problems include:
- Extending to richer modalities (video, 3D geometry, speech) and dynamic movement planning.
- Incorporating adversarial social reasoning, memory-limited or noisy observational channels, larger team settings, and multi-objective competition.
- Scaling up human participation and testbed range.
- Generalizing task structure (e.g., beyond seats to collaborative object placement).

A plausible implication is that future research must address spatial representation and multi-agent belief inference as primary obstacles to the deployment of genuinely socially intelligent embodied agents.

## 6. Scientific Significance and Future Research Directions

S$^{3}$IT delivers the first rigorous, large-scale, multimodal benchmarks marrying spatially distributed social cognition with physical environmental constraints, thus addressing foundational gaps in both ToM and embodied AI literature. The frameworks’ explicit multi-objective scoring, procedural task synthesis, and automated evaluation pipelines enable controlled difficulty scaling and systematic ablation analysis.

Future research directions highlighted by these benchmarks include:
- Interactive evaluation with RL agents trained end-to-end,
- Realistic physical exploration (continuous environments, active perception),
- Robust inference under noise and social deception,
- Direct learning or calibration of satisfaction penalty functions,
- Expansion to general embodied group collaboration domains beyond seat arrangement.

S$^{3}$IT thus constitutes a critical platform for advancing the frontier of embodied social intelligence in LLM- and VLM-driven agents, systematically exposing bottlenecks in current spatial grounding and ToM generalization capabilities [2512.19992, 2509.05066].

Source: https://www.emergentmind.com/topics/spatially-situated-social-intelligence-test-s-3-it