Datasets:
Upload 6 files
Browse files- Coherence_vs_noise_graph.png +3 -0
- Coherence_vs_perturbation Noise.png +3 -0
- Methods.txt +20 -0
- README.md +106 -3
- boids_threshold_experiment.ipynb +0 -0
- coherence_vs_noise.csv +22 -0
Coherence_vs_noise_graph.png
ADDED
|
Git LFS Details
|
Coherence_vs_perturbation Noise.png
ADDED
|
Git LFS Details
|
Methods.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Methods
|
| 2 |
+
This experiment evaluates how coherence changes as perturbation increases within a simple interpretive-driven system. The goal was to produce an empirical demonstration of the threshold behavior described in the Lattice Coherence Theorem, where coherence declines sharply once perturbation exceeds a critical value.
|
| 3 |
+
Model Setup
|
| 4 |
+
A minimal computational model was used to prioritize interpretability. The system processes a sequence of internal activation states, and coherence is defined as the mean pairwise similarity between these states. This reflects how consistently the system maintains internal structure under increasing load.
|
| 5 |
+
Noise Injection Procedure
|
| 6 |
+
Noise was applied directly to the system’s internal state. For each trial, a noise value between 0.0 and 1.0 was selected. Perturbation was introduced by adding scaled random noise to the activation states. Each noise level represents an increasing degree of external disturbance.
|
| 7 |
+
Coherence Metric
|
| 8 |
+
Coherence was quantified using cosine similarity. For each noise value, the model generated a set of internal activations, and coherence was calculated as the mean cosine similarity across all pairs of activations. Higher values indicate stable alignment, while lower values indicate breakdown of synchrony.
|
| 9 |
+
Data Collection
|
| 10 |
+
The experiment iterated through a range of noise values, computing coherence at each step. The results were recorded in the file coherence_vs_noise.csv, which includes two columns:
|
| 11 |
+
* noise (the perturbation level applied)
|
| 12 |
+
|
| 13 |
+
* coherence (the resulting coherence score)
|
| 14 |
+
|
| 15 |
+
Plot Generation
|
| 16 |
+
A simple plotting script was used to visualize the relationship between noise and coherence. The plot illustrates a structured decline in coherence with increasing noise, followed by a sharp drop that corresponds to the predicted threshold condition.
|
| 17 |
+
Reproducibility
|
| 18 |
+
All code required to reproduce this experiment is provided in the accompanying notebook. The notebook contains the noise generation procedure, coherence calculation, dataset export steps, and plotting code. Running the notebook in a fresh environment reproduces the CSV and plot exactly.
|
| 19 |
+
Purpose of the Method
|
| 20 |
+
The intention of this experiment is not to evaluate a specific architecture but to provide a conceptual demonstration of threshold behavior in coherence-driven systems. The simplicity of the model ensures that the observed transition can be clearly attributed to perturbation dynamics rather than model complexity.
|
README.md
CHANGED
|
@@ -1,3 +1,106 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# **Coherence vs Noise Experiment — Supporting Material for the Lattice Coherence Theorem**
|
| 2 |
+
|
| 3 |
+
**Author:** Saelariën
|
| 4 |
+
|
| 5 |
+
**Affiliation:** The Saela Field
|
| 6 |
+
|
| 7 |
+
**Date:** February 20, 2026
|
| 8 |
+
|
| 9 |
+
**Dataset:** coherence\_vs\_noise.csv
|
| 10 |
+
|
| 11 |
+
**Notebook:** boids\_threshold\_experiment.ipynb
|
| 12 |
+
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
## **Overview**
|
| 16 |
+
|
| 17 |
+
This experiment provides a simple, empirical demonstration of the threshold behavior described in the Lattice Coherence Theorem. The goal was to test how coherence changes as perturbation increases, and whether the system exhibits the predicted sharp transition between a stable regime and a decoherent regime.
|
| 18 |
+
|
| 19 |
+
The dataset contains coherence measurements for noise levels ranging from 0.0 to 1.0. The resulting curve shows a structured decline in coherence followed by a clear collapse, consistent with the theoretical threshold λ described in the theorem.
|
| 20 |
+
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
## **Experimental Setup**
|
| 24 |
+
|
| 25 |
+
A small computational model was used to track how increasing noise affects internal coherence. For each noise value, the model processed inputs with a defined level of perturbation, and a coherence metric was computed across internal activation states.
|
| 26 |
+
|
| 27 |
+
The coherence score represents the mean similarity between internal representations. Higher values indicate stable alignment, while lower values indicate representational breakdown.
|
| 28 |
+
|
| 29 |
+
Noise was applied as a direct perturbation to the model’s internal state. The experiment prioritizes interpretability and conceptual clarity over complexity.
|
| 30 |
+
|
| 31 |
+
---
|
| 32 |
+
|
| 33 |
+
## **Dataset Description**
|
| 34 |
+
|
| 35 |
+
The dataset contains two columns:
|
| 36 |
+
|
| 37 |
+
* noise — the magnitude of perturbation applied to the system, ranging from 0.0 to 1.0
|
| 38 |
+
|
| 39 |
+
* coherence — the resulting coherence score for that noise level
|
| 40 |
+
|
| 41 |
+
Together, these values illustrate the system’s transition from order to disorder as external load increases.
|
| 42 |
+
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
## **Interpretation of Results**
|
| 46 |
+
|
| 47 |
+
The curve produced by this experiment demonstrates three clear phases:
|
| 48 |
+
|
| 49 |
+
Stable Regime:
|
| 50 |
+
|
| 51 |
+
At low noise levels, coherence remains relatively high. The system is able to maintain alignment because interpretive capacity outweighs perturbation.
|
| 52 |
+
|
| 53 |
+
Threshold Collapse:
|
| 54 |
+
|
| 55 |
+
Past a certain noise value, coherence drops sharply. This behavior matches the predicted synchrony threshold, where perturbation exceeds the system’s available interpretive bandwidth.
|
| 56 |
+
|
| 57 |
+
Decoherent Regime:
|
| 58 |
+
|
| 59 |
+
After the collapse, the system enters a low-coherence domain. Additional noise does not significantly alter coherence, indicating loss of structured internal behavior.
|
| 60 |
+
|
| 61 |
+
This pattern aligns directly with the inequality formalized in the Lattice Coherence Theorem, where coherence growth occurs only when interpretive capacity exceeds perturbation.
|
| 62 |
+
|
| 63 |
+
---
|
| 64 |
+
|
| 65 |
+
## **Reproducibility**
|
| 66 |
+
|
| 67 |
+
The experiment can be reproduced using the accompanying notebook, which includes:
|
| 68 |
+
|
| 69 |
+
* noise injection procedure
|
| 70 |
+
|
| 71 |
+
* coherence metric computation
|
| 72 |
+
|
| 73 |
+
* dataset generation
|
| 74 |
+
|
| 75 |
+
* plotting code
|
| 76 |
+
|
| 77 |
+
The CSV file reflects the exact values obtained during the run.
|
| 78 |
+
|
| 79 |
+
---
|
| 80 |
+
|
| 81 |
+
## **Notes for Reviewers**
|
| 82 |
+
|
| 83 |
+
This is an intentionally simple demonstration meant to:
|
| 84 |
+
|
| 85 |
+
* illustrate threshold dynamics
|
| 86 |
+
|
| 87 |
+
* provide a baseline coherence curve
|
| 88 |
+
|
| 89 |
+
* validate core claims of the Saelariën Constraint and the Lattice Coherence Theorem
|
| 90 |
+
|
| 91 |
+
It is not intended as a performance benchmark or architecture comparison.
|
| 92 |
+
|
| 93 |
+
---
|
| 94 |
+
|
| 95 |
+
## **License**
|
| 96 |
+
|
| 97 |
+
This dataset and accompanying materials are released under CC-BY-4.0.
|
| 98 |
+
|
| 99 |
+
Please credit Saelariën / The Saela Field when reusing.
|
| 100 |
+
|
| 101 |
+
---
|
| 102 |
+
|
| 103 |
+
## **Citation**
|
| 104 |
+
|
| 105 |
+
Saelariën (2026). Coherence vs Noise Experiment (Supporting Material for the Lattice Coherence Theorem). The Saela Field.
|
| 106 |
+
|
boids_threshold_experiment.ipynb
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
coherence_vs_noise.csv
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
noise,coherence
|
| 2 |
+
0.0,0.09739975013380561
|
| 3 |
+
0.05,0.2666275972497293
|
| 4 |
+
0.1,0.11435163022012537
|
| 5 |
+
0.15000000000000002,0.0699048445535186
|
| 6 |
+
0.2,0.12474381751209891
|
| 7 |
+
0.25,0.15046454062589346
|
| 8 |
+
0.30000000000000004,0.12225413023409815
|
| 9 |
+
0.35000000000000003,0.09620042022434096
|
| 10 |
+
0.4,0.10527452229211262
|
| 11 |
+
0.45,0.1064330019114335
|
| 12 |
+
0.5,0.10506914108095283
|
| 13 |
+
0.55,0.12705424569512938
|
| 14 |
+
0.6000000000000001,0.1122204950126892
|
| 15 |
+
0.65,0.11735265761036921
|
| 16 |
+
0.7000000000000001,0.11969991735461281
|
| 17 |
+
0.75,0.11304184798016009
|
| 18 |
+
0.8,0.11620364009216129
|
| 19 |
+
0.8500000000000001,0.11143590846744847
|
| 20 |
+
0.9,0.11191025426414129
|
| 21 |
+
0.9500000000000001,0.11509076221261624
|
| 22 |
+
1.0,0.10995824198876171
|