Daily Paper Deep Dive | September 14, 2026
Three recent arXiv AI papers, explained in depth: an emergent internal drive for AI agents, a benchmark for topological reasoning in foundation models, and a Bayesian backward-reasoning method for resolving multi-agent disagreement.
---
Paper 1: Artificial Id — When AI Starts to Have "Desires"
Paper: Artificial Id: an adaptive internal drive for agentic AI — Yakov Shkolnikov, arXiv:2609.11911 (Sept 10, 2026)
Key points
- Core idea: As LLM agents evolve from answering questions to autonomously completing tasks, do they need something like Freud's "Id" — an intrinsic internal drive? The paper answers with an elegant experiment.
- The bacteria bot: A 20-parameter linear controller — far too small for general reasoning — lives in a virtual petri dish. It receives no reward, no goal instructions. The only mechanism: a "lifespan clock" that runs 20x slower near "food." On death, a mutated copy inherits the same body. Longer-lived strategies get copied more. This is differential persistence — selection by survival, not gradient descent.
- World 1: Evolution exploits a physics loophole — a constant backward push freezes orientation relative to body coordinates, turning it into a fixed world-frame force. Evolution doesn't seek optimal solutions, only "good enough" ones.
- World 2: With the loophole sealed, controllers genuinely learn to use local sensor signals. Key insight: environment signals become behaviorally important because attending to them extends survival — drive emerges from the environment, not injected externally.
- World 3: When left/right food signals are swapped, frozen populations collapse (<1% occupancy). But populations still allowed to mutate show a near-poetic recovery curve: occupancy crashes, mutation and diversity rise, median food weights change sign, and all three seeds recover above the blind-force baseline — online re-adaptation without anyone announcing the rule change.
- Architecture vision: A functional Freudian split — the Id provides drive (continue/stop/change), the Ego is general reasoning translating drive states into plans, and the Superego defines alignment boundaries. Current agents keep all control logic in external "harnesses"; this work moves part of it inside the agent.
- Alignment as persistence: Because the Id's state persists across task boundaries, so can misaligned or corrupted states. The paper lists seven elements needed to maintain alignment: trusted observations, consequence channels, persistent state, authority, identity, provenance, and hard constraints. Alignment becomes a property of persistent agentic systems, not of single trajectories or model responses.
- Motivation: Drawing on Piaget's *The Child's Conception of Space* (1956) — children grasp topological relations (inside/outside, connected/separate) before metric ones — the authors ask whether multimodal LLMs share this foundational spatial intuition.
- Benchmark: 11,030 instances, 13 task types (73% reasoning, 27% planning), organized around five pillars: 1. Continuity — maze reachability, pipe connections 2. Separation — assembly separability, one-stroke drawing 3. Order — bead-string replication (Piaget's classic), origami point order 4. Enclosure — fence & sheep, hole detection, Chat Noir (trapping a fleeing cat on a hex grid) 5. Knots — real vs. apparent knots, untangling cables
- Results: Humans average 97.87%; the best model (GPT-5.6-Sol) averages 61.42%. The reasoning–planning gap is stark: GPT-5.6-Sol drops from 66.83% (reasoning) to 52.75% (planning); Gemini-3.1-Pro plummets from 52.24% to 19.23%. The best open model (Qwen3.5-397B-A17B) averages 5.27% on planning; all open models score 0% on Pipe and One Stroke.
- Error analysis (910 sampled errors, 7-category taxonomy): 58.1% of reasoning failures are perception grounding failures — the model misreads the image itself. 43.3% of planning failures are action-planning errors, plus dynamic violations (24.5%) and state-prediction errors (16%). Explicit topology errors are rare (3.8–5.4%) — models fail before they even reach topological reasoning.
- Training helps perception, not action: SFT+RL on Qwen3-VL-2B lifts reasoning from 8% to 51.53%, but planning only from 0.20% to 6.33%. Generated "imagined rollouts" preserve local cues but don't reliably follow environment dynamics or preserve topological properties across transitions.
- Takeaway: Current MLLMs handle metric space reasonably but have fundamental weaknesses in topological space — connectivity, separation, enclosure, entanglement — the most basic constraints of the physical world.
- Problem: Voting, LLM-as-judge, and multi-round debate all operate in the same direction — forward reasoning from evidence to conclusion. If the majority shares a correlated error (the same bias, the same blind spot), these methods amplify rather than correct it.
- The trick — reverse the direction: Decompose evidence into context
aand remaining evidencee. Under a factorizationa → d → e, build a reverse posterior:R(d|x) ∝ P(e|d) × P(d|a). This is a different factorization of the same posterior as each agent's forward one — biased differently, so errors are likely non-collinear. - Measuring divergence: Jensen-Shannon divergence between each forward posterior
F_iand the reverse anchorR. Crucially, R is often *less* accurate on its own; its value is structural difference, not accuracy. On the disagreement subset, R's label-collision rate with forward errors is only ~0.33, versus 0.72 between two forward agents. - Three aggregation strategies:
- MinJS: hard-select the agent closest to R — simple, sometimes beaten by range voting.
- FwdJS: soft weighting
w_i = exp(-τ·D_i)/Σ_j exp(-τ·D_j)with τ = 5.0; R only re-weights forward predictions. - LogLin: log-linear fusion
P_LogLin(d) ∝ P_FwdJS(d)^(1-w_R) × R(d)^w_Rwith w_R = 0.2 — the strongest method. - Results (DDXPlus diagnostic dataset): LogLin is best on all 5 backbones; on the disagreement subset it beats the best election baseline by 1.2–4.7 points, reaching 79.07% GTPA@1 on DeepSeek-V4-Flash. Gains concentrate exactly where agents disagree.
- Ablations: Replacing R with the pool mean (MeanF) or an external generic forward posterior (GenF) is strictly worse — the value comes from cross-path consistency, not group consensus. Measuring distance from in-pool consensus would just reward conformity and penalize the rare agent that is right when the majority is wrong.
- Light calibration: A two-stage, label-efficient refinement (ordinal shape parameters plus a scalar class-prior correction) improves R without touching the LLMs or the aggregation operator.
- Shkolnikov, Y. (2026). Artificial Id: an adaptive internal drive for agentic AI. arXiv:2609.11911.
- Ge, Y., Liu, A., Wang, Q., et al. (2026). MindTopo: Can Foundation Models Reason in Topological Space? arXiv:2609.11900.
- Piaget, J., & Inhelder, B. (1956). The Child's Conception of Space.
- Chen, K., Wang, W., Seneviratne, S., et al. (2026). When Agents Disagree: Bayesian Backward Reasoning as a Label-Free Anchor for Multi-Agent Collective Decision-Making. arXiv:2609.11709.
- DDXPlus dataset (Fansi Tchango et al., 2022).
---
Paper 2: MindTopo — Can Foundation Models Reason in Topological Space?
Paper: MindTopo: Can Foundation Models Reason in Topological Space? — Yunfei Ge, Anbang Liu, Qineng Wang, et al. (Northwestern / Microsoft Research / Stanford), arXiv:2609.11900 (Sept 10, 2026)
Key points
---
Paper 3: When Agents Disagree — Bayesian Backward Reasoning as a Label-Free Anchor
Paper: When Agents Disagree: Bayesian Backward Reasoning as a Label-Free Anchor for Multi-Agent Collective Decision-Making — Ken Chen, Wei Wang, Sachith Seneviratne, Hansani Weeratunge, Saman Halgamuge (University of Melbourne), arXiv:2609.11709 (Sept 10, 2026)
Key points
Why it matters
Disagreement is a signal, not noise. Instead of voting immediately, cross-validate along two independent inference paths — a computationally cheap, label-free alternative to debate and majority voting.
---
References