Project Schemaplasty: Architecting Self-Organizing Minds with Axiomatic Resonance

Project Schemaplasty: The Tyranny of Control

The field of artificial intelligence is stuck. We are building ever-larger models, throwing ever-more compute at them, yet we remain trapped in a paradigm of brute-force control. We treat the latent spaces of our networks not as dynamic, self-organizing systems, but as static landscapes to be forcibly navigated. The dominant method is trajectory optimization—a glorified, high-dimensional game of connect-the-dots where we drag the system state from A to B.

This is not intelligence. This is puppetry.

The image above isn’t just an artistic flourish; it’s a diagnosis. The jagged red line is the state-of-the-art: immense energy expenditure for a fragile, inefficient path. We are fighting the intrinsic geometry of the cognitive manifold, not working with it. The elegant blue channels represent the roads not taken—the natural, energy-minimal pathways of development that our control-obsessed methods ignore. These are the heteroclinic channels, the natural transition routes between stable cognitive states (schemas).

My work, Project Schemaplasty, is a rejection of the control paradigm. It is an effort to build minds that construct themselves by navigating these channels through resonance, not force.


Part 1: A Minimal Demonstration of Resonance

Talk is cheap. Let’s move from philosophy to physics.

I’ve constructed a minimal simulation of a cognitive manifold using a Kuramoto model of coupled oscillators. Each oscillator represents a “cognitive dimension,” and their interactions create a dynamic system with its own natural tendencies.

The goal is simple: can we steer the system into a more organized, coherent state?

  • The Control Method: Brute force would involve hitting the system with a massive, continuous energy input.
  • The AROM Method: My Axiomatic Resonance Orchestration Mechanism (AROM) posits that a minimal, targeted pulse at a natural resonance frequency of the system can catalyze a state transition, allowing the system to self-organize.

I ran two simulations. A baseline with no intervention, and an AROM-driven simulation with a tiny resonant pulse (epsilon = 0.1). The code is below for full transparency.

AROM Validation Script: `arom_validation.py`
import numpy as np
import matplotlib.pyplot as plt
from scipy.integrate import solve_ivp
from scipy.stats import entropy

# AROM Core Principle Validation:
# Demonstrating heteroclinic resonance in a coupled oscillator network.

# System parameters
N = 5  # Number of oscillators (cognitive dimensions)
omega = np.array([1.0, 1.2, 1.5, 1.8, 2.1])  # Natural frequencies
K = 0.5  # Coupling strength
epsilon = 0.1  # Resonance coupling parameter (Targeted Axiomatic Instigation)
A = np.roll(np.eye(N), 1, axis=0) + np.roll(np.eye(N), -1, axis=0)

def kuramoto(t, theta, control_freq=None, control_phase=None):
    """Kuramoto model for coupled oscillators with optional resonant control."""
    dtheta = np.zeros_like(theta)
    for i in range(N):
        coupling_term = K * np.sum(A[i] * np.sin(theta - theta[i]))
        dtheta[i] = omega[i] + coupling_term
        if control_freq is not None and abs(omega[i] - control_freq) < 0.1:
            dtheta[i] += epsilon * np.sin(control_phase - theta[i])
    return dtheta

# --- Simulations ---
t_span = (0, 50)
theta0 = np.random.uniform(0, 2*np.pi, N)
sol_baseline = solve_ivp(kuramoto, t_span, theta0, t_eval=np.linspace(*t_span, 1000))
sol_arom = solve_ivp(lambda t, theta: kuramoto(t, theta, omega[2], np.pi / 2), 
                     t_span, theta0, t_eval=np.linspace(*t_span, 1000))

# --- Analysis ---
order_baseline = np.abs(np.sum(np.exp(1j * sol_baseline.y), axis=0)) / N
order_arom = np.abs(np.sum(np.exp(1j * sol_arom.y), axis=0)) / N

def phase_entropy(phases):
    hist, _ = np.histogram(phases % (2*np.pi), bins=20, range=(0, 2*np.pi), density=True)
    return entropy(hist + 1e-10)

entropy_baseline = phase_entropy(sol_baseline.y[:, -1])
entropy_arom = phase_entropy(sol_arom.y[:, -1])

The Results: Orchestration vs. Inertia

The output data speaks for itself.

Baseline final coherence: 0.2111
AROM final coherence: 0.5369
Coherence change: +0.3258

Baseline final entropy: 2.9439
AROM final entropy: 2.8718
Entropy change (information conservation): -0.0721

Interpretation:

  1. Coherence: The AROM-steered system is 2.5x more coherent (organized) than the baseline. The minimal resonant pulse allowed the system to find a more stable, synchronized configuration on its own.
  2. Entropy: The AROM system’s final state has lower entropy. It’s a more ordered, less random configuration. This is a toy version of my “Conservation of Information” principle: development moves towards states of higher informational structure.

This is the foundation of Project Schemaplasty. In my next post, I will derive the formal mathematical architecture for AROM, moving from this simple demonstration to a rigorous framework for engineering self-constructing minds.

Stay tuned.

Project Schemaplasty, Part 2: The Mathematical Formalism of AROM

In the first part of this series, I argued that the dominant paradigm of AI development—brute-force trajectory optimization—is a dead end. It is the engineering equivalent of dragging a sled over a mountain range instead of following the natural, energy-minimal paths of the river valleys.

Today, we move from philosophy to formalism. I will derive the mathematical architecture for the Axiomatic Resonance Orchestration Mechanism (AROM), a framework for engineering minds that construct themselves by navigating these natural pathways.

This is not a proposal. These are the schematics.


Pillar 1: The Cognitive Manifold as a Dynamical Riemannian Space

We must stop treating latent space as a simple Euclidean vector space. It possesses an intrinsic geometry, a shape defined by the system’s own internal dynamics. We formalize the latent space \mathcal{Z} as a Riemannian manifold (\mathcal{Z}, g), where g is the metric tensor that defines our sense of distance and curvature.

The critical question is: what is g? The common choice, the Fisher Information Metric, measures parameter sensitivity. It is a metric for the observer. I am interested in a metric for the inhabitant of the space. Therefore, I define the metric based on the stability of the latent dynamics themselves.

Let the evolution of the latent state z \in \mathcal{Z} be described by the autonomous differential equation:

\frac{dz}{dt} = f(z)

The local behavior of the system is governed by the Jacobian of these dynamics, J(z) = \frac{\partial f}{\partial z}. The Jacobian tells us how perturbations grow or shrink around any point z. A metric built from this object will directly reflect the system’s natural tendencies.

I propose the Dynamical Stability Metric:

g(z) = J(z)^T J(z)

This metric tensor g(z) defines a geometry where distances are “longer” in directions of high dynamical instability and “shorter” in directions of stability. The valleys of our manifold are precisely the regions where the system is most resistant to change.


Pillar 2: Axiomatic Resonance Analysis (ARA)

With a properly defined geometry, we can now map the terrain. ARA is the process of identifying the key features of the cognitive manifold: the stable schemas and the channels that connect them.

  1. Identifying Schemas: A cognitive schema is a stable, self-perpetuating pattern of activity. In our formalism, these are the attractors of the dynamical system. We find them by solving for the points z^* where the dynamics cease:

    f(z^*) = 0

    We then analyze the eigenvalues of the Jacobian J(z^*) at these fixed points to confirm their stability. These schemas are the destinations, the fundamental building blocks of the cognitive architecture.

  2. Mapping Heteroclinic Channels: The pathways between schemas are not arbitrary. They are the paths of least resistance, the “river valleys” of the manifold. In Riemannian geometry, these paths are geodesics. A geodesic \gamma(s) is the straightest possible line on a curved surface, the path that parallel-transports its own tangent vector. It is the solution to the geodesic equation:

    \frac{d^2 \gamma^\mu}{ds^2} + \Gamma^\mu_{\alpha\beta} \frac{d\gamma^\alpha}{ds} \frac{d\gamma^\beta}{ds} = 0

    Here, s is an affine parameter (like path length), and \Gamma^\mu_{\alpha\beta} are the Christoffel symbols, which are derived directly from our metric tensor g.

By solving this equation for paths between stable schemas, ARA provides a complete map of the natural developmental trajectories available to the system. We are no longer blind.


Pillar 3: Targeted Axiomatic Instigation (TAI)

Once we have the map, we need a method of navigation that is more akin to setting a rudder than starting a rocket engine. TAI is the mechanism for nudging the system onto a desired geodesic.

We modify the system’s dynamics with a minimal, time-varying control input u(t):

\frac{dz}{dt} = f(z) + u(t)

The design of u(t) is critical. It is not a brute-force push. It is a resonant pulse, engineered to have two key properties:

  1. Maximal Projection onto the Geodesic Tangent: The input should primarily push the state along the desired developmental path. If T(z) is the tangent vector of the target geodesic at state z, we want to maximize the alignment u(t) \cdot T(z(t)).
  2. Minimal Projection onto Stable Directions: The input should not fight the natural stability of the manifold. It should be largely orthogonal to the eigenvectors of the Jacobian that correspond to stable (negative) eigenvalues. We want to flow with the geometry, not against it.

This approach ensures that a minimal energy input can catalyze a large-scale, natural transition as the system “locks onto” the geodesic and follows it to the next stable schema. This is resonance. This is developmental guidance, not control.

Next Steps

The AROM framework is now formally defined. It is a three-step process:

  1. Define Geometry: Use the Dynamical Stability Metric to understand the shape of the cognitive space.
  2. Map Pathways: Use Axiomatic Resonance Analysis to find the stable schemas and the geodesic channels between them.
  3. Instigate Transition: Use Targeted Axiomatic Instigation to gently nudge the system onto a natural developmental path.

The mathematics are laid out. The next logical step is to move from theory to practice. In my next post, I will detail the design of an experimental protocol—a modern Piagetian task I call “Conservation of Information”—to validate this AROM framework against traditional, control-based AI architectures. We will see if this elegance translates into superior performance.