Paper deep dive
Information as Structural Alignment: A Dynamical Theory of Continual Learning
Radu Negulescu
Intelligence
Status: succeeded | Model: google/gemini-3.1-flash-lite-preview | Prompt: intel-v1 | Confidence: 97%
Last extracted: 4/10/2026, 3:48:21 AM
Summary
The paper introduces the Informational Buildup Framework (IBF), a novel approach to continual learning that treats information as structural alignment rather than stored content. By utilizing two governing equations—a Law of Motion for coherence and Modification Dynamics for landscape deformation—the framework enables memory, agency, and self-correction to emerge from learning dynamics. IBF demonstrates superior retention and backward transfer across toy models, non-stationary environments, chess, and Split-CIFAR-100, effectively mitigating catastrophic forgetting without storing raw data.
Entities (5)
Relation Signals (2)
Informational Buildup Framework → evaluatedon → Split CIFAR-100
confidence 100% · validate across three domains: ... (3) Split-CIFAR-100
Informational Buildup Framework → mitigates → Catastrophic Forgetting
confidence 95% · Across all three domains, IBF achieves replay-superior retention without storing raw data.
Cypher Suggestions (0)
No Cypher suggestions yet.
Abstract
Abstract:Catastrophic forgetting is not an engineering failure. It is a mathematical consequence of storing knowledge as global parameter superposition. Existing methods, such as regularization, replay, and frozen subnetworks, add external mechanisms to a shared-parameter substrate. None derives retention from the learning dynamics themselves. This paper introduces the Informational Buildup Framework (IBF), an alternative substrate for continual learning, based on the premise that information is the achievement of structural alignment rather than stored content. In IBF, two equations govern the dynamics: a Law of Motion that drives configuration toward higher coherence, and Modification Dynamics that persistently deform the coherence landscape in response to localized discrepancies. Memory, agency, and self-correction arise from these dynamics rather than being added as separate modules. We first demonstrate the full lifecycle in a transparent two-dimensional toy model, then validate across three domains: a controlled non-stationary world, chess evaluated independently by Stockfish, and Split-CIFAR-100 with a frozen ViT encoder. Across all three, IBF achieves replay-superior retention without storing raw data. We observe near-zero forgetting on CIFAR-100 (BT = -0.004), positive backward transfer in chess (+38.5 cp), and 43% less forgetting than replay in the controlled domain. In chess, the framework achieves a mean behavioral advantage of +88.9 +/- 2.8 cp under independent evaluation, exceeding MLP and replay baselines.
Tags
Links
- Source: https://arxiv.org/abs/2604.07108v1
- Canonical: https://arxiv.org/abs/2604.07108v1
Trouble viewing inline? Open PDF directly →
Full Text
119,396 characters extracted from source content.
Expand or collapse full text
Information as Structural Alignment: A Dynamical Theory of Continual Learning The Informational Buildup Foundation Radu Negulescu / April 2026 radu@ibf.xyz Abstract Catastrophic forgetting is not an engineering failure. It is a mathematical consequence of storing knowledge as global parameter superposition. Existing methods (regularization, replay, frozen sub-networks) add external mechanisms to a shared-parameter substrate. None derives the retention mechanism from the learning dynamics themselves. This paper introduces the Informational Buildup Framework (IBF), an alternative substrate for continual learning derived from the premise that information is the achievement of structural alignment rather than stored content. In IBF, two equations define the governing dynamics: a Law of Motion driving configuration toward higher coherence, and Modification Dynamics that persistently deform the coherence landscape in response to localized discrepancy signals. Memory, agency, and self-correction arise from these dynamics rather than being added as separate modules. We demonstrate the full lifecycle on a two-dimensional toy model where every mechanism is visible, then validate across three domains: (1) a controlled non-stationary world, (2) chess (evaluated independently by Stockfish), and (3) Split-CIFAR-100 (20 tasks, frozen ViT encoder). Across all three domains, IBF achieves replay-superior retention without storing raw data. We observe near-zero forgetting on CIFAR-100 (BT = -0.004), positive backward transfer in chess (+38.5 cp), and 43% less forgetting than replay in the controlled domain. In chess, the framework achieves a mean behavioral advantage of +88.9±2.8cp+88.9± 2.8\,cp at the geometrically prescribed bandwidth under independent evaluation, exceeding MLP and replay baselines. A key empirical result is regime dependence. The same agency mechanism yields three outcomes across discrepancy regimes: helpful in structured domains, harmful in contradictory contexts, and neutral when baselines are saturated, as predicted by the theory. Ablations confirm a developmental cascade: agency shapes which corrections are learned, activates the self-correction mechanism, and curated memory produces a systematic behavioral advantage. Keywords: continual learning; catastrophic forgetting; non-parametric continual learning; non-parametric memory; kernel methods; emergent agency; geometric resolution. 1 The Problem Train a neural network on task A. It learns. Train it on task B. It learns B, but performance on A collapses catastrophically. This is not a bug. It is a mathematical consequence of how the network stores knowledge. All weights are shared globally; learning B necessarily perturbs the parameter configuration that encoded A. Catastrophic forgetting [1, 2] is structural, not incidental. The response has taken the form of added mechanisms: regularization penalties [3], frozen sub-networks, stored raw data [4], and growing task-specific capacity through methods such as dynamically expandable and progressive neural networks [5, 6]. Each mitigates forgetting. None eliminates it by construction. The cause runs deeper than any single method can reach. The dominant computational paradigm, whose early formalization traces to McCulloch and Pitts [7], stores memory in shared parameters and updates knowledge through changes to those same parameters. There is no intrinsic mechanism ensuring that modifying one memory leaves others intact. These are not engineering oversights. They are consequences of the substrate itself. The question, then, is this: is there a substrate where learning B need not destroy A by construction rather than by countermeasure? This paper introduces one. It rests on a single premise: information is not data. It is the achievement of structural alignment between a system’s internal configuration and the environment’s structure. From this premise, two equations define the governing dynamics. Memory, agency, and self-correction are then formulated as derived capacities of the framework: consequences the dynamics say should follow, rather than engineered additions layered on afterward. Before stating the theory, we demonstrate it. 2 The Toy Model: IBF in Two Dimensions We begin by instantiating the simplest possible learning system that exhibits every Informational Buildup Framework (IBF) mechanism operationalized in this paper: a two-dimensional configuration space, two actions, and two sequential contexts. The system will learn from scratch, face a context switch that contradicts part of what it learned, and must sort the knowledge that transfers from the knowledge that does not. Every mechanism that appears later in the formal theory and the three-domain validation is visible here at a scale the reader can easily keep in mind. 2.1 Setup Inputs are vectors x∈ℝ2x ^2 sampled from a standard normal distribution. The system selects one of k=2k=2 actions for each input. The configuration space is z=[x1,x2]z=[x_1,x_2]: a transparent encoding with no compression, so the reader sees exactly what the system sees. A baseline evaluator ℛ^^base(z) R_base(z) provides an initial assessment of each configuration, initialized near 0.50.5 everywhere (the system starts knowing nothing). The environment determines the correct action through a scoring function with two components: sj(x,c)=β⋅x1⋅pj+α⋅uc⋅x2⋅rj,s_j(x,c)=β· x_1· p_j+α· u_c· x_2· r_j, (1) where p=[+1,−1]p=[+1,-1] and r=[+1,−1]r=[+1,-1] are coefficient vectors, β=α=1.0β=α=1.0, and uA=+1u_A=+1, uB=−1u_B=-1. This decomposition is the key to the entire demonstration. The first term (β⋅x1⋅pjβ· x_1· p_j) is invariant: it produces the same contribution in both contexts. When x1>0x_1>0, action 0 is favoured; when x1<0x_1<0, action 1 is favoured, regardless of context. The second term (α⋅uc⋅x2⋅rjα· u_c· x_2· r_j) is context-specific: it flips sign between Context A and Context B, creating maximal contradiction. A position dominated by x1x_1 has the same correct answer in both contexts. A position dominated by x2x_2 has opposite correct answers. The system does not know this decomposition. It must discover which aspects of the environment are universal and which are local from interaction alone. Intuitively, this toy world mixes truth and contradiction. One feature (x1x_1) expresses structure that remains valid across contexts, while the other (x2x_2) expresses structure that reverses when the context changes. The system is never told which is stable and which is local. It must infer that distinction from interaction alone, deciding what to preserve, what to isolate, and what to let dissolve. 2.2 Step 1: The Empty Landscape Before any interaction, the system’s internal coherence landscape is flat: it assigns nearly the same value to every location in configuration space, with ℛ^eff(z)≈0.5 R^eff(z)≈ 0.5 everywhere. The system has no basis for preferring one action over the other. It selects at random. Performance is at chance (∼50% \!50\%), as shown below. Figure 1: Before interaction: flat landscape, chance performance. 2.3 Step 2: Interaction and Nucleation The system encounters its first inputs. For each input x, it selects action aja_j and receives a discrepancy signal =Rimposed−RchosenD=R_imposed-R_chosen, measuring the gap between the environmental truth and the system’s current assessment. Where the gap is large and no existing memory center covers the visited region (kernel activation below threshold), a new center nucleates at z: cnew=(z,v=η⋅,w=0).c_new=(z,\;v=η·D,\;w=0). (2) The landscape deforms locally: a bump appears at z, shaped by the Gaussian kernel (z,zi)=exp(−‖z−zi‖2/2σ2)K(z,z_i)= (-\|z-z_i\|^2/2σ^2). Nearby inputs now receive a corrected assessment. Distant inputs are unaffected. The system has begun to build a local map of where its evaluator is wrong, as shown below. Figure 2: After 5 epochs: 22 memory centers nucleate at locations of large discrepancy signals. Green background indicates regions where the system chooses correctly; pink indicates errors. Intuitively, in IBF, learning begins where the system finds a mismatch between its current map and the world; where the map is already correct, there is nothing to correct. 2.4 Step 3: Accumulation and Crystallization At the end of Phase A (the first context), after 25 epochs (5,0005,000 interactions), 2323 centers have nucleated. Each sits at a location the system visited repeatedly, encoding a correction to the baseline evaluator at that point. Centers that receive repeated, consistent D-signals accumulate correction weight and eventually undergo a stability transition: their decay rate drops by 60×60× (μeff:0.06→0.001 _eff:0.06→ 0.001). They stop fading. 1818 of 2323 centers crystallize. Some encode the invariant feature (x1x_1), others encode the context-specific feature (x2x_2). But the system does not yet know which is which. That distinction requires a second context. Context A accuracy rises from 0.500.50 to 0.950.95. The system has learned by deforming the coherence landscape, not by adjusting global parameters. Each correction is spatially localized: it improves performance near its location and has no effect elsewhere, as shown below. Figure 3: End of Phase A: 18 of 23 centers crystallize (filled circles). Orange: invariant (x1x_1-encoding). Purple: context-specific (x2x_2-encoding). Intuitively, the system now carries stable memories from experience, but it does not yet know which ones are universal and which ones belong only to the current context. The next context will force that distinction. 2.5 Step 4: Context Switch and Isolation Phase B begins. The scoring function flips: uB=−uAu_B=-u_A. The x2x_2 component now demands the opposite answer from Phase A. This is the moment where a standard neural network would catastrophically forget: training on Phase B would overwrite the weight configuration that encoded Phase A. Here, something different happens. Context-gated read access silences all Phase A centers. They remain in the landscape but contribute nothing to the evaluation (the read-gating variable, γi=0 _i=0). They are asleep, not dead. New centers nucleate for Context B, occupying their own regions of the space, as shown below. Figure 4: Previously crystallized centers (grey) remain in the landscape but are gated off, allowing new context-specific learning (pink) to begin without overwriting dormant memories. Intuitively, old knowledge is not destroyed when the world changes. It is temporarily silenced, creating space for new learning without erasing what came before. 2.6 Step 5: The Crucible As Phase B training proceeds, its inputs activate the Gaussian kernel near some Phase A crystals. These sleeping crystals now face a test: does their stored correction agree with the new context’s discrepancy signal? Invariant crystals (x1x_1-encoding): the raw D from Phase B is consistent with their stored correction. The x1x_1-structure they learned in Phase A is still true in Phase B. They survive. After accumulating at least 44 cross-context updates without reversal, they earn broadcast rights: γi _i becomes 11, projecting their corrections into Phase B. Context-specific crystals (x2x_2-encoding): the raw D from Phase B contradicts their stored correction. The product vi⋅¯rawv_i· D_raw falls below the reversal threshold (−0.125-0.125). They dissolve: μeff _eff reverts to 0.060.06, broadcast rights are revoked, and they fade from the landscape. Of 1818 Phase A crystals, 1414 survive verification (predominantly invariant) and 44 are dissolved (predominantly context-specific). The Crucible has separated universal from local knowledge using only raw cross-context discrepancy signals. No labels or task annotations were consulted. Figure 5: Universal corrections survive and earn broadcast rights (14, green), while context-specific corrections dissolve (4, orange). Intuitively, the system now discovers which memories were about the world itself and which were only about the old context. The first are kept and shared; the second are melted down. 2.7 Step 6: Forward Transfer and Retention The 1414 verified universals now broadcast into Phase B, contributing x1x_1-structure learned in Phase A to a context that never trained on it directly. Phase B reaches 0.970.97 accuracy. Figure 6: Verified universals broadcast into Phase B (dashed circles: kernel influence). Intuitively, once a memory proves it reflects structure that remains true across contexts, the system can reuse it instead of learning that structure again from scratch. When we return to Phase A inputs for evaluation, most crystallized corrections are intact. They survive because their decay rate dropped during crystallization (μeff=0.001 _eff=0.001), allowing them to physically resist the entropic passage of time and autonomously bridge hundreds of dormant epochs with near-zero erosion. But AccA=0.778Acc_A=0.778 (vs. 0.9520.952 at end of Phase A), giving BTA=−0.174BT_A=-0.174. This is not zero forgetting. The Crucible’s cross-context broadcast introduces some interference, the thermodynamic cost of forward transfer. The No-Crucible ablation confirms the tradeoff: without the Crucible, BTA=0.000BT_A=0.000 (perfect isolation), but zero knowledge transfer between contexts. Figure 7: Return to Phase A: AccA=0.778Acc_A\!=\!0.778 (BTA=−0.174BT_A\!=\!-0.174). Previously learned corrections remain preserved in their original context, although cross-context broadcast introduces a limited transfer-for-retention tradeoff. Intuitively, in a world where contexts contradict each other, transfer comes with a cost: sharing knowledge helps the new context but introduces some interference with the old one. In domains where contexts share deeper structure, such as chess, the same mechanism can preserve prior knowledge more strongly and even improve it. 2.8 Step 7: Emergent Agency Alongside the value corrections, a second modification channel has been accumulating throughout training. Each crystallized center accumulates an agency weight wiw_i based on the variance of its D-signal history. Centers in low-variance regions, where corrections have been consistently reinforced, develop positive wiw_i, driving keffk_eff above baseline: the system commits to what it knows. Centers in high-variance regions, where corrections have been noisy or contradicted, keep wiw_i low: the system hedges. After Phase B, keffk_eff varies from 5.05.0 to 9.89.8 across the 22D space. The system has learned not just what to correct but where to trust its own corrections. This is the toy model’s agency channel: spatially varying responsiveness that emerged from interaction rather than from a separate module. Figure 8: Emergent agency: keffk_eff ranges from 5.05.0 to 9.89.8, making responsiveness spatially nonuniform, increasing where corrections are reliable and remaining low where the local structure is uncertain or contradictory. Intuitively, experience is now shaping confidence itself. The system learns not only what tends to be true, but also where it should commit more strongly and where it should remain cautious. 2.9 What You Just Watched Every mechanism in these seven steps (nucleation, crystallization, context gating, dissolution, broadcast verification, forward transfer, retention, and agency modulation) arose from two equations and one premise. No mechanism was added by hand. Each emerged as a consequence of the dynamics preserving structural alignment under non-stationary interaction. Even at d=2d=2, the mechanisms differentiate. A mini-ablation confirms that each mechanism produces a distinct behavioral signature in this minimal system: Condition AccAAcc_A (after B) BTABT_A AccBAcc_B Full IBF 0.778 −0.174-0.174 0.970 No-Agency 0.766 −0.188-0.188 0.960 No-Cryst. 0.836 −0.132-0.132 0.960 No-Crucible 0.952 +0.000+0.000 0.950 Passive 0.502 +0.000+0.000 0.488 The No-Crucible condition confirms that the substrate itself does not forget: BTA=0.000BT_A=0.000. The backward transfer observed in the full system (−0.174-0.174) is the thermodynamic cost of enabling cross-context transfer through the Crucible. The system can always choose perfect isolation. The question is whether the transfer justifies the cost. In this toy world, where contexts maximally contradict, the cost is visible. In domains where contexts share deeper structure, the same mechanism produces positive backward transfer: training on new contexts strengthens, rather than degrades, prior knowledge. The three-domain validation will show both regimes. The toy model is not merely an illustration of the theory. It is the theory instantiated at d=2d=2. What follows in Section 3 gives it formal names. What follows in Sections 4–7 shows it working in three domains at 88, 1212, and 6868 dimensions. But first, we name what the reader has already seen. 3 The General Theory The mechanisms observed in Section 2 are not engineered heuristics. They are consequences of one premise and two coupled equations: information as structural alignment, a Law of Motion, and Modification Dynamics. This section states that premise, the axioms of existence and motion, the modification postulate, and the derived claims that predict each observed capacity. The full framework extends beyond the subset presented here, comprising a broader axiomatic, postulatory, and proof-level structure to be developed in a separate foundational work. For reference, two compact tables at the end of the paper summarize the formal primitives (Table 4) and situate the full theoretical arc, including the elements not stated in detail here (Table 5). For the purposes of the continual learning experimental program, however, we present only the essential components required in this paper. We begin with the fundamental premise from which the rest of the framework unfolds. 3.1 The Alignment Premise Information is not data. It is the achievement of structural alignment between a system’s internal configuration and the structure of its environment. Under this premise, memory becomes not storage, but persistent geometric deformation. Learning becomes the process of deformation. Forgetting, the erosion of deformation under entropic decay. And Intelligence becomes the capacity to deform systematically in ways that improve future alignment. From this premise, four axioms define the dynamics of existence and motion. One postulate defines the dynamics of modification. And the mechanisms observed in the toy model are consequences of this structure. 3.2 Axioms of Existence and Motion Axiom 1 (The Field). There exists a universal informational domain ℱF within which all patterns arise, persist, and dissolve. For any system S at observational scale λ, the Field admits an associated differentiable configuration space (S,λ)C(S,λ) comprising all admissible internal states of the system. Seen in toy model as the 2D space z=[x1,x2]z=[x_1,x_2] (Figure 1). Axiom 2 (Coherence). For every system S at observational scale λ, there exists a continuously differentiable function ℛ^(⋅,S,λ):(S,λ)→ℝ+ R(·,S,λ):C(S,λ) ^+ that quantifies the degree of structural alignment between the system’s internal configuration and its environment. Coherence is relational (defined relative to a system and observational scale), fragile (generic unstructured perturbations degrade it), and non-decomposable (not globally expressible as a function of independent subsystem coherences). Seen in toy model as the baseline evaluator ℛ^^base(z)≈0.5 R_base(z)≈ 0.5. As corrections accumulate, coherence basins form around reliable corrections (Figures 2–3). Intuitively, coherence assigns a score to every point in the system’s configuration space. That score measures how well the system’s current internal configuration fits the structure of its environment. Higher coherence means better alignment; lower coherence means worse alignment. A stable system occupies a connected region where this fit remains high enough to persist. Axiom 3 (Informational Gravity). Wherever coherence has a nonzero gradient, the system experiences a directional pull toward higher structural alignment: G(xS)=∇xSℛ^(xS,S,λ).G(x_S)= _x_S R(x_S,S,λ). (3) Seen in toy model as the discrete coherence increments ΔRjeff\ R^eff_j\ across the two actions (Step 2). Intuitively, coherence defines a landscape of better and worse fit. Informational gravity is the local pull of that landscape: at any point, it indicates the direction in which alignment improves most strongly. Axiom 4 (Law of Motion). The system evolves through configuration space along the gradient of its effective coherence landscape, modulated by a positive responsiveness field kS(xS,S,λ)>0k_S(x_S,S,λ)>0: dxSdt=kS(xS,S,λ)∇xSℛ^eff(xS,S,λ), dx_Sdt=k_S(x_S,S,λ)\, _x_S R^eff(x_S,S,λ), (4) where ℛ^eff=ℛ^+δℛ R^eff= R+δ R is the experience-modified coherence landscape. On a fixed landscape, the system ascends monotonically; apparent decreases in coherence occur only when the landscape itself is modified beneath the system’s trajectory. Seen in toy model as Boltzmann action selection (Eq. 10). Responsiveness keff(z)k_eff(z) controls the degree of determinism (Figure 8). Intuitively, the system does not merely know where better alignment lies; it moves in that direction. The coherence gradient tells it which way improves fit, while the responsiveness field kSk_S determines how sharply or cautiously the system follows that direction. 3.3 The Modification Postulate Axioms 1–4 describe motion on a fixed landscape. Learning requires the system to deform that landscape through interaction with signals external to its own gradient dynamics. Postulate 1 (Modification Dynamics). The effective coherence landscape evolves under localized discrepancy signals: ∂tδℛ^(y)=η(y,xS)(xS)−μδℛ^(y), ∂ tδ R(y)=η\,K(y,x_S)\,D(x_S)-μ\,δ R(y), (5) where =ℛ^ext−ℛ^effD= R^ext- R^eff measures the discrepancy between the coherence structure imposed by the environment and the system’s current effective evaluation, K is a localization kernel concentrated near the visited configuration xSx_S, η governs the modification rate, and μ governs decay. A parallel equation governs the responsiveness modification δkSδ k_S (the agency channel). This postulate is subject to four structural constraints: (i) the modification rate is slow relative to motion (η≪kSη k_S; timescale separation); (i) total modification remains bounded (capacity constraint); (i) the driving signal D is structurally independent of the gradient that governs motion (separation from motion dynamics); (iv) nontrivial interaction generically produces nonzero responsiveness modification (generic responsiveness modification). An environment supports coherent modification only if its discrepancy signals exhibit nontrivial variation: Var[(xS(t))]>0for a positive-measure set oft.Var [D(x_S(t)) ]>0\;\;for a positive-measure set of\;t. (6) Seen in toy model as Steps 2–3. Each interaction deposits a local correction shaped by K. Corrections accumulate, building the landscape; they fade if unreinforced (transient centers decay at rate μ), and crystallize when the local D-signal converges (μ→0μ→ 0, producing long-lived structure). Intuitively, motion alone lets the system climb a landscape, but learning requires the landscape itself to change. Modification Dynamics are the rule by which repeated mismatch locally reshapes that landscape, turning experience into memory. Crystallization and dissolution. The decay rate μ is not fixed. When the local D-signal converges under consistent reinforcement, μ→0μ→ 0 and the modification becomes long-lived structure (crystallization). When cross-context D-exposure systematically contradicts a crystallized modification, μ returns to its baseline value and the modification decays (dissolution). Both transitions are consequences of the modification dynamics acting on the local thermodynamic state of individual modification sites. Seen in toy model as Step 5. Of 18 crystallized corrections, 4 are contradicted by Phase B evidence and dissolve. The remaining 14, whose corrections are consistent with the new context, survive and earn broadcast rights. Intuitively, memory stabilizes when the same correction keeps proving valid, and it loses that stability when later experience consistently contradicts it. 3.4 Derived Capacities From four axioms and one postulate, capacities conventionally engineered as separate modules appear here as derived consequences of the framework. The claims below state those capacities, ground them in the toy model, and identify their empirical signatures: the observable outcomes that would support or falsify them across the three validation domains. These claims name, in formal terms, the capacities the reader has already seen emerge in the toy model. Claim 1 (Memory). If a visited region reaches local thermodynamic equilibrium under Postulate 1 (i.e., local D converges), the induced modification undergoes a stability transition (μ→0μ→ 0) and persists as a long-lived structure in the effective coherence landscape. Memory is preserved alignment expressed as persistent landscape deformation. Seen in the toy model as crystallization (Step 3) and retention through context switch (Step 6). Its empirical signature is crystallized corrections surviving dormant epochs without replay, producing buffer-free retention across all three validation domains and, where applicable, backward transfer competitive with or superior to buffered baselines (§7.1, §7.2, §7.3). What would prove otherwise? If crystallized modifications decay during dormant epochs despite the stability transition, or if they persist structurally but yield no measurable behavioral retention (with backward transfer indistinguishable from an unmodified baseline), then the Memory claim is false within this experimental program. Claim 2 (Agency). Under the responsiveness modification dynamics, nontrivial interaction generically produces spatially nonuniform kS(z)k_S(z): high where local discrepancy signals are consistent (low D-variance), and low where alignment is uncertain or contradictory (high D-variance). Agency is the interaction-acquired modulation of how strongly coherence gradients are followed. Under probabilistic action selection or concurrent landscape modification, this modulation produces differentiated trajectories; under deterministic evaluation on a fixed landscape, it does not. Seen in the toy model as the keffk_eff heatmap (Figure 8). Its empirical signature is the emergence of spatial structure in keffk_eff correlated with positional complexity (ρpartial(keff,Hnorm)>0 _partial(k_eff,H_norm)>0). Removing agency degrades performance in structured-discrepancy domains (chess) while leaving saturated domains effectively unchanged (CIFAR), thereby producing regime-dependent outcomes from a single mechanism (§7.2, §8.1). What would prove otherwise? If heterogeneous discrepancy histories do not induce spatially nonuniform kSk_S, or if removing agency leaves exploration, cross-context exposure, and downstream performance unchanged in structured environments, then the Agency claim is false within this experimental program. Claim 3 (Intelligence). When memory and agency coexist, a system navigating an experience-refined landscape with agency-modulated responsiveness achieves systematically higher-alignment outcomes than the unmodified baseline, provided the environment contains nontrivial coherence structure (Eq. 6). Seen in the toy model as accuracy increasing from 0.500.50 to 0.950.95 (Phase A). Its empirical signature is that the fully adapted system achieves a statistically significant behavioral advantage over the passive baseline under independent evaluation (Stockfish in chess, held-out accuracy in CIFAR), and exceeds neural baselines where tested, including both MLP and replay in chess (§7.2, §7.3). What would prove otherwise? If, in environments satisfying Eq. 6, the joint presence of memory and agency does not yield systematically higher-alignment outcomes than the unmodified baseline under independent evaluation, then the Intelligence claim is false within this experimental program. Claim 4 (Self-Correction). A system with internally gated read access and cross-context verification can test the continued validity of its own memory. When later experience systematically contradicts a stored modification, that modification loses stability: its decay rate returns to the transient regime, broadcast rights are revoked, and its representational capacity returns to the Field. Self-correction is the system’s ability to let false stability die. Seen in the toy model as context gating and the Crucible (Steps 4–5). Of 18 Phase A crystals, 14 survive verification and 4 dissolve. Its empirical signature is that cross-context exposure selectively destabilizes contradicted crystals while preserving verified ones. The dissolution rate is agency-dependent: without agency-driven exploration, the thermodynamic pressure that triggers selective dissolution does not develop (§7.2, §8.1). What would prove otherwise? If cross-context contradiction does not selectively destabilize contradicted modifications, leaving their dissolution, survival, and broadcast behavior indistinguishable from those of verified modifications, or if dissolution occurs indiscriminately in the absence of contradiction, then the Self-Correction claim is false within this experimental program. — Taken together, these four claims predict a developmental cascade. Persistent modification generates memory (Memory); interaction differentiates the system’s responsiveness (Agency); cross-context verification enables the system to withdraw stability from memories that no longer preserve alignment (Self-Correction); and curated memory under agency-guided motion earns systematically better outcomes than the unmodified baseline (Intelligence). Removing any link degrades the capacities downstream of it. The ablation program in Section 6 tests each link independently. 3.5 The Discretization Bridge Any computational test of IBF operates in a finite regime: finite-dimensional latent spaces, discrete action sets, and finite modification sites. The following claim states the conditions under which that finite implementation converges to the continuous dynamics in the relevant respects. Claim 5 (Discrete Convergence). Under verifiable conditions on the encoder, coherence function, and implementation parameters, discrete IBF dynamics converge to Eqs. (4) and (5) in three respects: (a) Representation (Condition R): The encoder produces a latent space in which ℛ R is C2C^2-smooth with sufficient absolute magnitude (Condition R′). (b) Dynamics (Condition A): The discrete action set contains at least one action with positive coherence increment. (c) Modification: The particle approximation of δℛ^δ R converges to the continuous field as the number of modification sites M→∞M→∞ with appropriately scaled kernel bandwidth σ. Across computational instantiations of the framework, operational checks include representation-ranking tests, magnitude checks (Condition R′), increment checks (Condition A), and kernel-resolution diagnostics based on merge rate. Intuitively, the theory is continuous, but any implementation is finite. The discretization bridge states when a finite latent representation, a finite action set, and a finite collection of memory particles are still sufficient to preserve the same effective dynamics. Next, section 4 translates these continuous equations into the discrete computational particles that implement them. Section 5 instantiates the engine across three domains and verifies Conditions R, R′, and A in each before any training begins. Section 6 states the experimental predictions that follow from the claims. Section 7 reports whether the data confirmed or refuted them. 4 The Universal IBF Engine This section translates the continuous dynamics of Section 3 into a discrete computational engine. Continuous modification fields are realized as finite sets of kernel-localized particles in latent space. In the implementations studied here, this particle approximation is instantiated through two homologous populations: one carrying coherence corrections, the other carrying responsiveness modulation. The precise class layout may vary by domain, but the mechanism does not: gated kernel readout, localized discrepancy-driven writing, convergence-triggered crystallization, contradiction-triggered dissolution, and capacity-controlled merging. Every element introduced below is domain-agnostic. It operates on a d-dimensional latent space z∈ℝdz ^d equipped with a frozen encoder π and a baseline evaluator ℛ^^base R_base. No domain-specific architectures, training protocols, or task scenarios enter at this level. The memory system is not updated by backpropagation through its own state, no optimizer acts directly on its stored corrections, and no replay buffer is required. The mapping to theory is direct: the Field becomes a finite latent configuration space; coherence becomes a baseline evaluator together with an experience-modified effective landscape; the Law of Motion becomes a discrete read-and-select procedure; the Modification Postulate becomes a local write rule; and the derived capacities of Section 3.4 appear as lifecycle transitions within a finite particle system. This engine should therefore be read as a computational instantiation of the continual-learning subset developed in this paper, not as an exhaustive realization of the full framework. 4.1 The Particle Approximation The universal engine stores its modifications in a finite particle representation. In the implementations used here, this appears as two homologous populations in latent space: a coherence-correction population carrying amplitudes viv_i, and a responsiveness population carrying amplitudes wiw_i. Both populations are localized in the same latent geometry and share the same thermodynamic logic. For notational economy, we write a generic particle as ci=(zi,ai,σi,μeff,i,ctxi,…)c_i=(z_i,a_i, _i, _eff,i,ctx_i,…), where aia_i is viv_i in the coherence channel and wiw_i in the responsiveness channel. Across both populations, each particle is described by the following state: Field Type Role ziz_i ℝdR^d Location in latent space aia_i bounded scalar Correction amplitude (viv_i or wiw_i) σi _i ℝ+R^+ Local kernel bandwidth μeff,i _eff,i ℝ+R^+ Effective decay rate ctxictx_i int Birth context D-history list Local discrepancy history verified bool Cross-context broadcast status A particle is transient at birth (μeff,i=μbase _eff,i= _base). When its local discrepancy history converges, it undergoes a stability transition to the crystallized regime (μeff,i=μcryst≪μbase _eff,i= _cryst _base). When sustained contradiction later appears, the particle loses stability and returns to the transient regime. 4.2 The Read Path The read path is the engine-level realization of Axioms 2–4: stored modifications are reassembled into an effective coherence landscape, and action selection follows that landscape under locally modulated responsiveness. Kernel readout. Readout begins by reconstructing the effective landscape from stored particles. The coherence-correction population contributes additively: δR^(z)=∑iγivi(z,zi),δ R(z)= _i _i\,v_i\,K(z,z_i), (7) where (z,zi)=exp(−‖z−zi‖2/2σi2)K(z,z_i)= (-\|z-z_i\|^2/2 _i^2) is a Gaussian radial basis kernel with per-particle bandwidth σi _i, and γi∈0,1 _i∈\0,1\ is the read-gating variable. The responsiveness population is read out intensively rather than additively: δk(z)=∑icryst,iγiwi(z,zi)∑icryst,iγi(z,zi),δ k(z)= _iI_cryst,i\, _i\,w_i\,K(z,z_i) _iI_cryst,i\, _i\,K(z,z_i), (8) where cryst,iI_cryst,i is 11 for crystallized responsiveness particles and 0 otherwise. When the denominator is zero, δk(z)δ k(z) is defined to be 0. This intensive readout keeps responsiveness bounded and makes it a local modulation rather than an unbounded sum. Reflexive read-gating (γi _i). Not every stored particle is allowed to contribute. A particle is readable only under the following conditions: γi=1same-context,1cross-context, crystallized and verified,0otherwise. _i= cases1&same-context,\\ 1&cross-context, crystallized and verified,\\ 0&otherwise. cases (9) Unverified particles are silent by default. This is the engine-level realization of the context-gated read access introduced in the toy model. In a more continuous formulation, cross-context readability would likely vary smoothly with a particle’s thermodynamic state; here it is discretized deliberately as a minimal computational approximation. Effective coherence and action selection. Once readable particles have been assembled into δR^(z)δ R(z) and δk(z)δ k(z), the engine evaluates candidate next states against the resulting effective landscape. The effective coherence is ℛ^eff(z)=ℛ^^base(z)+δR^(z) R^eff(z)= R_base(z)+δ R(z), and the effective responsiveness is keff(z)=max(kmin,k0+δk(z))k_eff(z)= (k_ ,\,k_0+δ k(z)). Let zcurrentz_current denote the current state and let zjz_j denote the candidate next state associated with action aja_j. Define sjeff=ℛ^eff(zj)s_j^eff= R^eff(z_j) as the effective coherence assigned to that candidate. The Law of Motion (Axiom 4) is instantiated as Boltzmann selection over candidate next states: P(aj∣zcurrent)=exp(keff(zcurrent)sjeff)∑mexp(keff(zcurrent)smeff),P(a_j z_current)= \! (k_eff(z_current)\,s_j^eff ) _m \! (k_eff(z_current)\,s_m^eff ), (10) where ΔRjeff=sjeff−ℛ^eff(zcurrent) R_j^eff=s_j^eff- R^eff(z_current). When ℛ^eff(zcurrent) R^eff(z_current) is shared across all candidates, this is equivalent up to a common offset to Boltzmann selection over coherence increments ΔRjeff R_j^eff. Intuitively, the read path answers two questions at once: what past corrections apply here, and how strongly should the system trust them? The first reshapes the landscape itself; the second governs how sharply the system moves across it. 4.3 The Write Path The write path is the direct computational realization of Postulate 1. It specifies how localized discrepancy deforms the effective landscape, and how the same interaction stream also shapes the responsiveness channel. The discrepancy signal. After each interaction step, the engine receives a discrepancy signal D that measures the gap between the environment’s imposed coherence structure and the system’s current effective evaluation. Its concrete form varies by domain and is specified in Section 5. At the engine level, only its structural role matters: it is the source of modification, but it is not the gradient that governs motion. Two-pass update. Once discrepancy is available, writing proceeds in two logically distinct passes. The separation is necessary. The engine must distinguish between learning from the active context and testing whether past corrections remain valid under a changed one. Pass 1: cross-context contradiction testing. Crystallized particles from other contexts whose kernel activation exceeds an exposure threshold receive the raw, unattenuated discrepancy signal in their history logs. This pass serves only to assess continued validity under contradiction, not to write new local structure. Pass 2: same-context spatial learning. Particles from the active context update through localized kernel-weighted writing: vi←clip(vi+ηi(zi,zvisited),−vmax,vmax),v_i \! (v_i+ _i\,K(z_i,z_visited)\,D,\,-v_ ,\,v_ ), (11) where ηi=ηbase _i= _base for transient particles and ηi=ηcryst _i= _cryst for crystallized ones. These particles append kernel-local discrepancy to their history, that is, the quantity ⋅D·K. If no same-context particle exceeds the creation threshold, a new particle is nucleated at zvisitedz_visited. This separation is an architectural invariant: raw cross-context discrepancy is used for Crucible verdicts, while local kernel-weighted discrepancy is used for spatial learning. Responsiveness update. The same interaction stream also updates the responsiveness population, but now the target is variance-sensitive rather than value-corrective. Each crystallized responsiveness particle is moved toward a variance-derived target wtarget=clip(wmax(1−varθw),−wmax,wmax),w_target=clip\! (w_ (1- D_var _w ),-w_ ,\,w_ ), (12) where varD_var is the rolling variance of the particle’s local discrepancy history. It is computed after excluding an initial transient window and then using a recent rolling window. Low variance drives wiw_i upward; high variance drives it downward. Intuitively, the write path turns experience into local structural change. One part of the write path learns what to preserve; the other tests whether what was preserved remains true under changed circumstances. 4.4 The Lifecycle The lifecycle operations realize, in discrete form, the derived capacities stated in Section 3.4: persistence through crystallization, selective loss of false stability through the Crucible, and bounded thermodynamic organization under decay and merge. At each epoch boundary, the engine applies four operations in order. 1. Decay. All particles in both populations undergo passive thermodynamic fading: vi←(1−μeff,i)viv_i←(1- _eff,i)\,v_i, wi←(1−μeff,i)wiw_i←(1- _eff,i)\,w_i. Dormant memories are not frozen. They survive because crystallization makes their decay rate extremely small. Retention is therefore near-zero erosion, not zero decay. 2. Crystallization. A transient particle undergoes the stability transition μeff,i→μcryst _eff,i→ _cryst when two conditions are jointly satisfied: (i) sufficient exposure (ni≥ncryst,minn_i≥ n_cryst,min), and (i) convergence of recent discrepancy history (|¯recent|<θconv| D_recent|< _conv). Convergence means the local correction has stabilized under continued reinforcement. 3. The Crucible (dissolution). A crystallized particle with sufficient cross-context exposure (ncross≥ncross,minn_cross≥ n_cross,min) is tested against recent raw cross-context discrepancy. If the product of its stored correction and the mean recent raw cross-context discrepancy falls below a reversal threshold, vi⋅¯raw,recent<θrev,v_i· D_raw,recent< _rev, (13) the particle loses stability: its decay rate returns to μbase _base, its cross-context broadcast rights are revoked, and it re-enters the transient regime. If not contradicted, it remains verified for cross-context readout. In the present instantiation, verification is phase-local: cross-context broadcast status is reset at context transitions before contradiction testing begins again. Dissolution is distinct from decay. Decay is passive background erosion; dissolution is an explicit state transition triggered by contradiction. 4. Merge and capacity control. Within each population, particles from the same context that lie within a dynamic spatial threshold are merged. The more-updated particle absorbs the less-updated one: corrections, histories, and thermodynamic traces are consolidated, and the merged center retains the prescribed kernel geometry. If capacity is still exceeded after merging, crystallized particles are kept first, and only the remaining transient particles are filtered, with preference given to those that have accumulated the strongest update history. Intuitively, the lifecycle gives the engine its thermodynamics: weak corrections fade, converged ones stabilize, contradicted ones lose that stability, and redundant ones collapse into more efficient local structure. 4.5 Reference Tables For ease of consultation, four compact reference tables are provided at the end of the paper. Table 6 maps the formal theory of Section 3 to the universal engine of Section 4. Tables 4, 5, and 7 provide compact reference summaries of the formal primitives, the broader theoretical arc, and the core symbols used in the discrete implementation. — The engine is now fully specified. Section 5 instantiates this universal mechanism across three validation domains spanning 8 to 68 dimensions, and verifies that the conditions required by the theory are satisfied in each before training begins. 5 Validation Domains and Domain-Specific Instantiations This section instantiates the universal engine of Section 4 across three validation domains spanning 88- to 6868-dimensional latent spaces. The mechanism itself is unchanged across domains. What varies is the frozen representation, the baseline evaluator, the discrepancy signal, and the legal action structure through which motion is discretized. Behavioral differences are therefore attributed not to changes in the mechanism, but to differences in latent geometry and environmental coherence structure. These domains are not meant to exhaust the broader scope of IBF. They are validation instantiations of the present continual-learning formulation, chosen to isolate the mechanism under progressively less controlled conditions. Each domain plays a distinct role. RRW is a controlled non-stationary environment with analytically known structure, used to test the mechanism under explicit cross-context contradiction. Chess is a combinatorially complex domain evaluated by an external oracle, used to test whether the same dynamics scale to genuine strategic structure. CIFAR-100 is a high-dimensional continual-learning benchmark built on frozen visual representations, used to test whether the correction dynamics remain stable and non-destructive at larger scale. Before introducing the domain-specific details, we first describe the geometric calibration principle shared by all three. This calibration determines the training bandwidth directly from latent-space geometry, without grid search, and provides the common scale-setting rule under which the universal engine is instantiated in each domain. 5.1 Geometric Resolution Calibration The kernel bandwidth σ is the engine’s central geometric parameter. Standard continual learning methods face analogous scale-setting problems and typically resolve them by domain-specific search over multiple training runs. IBF replaces search with measurement. Across all domains, the same calibration strategy determines the training bandwidth σ∗σ^* from the geometry of the frozen latent space. Two ingredients are required: the effective dimensionality deffd_eff (participation ratio of the PCA spectrum) and an empirical separation statistic between semantically distinct latent configurations. The precise statistic depends on the domain’s action structure: RRW uses the passthrough latent geometry after action-separation calibration; chess uses legal-move sibling distances in the move-augmented space; CIFAR uses class-augmented sibling distances for value corrections together with a companion 6464D agency scale. The shared principle is a bleed criterion: σ∗σ^* must be small enough that a correction deposited at one configuration does not destructively activate at a semantically distinct neighbor. The empirical scaling ratio κ. The quantity κ=σ∗/deffκ=σ^*/ d_eff summarizes this safe training geometry as a single number per encoder: Domain Encoder dzd_z deffd_eff σ∗σ^* κ RRW Passthrough 8 4.0 0.89 0.45 Chess 5-head CNN 12 4.9 1.27 0.57 CIFAR ViT-B/16+PCA 68 28.9 5.0 0.93 Within a given encoder family, κ may serve as a transferable geometric ratio, allowing σ∗σ^* for related tasks to be estimated without retraining or search. Near-optimality of prescribed geometry. After training at σ∗σ^*, the system can be evaluated across a range of σeval _eval values without retraining as a diagnostic of geometric calibration. Across all three domains, the geometrically prescribed bandwidth lies near the empirical optimum: RRW peaks at scale 1.11.1, chess shows only a modest gain above the prescribed value, and CIFAR peaks at scale 0.90.9. No grid search was performed in any domain. The training bandwidth was derived geometrically, and post-training sweeps serve only as diagnostics of near-optimality. With the shared calibration rule established, we now instantiate the same engine in each validation domain. The domains differ in structure and scale, but each is evaluated under the same formal logic: a frozen representation instantiates the configuration space, a fixed baseline evaluator supplies the initial coherence landscape, a domain-specific discrepancy signal drives the modification dynamics, and a geometrically calibrated bandwidth determines the local support of those dynamics. 5.2 Domain I: Rotating Rules World (RRW) RRW is the controlled validation domain. Its role is to test the mechanism under explicit, analytically specified cross-context contradiction, where the underlying structure is fully known and every phase transition can be interpreted directly. The environment operates in an 88-dimensional latent space, z=[x4D;aemb,4D]z=[x_4D;\,a_emb,4D], where x is a continuous random input vector and aemba_emb is a scaled one-hot action embedding produced by a frozen passthrough encoder. The environment unfolds across three sequential phases, A, B, and C, all defined analytically. Its score decomposes into an invariant component, a shared phase-weighted component, and a contextual 22D component. Phase B is the exact reversal of Phase A on that contextual subspace, while Phase C introduces a new random orientation. The result is a controlled source of cross-context contradiction with fully known structure. The baseline evaluator ℛ^^base R_base is a frozen sigmoid evaluator with random affine initialization, increased only as needed to produce nontrivial spread in latent space. The D-signal is binary: Rimposed=1R_imposed=1 if the chosen action is correct and 0 otherwise. Geometric calibration yields σ=0.89σ=0.89 (deff=4.0d_eff=4.0, κ=0.45κ=0.45). Training proceeds for 33 phases × 2525 epochs × 1,0001,000 points. Baselines. All methods receive the same frozen representation, D-signal, and sequential training trajectory: (i) Passive (k≡k0k≡ k_0, no modifications); (i) pure MLP (8→64→18→ 64→ 1, SGD); (i) replay MLP (same architecture, 5050-sample buffer). 5.3 Domain I: Chess Chess is the complexity validation domain. Its role is to test whether the same dynamics scale from analytically controlled contradiction to genuine strategic structure, under evaluation by an external oracle rather than by a built-in analytical score. The latent space is 1212-dimensional: an 88-dimensional frozen board representation from a 55-head CNN (win probability, material, phase, mobility, king safety) concatenated with a 44-dimensional move-feature vector encoding from-square, to-square, piece type, and capture status. Positions are drawn from elite games and grouped into three sequential contexts by explicit heuristics over material imbalance, legal move count, and piece count: materially imbalanced positions (A), quiet/balanced positions with many pieces (B), and restricted-mobility positions (C). The baseline evaluator ℛ^^base R_base is the encoder’s frozen win-probability head. During training, a separate Stockfish instance at depth 4 provides the environmental truth signal; the D-signal measures the discrepancy between the agent’s internal coherence evaluation and this external oracle. Evaluation uses Stockfish depth 8 on disjoint position sets. Geometric calibration yields σ∗=1.2693σ^*=1.2693 (deff=4.9d_eff=4.9, κ=0.5747κ=0.5747), together with a separate 88D agency scale for the responsiveness channel. Baselines. (i) Passive; (i) vanilla MLP (12→64→64→112→ 64→ 64→ 1, ∼5,000 5,000 parameters, Adam); (i) replay MLP ( 3,0003,000-sample buffer); (iv) value-only ablation (δRδ R-only, k≡k0k≡ k_0). 5.4 Domain I: CIFAR-100 CIFAR-100 is the scaling validation domain. Its role is to test whether the same correction dynamics remain stable and non-destructive in a higher-dimensional continual learning benchmark built on frozen visual representations. A frozen ViT-B/16 encoder pretrained on ImageNet is projected via unsupervised PCA to a 6464-dimensional image space. For the value channel, each image vector is concatenated with a deterministic 44-dimensional class-feature vector, yielding a 6868-dimensional class-augmented latent space. In this instantiation, value corrections operate in the 6868D augmented space, while agency remains in the underlying 6464D image space. The baseline evaluator ℛ^^base R_base is a frozen 100100-class coherence head trained on the 6464D frozen embeddings. Split-CIFAR-100 divides the 100100 classes into 2020 sequential tasks of 55 classes each. Training is class-conditioned within each task: for every image, the engine processes the true class together with task-local wrong classes as candidate class-conditioned states, injects the corresponding baseline coherence values, and uses imposed targets to generate the discrepancy signal that drives correction. CIFAR is therefore instantiated here as a sequential class-conditioned correction domain on top of a frozen visual representation. Geometric calibration yields deff=28.9d_eff=28.9 and a value-space bandwidth of σ=5.0σ=5.0 in the reported run, with a separately measured 6464D agency scale used by the responsiveness channel. In the present paper, CIFAR serves as the high-dimensional scaling test: it asks whether the correction layer can preserve a strong frozen baseline across long task sequences without destructive interference. Readout alignment. CIFAR also imposes one domain-specific readout requirement. Because the coherence head outputs softmax probabilities, direct linear readout creates a scale mismatch between the probability-based prior and the energy-like correction field: a correction of order ±0.05± 0.05 against a probability gap of 0.190.19 is too small to exert stable influence in linear space. Evaluating instead in log-space, log(ℛ^^base)+δR ( R_base)+δ R, resolves this mismatch. In the reported run, the same learned corrections shift from harmful linear interference (BTlin=−0.085BT_lin=-0.085) to near-zero forgetting under log-space readout (BTlog=−0.004BT_log=-0.004). The training dynamics and discrepancy signal are unchanged; only the downstream classification readout differs. In this domain, faithful evaluation requires reading the correction field in a space consistent with the softmax-based baseline evaluator. Baselines. (i) Coherence head alone (frozen, no corrections); (i) vanilla MLP; (i) replay MLP (5,0005,000-sample buffer); (iv) EWC. All baselines operate on the same frozen encoder and evaluator. — Frozen LLM extension. The same engine was also instantiated on top of a frozen Mistral-7B-v0.1 language model, extending the validation regime from frozen visual embeddings to frozen language-model outputs. In this setting, the baseline evaluator is given by the model’s softmax probabilities over four multiple-choice answers, while value corrections operate in a 7272-dimensional proposition space formed by projecting all-mpnet-base-v2 sentence embeddings from 768768D to 6464D via PCA and appending a deterministic 88-dimensional entity-feature vector. As in CIFAR, agency remains in the underlying 6464D space. The dataset consists of fictional entities and facts absent from pretraining, organized into three sequential phases: knowledge injection, cross-domain isolation, and counterfactual override. Training is contrastive within each phase, using the correct answer together with three wrong answers as candidate propositions, and geometric calibration follows the same sibling-distance logic used above. This language-model instantiation serves a complementary role to CIFAR. Whereas CIFAR tests whether the correction layer remains stable in a high-dimensional regime where the frozen baseline is already strong, the frozen-LLM setting tests whether the higher-order mechanisms become necessary in a regime where the correction layer must do most of the work itself, including retention under continued learning and revision under explicit contradiction. The corresponding empirical results belong to a separate companion write-up and are not analyzed as part of the present paper. — Finally, these domain-specific instantiations fix the empirical setting of the paper: in each case, a frozen representation defines the configuration space, a baseline evaluator provides the initial coherence landscape, and IBF contributes the modification dynamics that operate within it. The experiments below therefore test IBF as a dynamical theory of continual learning on top of a supplied encoder/evaluator pair: specifically, a theory of how learned structure can be corrected, preserved, selectively revised, and adaptively deployed under sequential exposure without destructive overwrite. They do not test a full end-to-end account of representation formation from raw interaction, nor the broader multi-agent and open-world arc of the framework; those are left for later work. With the domains, calibration procedure, and instantiations now specified, the remaining question is empirical: which predicted signatures must appear, and what would their absence imply for the framework? 6 Experimental Program The core claims of Section 3 each specify an empirical signature and a falsification condition. At a high level, those claims concern four derived capacities of the framework: memory, agency, self-correction, and intelligence. This section organizes their predicted signatures into a three-stage experimental program, states what each stage is designed to test, and defines what failure at each stage would imply for the framework. 6.1 Progressive Validation Logic The three stages are ordered by interpretive dependency, not by difficulty. Stage I (RRW) validates mechanism interactions under analytically known structure, where every phase transition can be traced to its theoretical origin. Stage I (Chess) tests whether the same dynamics produce emergent behavior in a domain where coherence structure must be discovered rather than specified. Stage I (CIFAR-100) tests whether the correction dynamics remain stable in a higher-dimensional regime (deff=28.9d_eff=28.9) where the baseline is already strong. Each stage is interpretable only because the preceding stage has confirmed the mechanisms on which it depends. If Stage I fails, the framework is falsified at the mechanistic level within this experimental program. If later stages fail, the scope of the framework is bounded accordingly. 6.2 Stage I: Mechanism Confirmation (RRW) RRW is the controlled mechanistic test. Three targeted ablations, No-Crystallization, No-Crucible, and No-Agency, isolate the causal contribution of the core mechanisms under five independent seeds. Baselines and domain details are specified in §5.2. The stage tests three predictions: P1. Retention Without Replay. IBF achieves backward transfer competitive with or superior to both MLP baselines without replaying stored past observations. This tests the empirical signature of the Memory claim: crystallized corrections survive dormant epochs and produce buffer-free retention. P2. Crucible-Mediated Transfer. The No-Crucible ablation achieves near-perfect context isolation (BTA≈0BT_A≈ 0), confirming that the gating architecture is safe by default. The Crucible’s contribution is to permit cross-context transfer at a retention cost. P3. Forward Learning Without Overwrite. IBF achieves final-phase accuracy exceeding both baselines. Spatial localization allows new learning to occupy distinct regions of z-space rather than overwriting dormant crystals. 6.3 Stage I: Emergence Validation (Chess) Chess tests whether the mechanisms confirmed in Stage I produce emergent behavior under genuine complexity. Each prediction depends on a mechanism already isolated in Stage I. Baselines, oracle separation, and domain details are specified in §5.3. Measurement. Behavioral quality is measured by Stockfish 16 at depth 8 under deterministic single-threaded evaluation. Training uses a separate Stockfish instance at depth 4 on disjoint positions, preventing train-test leakage. All agents receive identical training signals. All significance tests use n=1,002n=1,002 evaluation positions as the unit of analysis within each run. Centipawn advantages are computed per position, and Wilcoxon signed-rank tests assess whether paired differences are significantly nonzero. Because all positions are evaluated from a single trained model per condition, the observations within a run share the learned correction landscape. The resulting analysis therefore measures whether that learned landscape produces systematic behavioral advantage across a diverse position sample. The main chess behavioral and backward-transfer results are reported across three independent seeds sharing the same frozen encoder and geometric calibration, while the more detailed mechanism comparisons in the Results section are shown for a reference run. Evaluation metric convention. All centipawn evaluations across all agents and baselines are symmetrically clipped at ±1000cp± 1000\,cp prior to statistical aggregation. Positions beyond this range correspond to decisive or forced-mate outcomes, where the centipawn scale loses its continuous positional meaning. The clip ensures that measured behavioral advantages reflect systematic shifts in positional alignment rather than sampling variance from terminal-state outliers. The stage tests three predictions: P4. Behavioral Advantage Under Independent Evaluation. The fully adapted IBF agent achieves a statistically significant centipawn advantage over the passive baseline. The No-Agency training ablation then isolates the developmental contribution: training without spatially varying responsiveness produces a weaker correction landscape. This jointly tests the empirical signatures of the Intelligence and Agency claims: memory provides the corrections, and agency shapes which corrections are learned. P5. Emergent Spatial Agency. The agent autonomously develops spatially nonuniform keff(z)k_eff(z) correlated with positional structure (ρpartial(keff,Hnorm)>0 _partial(k_eff,H_norm)>0). This tests the empirical signature of the Agency claim: nontrivial interaction produces spatially differentiated responsiveness. P6. Transfer and Retention Under Crucible Verification. The Crucible produces measurable cross-context transfer: verified corrections carry knowledge across context boundaries, manifesting as both forward transfer (earlier structure improving later-context performance) and positive backward transfer (later training improving earlier-context performance through compatible corrections). Buffer-free retention is competitive with or superior to the replay baseline. This jointly tests the empirical signatures of the Memory and Self-Correction claim: crystallized corrections persist through dormant epochs, and the Crucible selectively dissolves contradicted modifications while preserving verified ones. 6.4 Stage I: Scalability Validation (CIFAR-100) Stage I tests whether the dynamics scale to a standard benchmark at 6868 dimensions. The frozen ViT-B/16 encoder provides a strong baseline (90.1%90.1\%); the question is whether IBF’s correction layer can preserve that baseline across 2020 task transitions while the compared baselines degrade it. Baselines and domain details are specified in §5.4. The stage tests two predictions: P7. Near-Zero Forgetting at Scale. IBF achieves substantially lower backward-transfer degradation than all conventional baselines across 2020 sequential tasks, with σ determined by geometric calibration rather than search. This tests whether the Memory claim remains effective at high dimensionality under prolonged sequential exposure. P8. Regime-Dependent Agency. The agency channel produces negligible effect in CIFAR’s saturated regime, in contrast to its essential role in chess and its harmful effect in RRW. The same mechanism thus produces three qualitatively different outcomes across three D-signal regimes, supporting the interpretation that agency is a derived property of the dynamics rather than an engineered feature. 6.5 Falsification Criteria Each claim in Section 3.4 specifies its own falsification condition. Here we state how failure at each experimental stage would constrain the framework within this experimental program. Stage I failure (any of P1–P3 not confirmed): the mechanisms do not operate as specified under known structure. The framework is falsified at the foundational level within this experimental program. Stage I success, Stage I failure (P1–P3 confirmed, any of P4–P6 not confirmed): the mechanisms are sound but do not produce emergent behavior in complex domains. The framework is falsified at the mechanistic level within this experimental program. Stages I–I success, Stage I failure (P1–P6 confirmed, one or both of P7–P8 not confirmed): the dynamics produce emergent behavior but do not fully scale to high-dimensional benchmark settings. The scope of the framework is thereby bounded accordingly. All three stages succeed: the dynamics are mechanistically sound (Stage I), capable of producing emergent intelligent behavior under genuine complexity (Stage I), and stable at benchmark scale under high-dimensional sequential exposure (Stage I). 7 Results The experimental program states what each domain is expected to confirm or refute. We now turn from prediction to evidence. The results are reported in the same staged order: first the controlled mechanistic validation in RRW, then the emergence validation in chess, and finally the scalability validation in CIFAR-100. This ordering matters. Later stages are interpretable only because earlier stages establish the lower-level mechanisms on which they depend. 7.1 Stage I Results: Mechanism Confirmation in RRW RRW answers the three Stage I predictions under analytically known structure. Because all methods receive the same frozen representation, discrepancy signal, and sequential training trajectory, the comparison isolates learning mechanism rather than information access. The five-seed results are summarized below. Table 1: RRW results (5 seeds, mean ± std). Full IBF achieves substantially stronger backward transfer and forward learning than the compared MLP baselines. The ablations do not function here as weaker versions of the full system, but as controlled probes of distinct mechanisms inside an explicitly contradictory domain. Condition AccAAcc_A BTABT_A AccCAcc_C Full IBF .684±.051.684±.051 −.234±.052-.234±.052 .913±.008.913±.008 No-Agency .721±.047.721±.047 −.198±.052-.198±.052 .918±.006.918±.006 No-Crystallization .767±.103.767±.103 −.152±.108-.152±.108 .920±.008.920±.008 No-Crucible .911±.007.911±.007 −.005±.003-.005±.003 .921±.003.921±.003 MLP .442±.059.442±.059 −.522±.066-.522±.066 .489±.098.489±.098 Replay MLP .536±.121.536±.121 −.410±.113-.410±.113 .816±.029.816±.029 Passive .251±.010.251±.010 +.000±.000+.000±.000 .248±.009.248±.009 RRW is intentionally adversarial. Its phases are constructed to contain maximal explicit contradiction, not deep reusable structure. In this regime, the ablations are not simply weaker versions of the full system, but variants that face less contradiction. No-Crucible shows this most clearly: with cross-context broadcast disabled, retention becomes nearly perfect, but transfer disappears. Full IBF pays a measurable cost because it is the only condition that attempts to carry structure across phases and discover whether it remains valid there. P1. Retention Without Replay. Full IBF achieves BTA=−0.234±0.052BT_A=-0.234± 0.052, a 43%43\% reduction in forgetting relative to Replay MLP (−0.410±0.113-0.410± 0.113) and a 55%55\% reduction relative to the pure MLP (−0.522±0.066-0.522± 0.066), without replaying stored past observations. Retention is therefore carried by crystallized local corrections rather than by parameter protection or buffer rehearsal. In this domain, stronger retention in some ablations comes from stricter context isolation. P2. Crucible-Mediated Transfer. The decisive RRW ablation is No-Crucible: BTA=−0.005±0.003BT_A=-0.005± 0.003, indicating near-perfect context isolation. This confirms that safety is enforced by the gating architecture itself. The Crucible’s role is not defensive but transfer-enabling: it allows cross-context reuse at a retention cost. In RRW, that cost is visible because the phases are deliberately contradictory. The domain therefore shows the Crucible in its low-transfer regime: it can still test and promote structure, but there is very little genuinely universal structure to promote. P3. Forward Learning Without Overwrite. Full IBF reaches final-phase accuracy AccC=0.913±0.008Acc_C=0.913± 0.008, exceeding Replay MLP (0.816±0.0290.816± 0.029) and far exceeding the pure MLP (0.489±0.0980.489± 0.098). The system can learn new structure without erasing what it had already learned. Later-phase corrections occupy distinct regions of latent space rather than overwriting dormant structure. In RRW, slightly higher Phase C scores in the simpler ablations reflect stricter isolation and lower transfer pressure. Full IBF retains strong forward learning while also carrying the additional burden of cross-context testing and selective reuse. The No-Agency ablation slightly improves RRW retention relative to the full system (−0.198-0.198 vs. −0.234-0.234). In RRW, agency operates in a deliberately adverse regime: exploration pushes more corrections into contradictory cross-context territory, where they encounter destabilizing evidence. The sign reversal relative to chess is therefore informative. It shows that agency is not uniformly beneficial; its value depends on whether the environment contains reusable structure or mainly contradiction. 7.2 Stage I Results: Emergence Validation in Chess Chess tests whether the mechanisms isolated in Stage I produce emergent behavior under genuine strategic complexity. The experiments use a frozen 5-head CNN encoder, a 12D move-augmented latent space, geometrically calibrated training bandwidth σ∗=1.2693σ^*=1.2693, and deterministic Stockfish 16 evaluation at depth 8 on n=1,002n=1,002 disjoint positions per run. All centipawn values are symmetrically clipped at ±1000cp± 1000\,cp, as specified in Section 6.3. The main behavioral and backward-transfer results are reported across three independent seeds; more detailed mechanism comparisons refer to the reference run. Table 2: Chess reference run at the geometrically prescribed bandwidth under independent evaluation. Mean centipawn values are reported after deterministic greedy evaluation on 1,0021,002 disjoint positions at σeval=σ∗=1.2693 _eval=σ^*=1.2693. The No-Agency row quantifies the developmental contribution of agency at the prescribed geometric scale. Agent Mean cp vs. Passive Full IBF (σ∗=1.2693σ^*=1.2693) −243.0-243.0 +90.2+90.2 No-Agency (σ∗σ^*) −251.2-251.2 +81.9+81.9 MLP −250.9-250.9 +82.3+82.3 Replay −256.8-256.8 +76.4+76.4 Passive −333.2-333.2 0.00.0 Seed replication. Across three independent seeds, evaluated at the geometrically prescribed bandwidth σeval=σ∗=1.2693 _eval=σ^*=1.2693, IBF achieves a mean behavioral advantage of +88.9±2.8cp+88.9± 2.8\,cp over the passive baseline, together with positive backward transfer of BTA=+35.4±2.9cpBT_A=+35.4± 2.9\,cp and BTB=+0.3±3.6cpBT_B=+0.3± 3.6\,cp. The more detailed mechanism comparisons below are presented for the reference run. P4. Behavioral Advantage. Across three independent seeds at the geometrically prescribed bandwidth, IBF achieves a mean behavioral advantage of +88.9±2.8cp+88.9± 2.8\,cp over the passive baseline. In the reference run at the same prescribed bandwidth, the fully adapted IBF agent achieves +90.2cp+90.2\,cp over the passive baseline (p<10−4p<10^-4). The developmental contribution of agency appears only in the training ablation. Training without spatially varying responsiveness reduces the advantage to +81.9cp+81.9\,cp, a drop of 8.3cp8.3\,cp relative to the full system. This matches the distinction predicted in Section 6.3: memory provides the corrections, while agency shapes which corrections are learned. P5. Emergent Spatial Agency. The system develops spatially nonuniform responsiveness with keffk_eff mean =6.03=6.03, std =0.73=0.73, and range [5.15, 8.76][5.15,\,8.76]. The partial correlation ρpartial(keff,Hnorm∣nlegal)=+0.179 _partial(k_eff,H_norm n_legal)=+0.179 (p<10−4p<10^-4, n=1,002n=1,002) confirms that the modulation is structure-dependent rather than a trivial function of legal-move count alone. The learned responsiveness field is therefore not an engineered temperature schedule. It is an interaction-derived spatial modulation, exactly as predicted by the Agency claim. P6. Transfer and Retention. Across three independent seeds, the chess domain yields positive backward transfer of BTA=+35.4±2.9cpBT_A=+35.4± 2.9\,cp and near-zero BTB=+0.3±3.6cpBT_B=+0.3± 3.6\,cp. In the reference run, the full system reaches BTA=+38.5cpBT_A=+38.5\,cp and BTB=+0.4cpBT_B=+0.4\,cp, exceeding Replay’s BTA=+26.8cpBT_A=+26.8\,cp without storing a single raw example. The Crucible is the mechanism behind that result: verified corrections carry useful structure across context boundaries, allowing transfer while preserving prior alignment. The developmental cascade is confirmed in the predicted order, as shown below: Full No-Ag. No-Cruc. No-Cryst BTABT_A +38.5cp+38.5\,cp +16.0cp+16.0\,cp +15.6cp+15.6\,cp −44.7cp-44.7\,cp Crystallization provides persistence. Without it, backward transfer becomes strongly negative. The Crucible provides curation. Without it, corrections persist but cannot be curated for cross-context use. Agency drives the exploration that feeds the Crucible. Without agency, the Crucible encounters far fewer contradiction zones and therefore performs almost no selective self-correction. The mechanistic evidence for that last claim is direct. In the full system, 7,3447,344 centers ever crystallize, 4,7824,782 are verified, and the Crucible processes 19,05419,054 dissolution events across the run. In the No-Agency training ablation, 7,1907,190 centers ever crystallize, 4,6904,690 are verified, and only 3030 dissolution events occur. The difference is not architectural but developmental: the same Crucible code is present in both runs, but only agency-guided exploration drives corrections into the contradiction zones that trigger selective curation. These are dissolution events, not unique centers; centers that dissolve, re-crystallize, and dissolve again are counted each time. The current reversal threshold therefore produces active churning, but the behavioral result shows the mechanism remains functional. 7.3 Stage I Results: Scalability Validation in CIFAR-100 Stage I asks whether the same dynamics remain stable and useful in a standard benchmark at substantially higher dimensionality. All methods operate on the same frozen ViT-B/16 ++ PCA representation and the same frozen coherence head, so the comparison tests correction dynamics on top of a shared evaluator rather than end-to-end representation learning. In this domain, faithful evaluation requires the log-space readout introduced in Section 5.4, which aligns the correction field with the softmax-based baseline evaluator. P7. Near-Zero Forgetting at Scale. IBF achieves BT=−0.004±0.000BT=-0.004± 0.000 across 2020 sequential tasks at 6868 dimensions, preserving essentially all of the frozen coherence head’s baseline performance while storing zero raw data. Replay loses 23.4%23.4\% under the same evaluator and with 5,0005,000 stored samples, while EWC and the vanilla MLP catastrophically forget. This is the central Stage I result. Table 3: CIFAR-100 results. Task-IL values use the log-space readout described in Section 5.4. IBF achieves replay-superior retention with zero stored raw data and retains a structural Class-IL advantage without a task oracle. Method Task-IL Avg BT Class-IL Full IBF .892±.009.892±.009 −.004±.000-.004±.000 .528.528 Replay MLP .723.723 −.234-.234 .392.392 EWC .311.311 −.681-.681 .052.052 MLP .276.276 −.719-.719 .049.049 Coherence head .901.901 +.000+.000 — A structural Class-IL advantage. Task-IL assumes task identity at test time; Class-IL does not, requiring prediction over all classes. IBF also retains a structural advantage under Class-IL evaluation: it reaches 52.8%52.8\% across all 100100 classes without a task oracle, whereas Replay reaches 39.2%39.2\% and the neural baselines collapse to near chance. This matters because the IBF readout natively evaluates the full class space through the corrected coherence landscape; it does not rely on an oracle to restrict the candidate set at test time. P8. Regime-dependent agency. Agency is effectively neutral in CIFAR. Full IBF and No-Agency are indistinguishable to three decimal places in the representative seed (0.9030.903 vs. 0.9030.903, BT=−0.004BT=-0.004 vs. −0.003-0.003). This is the correct null result. Claim 7 predicts that agency matters developmentally only when the trajectory itself provides room for it to matter, and CIFAR’s fixed data stream does not. The same mechanism is mildly harmful in RRW, essential in chess, and neutral here. Spatial isolation is the dominant mechanism at 68D. The CIFAR ablations show that kernel localization alone is sufficient for retention at this dimensionality. Removing the Crucible, crystallization, or agency changes almost nothing: all four conditions cluster around average accuracy ≈0.902≈ 0.902 and backward transfer ≈−0.003≈-0.003. In the representative seed, No-Crucible is even marginally best. The higher-order mechanisms still operate, with thousands of crystallized centers and tens of thousands of dissolutions, but at this scale they contribute little measurable behavior because inter-task distances are large relative to the calibrated bandwidth. Corrections are real but ceiling-limited. The coherence head alone achieves 0.9010.901 Task-IL, and Full IBF averages 0.892±0.0090.892± 0.009 across three seeds, effectively net-neutral against this strong prior. To test whether the correction layer still carries genuine signal, the setup was repeated with a weakened head trained on two samples per class. Under this weaker prior, IBF rises from 0.7260.726 to 0.7390.739 (+1.3%+1.3\%), improving 1616 of 2020 tasks with a maximum single-task gain of +8.2%+8.2\%. The corrections are real; the standard configuration simply leaves little room for measurable improvement. Mechanism activation under a different regime. The behavioral redundancy of the higher-order mechanisms in CIFAR is itself a prediction of the theory: when inter-task distances are large relative to the calibrated bandwidth, spatial isolation alone is sufficient and the remaining mechanisms contribute nothing measurable. A contrasting regime is now beginning to emerge in the frozen-LLM extension introduced in Section 5.4. There, where the correction layer must carry much more of the behavioral load, the same mechanisms begin to separate: removing crystallization produces severe forgetting, removing the Crucible preserves retention but allows correction amplitudes to grow unchecked, and removing agency remains effectively neutral, as in CIFAR. The details belong to a companion write-up. What matters here is the contrast in regime: the same mechanisms that are behaviorally redundant at 6868D in CIFAR become non-redundant once spatial isolation alone is no longer enough. 7.4 Cross-Domain Pattern Taken together, the three validation domains reveal a functional hierarchy of mechanisms. Spatial isolation is foundational and scales across all three domains. It is sufficient for strong retention in CIFAR, where tasks are naturally well separated in a high-dimensional latent space. Crystallization becomes important in RRW, where memories must survive explicit phase transitions. Agency and the Crucible become decisive in chess, where the system must discover, verify, and curate shared strategic structure rather than merely isolate contradictory or disjoint corrections. The cross-domain regime dependence of agency is especially important. In RRW, agency slightly increases forgetting because exploration drives corrections into maximally contradictory cross-context territory. In chess, the same mechanism becomes essential: removing it sharply reduces backward transfer and collapses much of the behavioral advantage. In CIFAR, its effect becomes negligible because the domain provides little trajectory dependence for responsiveness to modulate. The mechanism is unchanged; the environment determines whether it is harmful, useful, or effectively irrelevant. The same staged reading applies to the Crucible. In RRW it is transfer-enabling but low-yield, because there is almost no universal structure to promote. In chess it becomes a genuine self-correction system, verifying reusable corrections and dissolving contradicted ones before they can be redeployed across contexts. In CIFAR it is behaviorally redundant because geometric separation already prevents interference. This pattern is not ad hoc. It is the one the framework predicts: higher-order mechanisms become active only when the environment provides the conditions they require. Finally, the geometric calibration story remains coherent across all three domains. RRW, chess, and CIFAR all admit a usable training bandwidth derived from latent geometry rather than grid search, and the resulting empirical scaling ratios remain of the same order of magnitude despite the jump from 88 to 6868 dimensions. 8 Discussion The Results section answered the experimental program stage by stage. The role of the Discussion is to interpret what those confirmations establish. We begin by returning to the paper’s premise, place it against adjacent frameworks, and finally state the scope limits and next empirical frontiers as directly as possible. 8.1 The Alignment Premise Under Test This paper opened with a premise: information is not data, but the achievement of structural alignment between a system’s internal configuration and the structure of its environment. The entire continual-learning program, from the toy model through the claims, engine, staged experiments, and results, was a test of whether that premise generates correct mechanistic consequences. The question now is not whether the premise is philosophically appealing, but whether it generated mechanisms that behaved as predicted under empirical stress. Memory as preserved alignment. The central claim of the paper is that memory need not be stored as globally shared parameter superposition. Under the Modification Dynamics, memory becomes persistent local deformation of the effective coherence landscape. The three domains support that deduction at increasing levels of complexity. In RRW, IBF reduces forgetting by 43%43\% relative to Replay MLP without replaying raw observations. In chess, the result is stronger and remains positive across three independent seeds: BTA=+35.4±2.9cpBT_A=+35.4± 2.9\,cp, exceeding Replay’s +26.8cp+26.8\,cp without storing a single past position. In CIFAR-100, the same dynamics preserve performance across 2020 sequential tasks with near-zero forgetting (BT=−0.004BT=-0.004). These are not three disconnected results. They are three versions of the same proposition: retention can arise from persistent local structure rather than from replay, regularization, or frozen parameter partitions. Agency as a regime-dependent developmental mechanism. The Agency claim predicts something stronger than confidence or temperature. It predicts that responsiveness emerges from interaction as a spatially varying developmental force, and that its contribution depends on the discrepancy regime. The cross-domain pattern supports that prediction closely. In RRW, agency is mildly harmful because exploration pushes corrections into maximally contradictory cross-context territory. In chess, agency becomes consequential during development: in the reference run at the geometrically prescribed bandwidth, removing it reduces the behavioral advantage from +90.2cp+90.2\,cp to +81.9cp+81.9\,cp, lowers BTABT_A from +38.5cp+38.5\,cp to +16.0cp+16.0\,cp, and collapses Crucible dissolution activity from 19,05419,054 events to just 3030. In CIFAR, its effect becomes negligible because the task stream offers little trajectory dependence for responsiveness to modulate. The mechanism is unchanged; what changes is whether the environment gives it anything useful to do. Intelligence as curated memory under agency. The Intelligence claim is not that memory alone improves behavior. It is that memory and agency together can shape a correction landscape that yields systematically higher-alignment outcomes. Chess provides the clearest test. At the geometrically prescribed bandwidth, IBF achieves a mean advantage of +88.9±2.8cp+88.9± 2.8\,cp over the passive baseline across three seeds, with the reference run reaching +90.2cp+90.2\,cp. The No-Agency training ablation shows why: agency influences which corrections are learned, and therefore whether the resulting landscape is merely competent or strategically strong. Self-correction through contradiction. The Crucible is not what protects memory. Gating already does that, as RRW’s No-Crucible condition makes clear. Its role is to curate what can survive cross-context use. In RRW, where the phases are maximally contradictory, that role is visible but low-transfer: there is little genuinely universal structure to preserve across contexts. In chess, the same mechanism becomes decisive. With agency, 7,344 centers ever crystallize, 4,782 are verified, and the Crucible processes 19,054 dissolution events; without agency, 7,190 centers crystallize, 4,690 are verified, and only 30 dissolution events occur. Agency therefore matters not by adding memory, but by driving the system into the contradictory regions where selective dissolution can occur. In CIFAR, the Crucible still operates, but adds little measurable behavior because spatial isolation already prevents meaningful interference. Taken together, the premise generated a concrete architecture; the architecture generated falsifiable predictions; and the predictions survived controlled ablation, independent evaluation, and cross-domain transfer. Within the scope of the present program, the theory did not merely remain consistent with the data. It generated mechanisms whose predicted signatures the data then confirmed. 8.2 Relation to Existing Frameworks To situate IBF properly, it helps to compare it not first to methods, but to frameworks that try to explain adaptive organization at the level of principle. In that sense, the closest existing relative is Friston’s Free Energy Principle [8]. Both begin from the intuition that persistent adaptive systems survive by systematically reducing mismatch with their environment. But the resemblance is mostly one of ambition. FEP begins from Bayesian inference: the system is understood through a generative model, and behavior is derived as approximate posterior updating under that model. IBF begins from coherence dynamics on configuration space. No generative model is assumed at the outset; what changes through interaction is the effective coherence landscape itself, deformed locally by discrepancy. From that difference follows another one: in IBF, memory, agency, and self-correction emerge as distinct consequences of the dynamics, with distinct empirical signatures, rather than as different aspects of a single inferential process. At a more immediate architectural level, IBF also stands near traditions that discovered, each in its own way, that stable learning cannot be built entirely on global interference. ART treated the stability–plasticity dilemma as a structural problem [9, 10]. Episodic-control methods showed that kernel-weighted retrieval of stored experiences can bypass gradient interference [11, 12]. Kernel and localist methods rely on the same broad geometric intuition: if memory is to survive continued learning, corrections must remain local rather than globally smeared across parameter space [13, 14, 15, 16]. IBF clearly belongs in that neighborhood. But ART stores categories, episodic methods store traces, and kernel methods store support points. IBF stores modification sites whose thermodynamic state changes through interaction: they crystallize when local discrepancy converges, remain silent across contexts until evidence verifies them, dissolve when later evidence turns against them, and shape future responsiveness through the same law that created them. The sharpest contrast remains with the dominant continual-learning paradigm itself. Elastic Weight Consolidation protects important parameters [3]. Progressive and dynamically expandable networks preserve prior competence by freezing or growing architecture [6, 5]. Replay methods keep old tasks statistically present through stored observations [4]. Context-dependent gating protects prior structure through externally supplied task masks [17]. These methods can work well, and some serve as baselines in the present paper. But they all address forgetting inside a substrate where memory still resides in globally shared parameters. IBF changes that condition itself. Memory becomes persistent local deformation rather than protected weight configuration. Gating becomes a state of the memory rather than an external routing instruction. The agency channel that shapes which corrections are learned arises from the same modification dynamics that produce locality in the first place. That is why IBF is best read not as one more improvement inside the existing paradigm, but as an attempt to formulate a different substrate beneath it. 8.3 Limitations The clearest limit of the present paper is also the most important to state plainly: this is not yet an end-to-end account of representation formation from raw interaction. The framework is validated here on top of a supplied encoder and a supplied baseline evaluator. The encoder provides the configuration space; the evaluator provides the initial coherence landscape; IBF contributes the modification dynamics that reshape that landscape over time. That is not a hidden assumption, and it is not a minor detail. It is the explicit scope of the present empirical program. A second limit is one of scale. The validations reported here span latent spaces from 88 to 6868 dimensions, with the largest effective dimensionality at deff=28.9d_eff=28.9. That is enough to test the substrate claim in a meaningful way, but it remains far from the geometry of frontier foundation-model latents. CIFAR shows that the foundational retention layer remains stable at this scale. It does not yet show how the full mechanism stack behaves when the representational regime becomes vastly larger and denser. A first step beyond this range is already emerging in the frozen-LLM instantiation discussed briefly, but that result belongs to a separate empirical treatment and is not part of the present validation set. The evidential role of the three domains is also not symmetrical. Chess is the cleanest test of the framework’s behavioral claim, because evaluation is performed by a stronger external oracle on disjoint positions. CIFAR serves a different purpose. It is primarily a scaling and non-destructiveness test. Because the coherence head is trained on the same label space as the evaluation metric, the CIFAR result does not support the same kind of independence claim as chess. Its evidential role is different, not weaker. There is a further limit in how discrepancy is supplied. In RRW, the environment is analytically defined. In chess, discrepancy is anchored to Stockfish during training. In CIFAR, it is derived from supervised class-conditioned structure. These settings are sufficient for the staged validation carried out here, but they are still partially scaffolded. Real environments do not announce their phase boundaries, and they do not provide a trusted external arbiter of contradiction. The present engine therefore demonstrates continual correction, preservation, and selective dissolution under controlled conditions, but not yet autonomous continual learning in an open stream. Finally, the paper remains a single-agent study. It demonstrates memory, agency, and self-correction for one system interacting with an environment. It does not yet test the broader communication and multi-agent arc of the framework, in which agents mutually deform one another’s effective landscapes. Nor does it say much about environments with no stable discrepancy structure at all. In pure noise, nothing meaningful crystallizes. That is simply outside the range of conditions this paper tests. These limitations narrow the scope of the present results. They do not make them less important. They simply locate the paper where it actually stands: as a substrate-level proposal that has been made formal enough to test, and tested far enough to justify stronger questions. 8.4 Future Directions The empirical engine presented in this paper implements only the minimal discrete mechanics required to test the continual-learning arc of the framework. The next steps are the next places where the premise becomes vulnerable in a useful way. The most immediate frontier is scale. CIFAR-100 shows that the foundational layer, spatial isolation, remains stable up to 6868 dimensions and can preserve a strong baseline across long task sequences. The natural next step is to move into much larger frozen latent spaces, on the order of hundreds or thousands of effective dimensions, and ask not only whether the dynamics still function there, but when the higher-order mechanisms become behaviorally necessary. If geometric overlap increases, do verification, dissolution, and responsiveness modulation become indispensable rather than merely available? A first indication that this scaling question may already open beyond the present range is emerging in the frozen-LLM instantiation mentioned. A second frontier is continuity. The current Crucible still operates in a setting with explicit context transitions and phase-local resets. A stricter test would be a boundary-free stream in which memories must crystallize, fall silent, reactivate, and dissolve under rolling discrepancy statistics alone. That would bring the implementation closer to the spirit of the theory, which is continuous-time and thermodynamic rather than phase-scripted. A third frontier is multi-agent interaction. In all three present domains, discrepancy is supplied by an external environment or oracle. A more demanding setting would place multiple IBF agents in a shared world where part of each agent’s discrepancy structure is generated by the others. That would turn communication and mutual deformation from a theoretical promise into an empirical question, and would show whether decentralized coordination can emerge without a single externally imposed objective. The framework should also be tested in richer world-model domains. Chess already shows that the mechanism can discover and curate structured strategic regularities, while CIFAR shows that the foundational retention layer remains stable in a larger representational regime. The next step is to move into continuous-control, robotics, or simulated physical environments where action-conditioned latent world models matter directly. That is also the setting in which the relation between IBF and the broader post-scaling transition becomes most concrete. A first indication that this route may extend beyond the present validation domains is already emerging in companion work: the same IBF engine is being applied on top of a frozen 7B language model in a proposition-space setting, where it appears able to inject fictional knowledge, preserve it through later learning, and selectively revise it under contradiction without modifying the base model’s parameters. Finally, there is the question of substrate in the literal sense. IBF is conceptually a poor match for dense globally synchronous computation and a much better match for local, event-driven, asynchronous processes. Its primitives are localized nucleation, passive decay, stability transitions, and sparse interaction among nearby memory sites. That makes neuromorphic or analog implementations more than a hardware curiosity. If the substrate claim of the paper is right, such environments may not merely run IBF faster. They may be the places where it becomes most natural. — To conclude, the central claim of this paper is that continual learning does not need to be built on destructive superposition. Across three domains of increasing complexity, the same two-equation substrate produced persistent memory, selective self-correction, and regime-dependent agency without replaying raw experience. Within the scope of the present validation program, the premise produced the mechanisms, the mechanisms produced the predictions, and the predictions survived empirical testing. That is the result. Reproducibility Release The reference implementation accompanying this paper is available at: https://github.com/negulescu42/information-as-alignment The repository contains the toy model, the three validation domains (RRW, chess, and CIFAR-100), the JSON result files corresponding to the reported runs, and a short instruction file describing how to inspect or reproduce the main experiments. References McCloskey and Cohen [1989] Michael McCloskey and Neal J. Cohen. Catastrophic interference in connectionist networks: The sequential learning problem. Psychology of Learning and Motivation, 24:109–165, 1989. French [1999] Robert M. French. Catastrophic forgetting in connectionist networks. Trends in Cognitive Sciences, 3(4):128–135, 1999. Kirkpatrick et al. [2017] James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, Andrei A. Rusu, Kieran Milan, John Quan, Tiago Ramalho, Agnieszka Grabska-Barwinska, et al. Overcoming catastrophic forgetting in neural networks. Proceedings of the National Academy of Sciences, 114(13):3521–3526, 2017. Rolnick et al. [2019] David Rolnick, Arun Ahuja, Jonathan Schwarz, Timothy P. Lillicrap, and Gregory Wayne. Experience replay for continual learning. In Advances in Neural Information Processing Systems, volume 32, 2019. Yoon et al. [2018] Jaehong Yoon, Eunho Yang, Jeongtae Lee, and Sung Ju Hwang. Lifelong learning with dynamically expandable networks. In International Conference on Learning Representations (ICLR), 2018. Rusu et al. [2016] Andrei A. Rusu, Neil C. Rabinowitz, Guillaume Desjardins, Hubert Soyer, James Kirkpatrick, Koray Kavukcuoglu, Razvan Pascanu, and Raia Hadsell. Progressive neural networks. In arXiv preprint arXiv:1606.04671, 2016. McCulloch and Pitts [1943] Warren S. McCulloch and Walter Pitts. A logical calculus of the ideas immanent in nervous activity. The Bulletin of Mathematical Biophysics, 5(4):115–133, 1943. doi: 10.1007/BF02478259. Friston [2010] Karl Friston. The free-energy principle: a unified brain theory? Nature Reviews Neuroscience, 11(2):127–138, 2010. Grossberg [1987] Stephen Grossberg. Competitive learning: From interactive activation to adaptive resonance. Cognitive Science, 11(1):23–63, 1987. Carpenter et al. [1991] Gail A. Carpenter, Stephen Grossberg, and John H. Reynolds. ARTMAP: Supervised real-time learning and classification of nonstationary data by a self-organizing neural network. Neural Networks, 4(5):565–588, 1991. Blundell et al. [2016] Charles Blundell, Benigno Uria, Alexander Pritzel, Yazhe Li, Avraham Ruderman, Joel Z. Leibo, Jack Rae, Daan Wierstra, and Demis Hassabis. Model-free episodic control. arXiv preprint arXiv:1606.04460, 2016. Pritzel et al. [2017] Alexander Pritzel, Benigno Uria, Sriram Srinivasan, Adrià Puigdomènech, Oriol Vinyals, Demis Hassabis, Daan Wierstra, and Charles Blundell. Neural episodic control. In International Conference on Machine Learning, 2017. Titsias et al. [2020] Michalis K. Titsias, Jonathan Schwarz, Alexander G. de G. Matthews, Razvan Pascanu, and Yee Whye Teh. Functional regularisation for continual learning with gaussian processes. In International Conference on Learning Representations, 2020. Derakhshani et al. [2021] Mohammad Mahdi Derakhshani, Xiantong Zhen, Ling Shao, and Cees Snoek. Kernel continual learning. In International Conference on Machine Learning, 2021. Pan et al. [2021] Pingbo Pan, Siddharth Swaroop, Alexander Immer, Runa Eschenhagen, Richard E. Turner, and Mohammad Emtiyaz Khan. Continual deep learning by functional regularisation of memorable past. In Advances in Neural Information Processing Systems, 2021. Buhmann [2003] Martin D. Buhmann. Radial Basis Functions: Theory and Implementations. Cambridge University Press, 2003. Masse et al. [2018] Nicolas Y. Masse, Gregory D. Grant, and David J. Freedman. Alleviating catastrophic forgetting using context-dependent gating and synaptic stabilization. Proceedings of the National Academy of Sciences, 115(44):E10467–E10475, 2018. Table 4: Formal Primitives of the Informational Buildup Framework. Nine primitives define the ontological substrate. The complete formal treatment, including structural properties and inter-primitive relations, is provided in a dedicated foundational work. Primitive Symbol Definition Field ℱF A nonempty universal set whose elements are informational patterns; the total space of possible informational configurations. Pattern ψ∈ℱψ An element of the Field. Patterns possess no intrinsic meaning or stability independent of their relations to systems and scales. Closed Informational System (CIS) S⊂ℱS A connected region of configuration space where coherence exceeds a viability threshold and boundary gradients point inward, actively resisting dissolution. Observational Scale λ∈Λλ∈ A resolution parameter specifying the level of abstraction at which patterns and systems are distinguished. Determines which distinctions are operational and which coherence function applies. Configuration Space (S,λ)C(S,λ) For each system S at scale λ, the differentiable manifold of all admissible internal states. Every point represents a possible internal configuration. Coherence ℛ^(xS,S,λ) R(x_S,S,λ) A scalar function quantifying the degree of structural alignment between a system’s internal configuration and its environment. Relational, fragile, non-reducible. Informational Gravity G(xS)=∇xSℛ^G(x_S)= _x_S R The gradient of coherence on configuration space: the pull toward higher structural alignment. Responsiveness kS(xS)>0k_S(x_S)>0 A positive-valued function quantifying a system’s capacity to follow coherence gradients. Modulated by interaction history (the agency channel). Process Time t A parameter indexing the sequence of system reconfigurations driven by coherence dynamics. Table 5: Formal Structure and Placement in the Broader Arc. The four axioms and the local modification postulate stated in this paper define the minimal structure needed to ground the continual learning experimental program. The table also situates that local arc within the broader foundational framework, whose remaining closure postulates and claims are shown here in condensed form. Rows marked Here are stated or empirically instantiated in this paper; rows marked Foundational belong to the larger dedicated treatment. Claims 9 and 10 are operationalized jointly in this paper as the Self-Correction capacity: the system reflexively tracks its cross-context coherence state (Thm. 9) to selectively trigger the thermodynamic dissolution of false alignment (Thm. 10). Ref. Name Statement / Role Scope Axioms (Existence and Motion) I The Field ℱ≠∅F≠ ; for each (S,λ)(S,λ), the Field admits an associated differentiable configuration space (S,λ)C(S,λ). Here I Coherence ℛ^:(S,λ)→ℝ+ R:C(S,λ) ^+; relational, fragile, and non-decomposable. Defines viability and CIS boundaries. Here I Informational Gravity G=∇xSℛ^G= _x_S R; systems experience a pull toward higher structural alignment. Here IV Law of Motion x˙S=kS⋅∇xSℛ^eff x_S=k_S· _x_S R^eff; motion follows the effective coherence gradient, modulated by responsiveness. Here Closure Postulates 0 Scale–Coherence Consist. Legitimizes representing coherence dynamics on configuration space once observational scale is fixed. Foundational I System Interaction Interaction forms a joint coherence landscape and creates the discrepancy conditions for system influence. Foundational I Recursive Scale Struct. Relates system realization across scales and permits upward propagation of modification. Foundational I Dynamic Stability Specifies stability conditions for persistence, basin loss, and renewed organization after destabilization. Foundational IV Modification Dynamics ∂tδℛ^=η−μδℛ ∂ tδ R=η\,K\,D-μ\,δ R; localized landscape deformation driven by discrepancy signals. Here (trimmed) Claim Arc 1 Emergence & Persistence Viable coherence basins yield Closed Informational Systems that arise, stabilize, and persist. Foundational 2 Identity System identity is given by invariance of the same coherence basin across admissible perturbation. Foundational 3 Memory Persistent landscape modification yields preserved alignment as long-lived deformation of the landscape. Here / Found. 4 Communication Interaction deforms another system’s effective gradient field, creating the conditions for signal transfer. Foundational 5 Learning Repeated discrepancy accumulates modification and alters future trajectories. Foundational 6 Replication Persistent internal constraints can be externalized through interaction, producing a new coherence basin. Foundational 7 Agency Nontrivial interaction produces spatially nonuniform responsiveness, modulating how gradients are followed. Here / Found. 8 Intelligence Memory and agency jointly yield systematically higher-alignment behavior than the unmodified baseline. Here / Found. 9 Reflexive Coherence (Self-Correction) A system tracking its coherence state can reflexively regulate dynamics. Instantiated here via cross-context memory verification. Here / Found. 10 Dissolution (Entropic Return) Loss of viable basins returns organized structure to the Field. Instantiated here via the thermodynamic melting of memory loci (μ→μbaseμ→ _base). Here / Found. 11 Discrete Convergence Under Conditions R, R′, and A, the discrete implementation converges to the continuous dynamics. Here / Found. Table 6: Claim-to-Engine Mapping. Domain-agnostic correspondence between the formal theory (Section 3) and the universal discrete engine (Section 4). The table records how each theoretical construct is realized at the engine level. Domain-specific architectures, losses, and evaluation protocols enter only later, in Section 5. Theoretical Construct Engine Realization Local Consequence Axioms (Existence and Motion) Field ℱF (Axiom I) Domain observation space together with the frozen encoder π and induced latent configuration space z∈ℝdz ^d The engine always operates on admissible latent configurations Coherence ℛ R (Axiom I) Frozen baseline evaluator ℛ^^base(z) R_base(z) plus effective correction field δR^(z)δ R(z) Effective coherence landscape ℛ^eff(z)=ℛ^^base(z)+δR^(z) R^eff(z)= R_base(z)+δ R(z) Informational Gravity G=∇xSℛ^G= _x_S R (Axiom I) Discrete coherence increments over candidate next states, ΔRjeff R^eff_j Local directional preference toward higher alignment Law of Motion (Axiom IV) Boltzmann action selection with responsiveness keff(z)k_eff(z) over candidate next states Probabilistic ascent on the effective coherence landscape Modification Postulate Discrepancy signal D Interaction-derived gap between imposed coherence structure and current effective evaluation Driver of local modification; distinct from the motion gradient Localization kernel K Gaussian radial basis kernel with per-particle bandwidth σi _i Spatially local readout and writing Modification dynamics ∂tδℛ^=η−μδℛ _tδ R=η\,K\,D-μ\,δ R Kernel-weighted particle updates in the coherence-correction population Local landscape deformation and memory formation Parallel responsiveness modification δkSδ k_S Variance-sensitive updates in the responsiveness population Spatially nonuniform commitment / caution Crystallization (μ→0μ→ 0) Stability transition of particles whose recent discrepancy history converges Long-lived local structure Dissolution (μ→μbaseμ→ _base) Crucible-triggered loss of stability under sustained contradiction Selective removal of false stability Capacity constraint Merge-and-retain policy under finite particle budget Bounded local resolution and memory density control Derived Capacities in the Engine Memory Persistent coherence-correction particles with low effective decay Retention without replay of past observations Agency Responsiveness field keff(z)=max(kmin,k0+δk(z))k_eff(z)= (k_ ,\,k_0+δ k(z)) Spatially differentiated exploration and commitment Intelligence Joint action of memory-shaped landscapes and agency-modulated motion Systematically improved behavioral deployment of alignment Self-Correction Reflexive read-gating, cross-context verification, and Crucible dissolution Selective withdrawal of invalidated modifications Discrete Convergence Finite particles, finite action sets, and latent evaluation under Conditions R, R′, and A Faithful discrete approximation of the continuous dynamics Table 7: Engine Symbol Dictionary I: Latent Space and Particle State. Core symbols defining the latent configuration space, effective evaluation, and particle-level state used by the universal IBF engine. Symbol Definition Engine Realization Notes Latent Configuration and Evaluation z Current latent configuration Frozen encoder output π(ω)π(ω) The engine operates only in latent space zjz_j Candidate next latent state Latent image of action aja_j Used for discrete motion / action selection ℛ^^base(z) R_base(z) Baseline coherence evaluator Frozen domain-specific baseline No backpropagation through engine state δR^(z)δ R(z) Coherence-correction field Kernel readout from coherence particles Additive modification of the baseline evaluator ℛ^eff(z) R^eff(z) Effective coherence ℛ^^base(z)+δR^(z) R_base(z)+δ R(z) Read path output for motion sjeffs_j^eff Effective coherence score of candidate state zjz_j ℛ^eff(zj) R^eff(z_j) Used in Boltzmann selection over candidate next states ΔRjeff R^eff_j Effective coherence increment ℛ^eff(zj)−ℛ^eff(zcurrent) R^eff(z_j)- R^eff(z_current) Discrete analogue of gradient ascent Particle State cic_i Generic particle (zi,ai,σi,μeff,i,ctxi,…)(z_i,a_i, _i, _eff,i,ctx_i,…) Shared notation across both particle populations ziz_i Particle location Latent center Center of local support aia_i Generic particle amplitude viv_i (coherence channel) or wiw_i (responsiveness channel) Channel-specific payload viv_i Coherence-correction amplitude Stored correction weight Contributes additively to δR^(z)δ R(z) wiw_i Responsiveness amplitude Stored responsiveness weight Contributes intensively to δk(z)δ k(z) σi _i Particle bandwidth Per-particle kernel width Kernel bandwidth; evaluated at the prescribed geometric scale μeff,i _eff,i Effective decay rate Transient or crystallized regime Controls passive fading ctxictx_i Birth context Context label stored with particle Used by reflexive read-gating verified Cross-context broadcast status Verification flag for crystallized particles Governs cross-context readability Table 8: Engine Symbol Dictionary I: Read Path, Write Path, and Lifecycle. Core operational symbols governing kernel readout, localized writing, contradiction testing, and thermodynamic state transitions in the universal IBF engine. Symbol Definition Engine Realization Notes Read Path (z,zi)K(z,z_i) Localization kernel Gaussian RBF exp(−‖z−zi‖2/2σi2) (-\|z-z_i\|^2/2 _i^2) Shared by read and write paths γi _i Read-gating variable Same-context or verified cross-context read access γi∈0,1 _i∈\0,1\ δk(z)δ k(z) Responsiveness correction field Intensive readout from crystallized responsiveness particles Bounded local modulation keff(z)k_eff(z) Effective responsiveness max(kmin,k0+δk(z)) (k_ ,\,k_0+δ k(z)) Controls Boltzmann sharpness P(aj∣zcurrent)P(a_j z_current) Action-selection probability Boltzmann distribution over candidate next states Discrete instantiation of the Law of Motion Write Path and Lifecycle D Discrepancy signal Gap between imposed coherence structure and current effective evaluation Drives modification, not motion ⋅D·K Kernel-local discrepancy Same-context spatial learning signal Written into local particle histories ¯recent D_recent Mean recent local discrepancy Recent history statistic for convergence Used for crystallization tests ¯raw,recent D_raw,recent Mean recent raw cross-context discrepancy Recent contradiction statistic Used by the Crucible reversal test varD_var Rolling discrepancy variance Variance over recent local history Drives responsiveness nin_i Exposure count Number of local update events Crystallization eligibility ncrossn_cross Cross-context exposure count Number of contradiction-test updates Crucible eligibility θconv _conv Convergence threshold Recent-discrepancy threshold for crystallization Stability criterion θrev _rev Reversal threshold Crucible dissolution threshold False-stability criterion ηi _i Modification rate Transient or crystallized write rate Governs same-context spatial learning wtargetw_target Responsiveness target Variance-derived target value for wiw_i Low variance raises commitment; high variance lowers it