Non-Locality¶
Core Idea¶
Non-locality is the arrangement in which distant elements influence or correlate without a chain of intervening, contiguous contact — the relationship jumps across the substrate rather than propagating step-by-step through neighbors. It is the structural negation of locality, and its consequence is the loss of decomposability: a region can no longer be reasoned about in isolation.
How would you explain it like I'm…
Skip-The-Line Link
Connected Across The Gap
Influence Without A Path
Broad Use¶
- Physics: Newtonian action-at-a-distance, and quantum entanglement correlating separated particles in ways no local hidden-variable account reproduces.
- Network science: the long-range "shortcut" edges of a small-world graph that collapse path lengths.
- Climate science: teleconnections, as when El Niño couples Pacific temperature to weather thousands of kilometers away.
- Social systems: a rumor reaching across cliques through weak ties, or diaspora networks coupling distant communities.
- Computing: global mutable variables, pointer aliasing, and non-local control flow (GOTO, exceptions, longjmp) coupling distant code.
- Mathematics: non-local operators (fractional derivatives, integral operators) and global constraints binding distant degrees of freedom.
Clarity¶
It separates does this region interact only with its neighbors? from can a distant element reach in and change what happens here? — and disentangles connectedness (a path exists) from non-locality (a coupling crosses the gap without one being traversed).
Manages Complexity¶
It is at first a complexity-increaser that destroys decomposability, so the management move is to count and contain the non-local couplings — localizing the incidental ones and making the essential ones explicit and few.
Abstract Reasoning¶
In a mostly-local system the few couplings that violate adjacency carry disproportionate weight, so the move is to locate them first — and the same long-range edge that destroys decomposability is also what enables coordination at distance.
Knowledge Transfer¶
- Networks → epidemiology: the small-world insight that a few long-range edges govern global reachability transfers to a handful of travelers turning a local outbreak global.
- Software → any system: localizing coupling — replace the global, forbid the alias, structure the jump — transfers to hidden distant dependencies anywhere.
- Physics → general diagnostic: the Bell-inequality logic of asking whether a local account could reproduce a correlation transfers as a test of genuine non-locality.
Example¶
A global-variable bug shows the structure end-to-end: two functions that never call each other (non-adjacent in the program's call structure) couple through a single shared cell with no parameter thread carrying it, so a value changes "for no local reason" and the fix is to localize the coupling into an explicit passed path.
Relationships to Other Primes¶
Foundational — no parent edges in the catalog.
Children (2) — more specific cases that build on this
- Entanglement is a kind of Non-Locality — The file: quantum entanglement 'reinstated genuine non-locality' — entangled measurement correlations are non-local in the strict (Bell) sense. Entanglement (existing prime: 'Linked distant states', parents coupling;dependency) is the quantum INSTANCE of the general adjacency-violating coupling. non_locality is the more-general parent. Additive: entanglement keeps coupling;dependency.
- Teleconnection is a kind of Non-Locality — The file: teleconnections (El Nino coupling Pacific SST to distant weather) 'are non-locality in a geophysical substrate.' teleconnection (existing prime: 'Distant relationships via shared dynamics', parents coupling;dependency;network) is the climate INSTANCE. non_locality is the more-general parent. Additive.
Not to Be Confused With¶
- Non-locality is not locality of reference because locality of reference is the positive principle that accesses cluster near recent ones, whereas non-locality is its exact negation — the coupling that defeats the clustering.
- Non-locality is not connectedness because connectedness asserts a path exists, whereas non-locality asserts a coupling holds directly across the gap without that path being traversed.
- Non-locality is not contagion or propagation because those move through neighbors at every hop, whereas non-locality is the absence of that step-by-step requirement.