"Act Like a 5th Grader" is Not Enough: Bounding Knowledge in LLM-Based User Simulators

TL;DR

Introduced CBUS, a cognitive memory-bottleneck framework, to simulate children’s reading behavior, reducing the gap with real students by over 50%.

cs.CL 🔴 Advanced 2026-08-31 14 views
Krisztian Balog Arild Michel Bakken
cognitive modeling LLMs user simulation educational assessment memory constraint

Key Findings

Methodology

This study utilizes a large-scale dataset of 2,359 Norwegian primary students' responses to reading comprehension tasks. The CBUS framework is built upon Baddeley's multi-component working memory model, implementing a parameterized capacity limit (C) to mimic children's limited cognitive resources. It employs two strategies: Single-Pass Reading (SPR), extracting the top C propositions from the text, and Targeted Scanning (TS), extracting relevant propositions based on questions. The model operates in two stages—encoding and execution—where the input text is processed into a limited memory buffer, then used solely for answering questions, ensuring the simulation reflects realistic cognitive constraints. Experiments across models like GPT-4 and Gemini-3.7 demonstrate significant improvements in fidelity.

Key Results

  • Standard persona prompting yields near-perfect accuracy (~98%) with minimal variance, failing to reflect actual student variability (mean ~69%), and producing a high Jensen-Shannon divergence (~0.77), indicating poor realism.
  • In contrast, models constrained by CBUS with limited memory (C=4 or 2) produce accuracy (~66-68%) close to real students, with divergence dropping below 0.2, capturing the natural variance.
  • Scaling up model size without cognitive constraints increases accuracy but worsens distributional mismatch, confirming that architectural restrictions are more effective than raw capacity increases for realistic simulation.

Significance

This work addresses fundamental limitations in current LLM-based user simulators, which tend to overestimate capabilities and lack human-like cognitive bounds. By explicitly modeling working memory constraints, the approach enhances the realism of simulations, crucial for educational technology, cognitive science, and AI evaluation. It demonstrates that architectural constraints can outperform mere scaling, guiding future development of more cognitively plausible AI systems. The methodology also provides a scalable way to incorporate human cognitive limits into large models, fostering more trustworthy AI-human interaction models.

Technical Contribution

The paper introduces CBUS, a novel architecture integrating a parameterized, two-stage episodic memory bottleneck inspired by Baddeley's model. It formalizes two reading strategies—SPR and TS—to simulate different cognitive approaches. The key innovation lies in decoupling information extraction from reasoning, enforcing a strict memory capacity limit during encoding, and ensuring the model only uses this limited information during answering. This structural approach significantly narrows the simulation gap, providing a new paradigm for cognitively constrained AI modeling. The framework is compatible with multiple LLM backbones and can be extended to other cognitive tasks.

Novelty

This is the first work to embed explicit cognitive memory constraints into large-scale LLM user simulators, moving beyond superficial persona prompts. By operationalizing a parameterized, capacity-limited episodic buffer, the method captures the natural variance of children’s reading comprehension, addressing a critical gap in AI simulation fidelity. The approach combines cognitive science principles with state-of-the-art NLP, offering a new direction for realistic AI-human interaction modeling.

Limitations

  • The fixed capacity parameter C is based on general cognitive estimates and may not reflect individual differences or developmental stages, limiting personalization.
  • The current architecture is tailored for reading comprehension; extending to open-ended dialogue or multi-modal tasks requires additional adaptation.
  • Simplification of cognitive processes may overlook factors like attention, inference strategies, or emotional states, which also influence human cognition.

Future Work

Future research will explore dynamic and personalized cognitive constraints, integrating attention and inference models. Extending CBUS to multi-modal inputs, such as visual or auditory information, could further enhance realism. Additionally, combining reinforcement learning to optimize information extraction strategies may improve adaptability across diverse tasks and populations, broadening the framework’s applicability in education, psychology, and human-AI interaction.

AI Executive Summary

Current large language models (LLMs) excel at generating human-like text but often fail to accurately simulate human cognitive limitations, especially in educational contexts. They tend to produce deterministic, superhuman responses that overlook the natural variability and bounded reasoning abilities of children. This discrepancy hampers their utility in realistic simulations for assessment, personalized learning, and cognitive research. To address this, the study introduces the Cognitively Bounded User Simulator (CBUS), a novel architecture inspired by Baddeley's multi-component working memory model. CBUS explicitly enforces a limited memory capacity (C), operationalized through a two-stage process: in the encoding stage, the model extracts a restricted set of propositions from the text using strategies like Single-Pass Reading (SPR) or Targeted Scanning (TS); in the execution stage, it answers questions solely based on this limited information. This structural constraint effectively narrows the gap between simulated and real children, as shown by extensive experiments on a large Norwegian dataset. Results reveal that models with cognitive bounds produce more realistic score distributions, capturing the natural variance of children’s responses, unlike unconstrained models that tend to overperform and produce deterministic outputs. Importantly, increasing model size without cognitive restrictions further worsens fidelity, emphasizing the importance of architectural constraints over raw capacity. The findings demonstrate that integrating cognitive science principles into AI models leads to more trustworthy and human-like simulations, with broad implications for education, cognitive science, and AI evaluation. Future work will focus on refining these constraints, incorporating multi-modal inputs, and personalizing simulations to individual differences, paving the way for more sophisticated, human-aware AI systems.

Deep Dive

Abstract

Large language models (LLMs) are increasingly used to simulate human behavior but frequently fail to exhibit realistic cognitive constraints, suffering from a "superhuman bias." Using a dataset of over 71,000 reading comprehension responses from 2,359 primary-school students (grades 4--6), we demonstrate that standard persona prompting yields near-perfect, deterministic performance, failing to capture the natural variance of developing readers. To address this, we introduce the Cognitively Bounded User Simulator (CBUS), an architectural framework that explicitly models the restricted working memory of young readers through an episodic bottleneck. Within this framework, we formalize two distinct test-taking strategies to emulate different reading behaviors. Our evaluation shows that explicitly modeling cognitive bounds significantly narrows the simulation gap across multiple LLM backbones, demonstrating that enforcing architectural constraints is more effective for high-fidelity simulation than simply scaling raw model capabilities.

cs.CL cs.AI