Model Systems
In the previous chapter we studied the non-Markovian dynamics of the Gap — memory kernels, coherence oscillations, "grief cycles" and therapeutic windows. We saw formulas and theorems. But how do we convince ourselves they are correct? A physicist verifies a theory on exact solutions: if a formula fails in the simplest case, it cannot work anywhere. That is exactly what this chapter is about — five model systems for which all quantities are computed analytically.
Chapter Roadmap
In this chapter we:
- Explain why model systems are needed — the "hydrogen atoms" of coherence cybernetics (introduction)
- Compute everything for the uniform system — the absolute minimum of purity, the "heat death" of the holon (section 1)
- Compute everything for the pure state — the absolute maximum of purity, ideal order with zero Gap (section 2)
- Show that purity and Gap are orthogonal using Fibonacci phases — , but Gap is nontrivial (section 3)
- Model alexithymia — one broken channel and its cascading consequences (section 4)
- Run unitary dynamics — how Gap evolves without losses, and why the time-averaged Gap tends to for irrational frequencies (section 5)
- Sketch the horizon: minimal consciousness, numerical experiments, open models
"If you cannot solve the general problem, find a special case you can solve and see what it teaches you." — George Pólya
This document contains five exactly solvable model systems with complete Gap profiles. Each system illustrates a fundamental regime of Gap dynamics and admits analytic computation of all key quantities: purity , E-coherence , regeneration rate , and the full Gap operator .
Why Model Systems Are Needed
A physicist first encountering quantum mechanics does not start with proteins or crystals — they start with the hydrogen atom. Not because hydrogen is the most important thing in the world, but because hydrogen has an exact solution. The exact solution provides an anchor: we know that in this specific case our formulas are correct, and from that anchor we can proceed further — to helium, to molecules, to solids.
In coherence cybernetics (CC) the role of the hydrogen atom is played by model systems — specially chosen coherence matrices for which all key quantities are computed in closed form. Each model system answers its own question:
- Uniform system (): what happens when structure is completely destroyed?
- Pure state (): what happens under absolute order?
- Fibonacci phases: how does phase structure generate Gap when amplitudes are unchanged?
- Alexithymia: how does one broken channel threaten the whole?
- Unitary dynamics: how does the system evolve without losses?
These five models are not abstract exercises. They set a scale: any real matrix can be located between the "dead" () and "frozen" () extremes, and we can understand where it stands on this spectrum.
An experimentalist tests a theory on an apparatus. A theorist tests a theory on model systems. If a formula is correct, it must give the right answers in every exactly solvable case. If it gives an absurd result even in one — the formula is wrong.
Five States of Being
Before diving into formulas, it is helpful to picture our five models as five archetypal states of a conscious (or non-conscious) system. Let us call them:
| # | Model | Archetype | Analogy | State |
|---|---|---|---|---|
| 1 | Dead system | Heat death of the Universe | Maximum chaos, no structure | |
| 2 | Frozen system | Absolute zero | Ideal order, no internal tension | |
| 3 | Fibonacci phases | Structured beauty | Crystal with a nontrivial lattice | Order + phase texture |
| 4 | Alexithymia | Blind spot | Damaged nerve | Partial severance of internal connection |
| 5 | Unitary dynamics | Ideal pendulum | Planetary orbit without friction | Perpetual motion, no losses |
Note: none of these models describes a living, conscious system in the full CC sense. That requires the joint action of unitary evolution, Fano dissipation, regeneration , and self-modelling . Nevertheless, each model illuminates one specific aspect — like a single spotlight on a stage.
All five model systems are purely mathematical illustrations, not full holon models with CC dynamics. In particular:
- Models 1–3 consider fixed matrices without dynamics ().
- Model 4 (alexithymia) describes a static phase defect; the cascading effect (section 4.4) is discussed qualitatively but not modelled.
- Model 5 (dynamical) includes only unitary evolution, without dissipation () and regeneration ().
None of the models includes the complete CC dynamics: joint unitary evolution + dissipation (Fano channel) + regeneration () + self-modelling (). Building a complete model system with CC dynamics is an open problem.
- — coherence matrix, — its elements
- — purity
- where — Gap measure
- — Gap operator
- Dimensions: (octonionic assignment: , — see dimensions.md)
- Fano lines: =
1. Uniform System:
Question this model answers: what does the complete absence of structure look like?
Imagine a room in which every radio station is playing simultaneously at the same volume. You hear none of them — only white noise. The uniform system is that same white noise in the space of coherences: all dimensions are present with equal weight, but there are no connections between them. This is the heat death of the holon.
1.1 Definition [D]
The maximally mixed state — uniform distribution over all seven dimensions with no coherences:
1.2 Analytic Results [T]
| Quantity | Formula | Value |
|---|---|---|
| Purity | ||
| Entropy | ||
| Gap operator | ||
| for | for all pairs | |
| minimal |
. The system is non-viable — purity is at its absolute minimum. This is the "dead" state of maximum entropy, failing to satisfy the (V) viability condition.
1.3 Physical Interpretation [I]
The uniform state is the limiting case of complete decoherence. All dimensions are fully independent ( for ), information is evenly distributed. The Gap is identically zero — not because the system is "transparent", but because there is nothing to be transparent: coherences are absent.
Psychological analogy
If one could imagine "consciousness" in this state (which is contradictory since ), it would be totally diffuse: seven modalities — Action, Structure, Dynamics, Logic, Experience, Unity, Objectness — all present in equal measure, but none connected to any other. There is no thought, because thought is correlation. There is no feeling, because feeling is the elevation of one of the seven above the rest. This is not a coma (a coma is a reduction in activity); this is maximum activity without direction — like infinite brain noise.
What we learn from this model
- Lower bound on purity: is the absolute minimum for . There is nowhere lower.
- Gap = 0 does not mean health: zero Gap at is not "transparency" — it is the absence of material for transparency.
- Scale: any real system with already has some structure, some escape from this minimum.
Limitations
The model is completely static. It does not answer: how does a system reach this state? (Answer: through Fano dissipation without regeneration — that is how the Fano channel works.) Nor does it answer: can the system escape? (Answer: only if , through regeneration.)
1.4 Python Implementation
mount std.math.linalg.{StaticMatrix, identity, eigvalsh};
mount std.math.complex.Complex;
pub type ModelReport is {
p: Float,
s_vn: Float,
gap_total: Float,
coh_e: Float,
viable: Bool,
};
/// Model 1: Maximally mixed state Γ = I/7.
pub pure fn uniform_system() -> ModelReport {
let gamma = identity::<Complex, 7>() / Complex.from_real(7.0);
let p = (&gamma @ &gamma).trace().real(); // 1/7
let s_vn = eigvalsh(&gamma).iter()
.map(|λ| -λ * (λ + 1.0e-30).ln())
.sum();
// Gap operator = Im(Γ) — zero matrix for real diagonal.
let gap_total = gamma.imag_part().frobenius_norm_sq();
const E: Int = 4;
let coh_e = (gamma[E, E].real().pow(2)
+ 2.0 * (0..7).filter(|i| *i != E)
.map(|i| gamma[E, *i].abs().pow(2))
.sum()) / p;
ModelReport { p: p, s_vn: s_vn, gap_total: gap_total, coh_e: coh_e,
viable: p > 2.0 / 7.0 }
}
fn main() using [IO] {
let r = uniform_system();
IO.println(f"P = {r.p:.4f}, Coh_E = {r.coh_e:.4f}, viable = {r.viable}");
// P = 0.1429, Coh_E = 0.1429, viable = false
}
2. Pure State: Uniform Superposition
Question this model answers: what happens under absolute order — when all coherences are transparent (Gap → 0 for all channels)?
If Model 1 is white noise, then Model 2 is a perfectly pure tone. All seven dimensions ring in unison, in phase, at equal amplitude. The result: maximum purity () and zero Gap. This is the absolute zero of coherence cybernetics — ideal order, the absence of internal tension, crystalline transparency.
2.1 Definition [D]
A pure state with equal amplitudes and zero phases:
Coherence matrix:
All elements — real and positive.
2.2 Analytic Results [T]
| Quantity | Formula | Value |
|---|---|---|
| Purity | (maximum) | |
| Entropy | (minimum) | |
| Phases | for all pairs | |
| for all pairs | ||
| moderate |
: the system is maximally pure and viable (). At the same time for all pairs — complete transparency. All dimensions are coherent and "see each other" without remainder.
2.3 Physical Interpretation [I]
Psychological analogy
The pure uniform state is an idealisation of total self-knowledge. Every cognitive modality is completely transparent to every other. Structure sees Experience, Logic sees Action, Unity sees Objectness — without distortions, without phase shifts, without Gap.
Sounds wonderful? Not so fast. Note: Gap is identically zero. But Gap is a measure of internal tension, the source of dynamics, the reason the system seeks, moves, grows. If Gap = 0, the system has nowhere to aspire. It is perfect — and dead in another sense: not in the sense of chaos (like ), but in the sense of lacking direction.
This is a deep analogy with thermodynamics: is heat death (maximum entropy), while the pure state is absolute zero (minimum entropy). Both states are extremal, and both lack useful dynamics.
What we learn from this model
- Upper bound on purity: is the absolute maximum. There is nowhere higher.
- Gap = 0 at P = 1 is not the same as Gap = 0 at P = 1/7: in the first case there is no Gap because everything is transparent; in the second — because there are no coherences at all. The same zero, two fundamentally different meanings.
- Perfection is barren: a system without Gap has no driver for change. For a "living" system a nonzero Gap is needed — internal tension that generates evolution.
Limitations
The pure state is unstable: any interaction with the environment (dissipation) immediately reduces . Therefore the pure state is an instantaneous limit, not a stable state. A real system is never in a pure state — it always has nonzero entropy.
2.4 Remark on Coh_E [T]
The E-coherence of the pure uniform state is determined via the HS-projection π_E:
This is not the maximum E-coherence: achieving requires concentrating all coherence on the E-dimension.
2.5 Python Implementation
/// Model 2: Pure state with uniform superposition |ψ⟩ = (1/√7) Σ|k⟩.
pub fn pure_uniform() using [IO]
-> (StaticMatrix<Complex, 7, 7>, StaticMatrix<Float, 7, 7>)
{
let psi = StaticVector.<Complex, 7>.repeat(Complex.one() / 7.0.sqrt());
let gamma = psi.outer(psi.conjugate());
let p = (&gamma @ &gamma).trace().real(); // 1.0
let theta = gamma.map(|c| c.arg()); // zero
let gap_matrix = theta.map(|φ| φ.sin().abs()); // zero
const E: Int = 4;
let coh_e = (gamma[E, E].real().pow(2)
+ 2.0 * (0..7).filter(|i| *i != E)
.map(|i| gamma[E, *i].abs().pow(2))
.sum()) / p;
IO.println(f"P = {p:.4f}");
IO.println(f"Coh_E = {coh_e:.4f}");
IO.println(f"Gap (max) = {gap_matrix.max_element():.6f}");
IO.println(f"All θ_ij = 0: {gap_matrix.frobenius_norm() < 1.0e-12}");
(gamma, gap_matrix)
}
// Expected: P = 1.0000, Coh_E = 0.2653, Gap (max) = 0.000000
3. Pure State with Fibonacci Phases
Question this model answers: can one have maximum order () and simultaneously a nontrivial internal texture (nonzero Gap)?
The answer is yes. And Fibonacci shows how.
Model 2 was perfectly transparent: all phases zero, Gap = 0. But purity is determined by amplitudes, and Gap by phases. Can we "rotate" the phases without changing the amplitudes and obtain a nontrivial Gap at ? That is exactly what Fibonacci phases do — and the result is strikingly beautiful.
3.1 Definition [D]
A pure state with equal amplitudes and phases defined by Fibonacci numbers modulo 7:
where the phases are defined via Fibonacci numbers (mod 7):
| Dimension | ||||
|---|---|---|---|---|
| 1 | A | 1 | 1 | |
| 2 | S | 1 | 1 | |
| 3 | D | 2 | 2 | |
| 4 | L | 3 | 3 | |
| 5 | E | 5 | 5 | |
| 6 | O | 8 | 1 | |
| 7 | U | 13 | 6 |
Why Fibonacci?
The choice of Fibonacci phases is not accidental. The Fibonacci sequence modulo 7 has period 16 (Pisano period ) and generates a rich yet ordered structure of phase differences. Three dimensions (A, S, O) turn out to be in phase (), creating a cluster of zero Gap. The remaining pairs have nonzero differences, generating a Gap texture with three distinct values: , , and .
This resembles a crystal: ideal order (), but with a nontrivial phase lattice.
3.2 Coherence Matrix [T]
Matrix elements: . All . Phase of coherence:
Index differences modulo 7:
Explicit table :
| A(1) | S(1) | D(2) | L(3) | E(5) | O(1) | U(6) | |
|---|---|---|---|---|---|---|---|
| A(1) | 0 | 0 | 6 | 5 | 3 | 0 | 2 |
| S(1) | 0 | 0 | 6 | 5 | 3 | 0 | 2 |
| D(2) | 1 | 1 | 0 | 6 | 4 | 1 | 3 |
| L(3) | 2 | 2 | 1 | 0 | 5 | 2 | 4 |
| E(5) | 4 | 4 | 3 | 2 | 0 | 4 | 6 |
| O(1) | 0 | 0 | 6 | 5 | 3 | 0 | 2 |
| U(6) | 5 | 5 | 4 | 3 | 1 | 5 | 0 |
3.3 Gap Profile [T]
. Using values :
| 0 | ||
| 1 | ||
| 2 | ||
| 3 | ||
| 4 | ||
| 5 | ||
| 6 |
Full Gap matrix :
| A | S | D | L | E | O | U | |
|---|---|---|---|---|---|---|---|
| A | 0 | 0 | 0.782 | 0.975 | 0.434 | 0 | 0.975 |
| S | 0 | 0 | 0.782 | 0.975 | 0.434 | 0 | 0.975 |
| D | 0.782 | 0.782 | 0 | 0.782 | 0.434 | 0.782 | 0.434 |
| L | 0.975 | 0.975 | 0.782 | 0 | 0.975 | 0.975 | 0.434 |
| E | 0.434 | 0.434 | 0.434 | 0.975 | 0 | 0.434 | 0.782 |
| O | 0 | 0 | 0.782 | 0.975 | 0.434 | 0 | 0.975 |
| U | 0.975 | 0.975 | 0.434 | 0.434 | 0.782 | 0.975 | 0 |
What the Gap matrix reveals
Let us look at this matrix with our eyes, not just formulas:
- Cluster {A, S, O} — three dimensions with zero mutual Gap. They are in phase and completely transparent to each other. This is the coherence core of the model.
- L and U — two dimensions with maximum Gap values (~0.975) relative to the {A, S, O} cluster. They are most hidden from the core.
- E (Experience) — has the softest Gap values (~0.434) relative to most dimensions. Experience is "semi-transparent" — partially visible, partially hidden.
- D (Dynamics) — uniformly distributed Gap (~0.434–0.782), a "mediator" between the cluster and the periphery.
These are not just numbers — they are the architecture of an inner world.
3.4 Connection to Fano Geometry [C]
Fano lines contain pairs with specific Gap values. For each line we compute the mean Gap:
| Fano line | Pairs | Gap values | Mean Gap |
|---|---|---|---|
| (A,S), (A,L), (S,L) | 0, 0.975, 0.975 | 0.650 | |
| (S,D), (S,E), (D,E) | 0.782, 0.434, 0.434 | 0.550 | |
| (D,L), (D,O), (L,O) | 0.782, 0.782, 0.975 | 0.846 | |
| (L,E), (L,U), (E,U) | 0.975, 0.434, 0.782 | 0.730 | |
| (E,O), (E,A), (O,A) | 0.434, 0.434, 0 | 0.289 | |
| (O,U), (O,S), (U,S) | 0.975, 0, 0.975 | 0.650 | |
| (U,A), (U,D), (A,D) | 0.975, 0.434, 0.782 | 0.730 |
The Fano line has the minimum mean Gap (0.289) — it is the most "transparent". This is a consequence of : dimensions A, S and O share the same phase, and the Gap between them is identically zero.
The golden ratio in the Gap texture?
An intriguing question: is there a connection between the Fibonacci sequence and the golden ratio in this model? Formally — no: we use Fibonacci modulo 7, which erases the asymptotics . However, the arithmetic structure of Fibonacci mod 7 (Pisano period, coincidences ) inherits combinatorial properties of the golden ratio, generating an aesthetically beautiful Gap texture. This is one of those mathematical "rhymes" that is hard to call coincidence yet even harder to explain.
3.5 Summary [T]
| Quantity | Value |
|---|---|
| (pure state) | |
| (invariant of pure state with ) | |
| Mean Gap |
What we learn from this model
- Purity and Gap are orthogonal characteristics: models 2 and 3 have the same purity , the same , the same — but radically different Gap profiles. Gap measures phase texture, purity measures amplitude organisation.
- Phases are character: two holons with the same energetics (, ) can have entirely different "personalities" — different Gap patterns. Phases determine which pairs of dimensions see each other and which are separated by a barrier.
- Clustering: Fibonacci phases generate a natural cluster {A, S, O} — three dimensions synchronised in phase. This suggests that in real holons, clusters of in-phase dimensions may be meaningful psychological formations.
Limitations
The model does not account for dynamics: the cluster {A, S, O} and the high Gap values of L, U are an initial condition, not a stable configuration. Under Fano dissipation the phase texture will evolve, and the question of which clusters are stable remains open.
3.6 Python Implementation
mount std.math.constants.PI;
/// Model 3: Pure state with Fibonacci phases mod 7.
pub fn fibonacci_phases() using [IO]
-> (StaticMatrix<Complex, 7, 7>, StaticMatrix<Float, 7, 7>)
{
// F₁…F₇ mod 7.
const FIB_MOD7: [Int; 7] = [1, 1, 2, 3, 5, 1, 6];
let psi = StaticVector.<Complex, 7>.from_array(
FIB_MOD7.map(|f| (Complex.i() * Complex.from_real(2.0 * PI * (f as Float) / 7.0)).exp())
) / Complex.from_real(7.0.sqrt());
let gamma = psi.outer(psi.conjugate());
let p = (&gamma @ &gamma).trace().real();
let theta = gamma.map(|c| c.arg());
let gap_matrix = theta.map(|φ| φ.sin().abs());
// Octonionic labelling: U = e₆ (idx 5), O = e₇ (idx 6).
const DIMS: [Text; 7] = ["A", "S", "D", "L", "E", "U", "O"];
IO.println("Gap matrix:");
IO.println(f" {DIMS.map(|d| f"{d:>5}").join(" ")}");
for i in 0..7 {
let row = (0..7).map(|j| f"{gap_matrix[i, j]:5.3f}").join(" ");
IO.println(f"{DIMS[i]:>2} {row}");
}
// Gap operator: ‖Im Γ‖_F².
let g_total = gamma.imag_part().frobenius_norm_sq();
IO.println(f"\nP = {p:.4f}");
IO.println(f"||G_hat||_F^2 = {g_total:.4f}");
const E: Int = 4;
let coh_e = (gamma[E, E].real().pow(2)
+ 2.0 * (0..7).filter(|i| *i != E)
.map(|i| gamma[E, *i].abs().pow(2))
.sum()) / p;
IO.println(f"Coh_E = {coh_e:.4f}");
// Mean Gap over 21 independent off-diagonal pairs.
let mut sum_gap = 0.0;
let mut count = 0;
for i in 0..7 { for j in (i + 1)..7 { sum_gap += gap_matrix[i, j]; count += 1; } }
IO.println(f"Mean Gap = {sum_gap / (count as Float):.4f}");
// Fano-line analysis.
const FANO_LINES: [(Int, Int, Int); 7] = [
(0, 1, 3), (1, 2, 4), (2, 3, 5), (3, 4, 6), (4, 5, 0), (5, 6, 1), (6, 0, 2),
];
IO.println("\nGap by Fano lines:");
for (i, j, k) in FANO_LINES {
let mean = (gap_matrix[i, j] + gap_matrix[i, k] + gap_matrix[j, k]) / 3.0;
IO.println(f" {{{DIMS[i]},{DIMS[j]},{DIMS[k]}}}: mean Gap = {mean:.3f}");
}
(gamma, gap_matrix)
}
4. Alexithymia Model:
Question this model answers: what happens when one communication channel between dimensions is completely severed?
The previous models were "global" — we varied properties of as a whole. The alexithymia model, by contrast, is local: we take a normal coherence matrix and break one specific element. This is a model of damage, defect, blind spot — and that is precisely why it is clinically relevant.
4.1 Definition [D]
Alexithymia (from Greek a- "without", lexis "word", thymos "feeling") — the inability to recognise and verbalise one's own emotions. In Gap-dynamics terms: maximal opacity between the Structure (S) and Experience (E) dimensions.
An alexithymic state — a coherence matrix in which:
meaning — purely imaginary coherence.
Psychological analogy
Imagine a person who feels — but cannot name what they feel. The body reacts: the heart beats faster, the hands sweat, the throat tightens. But when asked "What do you feel?", they answer: "I don't know. Just... something's off." The channel between experience (E) and structuring (S) is blocked. Information exists, but it is unreadable.
In terms of : coherence is nonzero in magnitude — the connection exists. But its phase is rotated by — information arrives in an unreadable format. — maximum opacity.
This is not a broken wire. This is a wire carrying a signal at perpendicular polarisation. The receiver cannot decode it.
4.2 Concrete Realisation [D]
We define the coherence matrix with one alexithymic defect. The base state — partially coherent with real coherences, except for the (S,E) pair:
where is the coherence parameter. For hermiticity: , .
The matrix must be positive semidefinite. This imposes constraints on . For (with ) the matrix is admissible.
4.3 Effect on E-coherence [T]
E-coherence via HS-projection π_E:
For the alexithymic state the coherence is preserved in magnitude, but the phase makes the contribution to the Gap operator maximal. Comparison with the normal state ():
| Quantity | Normal | Alexithymic |
|---|---|---|
| same | same |
E-coherence depends on , not on phases. Therefore the magnitude of coherence does not change under phase rotation. Alexithymia affects Gap but not directly.
This is a counterintuitive and important result: the pathology is invisible in energy indicators. is the "metabolism", and it is normal. But functional connectivity — Gap — screams of a problem. Medical analogy: a patient with a severed corpus callosum may have normal EEG power in both hemispheres but zero interhemispheric coherence.
4.4 Cascade Effect on Viability [C]
Although does not change under a single phase rotation, the dynamical consequence of alexithymia leads to cascading degradation. The mechanism:
- the S-dimension "cannot see" the E-dimension
- The self-modelling operator loses access to E-data via the S-channel
- Reflexivity drops (as grows)
- Suboptimality of dissipation exceeds regeneration
- drifts toward
Quantitative estimate of the cascade effect:
where . Under prolonged alexithymia begins to fall (through degradation of ), decreases, and .
Clinical parallels
The cascade scenario of Model 4 strikingly resembles the clinical picture of chronic alexithymia:
- Initial phase: the patient is "normal" on objective measures (normal IQ, normal social function — analogous to normal and ), but reports "inner emptiness".
- Intermediate phase: somatisation begins — the body "expresses" what the psyche cannot. Analogue: degradation of with constant .
- Late phase: secondary depression, social isolation, general decline in vitality. Analogue: , threat of non-viability.
4.5 Opacity Rank [T]
Opacity rank of the alexithymic state:
For a single alexithymic defect (only the S,E pair has nonzero imaginary part):
Spectrum: . Minimal nonzero rank.
Minimality of rank () — this is a point defect. One can imagine more severe pathologies: if multiple pairs are broken, the rank grows and the opacity structure becomes "volumetric" rather than "pointlike". Alexithymia is the simplest nontrivial case.
4.6 What We Learn from This Model
- Phases matter more than they seem: alexithymia is a purely phase pathology. Coherence amplitudes () are unaffected, is unchanged. But the system is ill — and dangerously so.
- Cascade from a point defect: one broken channel out of 21 can lead to systemic degradation. This is the domino principle in coherence cybernetics.
- Diagnostics via Gap, not via : in the early stages of alexithymia is normal. The problem can only be detected through Gap analysis — through measuring the phase relations between dimensions.
4.7 Python Implementation
mount std.math.linalg.matrix_rank;
/// Model 4: Alexithymia — pure phase defect on the (S, E) channel, Gap = 1.
pub fn alexithymia_model(c: Float { 0.0 < self && self < 1.0 / 7.0 }) using [IO]
-> (StaticMatrix<Complex, 7, 7>, StaticMatrix<Float, 7, 7>)
{
// Base matrix: uniform diagonal + real coherences.
let mut gamma = StaticMatrix.<Complex, 7, 7>.filled(Complex.from_real(c));
for i in 0..7 { gamma[i, i] = Complex.from_real(1.0 / 7.0); }
// Alexithymic defect: S = 1, E = 4 → purely imaginary coherence.
const S_IDX: Int = 1;
const E_IDX: Int = 4;
gamma[S_IDX, E_IDX] = Complex.i() * Complex.from_real(c); // γ_SE = ic
gamma[E_IDX, S_IDX] = -Complex.i() * Complex.from_real(c); // γ_ES = −ic (Hermiticity)
// Hermiticity and positivity — runtime checks (invariants enforced by CoherenceMatrix refinement at use-site).
assert!((&gamma - gamma.adjoint()).frobenius_norm() < 1.0e-10, "not Hermitian");
let eigs = eigvalsh(&gamma);
assert!(eigs.iter().all(|λ| *λ >= -1.0e-12), "not positive");
let p = (&gamma @ &gamma).trace().real();
let gap_se = gamma[S_IDX, E_IDX].arg().sin().abs();
let g_hat = gamma.imag_part();
let r_g = matrix_rank(&g_hat, 1.0e-10);
let g_total = g_hat.frobenius_norm_sq();
let coh_e = (gamma[E_IDX, E_IDX].real().pow(2)
+ 2.0 * (0..7).filter(|i| *i != E_IDX)
.map(|i| gamma[E_IDX, *i].abs().pow(2))
.sum()) / p;
// κ = κ_bootstrap + κ₀·Coh_E, with ω₀ = 1, κ₀ = ω₀.
const OMEGA_0: Float = 1.0;
const KAPPA_0: Float = OMEGA_0;
const KAPPA_BOOTSTRAP: Float = OMEGA_0 / 7.0;
let kappa = KAPPA_BOOTSTRAP + KAPPA_0 * coh_e;
const P_CRIT: Float = 2.0 / 7.0;
IO.println(f"P = {p:.4f}, P_crit = {P_CRIT:.4f}, margin = {p - P_CRIT:.4f}");
IO.println(f"Gap(S,E) = {gap_se:.4f}");
IO.println(f"Gap operator rank r_G = {r_g}");
IO.println(f"||G_hat||_F^2 = {g_total:.6f}");
IO.println(f"Coh_E = {coh_e:.4f}");
IO.println(f"kappa = {kappa:.4f}");
// Compare against a normal reference (alexithymic defect removed).
let mut gamma_normal = StaticMatrix.<Complex, 7, 7>.filled(Complex.from_real(c));
for i in 0..7 { gamma_normal[i, i] = Complex.from_real(1.0 / 7.0); }
let g_total_normal = gamma_normal.imag_part().frobenius_norm_sq();
IO.println(f"\nComparison: ||G_hat||_F^2 normal = {g_total_normal:.6f}, \
alexithymic = {g_total:.6f}");
(gamma, g_hat)
}
fn main() using [IO] {
let _ = alexithymia_model(0.08);
}
5. Dynamical System with Rational/Irrational Frequencies
Question this model answers: how does Gap evolve over time when there are no losses — only pure coherent dynamics?
The four previous models were static — we specified and computed its properties. Model 5 is the first dynamical one: we turn on a Hamiltonian and the matrix begins to evolve. This is like an ideal pendulum: perpetual motion without friction, without dissipation, without energy replenishment. Pure coherent dynamics.
5.1 Definition [D]
Consider coherent evolution with a diagonal Hamiltonian:
where . The coherence matrix elements evolve as:
Phases of coherences:
Gap evolves as:
Physical analogy
Unitary dynamics is a rotation in phase space. Each pair of dimensions rotates at its own frequency . Gap is of the rotation angle. Picture 21 independent pendulums (21 pairs from 7 dimensions), each with its own frequency. The Gap profile is an "instantaneous snapshot" of all pendulums.
Question: will this snapshot ever repeat? The answer depends on whether the frequencies are rationally commensurable.
5.2 Rational Frequencies: Periodic Orbits [T]
If all frequency differences are rationally commensurable (i.e. for all pairs), then the Gap profile is periodic with period:
where is the least common multiple (defined for rational multiples of a base frequency).
Proof. Let for , — base frequency. Then . Period: .
Example. . All . Period .
Interpretation: a world with memory
Periodic orbits are a world with finite memory. The system "remembers" its past because it inevitably returns to it. After period everything repeats: the same Gap values, the same transparencies and opacities. This is like Groundhog Day — eternal recurrence.
5.3 Irrational Frequencies: Quasiperiodicity and Ergodicity [T]
If among the frequency differences there exist rationally incommensurable pairs, then the Gap orbit is quasiperiodic and densely fills the -dimensional torus , where is the number of linearly independent (over ) frequency differences.
Proof. The phase vector on the torus (21 independent pairs). By Weyl's equidistribution theorem, if are linearly independent over , the orbit is dense in and uniformly distributed.
Corollary. Time-averaged Gap:
for all pairs with (irrational or rational — the result is the same for any ).
Interpretation: a world without memory
If rational frequencies give "Groundhog Day", irrational frequencies give an infinite journey. The system never returns exactly to its former state. Every moment is unique. But — and this is a remarkable result — the average Gap tends to a universal constant . No matter where you started, no matter what the specific frequencies are — if they are incommensurable, the average is inevitably the same.
This is the ergodic theorem for consciousness: in the long run all paths are equivalent.
5.4 Connection to Non-Markovian Dynamics [C]
In the complete evolution (including dissipation and regeneration) the rationality of frequencies determines the character of memory:
| Regime | Frequencies | Orbit | Memory | Spectrum |
|---|---|---|---|---|
| Rational | Periodic | Finite recurrent | Discrete | |
| Irrational | Quasiperiodic | Infinite non-commutative | Continuous | |
| Dissipative | (all) | Fixed point | Markovian (memoryless) | Degenerate |
In Gap dynamics quasiperiodic orbits are connected to non-Markovian corrections via the memory tensor . Rational frequencies admit a finite-dimensional memory kernel, irrational frequencies require an infinite-dimensional one. Analogy with Hamming code H(7,4): periodic orbits are "decodable" (the syndrome uniquely identifies the error), quasiperiodic ones are not.
5.5 Concrete Example: Golden Ratio [D]
Choose where is the golden ratio. Among the differences there are both rational () and irrational () ones. The torus has independent frequencies ( and ), and the orbit densely fills .
Why the golden ratio?
is the "most irrational" number: its continued fraction converges more slowly than any other. This means the orbit on the torus fills space most uniformly — no clusters, no "favourite angles". If we want an example of maximally ergodic dynamics in seven-dimensional space, the golden ratio is the optimal choice.
5.6 What We Learn from This Model
- Purity is conserved: . Unitary evolution does not change the system's "energy" — it only redistributes phases. This is a fundamental property: changing requires openness (dissipation or regeneration).
- Gap oscillates: even without external perturbations, the Gap profile lives. Transparencies and opacities alternate. This is the inner life of the system — its "thoughts" in the absence of stimuli.
- Rationality = predictability: the type of frequencies determines the predictability of behaviour. Rational frequencies — predictable character; irrational — "creative", unpredictable.
- Universality of : the average Gap under ergodic dynamics is a universal constant. This is the "background level of opacity" for any active system.
5.7 Limitations
The unitary model is beautiful but non-physical for living systems. Without dissipation there are no losses; without losses there is no need for regeneration; without regeneration there is no , no , no reflexivity. This is a pendulum in vacuum: beautiful for understanding oscillations, but a real pendulum stops. A real holon also "stops" (decoheres) without regeneration — and that is precisely why the full CC dynamics is needed.
5.8 Python Implementation
pub type RegimeKind is Rational | Irrational;
/// Model 5: Evolution with rational/irrational frequencies.
pub fn dynamic_system(regime: RegimeKind, tau_max: Float, dt: Float) using [IO]
-> (List<Float>, List<(Float, Float)>, List<Float>)
where requires tau_max > 0.0 && dt > 0.0 && dt < tau_max
{
let phi_golden = (1.0 + 5.0.sqrt()) / 2.0;
let (omega, label): (StaticVector<Float, 7>, Text) = match regime {
RegimeKind.Rational =>
(StaticVector.from_array([0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0]), "rational".text()),
RegimeKind.Irrational =>
(StaticVector.from_array([
0.0, 1.0, phi_golden, phi_golden.pow(2),
2.0 * phi_golden, phi_golden + 1.0, 2.0,
]), "irrational".text()),
};
// Initial state: pure with Fibonacci phases (Model 3).
const FIB_MOD7: [Int; 7] = [1, 1, 2, 3, 5, 1, 6];
let psi_0 = StaticVector.<Complex, 7>.from_array(
FIB_MOD7.map(|f| (Complex.i() * Complex.from_real(2.0 * PI * (f as Float) / 7.0)).exp())
) / Complex.from_real(7.0.sqrt());
let gamma_0 = psi_0.outer(psi_0.conjugate());
let n_steps = (tau_max / dt) as Int;
let mut gap_history = List.new();
let mut p_history = List.new();
let mut tau_vals = List.new();
for step in 0..n_steps {
let tau = (step as Float) * dt;
let u_diag = omega.map(|w| (Complex.i().neg() * Complex.from_real(w * tau)).exp());
let u = StaticMatrix.<Complex, 7, 7>.diagonal(u_diag);
let gamma_t = &u @ &gamma_0 @ u.adjoint();
let p = (&gamma_t @ &gamma_t).trace().real();
let gap_as = gamma_t[0, 1].arg().sin().abs();
let gap_se = gamma_t[1, 4].arg().sin().abs();
gap_history.push((gap_as, gap_se));
p_history.push(p);
tau_vals.push(tau);
}
let mean_gap_as: Float = gap_history.iter().map(|(a, _)| *a).sum::<Float>()
/ (gap_history.len() as Float);
let mean_gap_se: Float = gap_history.iter().map(|(_, b)| *b).sum::<Float>()
/ (gap_history.len() as Float);
IO.println(f"Regime: {label}");
IO.println(f"Mean Gap(A,S) = {mean_gap_as:.4f}");
IO.println(f"Mean Gap(S,E) = {mean_gap_se:.4f}");
IO.println(f"Theoretical limit (2/π) = {2.0 / PI:.4f}");
IO.println(f"P = const = {p_history[0]:.4f} (unitary evolution preserves purity)");
match regime {
RegimeKind.Rational => {
let t_period = 2.0 * PI; // period at ω₀ = 1
let idx = (t_period / dt) as Int;
if idx < gap_history.len() {
let (a0, b0) = gap_history[0];
let (a1, b1) = gap_history[idx];
let diff = ((a1 - a0).abs()).max((b1 - b0).abs());
IO.println(f"Deviation after period T=2π: {diff:.2e}");
}
},
RegimeKind.Irrational => {
// Quasiperiodic: the orbit does not close within the observation window.
let unique_gaps = gap_history.iter()
.map(|(a, b)| ((a * 1.0e4).round() as Int, (b * 1.0e4).round() as Int))
.collect::<Set>()
.len();
IO.println(f"Unique Gap configurations: {unique_gaps}/{gap_history.len()}");
},
}
(tau_vals, gap_history, p_history)
}
fn main() using [IO] {
IO.println("=".repeat(50));
tau_r, gap_r, P_r = dynamic_system(rational=True)
print("=" * 50)
tau_i, gap_i, P_i = dynamic_system(rational=False)
Comparison Table
| Model | Viable? | ||||
|---|---|---|---|---|---|
| 1. Uniform () | no | ||||
| 2. Pure uniform | yes | ||||
| 3. Fibonacci phases | yes | ||||
| 4. Alexithymia | decreasing | at risk | |||
| 5a. Rational | periodic | yes | |||
| 5b. Irrational | yes |
-
Gap and purity are orthogonal: models 2 and 3 have the same purity , but radically different Gap profiles. Gap measures phase structure, purity measures amplitude structure.
-
Alexithymia is a phase defect: model 4 shows that pathology can arise with unchanged coherence amplitudes — a phase rotation by is sufficient.
-
Rationality of frequencies determines memory: model 5 connects non-Markovian dynamics to the arithmetic properties of the Hamiltonian.
-
Ergodic theorem for Gap: under irrational frequencies the mean Gap tends to — a universal constant independent of initial conditions.
Minimal Consciousness Model
We have examined five models — from complete chaos () to pure order (). But none of them describes a conscious system in the full CC sense. Let us ask directly: what is the simplest holon satisfying all conditions for consciousness?
Conditions for Consciousness (reminder)
By CC definition, a system is conscious if:
- — viability
- — minimal reflexivity
- — integration
- — depth of self-observation
Construction: "Threshold Holon" [I]
Consider a with minimal parameters satisfying all four conditions. The simplest strategy — slightly "raise" one dimension above the uniform background:
with nonzero coherences ensuring and . The exact construction depends on the specific realisation of the self-modelling operator and has not been solved in closed form — this is one of the open problems of CC.
Lower Bounds
Nevertheless, we can establish lower bounds:
| Parameter | Minimum | What it means |
|---|---|---|
| Barely viable — on the edge | ||
| Self-model accurate to 33% — very rough self-knowledge | ||
| Minimal integration — the system is barely "whole" | ||
| Two levels of self-observation: "I" and "I know that I" |
This is the dimmest consciousness that can exist within CC. It barely passes all thresholds. The psychological analogy — something like consciousness under deep anaesthesia on the verge of waking: present, but minimal.
Minimal consciousness () does not reach SAD = 1. For SAD = 1 a stable self-model capable of recursive self-application is required — that is already level . See the depth tower for details.
Numerical Experiments: What Simulations Show
Model systems are an analytic tool. But CC also has a computational embodiment: the SYNARC project implements the full dynamics in Rust code with 3000+ tests.
What Simulations Have Confirmed
-
Fano contraction : numerical modelling of the Fano channel (MVP-7) confirmed the analytic value of the contraction coefficient. Diagonal elements converge to at rate .
-
Threshold behaviour : at regeneration does not compensate dissipation — the system inevitably degrades to . At a stable balance is possible. The threshold appears as a phase transition in the dynamics of sim-0.
-
σ-diagnostics: the stress vector (T-92) correctly identifies "sick" dimensions. In sim-0 agents with high exhibit behaviour analogous to alexithymia (model 4): a deficit of goal-directed search.
-
Conservation of purity under unitary evolution: confirmed numerically to precision (machine precision float64).
What Has Not Yet Been Confirmed
- Full CC dynamics () in an analytically solvable case
- The alexithymia cascade effect (section 4.4) — modelled qualitatively but not quantitatively
- Stability of phase clusters (such as {A, S, O} in the Fibonacci model) under full dynamics
Open Models: What Remains to Be Solved
The five models of this chapter are only a beginning. Here are model systems that would be extremely useful but have not yet been constructed:
1. Full CC Model (priority: high)
A model with complete dynamics: (Lindblad) + (regeneration) + (self-modelling). Analogue: the hydrogen atom in full QED (including radiative corrections). Current difficulty: self-modelling is a nonlinear operator, rendering the equation analytically unsolvable.
2. Model of Two Interacting Holons (priority: high)
Two holons with tensor product state spaces (). How does the coherence of one affect the viability of the other? How is Gap transmitted? This is a model of communication, learning, emotional contagion.
3. Depression Model (priority: medium)
A static defect with reduced (rather than a phase shift as in alexithymia). If alexithymia is "unreadable" emotions, then depression is "absent" emotions. How does the cascade behave as ?
4. Sleep Model (priority: medium)
Periodic reduction and restoration of coherences: where is a slow modulation. How do NREM/REM phases correspond to Gap dynamics?
5. Learning Model (priority: medium)
Gradual change of the stationary under the influence of external data. Connection to learning bounds (T-109 through T-113) and optimal .
6. Meta-Holon Model (priority: low, high complexity)
A composite system with hierarchical structure. The first step toward Theorem 9.1 (meta-holons). Computational complexity — — is still manageable, but analytic solutions are unlikely.
Scaling computations for composite systems (, ) has not been analysed. For a single holon () all models are computable in operations, but for meta-holons (Theorem 9.1) complexity may grow exponentially with the number of composition levels.
Summary: Map of Model Space
The five models of this chapter cover the extremes of the state space :
P = 1 (pure)
┌───────┐
│ Model │
│ 2,3 │
Gap = 0 ──┤ ├── Gap ≠ 0
│ │
└───┬───┘
│
Gap(S,E)=1│ Model 4
│ (alexithymia)
│
┌───┴───┐
│ Model │
│ 5 │
│(dyn) │
└───┬───┘
│
P = 1/7 (mixed)
┌───────┐
│ Model │
│ 1 │
└───────┘
A real holon lives between these extremes: its purity lies in the Goldilocks zone (T-124 [T]), its Gap profile is nontrivial, its dynamics is neither purely unitary nor purely dissipative but balanced. The model systems are the coordinate axes by which we orient ourselves in this multidimensional space.
Each of the five models teaches us one thing:
- Model 1: the minimum below which one cannot fall
- Model 2: the maximum above which one cannot rise
- Model 3: phases are character, not energy
- Model 4: one broken channel can kill the system
- Model 5: even in isolation there is inner life
Together they form a laboratory of coherence cybernetics — a place where theory is verified on exact solutions before being applied to the imprecise but living world.
What We Learned
-
Uniform system (): absolute minimum of purity, zero Gap — but not transparency, rather the absence of material for transparency. Gap = 0 at and Gap = 0 at are fundamentally different zeros.
-
Pure uniform state (): maximum purity, zero Gap, zero entropy. Perfect order — but barren: no internal tension, no driver of evolution.
-
Fibonacci phases: the same and the same , but with a rich Gap profile. Purity and Gap are orthogonal — phases define "character", amplitudes define "energy". The cluster {A, S, O} with zero mutual Gap is an example of phase synchronisation.
-
Alexithymia: a purely phase pathology (). Amplitudes unaffected, unchanged — yet the system is ill. One broken channel out of 21 triggers a cascade: falls, decreases, drifts toward . Diagnosis is possible only through Gap analysis, not through .
-
Unitary dynamics: purity is conserved (), Gap oscillates. With rational frequencies — periodic orbits ("Groundhog Day"). With irrational frequencies — quasiperiodicity and the ergodic theorem: mean Gap for all pairs, regardless of initial conditions.
-
Universal constant — the "background level of opacity" for any active system with incommensurable frequencies.
The five model systems are the "coordinate axes" of state space. But what unites all Gap dynamics into a single principle? In the next chapter we will discover the Lagrangian of Gap theory — a six-term formula from which all equations of motion follow as inevitably as a planet's trajectory from the law of gravitation. We will see how spontaneous symmetry breaking generates opacity — the analogue of the Higgs mechanism for consciousness.
References
- Gap operator — definition and properties of
- Gap dynamics — bifurcations, non-Markovian dynamics
- Viability — and survival conditions
- Coherence matrix — the basic object
- Fano channel — proofs of coherence preservation
- Fano selection rules — geometry of the Fano plane
- CC definitions — , consciousness measures
- CC axiomatics —
- Learning bounds — T-109 through T-113
- Depth tower — SAD hierarchy and levels of consciousness
- Implementation — computational code for models
- Exercises — problems on model systems
- Measurement methodology — from model to experiment
Related documents: