The Ring Substrate

Every UOR computation operates over a ring — specifically the modular integer ring Z/(2^n)Z, where n is determined by the Witt level. This document explains the ring structure, its physical motivation, and how it grounds the entire ontology.

What Is a Ring?

A ring is an algebraic structure with two operations, addition and multiplication, satisfying familiar laws: addition is commutative and associative, multiplication is associative and distributes over addition, and there exist additive and multiplicative identities.

In UOR, the foundational ring is the byte ring Z/(2^8)Z — integers modulo 256. Every address in the universal address space, every content-addressed datum, and every identity proof ultimately reduces to arithmetic in this ring.

The ring is not merely metaphorical. The Ring class captures its algebraic structure formally: the bitsWidth property records the bit-width n, and the WittLevel individuals W8--W32 index the tower of sub-rings Z/(2^1)Z < Z/(2^2)Z < Z/(2^4)Z < Z/(2^8)Z.

Witt Levels W8--W32

The ring admits a natural four-level scaling (see Witt Levels for full detail):

Each level is a WittLevel individual with wittLength, bitsWidth (1, 2, 4, 8), and cycleSize (2, 4, 16, 256). The nextWittLevel property chains them: W8 -> W16 -> W24 -> W32.

Validity in UOR is scoped per Witt level via ValidityScopeKind: a theorem can be Universal (valid at all levels), ParametricLower (valid at level >= k), ParametricRange (valid between k_min and k_max), or LevelSpecific (valid only at exactly one level).

The bitsWidth Property

The bitsWidth data property records how many bits a Witt level occupies. This is not an annotation — it drives computation. The WittLevelBinding class links operations to their required Witt level, ensuring that proofs and computations are always validated at the correct ring scale.

Content Addressing via the Ring

The universal address space in UniversalAddress is grounded in byte-ring arithmetic. An address is a point in Z/(2^8)Z^d for some dimension d. Content-addressed objects are identified by their position in this space, making the ring the literal substrate of every UOR identity. See Content Addressing for more on the address space.

The critical identities in Critical Identity — the 624 named algebraic identities — are theorems over this ring: equations that hold in Z/(2^n)Z for the appropriate Witt level, certified by the proof individuals in the UOR Proofs namespace. See Proofs, Derivations & Traces for the certification pathway.

Connection to the PRISM Pipeline

The ring substrate flows through all three PRISM stages:

The ring is the ground on which the entire UOR ontology stands.