Enumerative | VerificationDomain | Established by exhaustive traversal of R_n. Valid for all identities where the ring is finite. |
|
Algebraic | VerificationDomain | Established by equational reasoning from ring or group axioms. Covers derivations via associativity, commutativity, inverse laws, and group presentations. |
|
Geometric | VerificationDomain | Established by isometry, symmetry, or GeometricCharacter arguments. Covers dihedral actions, fixed-point analysis, automorphism groups, and affine embeddings. |
|
Analytical | VerificationDomain | Established via discrete differential calculus or metric analysis. Covers ring/Hamming derivatives (DC_), metric divergence (AM_), and adiabatic scheduling (AR_). |
|
Thermodynamic | VerificationDomain | Established via entropy, Landauer bounds, or Boltzmann distributions. Covers site entropy (TH_), reversible computation (RC_), and phase transitions. |
enumVariant: Thermodynamic
|
Topological | VerificationDomain | Established via simplicial homology, cohomology, or constraint nerve analysis. Covers homological algebra (HA_) and ψ-pipeline identities. |
|
Pipeline | VerificationDomain | Established by the inter-algebra map structure of the resolution pipeline. Covers φ-maps (phi_1–phi_6) and ψ-maps (psi_1–psi_6). |
|
IndexTheoretic | VerificationDomain | Established by the composition of Analytical and Topological reasoning. The only domain requiring multiple op:verificationDomain assertions. Covers the UOR Index Theorem (IT_7a–IT_7d). |
enumVariant: IndexTheoretic
|
SuperpositionDomain | VerificationDomain | Established by superposition analysis of site states. Covers identities involving superposed (non-classical) site assignments where sites carry complex amplitudes. |
enumVariant: SuperpositionDomain
|
QuantumThermodynamic | VerificationDomain | Established by the intersection of quantum superposition analysis and classical thermodynamic reasoning. Covers identities relating von Neumann entropy of superposed states to Landauer costs of projective collapse (QM_). |
enumVariant: QuantumThermodynamic
|
ArithmeticValuation | VerificationDomain | Established by number-theoretic valuation arguments including p-adic absolute values, the Ostrowski product formula, and the arithmetic of global fields. Covers identities grounded in the product formula |x|_p · |x|_∞ = 1 and the Witt–Ostrowski derivation chain. |
enumVariant: ArithmeticValuation
|
ComposedAlgebraic | VerificationDomain | Verification domain for composed operation identities — algebraic properties of operator compositions including dispatch, inference, accumulation, lease, and session composition operations. |
enumVariant: ComposedAlgebraic
|
Universal | ValidityScopeKind | Holds for all k in N. No minimum k constraint. |
|
ParametricLower | ValidityScopeKind | Holds for all k >= k_min, where k_min is given by validKMin. |
enumVariant: ParametricLower
|
ParametricRange | ValidityScopeKind | Holds for k_min <= k <= k_max. Both validKMin and validKMax required. |
enumVariant: ParametricRange
|
LevelSpecific | ValidityScopeKind | Holds only at exactly one level, given by a WittLevelBinding. |
enumVariant: LevelSpecific
|
RingReflection | GeometricCharacter | Reflection through the origin of the additive ring: neg(x) = -x mod 2^n. One of the two generators of D_{2^n}. |
HypercubeReflection | GeometricCharacter | Reflection through the centre of the hypercube: bnot(x) = (2^n-1) ⊕ x. The second generator of D_{2^n}. |
Rotation | GeometricCharacter | Rotation by one step: succ(x) = (x+1) mod 2^n. The composition of the two reflections. |
RotationInverse | GeometricCharacter | Rotation by one step in the reverse direction: pred(x) = (x-1) mod 2^n. |
Translation | GeometricCharacter | Translation along the ring axis: add(x,y), sub(x,y). Preserves Hamming distance locally. |
Scaling | GeometricCharacter | Scaling along the ring axis: mul(x,y) = (x×y) mod 2^n. |
HypercubeTranslation | GeometricCharacter | Translation along the hypercube axis: xor(x,y) = x ⊕ y. Preserves ring distance locally. |
HypercubeProjection | GeometricCharacter | Projection onto a hypercube face: and(x,y) = x ∧ y. Idempotent; collapses dimensions. |
HypercubeJoin | GeometricCharacter | Join on the hypercube lattice: or(x,y) = x ∨ y. Idempotent; dual to projection. |
ConstraintSelection | GeometricCharacter | Geometric character of dispatch: constraint-guided selection over the resolver registry lattice. |
ResolutionTraversal | GeometricCharacter | Geometric character of inference: traversal through the φ-pipeline resolution graph P ∘ Π ∘ G. |
SiteBinding | GeometricCharacter | Geometric character of accumulation: progressive pinning of site states in the context lattice. |
SitePartition | GeometricCharacter | Geometric character of lease partition: splitting a shared context into disjoint site-set leases. |
SessionMerge | GeometricCharacter | Geometric character of session composition: merging disjoint lease sessions into a unified resolution context. |
neg | Involution | Ring reflection: neg(x) = (-x) mod 2^n. One of the two generators of the dihedral group D_{2^n}. neg(neg(x)) = x (involution property). |
arity: 1hasGeometricCharacter: RingReflection
|
bnot | Involution | Hypercube reflection: bnot(x) = (2^n - 1) ⊕ x (bitwise complement). The second generator of D_{2^n}. bnot(bnot(x)) = x. |
arity: 1hasGeometricCharacter: HypercubeReflection
|
succ | UnaryOp | Successor: succ(x) = neg(bnot(x)) = (x + 1) mod 2^n. The critical identity: succ is the composition neg ∘ bnot. |
arity: 1hasGeometricCharacter: RotationcomposedOf: [neg, bnot]inverse: pred
|
pred | UnaryOp | Predecessor: pred(x) = bnot(neg(x)) = (x - 1) mod 2^n. The inverse of succ. pred is the composition bnot ∘ neg. |
arity: 1hasGeometricCharacter: RotationInversecomposedOf: [bnot, neg]inverse: succ
|
add | BinaryOp | Ring addition: add(x, y) = (x + y) mod 2^n. Commutative, associative; identity element is 0. |
arity: 2hasGeometricCharacter: Translationcommutative: trueassociative: trueidentity: 0inverse: sub
|
sub | BinaryOp | Ring subtraction: sub(x, y) = (x - y) mod 2^n. Not commutative, not associative. |
arity: 2hasGeometricCharacter: Translationcommutative: falseassociative: false
|
mul | BinaryOp | Ring multiplication: mul(x, y) = (x × y) mod 2^n. Commutative, associative; identity element is 1. |
arity: 2hasGeometricCharacter: Scalingcommutative: trueassociative: trueidentity: 1
|
xor | BinaryOp | Bitwise exclusive or: xor(x, y) = x ⊕ y. Commutative, associative; identity element is 0. |
arity: 2hasGeometricCharacter: HypercubeTranslationcommutative: trueassociative: trueidentity: 0
|
and | BinaryOp | Bitwise and: and(x, y) = x ∧ y. Commutative, associative. |
arity: 2hasGeometricCharacter: HypercubeProjectioncommutative: trueassociative: true
|
or | BinaryOp | Bitwise or: or(x, y) = x ∨ y. Commutative, associative. |
arity: 2hasGeometricCharacter: HypercubeJoincommutative: trueassociative: true
|
dispatch | DispatchOperation | δ(q, R) = R(q): dispatches a query to the matching resolver in the registry. Non-commutative, non-associative. |
arity: 2hasGeometricCharacter: ConstraintSelectioncommutative: falseassociative: falseoperatorSignature: Query × ResolverRegistry → Resolver
|
infer | InferenceOperation | ι(s, C) = P(Π(G(s, C))): the φ-pipeline composed into a single inference step. Non-commutative, non-associative. |
arity: 2hasGeometricCharacter: ResolutionTraversalcommutative: falseassociative: falseoperatorSignature: Symbol × Context → ResolvedType
|
accumulate | AccumulationOperation | α(b, C) = C': accumulates a binding into a resolution context, pinning a site. Non-commutative, associative at convergence (SR_10). |
arity: 2hasGeometricCharacter: SiteBindingcommutative: falseassociative: trueoperatorSignature: Binding × Context → Context
|
partition_op | LeasePartitionOperation | λ(S, k) = (L₁, …, Lₖ): partitions a shared context into k disjoint leases. Non-commutative, non-associative. |
arity: 2hasGeometricCharacter: SitePartitioncommutative: falseassociative: falseoperatorSignature: SharedContext × ℕ → ContextLease^k
|
compose_op | SessionCompositionOperation | κ(S₁, S₂) = S₁ ∪ S₂: composes two sessions with disjoint leases into one. Commutative, associative (SR_8). |
arity: 2hasGeometricCharacter: SessionMergecommutative: trueassociative: trueoperatorSignature: Session × Session → Session
|
Critical Identity | Identity | The foundational theorem of the UOR kernel: neg(bnot(x)) = succ(x) for all x in R_n. This identity links the two involutions (neg and bnot) to the successor operation, making succ derivable from neg and bnot. |
lhs: succrhs: [neg, bnot]forAll: term_criticalIdentity_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
AD_1 | Identity | Addressing bijection: addresses(glyph(d)) = d. Round-trip from datum through glyph and back is identity. |
lhs: term_AD_1_lhsrhs: term_AD_1_rhsforAll: term_AD_1_forAllverificationDomain: Analytical
|
AD_2 | Identity | Embedding coherence: glyph(ι(addresses(a))) = ι_addr(a). The addressing diagram commutes through embeddings. |
lhs: term_AD_2_lhsrhs: term_AD_2_rhsforAll: term_AD_2_forAllverificationDomain: Analytical
|
R_A1 | Identity | Additive associativity: add(x, add(y, z)) = add(add(x, y), z). |
lhs: term_R_A1_lhsrhs: term_R_A1_rhsforAll: term_R_A1_forAllverificationDomain: Algebraic
|
R_A2 | Identity | Additive identity: add(x, 0) = x. |
lhs: term_R_A2_lhsrhs: term_R_A2_rhsforAll: term_R_A2_forAllverificationDomain: Algebraic
|
R_A3 | Identity | Additive inverse: add(x, neg(x)) = 0. |
lhs: term_R_A3_lhsrhs: term_R_A3_rhsforAll: term_R_A3_forAllverificationDomain: Algebraic
|
R_A4 | Identity | Additive commutativity: add(x, y) = add(y, x). |
lhs: term_R_A4_lhsrhs: term_R_A4_rhsforAll: term_R_A4_forAllverificationDomain: Algebraic
|
R_A5 | Identity | Subtraction definition: sub(x, y) = add(x, neg(y)). |
lhs: term_R_A5_lhsrhs: term_R_A5_rhsforAll: term_R_A5_forAllverificationDomain: Algebraic
|
R_A6 | Identity | Negation involution: neg(neg(x)) = x. |
lhs: term_R_A6_lhsrhs: term_R_A6_rhsforAll: term_R_A6_forAllverificationDomain: Algebraic
|
R_M1 | Identity | Multiplicative associativity: mul(x, mul(y, z)) = mul(mul(x, y), z). |
lhs: term_R_M1_lhsrhs: term_R_M1_rhsforAll: term_R_M1_forAllverificationDomain: Algebraic
|
R_M2 | Identity | Multiplicative identity: mul(x, 1) = x. |
lhs: term_R_M2_lhsrhs: term_R_M2_rhsforAll: term_R_M2_forAllverificationDomain: Algebraic
|
R_M3 | Identity | Multiplicative commutativity: mul(x, y) = mul(y, x). |
lhs: term_R_M3_lhsrhs: term_R_M3_rhsforAll: term_R_M3_forAllverificationDomain: Algebraic
|
R_M4 | Identity | Distributivity: mul(x, add(y, z)) = add(mul(x, y), mul(x, z)). |
lhs: term_R_M4_lhsrhs: term_R_M4_rhsforAll: term_R_M4_forAllverificationDomain: Algebraic
|
R_M5 | Identity | Annihilation: mul(x, 0) = 0. |
lhs: term_R_M5_lhsrhs: term_R_M5_rhsforAll: term_R_M5_forAllverificationDomain: Algebraic
|
B_1 | Identity | XOR associativity: xor(x, xor(y, z)) = xor(xor(x, y), z). |
lhs: term_B_1_lhsrhs: term_B_1_rhsforAll: term_B_1_forAllverificationDomain: Algebraic
|
B_2 | Identity | XOR identity: xor(x, 0) = x. |
lhs: term_B_2_lhsrhs: term_B_2_rhsforAll: term_B_2_forAllverificationDomain: Algebraic
|
B_3 | Identity | XOR self-inverse: xor(x, x) = 0. |
lhs: term_B_3_lhsrhs: term_B_3_rhsforAll: term_B_3_forAllverificationDomain: Algebraic
|
B_4 | Identity | AND associativity: and(x, and(y, z)) = and(and(x, y), z). |
lhs: term_B_4_lhsrhs: term_B_4_rhsforAll: term_B_4_forAllverificationDomain: Algebraic
|
B_5 | Identity | AND identity: and(x, 2^n - 1) = x. |
lhs: term_B_5_lhsrhs: term_B_5_rhsforAll: term_B_5_forAllverificationDomain: Algebraic
|
B_6 | Identity | AND annihilation: and(x, 0) = 0. |
lhs: term_B_6_lhsrhs: term_B_6_rhsforAll: term_B_6_forAllverificationDomain: Algebraic
|
B_7 | Identity | OR associativity: or(x, or(y, z)) = or(or(x, y), z). |
lhs: term_B_7_lhsrhs: term_B_7_rhsforAll: term_B_7_forAllverificationDomain: Algebraic
|
B_8 | Identity | OR identity: or(x, 0) = x. |
lhs: term_B_8_lhsrhs: term_B_8_rhsforAll: term_B_8_forAllverificationDomain: Algebraic
|
B_9 | Identity | Absorption: and(x, or(x, y)) = x. |
lhs: term_B_9_lhsrhs: term_B_9_rhsforAll: term_B_9_forAllverificationDomain: Algebraic
|
B_10 | Identity | AND distributes over OR: and(x, or(y, z)) = or(and(x, y), and(x, z)). |
lhs: term_B_10_lhsrhs: term_B_10_rhsforAll: term_B_10_forAllverificationDomain: Algebraic
|
B_11 | Identity | De Morgan 1: bnot(and(x, y)) = or(bnot(x), bnot(y)). |
lhs: term_B_11_lhsrhs: term_B_11_rhsforAll: term_B_11_forAllverificationDomain: Algebraic
|
B_12 | Identity | De Morgan 2: bnot(or(x, y)) = and(bnot(x), bnot(y)). |
lhs: term_B_12_lhsrhs: term_B_12_rhsforAll: term_B_12_forAllverificationDomain: Algebraic
|
B_13 | Identity | Bnot involution: bnot(bnot(x)) = x. |
lhs: term_B_13_lhsrhs: term_B_13_rhsforAll: term_B_13_forAllverificationDomain: Algebraic
|
X_1 | Identity | Neg via subtraction: neg(x) = sub(0, x). |
lhs: term_X_1_lhsrhs: term_X_1_rhsforAll: term_X_1_forAllverificationDomain: Algebraic
|
X_2 | Identity | Complement via XOR: bnot(x) = xor(x, 2^n - 1). |
lhs: term_X_2_lhsrhs: term_X_2_rhsforAll: term_X_2_forAllverificationDomain: Algebraic
|
X_3 | Identity | Succ via addition: succ(x) = add(x, 1). |
lhs: term_X_3_lhsrhs: term_X_3_rhsforAll: term_X_3_forAllverificationDomain: Algebraic
|
X_4 | Identity | Pred via subtraction: pred(x) = sub(x, 1). |
lhs: term_X_4_lhsrhs: term_X_4_rhsforAll: term_X_4_forAllverificationDomain: Algebraic
|
X_5 | Identity | Neg-bnot bridge: neg(x) = add(bnot(x), 1). |
lhs: term_X_5_lhsrhs: term_X_5_rhsforAll: term_X_5_forAllverificationDomain: Algebraic
|
X_6 | Identity | Complement predecessor: bnot(x) = pred(neg(x)). |
lhs: term_X_6_lhsrhs: term_X_6_rhsforAll: term_X_6_forAllverificationDomain: Algebraic
|
X_7 | Identity | XOR-add bridge: xor(x, y) = add(x, y) - 2 * and(x, y) (in Z before mod). |
lhs: term_X_7_lhsrhs: term_X_7_rhsforAll: term_X_7_forAllverificationDomain: Algebraic
|
D_1 | Identity | Rotation order: succ^[2^n](x) = x. |
lhs: term_D_1_lhsrhs: term_D_1_rhsforAll: term_D_1_forAllverificationDomain: Algebraic
|
D_3 | Identity | Conjugation: neg(succ(neg(x))) = pred(x). |
lhs: term_D_3_lhsrhs: term_D_3_rhsforAll: term_D_3_forAllverificationDomain: Algebraic
|
D_4 | Identity | Reverse composition: bnot(neg(x)) = pred(x). |
lhs: term_D_4_lhsrhs: term_D_4_rhsforAll: term_D_4_forAllverificationDomain: Algebraic
|
D_5 | Identity | Group closure: D_[2^n] = [succ^k, neg ∘ succ^k : 0 ≤ k < 2^n]. |
lhs: term_D_5_lhsrhs: term_D_5_rhsforAll: term_D_5_forAllverificationDomain: Algebraic
|
U_1 | Identity | Unit group decomposition: R_n× ≅ Z/2 × Z/2^[n-2] for n ≥ 3. |
lhs: term_U_1_lhsrhs: term_U_1_rhsforAll: term_U_1_forAllverificationDomain: Algebraic
|
U_2 | Identity | Unit group special cases: R_1× ≅ [1]; R_2× ≅ Z/2. |
lhs: term_U_2_lhsrhs: term_U_2_rhsforAll: term_U_2_forAllverificationDomain: Algebraic
|
U_3 | Identity | Multiplicative order: ord(u) = lcm(ord((-1)^a), ord(3^b)). |
lhs: term_U_3_lhsrhs: term_U_3_rhsforAll: term_U_3_forAllverificationDomain: Algebraic
|
U_4 | Identity | Resonance period: ord_g(2) divides φ(g). |
lhs: term_U_4_lhsrhs: term_U_4_rhsforAll: term_U_4_forAllverificationDomain: Algebraic
|
U_5 | Identity | Step formula derivation: step_g = 2 * ((g - (2^n mod g)) mod g) + 1. |
lhs: term_U_5_lhsrhs: term_U_5_rhsforAll: term_U_5_forAllverificationDomain: Algebraic
|
AG_1 | Identity | Scaling not dihedral: μ_u ∉ D_[2^n] for u ≠ ±1. |
lhs: term_AG_1_lhsrhs: term_AG_1_rhsforAll: term_AG_1_forAllverificationDomain: Algebraic
|
AG_2 | Identity | Affine group: Aff(R_n) = R_n× ⋉ R_n. |
lhs: term_AG_2_lhsrhs: term_AG_2_rhsforAll: term_AG_2_forAllverificationDomain: Algebraic
|
AG_3 | Identity | Affine group order: |Aff(R_n)| = 2^[2n-1]. |
lhs: term_AG_3_lhsrhs: term_AG_3_rhsforAll: term_AG_3_forAllverificationDomain: Algebraic
|
AG_4 | Identity | Subgroup inclusion: D_[2^n] ⊂ Aff(R_n) with u ∈ [±1]. |
lhs: term_AG_4_lhsrhs: term_AG_4_rhsforAll: term_AG_4_forAllverificationDomain: Algebraic
|
CA_1 | Identity | Addition decomposition: add(x,y)_k = xor(x_k, xor(y_k, c_k(x,y))). |
lhs: term_CA_1_lhsrhs: term_CA_1_rhsforAll: term_CA_1_forAllverificationDomain: Algebraic
|
CA_2 | Identity | Carry recurrence: c_[k+1](x,y) = or(and(x_k,y_k), and(xor(x_k,y_k), c_k)). |
lhs: term_CA_2_lhsrhs: term_CA_2_rhsforAll: term_CA_2_forAllverificationDomain: Algebraic
|
CA_3 | Identity | Carry commutativity: c(x, y) = c(y, x). |
lhs: term_CA_3_lhsrhs: term_CA_3_rhsforAll: term_CA_3_forAllverificationDomain: Algebraic
|
CA_4 | Identity | Zero carry: c(x, 0) = 0 at all positions. |
lhs: term_CA_4_lhsrhs: term_CA_4_rhsforAll: term_CA_4_forAllverificationDomain: Algebraic
|
CA_5 | Identity | Negation carry: c(x, neg(x))_k = 1 for k > v_2(x). |
lhs: term_CA_5_lhsrhs: term_CA_5_rhsforAll: term_CA_5_forAllverificationDomain: Algebraic
|
CA_6 | Identity | Carry-incompatibility link: d_Δ(x, y) > 0 iff ∃ k : c_k(x,y) = 1. |
lhs: term_CA_6_lhsrhs: term_CA_6_rhsforAll: term_CA_6_forAllverificationDomain: Algebraic
|
C_1 | Identity | Constraint pin union: pins of a composite constraint equal the union of component pins. |
lhs: term_C_1_lhsrhs: term_C_1_rhsforAll: term_C_1_forAllverificationDomain: Algebraic
|
C_2 | Identity | Constraint composition commutativity. |
lhs: term_C_2_lhsrhs: term_C_2_rhsforAll: term_C_2_forAllverificationDomain: Algebraic
|
C_3 | Identity | Constraint composition associativity. |
lhs: term_C_3_lhsrhs: term_C_3_rhsforAll: term_C_3_forAllverificationDomain: Algebraic
|
C_4 | Identity | Constraint composition idempotence. |
lhs: term_C_4_lhsrhs: term_C_4_rhsforAll: term_C_4_forAllverificationDomain: Algebraic
|
C_5 | Identity | Constraint composition identity element. |
lhs: term_C_5_lhsrhs: term_C_5_rhsforAll: term_C_5_forAllverificationDomain: Algebraic
|
C_6 | Identity | Constraint composition annihilator. |
lhs: term_C_6_lhsrhs: term_C_6_rhsforAll: term_C_6_forAllverificationDomain: Algebraic
|
CDI | Identity | Constraint-depth invariant: carry complexity of the residue representation equals the type depth. |
lhs: term_CDI_lhsrhs: term_CDI_rhsforAll: term_CDI_forAllverificationDomain: Algebraic
|
CL_1 | Identity | Constraint quotient lattice isomorphism to power set. |
lhs: term_CL_1_lhsrhs: term_CL_1_rhsforAll: term_CL_1_forAllverificationDomain: Algebraic
|
CL_2 | Identity | Lattice join equals constraint composition. |
lhs: term_CL_2_lhsrhs: term_CL_2_rhsforAll: term_CL_2_forAllverificationDomain: Algebraic
|
CL_3 | Identity | Lattice meet pins the intersection of component pins. |
lhs: term_CL_3_lhsrhs: term_CL_3_rhsforAll: term_CL_3_forAllverificationDomain: Algebraic
|
CL_4 | Identity | Constraint lattice distributivity. |
lhs: term_CL_4_lhsrhs: term_CL_4_rhsforAll: term_CL_4_forAllverificationDomain: Algebraic
|
CL_5 | Identity | Constraint lattice complement existence. |
lhs: term_CL_5_lhsrhs: term_CL_5_rhsforAll: term_CL_5_forAllverificationDomain: Algebraic
|
CM_1 | Identity | Constraint redundancy criterion. |
lhs: term_CM_1_lhsrhs: term_CM_1_rhsforAll: term_CM_1_forAllverificationDomain: Algebraic
|
CM_2 | Identity | Minimal cover via greedy irredundant removal. |
lhs: term_CM_2_lhsrhs: term_CM_2_rhsforAll: term_CM_2_forAllverificationDomain: Algebraic
|
CM_3 | Identity | Minimum constraint count to cover n sites. |
lhs: term_CM_3_lhsrhs: term_CM_3_rhsforAll: term_CM_3_forAllverificationDomain: Algebraic
|
CR_1 | Identity | Residue constraint cost is the step formula. |
lhs: term_CR_1_lhsrhs: term_CR_1_rhsforAll: term_CR_1_forAllverificationDomain: Algebraic
|
CR_2 | Identity | Carry constraint cost is the popcount of the pattern. |
lhs: term_CR_2_lhsrhs: term_CR_2_rhsforAll: term_CR_2_forAllverificationDomain: Algebraic
|
CR_3 | Identity | Depth constraint cost is sum of residue and carry costs. |
lhs: term_CR_3_lhsrhs: term_CR_3_rhsforAll: term_CR_3_forAllverificationDomain: Algebraic
|
CR_4 | Identity | Composite constraint cost is subadditive. |
lhs: term_CR_4_lhsrhs: term_CR_4_rhsforAll: term_CR_4_forAllverificationDomain: Algebraic
|
CR_5 | Identity | Optimal resolution order is increasing cost. |
lhs: term_CR_5_lhsrhs: term_CR_5_rhsforAll: term_CR_5_forAllverificationDomain: Algebraic
|
F_1 | Identity | Site monotonicity: a pinned site cannot be unpinned. |
lhs: term_F_1_lhsrhs: term_F_1_rhsforAll: term_F_1_forAllverificationDomain: Algebraic
|
F_2 | Identity | Site budget upper bound: at most n pin operations to close. |
lhs: term_F_2_lhsrhs: term_F_2_rhsforAll: term_F_2_forAllverificationDomain: Algebraic
|
F_3 | Identity | Site budget conservation: pinned + free = total sites. |
lhs: term_F_3_lhsrhs: term_F_3_rhsforAll: term_F_3_forAllverificationDomain: Algebraic
|
F_4 | Identity | Site budget closure: closed iff all sites pinned. |
lhs: term_F_4_lhsrhs: term_F_4_rhsforAll: term_F_4_forAllverificationDomain: Algebraic
|
FL_1 | Identity | Site lattice bottom: all sites free. |
lhs: term_FL_1_lhsrhs: term_FL_1_rhsforAll: term_FL_1_forAllverificationDomain: Algebraic
|
FL_2 | Identity | Site lattice top: all sites pinned. |
lhs: term_FL_2_lhsrhs: term_FL_2_rhsforAll: term_FL_2_forAllverificationDomain: Algebraic
|
FL_3 | Identity | Site lattice join is union of pinnings. |
lhs: term_FL_3_lhsrhs: term_FL_3_rhsforAll: term_FL_3_forAllverificationDomain: Algebraic
|
FL_4 | Identity | Site lattice height equals n. |
lhs: term_FL_4_lhsrhs: term_FL_4_rhsforAll: term_FL_4_forAllverificationDomain: Algebraic
|
FPM_1 | Identity | Unit partition membership: x is a unit iff site_0(x) = 1 (x is odd). |
lhs: term_FPM_1_lhsrhs: term_FPM_1_rhsforAll: term_FPM_1_forAllverificationDomain: Algebraic
|
FPM_2 | Identity | Exterior partition membership: x is exterior iff x is not in the carrier of T. |
lhs: term_FPM_2_lhsrhs: term_FPM_2_rhsforAll: term_FPM_2_forAllverificationDomain: Algebraic
|
FPM_3 | Identity | Irreducible partition membership: x is irreducible iff x is not a unit, exterior, or reducible. |
lhs: term_FPM_3_lhsrhs: term_FPM_3_rhsforAll: term_FPM_3_forAllverificationDomain: Algebraic
|
FPM_4 | Identity | Reducible partition membership: x is reducible iff x is not a unit, exterior, or irreducible. |
lhs: term_FPM_4_lhsrhs: term_FPM_4_rhsforAll: term_FPM_4_forAllverificationDomain: Algebraic
|
FPM_5 | Identity | 2-adic decomposition: every element factors as 2^{v(x)} times an odd unit. |
lhs: term_FPM_5_lhsrhs: term_FPM_5_rhsforAll: term_FPM_5_forAllverificationDomain: Algebraic
|
FPM_6 | Identity | Stratum size formula. |
lhs: term_FPM_6_lhsrhs: term_FPM_6_rhsforAll: term_FPM_6_forAllverificationDomain: Algebraic
|
FPM_7 | Identity | Base type partition cardinalities. |
lhs: term_FPM_7_lhsrhs: term_FPM_7_rhsforAll: term_FPM_7_forAllverificationDomain: Algebraic
|
FS_1 | Identity | Site extraction: site_k(x) is the k-th bit of x. |
lhs: term_FS_1_lhsrhs: term_FS_1_rhsforAll: term_FS_1_forAllverificationDomain: Algebraic
|
FS_2 | Identity | Site 0 is parity. |
lhs: term_FS_2_lhsrhs: term_FS_2_rhsforAll: term_FS_2_forAllverificationDomain: Algebraic
|
FS_3 | Identity | Progressive site determination: site_k given lower sites determines x mod 2^{k+1}. |
lhs: term_FS_3_lhsrhs: term_FS_3_rhsforAll: term_FS_3_forAllverificationDomain: Algebraic
|
FS_4 | Identity | Cumulative site determination: sites 0..k together determine x mod 2^{k+1}. |
lhs: term_FS_4_lhsrhs: term_FS_4_rhsforAll: term_FS_4_forAllverificationDomain: Algebraic
|
FS_5 | Identity | Complete site determination: all n sites determine x uniquely. |
lhs: term_FS_5_lhsrhs: term_FS_5_rhsforAll: term_FS_5_forAllverificationDomain: Algebraic
|
FS_6 | Identity | Stratum from sites: v_2(x) is the minimum k where site_k(x) = 1. |
lhs: term_FS_6_lhsrhs: term_FS_6_rhsforAll: term_FS_6_forAllverificationDomain: Algebraic
|
FS_7 | Identity | Depth bound: depth(x) ≤ v_2(x) for irreducible elements. |
lhs: term_FS_7_lhsrhs: term_FS_7_rhsforAll: term_FS_7_forAllverificationDomain: Algebraic
|
RE_1 | Identity | Resolution strategy equivalence: dihedral, canonical-form, and evaluation resolvers all compute the same partition. |
lhs: term_RE_1_lhsrhs: term_RE_1_rhsforAll: term_RE_1_forAllverificationDomain: Pipeline
|
IR_1 | Identity | Resolution monotonicity: pinned count never decreases. |
lhs: term_IR_1_lhsrhs: term_IR_1_rhsforAll: term_IR_1_forAllverificationDomain: Pipeline
|
IR_2 | Identity | Resolution convergence bound: at most n iterations. |
lhs: term_IR_2_lhsrhs: term_IR_2_rhsforAll: term_IR_2_forAllverificationDomain: Pipeline
|
IR_3 | Identity | Convergence rate definition. |
lhs: term_IR_3_lhsrhs: term_IR_3_rhsforAll: term_IR_3_forAllverificationDomain: Pipeline
|
IR_4 | Identity | Resolution termination: loop terminates if constraint set spans all sites. |
lhs: term_IR_4_lhsrhs: term_IR_4_rhsforAll: term_IR_4_forAllverificationDomain: Pipeline
|
SF_1 | Identity | Optimal resolution level for a factor: n ≡ 0 (mod ord_g(2)). |
lhs: term_SF_1_lhsrhs: term_SF_1_rhsforAll: term_SF_1_forAllverificationDomain: Pipeline
|
SF_2 | Identity | Constraint ordering by step cost: smaller step_g first. |
lhs: term_SF_2_lhsrhs: term_SF_2_rhsforAll: term_SF_2_forAllverificationDomain: Pipeline
|
RD_1 | Identity | Resolution determinism: same type and constraint sequence yield unique partition. |
lhs: term_RD_1_lhsrhs: term_RD_1_rhsforAll: term_RD_1_forAllverificationDomain: Pipeline
|
RD_2 | Identity | Order independence: complete constraint sets yield the same partition regardless of order. |
lhs: term_RD_2_lhsrhs: term_RD_2_rhsforAll: term_RD_2_forAllverificationDomain: Pipeline
|
SE_1 | Identity | Evaluation resolver directly computes the set-theoretic partition. |
lhs: term_SE_1_lhsrhs: term_SE_1_rhsforAll: term_SE_1_forAllverificationDomain: Pipeline
|
SE_2 | Identity | Dihedral factorization resolver yields the same partition via orbit decomposition. |
lhs: term_SE_2_lhsrhs: term_SE_2_rhsforAll: term_SE_2_forAllverificationDomain: Pipeline
|
SE_3 | Identity | Canonical form resolver yields the same partition via confluent rewrite. |
lhs: term_SE_3_lhsrhs: term_SE_3_rhsforAll: term_SE_3_forAllverificationDomain: Pipeline
|
SE_4 | Identity | All three strategies compute the same set-theoretic partition. |
lhs: term_SE_4_lhsrhs: term_SE_4_rhsforAll: term_SE_4_forAllverificationDomain: Pipeline
|
OO_1 | Identity | Benefit of a constraint is the number of new pins it provides. |
lhs: term_OO_1_lhsrhs: term_OO_1_rhsforAll: term_OO_1_forAllverificationDomain: Pipeline
|
OO_2 | Identity | Constraint cost is step or popcount depending on type. |
lhs: term_OO_2_lhsrhs: term_OO_2_rhsforAll: term_OO_2_forAllverificationDomain: Pipeline
|
OO_3 | Identity | Greedy selection maximizes benefit-to-cost ratio. |
lhs: term_OO_3_lhsrhs: term_OO_3_rhsforAll: term_OO_3_forAllverificationDomain: Pipeline
|
OO_4 | Identity | Greedy approximation achieves (1 − 1/e) ≈ 63% of optimal. |
lhs: term_OO_4_lhsrhs: term_OO_4_rhsforAll: term_OO_4_forAllverificationDomain: Pipeline
|
OO_5 | Identity | Tiebreaker: prefer vertical (residue) before horizontal (carry). |
lhs: term_OO_5_lhsrhs: term_OO_5_rhsforAll: term_OO_5_forAllverificationDomain: Pipeline
|
CB_1 | Identity | Minimum convergence rate: 1 site per iteration (worst case). |
lhs: term_CB_1_lhsrhs: term_CB_1_rhsforAll: term_CB_1_forAllverificationDomain: Pipeline
|
CB_2 | Identity | Maximum convergence rate: n sites in 1 iteration (best case). |
lhs: term_CB_2_lhsrhs: term_CB_2_rhsforAll: term_CB_2_forAllverificationDomain: Pipeline
|
CB_3 | Identity | Expected residue constraint rate: ⌊log_2(m)⌋ sites per constraint. |
lhs: term_CB_3_lhsrhs: term_CB_3_rhsforAll: term_CB_3_forAllverificationDomain: Pipeline
|
CB_4 | Identity | Stall detection: convergenceRate < 1 for 2 iterations suggests insufficiency. |
lhs: term_CB_4_lhsrhs: term_CB_4_rhsforAll: term_CB_4_forAllverificationDomain: Pipeline
|
CB_5 | Identity | Sufficiency criterion: pin union covers all site positions. |
lhs: term_CB_5_lhsrhs: term_CB_5_rhsforAll: term_CB_5_forAllverificationDomain: Pipeline
|
CB_6 | Identity | Iteration bound for k constraints: at most min(k, n) iterations. |
lhs: term_CB_6_lhsrhs: term_CB_6_rhsforAll: term_CB_6_forAllverificationDomain: Pipeline
|
OB_M1 | Identity | Ring metric triangle inequality. |
lhs: term_OB_M1_lhsrhs: term_OB_M1_rhsforAll: term_OB_M1_forAllverificationDomain: Analytical
|
OB_M2 | Identity | Hamming metric triangle inequality. |
lhs: term_OB_M2_lhsrhs: term_OB_M2_rhsforAll: term_OB_M2_forAllverificationDomain: Analytical
|
OB_M3 | Identity | Incompatibility metric is the absolute difference of ring and Hamming metrics. |
lhs: term_OB_M3_lhsrhs: term_OB_M3_rhsforAll: term_OB_M3_forAllverificationDomain: Analytical
|
OB_M4 | Identity | Negation preserves ring metric. |
lhs: term_OB_M4_lhsrhs: term_OB_M4_rhsforAll: term_OB_M4_forAllverificationDomain: Analytical
|
OB_M5 | Identity | Bitwise complement preserves Hamming metric. |
lhs: term_OB_M5_lhsrhs: term_OB_M5_rhsforAll: term_OB_M5_forAllverificationDomain: Analytical
|
OB_M6 | Identity | Successor preserves ring metric but may change Hamming metric. |
lhs: term_OB_M6_lhsrhs: term_OB_M6_rhsforAll: term_OB_M6_forAllverificationDomain: Analytical
|
OB_C1 | Identity | Negation-complement commutator is constant 2. |
lhs: term_OB_C1_lhsrhs: term_OB_C1_rhsforAll: term_OB_C1_forAllverificationDomain: Analytical
|
OB_C2 | Identity | Negation-translation commutator. |
lhs: term_OB_C2_lhsrhs: term_OB_C2_rhsforAll: term_OB_C2_forAllverificationDomain: Analytical
|
OB_C3 | Identity | Complement-XOR commutator is trivial. |
lhs: term_OB_C3_lhsrhs: term_OB_C3_rhsforAll: term_OB_C3_forAllverificationDomain: Analytical
|
OB_H1 | Identity | Additive paths have trivial monodromy (abelian ⇒ path-independent). |
lhs: term_OB_H1_lhsrhs: term_OB_H1_rhsforAll: term_OB_H1_forAllverificationDomain: Analytical
|
OB_H2 | Identity | Dihedral generator paths have monodromy in D_{2^n}. |
lhs: term_OB_H2_lhsrhs: term_OB_H2_rhsforAll: term_OB_H2_forAllverificationDomain: Analytical
|
OB_H3 | Identity | Successor-only closed path winding number. |
lhs: term_OB_H3_lhsrhs: term_OB_H3_rhsforAll: term_OB_H3_forAllverificationDomain: Analytical
|
OB_P1 | Identity | Path length is additive under concatenation. |
lhs: term_OB_P1_lhsrhs: term_OB_P1_rhsforAll: term_OB_P1_forAllverificationDomain: Analytical
|
OB_P2 | Identity | Total variation is subadditive under concatenation. |
lhs: term_OB_P2_lhsrhs: term_OB_P2_rhsforAll: term_OB_P2_forAllverificationDomain: Analytical
|
OB_P3 | Identity | Reduction length is additive under sequential composition. |
lhs: term_OB_P3_lhsrhs: term_OB_P3_rhsforAll: term_OB_P3_forAllverificationDomain: Analytical
|
CT_1 | Identity | Catastrophe boundaries are powers of 2. |
lhs: term_CT_1_lhsrhs: term_CT_1_rhsforAll: term_CT_1_forAllverificationDomain: Analytical
|
CT_2 | Identity | Odd prime catastrophe transitions visibility via residue constraints. |
lhs: term_CT_2_lhsrhs: term_CT_2_rhsforAll: term_CT_2_forAllverificationDomain: Analytical
|
CT_3 | Identity | Catastrophe threshold is normalized step cost. |
lhs: term_CT_3_lhsrhs: term_CT_3_rhsforAll: term_CT_3_forAllverificationDomain: Analytical
|
CT_4 | Identity | Composite catastrophe threshold is max of component thresholds. |
lhs: term_CT_4_lhsrhs: term_CT_4_rhsforAll: term_CT_4_forAllverificationDomain: Analytical
|
CF_1 | Identity | Curvature flux is the sum of incompatibility along a path. |
lhs: term_CF_1_lhsrhs: term_CF_1_rhsforAll: term_CF_1_forAllverificationDomain: Analytical
|
CF_2 | Identity | Resolution cost is bounded below by curvature flux of optimal path. |
lhs: term_CF_2_lhsrhs: term_CF_2_rhsforAll: term_CF_2_forAllverificationDomain: Analytical
|
CF_3 | Identity | Successor curvature flux: trailing_ones(x) for most x, n−1 at maximum. |
lhs: term_CF_3_lhsrhs: term_CF_3_rhsforAll: term_CF_3_forAllverificationDomain: Analytical
|
CF_4 | Identity | Total successor curvature flux over R_n equals 2^n − 2. |
lhs: term_CF_4_lhsrhs: term_CF_4_rhsforAll: term_CF_4_forAllverificationDomain: Analytical
|
HG_1 | Identity | Additive holonomy is trivial (abelian group). |
lhs: term_HG_1_lhsrhs: term_HG_1_rhsforAll: term_HG_1_forAllverificationDomain: Analytical
|
HG_2 | Identity | Dihedral generator holonomy group is D_{2^n}. |
lhs: term_HG_2_lhsrhs: term_HG_2_rhsforAll: term_HG_2_forAllverificationDomain: Analytical
|
HG_3 | Identity | Unit multiplication holonomy equals the unit group. |
lhs: term_HG_3_lhsrhs: term_HG_3_rhsforAll: term_HG_3_forAllverificationDomain: Analytical
|
HG_4 | Identity | Full holonomy group is the affine group. |
lhs: term_HG_4_lhsrhs: term_HG_4_rhsforAll: term_HG_4_forAllverificationDomain: Analytical
|
HG_5 | Identity | Holonomy group decomposition into dihedral and non-trivial units. |
lhs: term_HG_5_lhsrhs: term_HG_5_rhsforAll: term_HG_5_forAllverificationDomain: Analytical
|
T_C1 | Identity | Category left identity: compose(id, f) = f. |
lhs: term_T_C1_lhsrhs: term_T_C1_rhsforAll: term_T_C1_forAllverificationDomain: Geometric
|
T_C2 | Identity | Category right identity: compose(f, id) = f. |
lhs: term_T_C2_lhsrhs: term_T_C2_rhsforAll: term_T_C2_forAllverificationDomain: Geometric
|
T_C3 | Identity | Category associativity of transform composition. |
lhs: term_T_C3_lhsrhs: term_T_C3_rhsforAll: term_T_C3_forAllverificationDomain: Geometric
|
T_C4 | Identity | Composability condition: f composesWith g iff target(f) = source(g). |
lhs: term_T_C4_lhsrhs: term_T_C4_rhsforAll: term_T_C4_forAllverificationDomain: Geometric
|
T_I1 | Identity | Negation is a ring-metric isometry. |
lhs: term_T_I1_lhsrhs: term_T_I1_rhsforAll: term_T_I1_forAllverificationDomain: Geometric
|
T_I2 | Identity | Bitwise complement is a Hamming-metric isometry. |
lhs: term_T_I2_lhsrhs: term_T_I2_rhsforAll: term_T_I2_forAllverificationDomain: Geometric
|
T_I3 | Identity | Successor as composed isometries: succ = neg ∘ bnot preserves d_R but not d_H. |
lhs: term_T_I3_lhsrhs: term_T_I3_rhsforAll: term_T_I3_forAllverificationDomain: Geometric
|
T_I4 | Identity | Ring isometries form a group under composition. |
lhs: term_T_I4_lhsrhs: term_T_I4_rhsforAll: term_T_I4_forAllverificationDomain: Geometric
|
T_I5 | Identity | CurvatureObservable measures failure of ring isometry to be Hamming isometry. |
lhs: term_T_I5_lhsrhs: term_T_I5_rhsforAll: term_T_I5_forAllverificationDomain: Geometric
|
T_E1 | Identity | Embedding injectivity. |
lhs: term_T_E1_lhsrhs: term_T_E1_rhsforAll: term_T_E1_forAllverificationDomain: Geometric
|
T_E2 | Identity | Embedding is a ring homomorphism. |
lhs: term_T_E2_lhsrhs: term_T_E2_rhsforAll: term_T_E2_forAllverificationDomain: Geometric
|
T_E3 | Identity | Embedding transitivity: composition of embeddings is an embedding. |
lhs: term_T_E3_lhsrhs: term_T_E3_rhsforAll: term_T_E3_forAllverificationDomain: Geometric
|
T_E4 | Identity | Embedding address coherence: glyph ∘ ι ∘ addresses is well-defined. |
lhs: term_T_E4_lhsrhs: term_T_E4_rhsforAll: term_T_E4_forAllverificationDomain: Geometric
|
T_A1 | Identity | Dihedral group acts on constraints by transforming them. |
lhs: term_T_A1_lhsrhs: term_T_A1_rhsforAll: term_T_A1_forAllverificationDomain: Geometric
|
T_A2 | Identity | Dihedral group action on partitions permutes components. |
lhs: term_T_A2_lhsrhs: term_T_A2_rhsforAll: term_T_A2_forAllverificationDomain: Geometric
|
T_A3 | Identity | Dihedral orbits determine irreducibility boundaries. |
lhs: term_T_A3_lhsrhs: term_T_A3_rhsforAll: term_T_A3_forAllverificationDomain: Geometric
|
T_A4 | Identity | Fixed points of negation are {0, 2^{n−1}}; bnot has no fixed points. |
lhs: term_T_A4_lhsrhs: term_T_A4_rhsforAll: term_T_A4_forAllverificationDomain: Geometric
|
AU_1 | Identity | Automorphism group consists of unit multiplications. |
lhs: term_AU_1_lhsrhs: term_AU_1_rhsforAll: term_AU_1_forAllverificationDomain: Geometric
|
AU_2 | Identity | Automorphism group is isomorphic to the unit group. |
lhs: term_AU_2_lhsrhs: term_AU_2_rhsforAll: term_AU_2_forAllverificationDomain: Geometric
|
AU_3 | Identity | Automorphism group order is 2^{n−1}. |
lhs: term_AU_3_lhsrhs: term_AU_3_rhsforAll: term_AU_3_forAllverificationDomain: Geometric
|
AU_4 | Identity | Intersection of automorphism group with dihedral group is {id, neg}. |
lhs: term_AU_4_lhsrhs: term_AU_4_rhsforAll: term_AU_4_forAllverificationDomain: Geometric
|
AU_5 | Identity | Affine group is generated by D_{2^n} and μ_3. |
lhs: term_AU_5_lhsrhs: term_AU_5_rhsforAll: term_AU_5_forAllverificationDomain: Geometric
|
EF_1 | Identity | Embedding functor action on morphisms. |
lhs: term_EF_1_lhsrhs: term_EF_1_rhsforAll: term_EF_1_forAllverificationDomain: Geometric
|
EF_2 | Identity | Embedding functor preserves composition. |
lhs: term_EF_2_lhsrhs: term_EF_2_rhsforAll: term_EF_2_forAllverificationDomain: Geometric
|
EF_3 | Identity | Embedding functor preserves identities. |
lhs: term_EF_3_lhsrhs: term_EF_3_rhsforAll: term_EF_3_forAllverificationDomain: Geometric
|
EF_4 | Identity | Embedding functor composition is functorial. |
lhs: term_EF_4_lhsrhs: term_EF_4_rhsforAll: term_EF_4_forAllverificationDomain: Geometric
|
EF_5 | Identity | Embedding functor preserves ring isometries. |
lhs: term_EF_5_lhsrhs: term_EF_5_rhsforAll: term_EF_5_forAllverificationDomain: Geometric
|
EF_6 | Identity | Embedding functor maps dihedral subgroup into target dihedral group. |
lhs: term_EF_6_lhsrhs: term_EF_6_rhsforAll: term_EF_6_forAllverificationDomain: Geometric
|
EF_7 | Identity | Embedding functor maps unit group into target unit group. |
lhs: term_EF_7_lhsrhs: term_EF_7_rhsforAll: term_EF_7_forAllverificationDomain: Geometric
|
AA_1 | Identity | Braille glyph encoding: 6-bit blocks to Braille characters. |
lhs: term_AA_1_lhsrhs: term_AA_1_rhsforAll: term_AA_1_forAllverificationDomain: Analytical
|
AA_2 | Identity | Braille XOR homomorphism: Braille encoding commutes with XOR. |
lhs: term_AA_2_lhsrhs: term_AA_2_rhsforAll: term_AA_2_forAllverificationDomain: Analytical
|
AA_3 | Identity | Braille complement: glyph of bnot(x) is character-wise complement of glyph(x). |
lhs: term_AA_3_lhsrhs: term_AA_3_rhsforAll: term_AA_3_forAllverificationDomain: Analytical
|
AA_4 | Identity | Addition does not lift to address space: no glyph homomorphism for add. |
lhs: term_AA_4_lhsrhs: term_AA_4_rhsforAll: term_AA_4_forAllverificationDomain: Analytical
|
AA_5 | Identity | Liftable operations are exactly the Boolean operations. |
lhs: term_AA_5_lhsrhs: term_AA_5_rhsforAll: term_AA_5_forAllverificationDomain: Analytical
|
AA_6 | Identity | Negation decomposes into liftable bnot and non-liftable succ. |
lhs: term_AA_6_lhsrhs: term_AA_6_rhsforAll: term_AA_6_forAllverificationDomain: Analytical
|
AM_1 | Identity | Address metric is sum of per-character Hamming distances. |
lhs: term_AM_1_lhsrhs: term_AM_1_rhsforAll: term_AM_1_forAllverificationDomain: Analytical
|
AM_2 | Identity | Address metric equals Hamming metric on ring elements. |
lhs: term_AM_2_lhsrhs: term_AM_2_rhsforAll: term_AM_2_forAllverificationDomain: Analytical
|
AM_3 | Identity | Address metric does not preserve ring metric in general. |
lhs: term_AM_3_lhsrhs: term_AM_3_rhsforAll: term_AM_3_forAllverificationDomain: Analytical
|
AM_4 | Identity | Address incompatibility metric. |
lhs: term_AM_4_lhsrhs: term_AM_4_rhsforAll: term_AM_4_forAllverificationDomain: Analytical
|
TH_1 | Identity | Entropy of a site budget state. |
lhs: term_TH_1_lhsrhs: term_TH_1_rhsforAll: term_TH_1_forAllverificationDomain: Thermodynamic
|
TH_2 | Identity | Maximum entropy: unconstrained state has S = n × ln 2. |
lhs: term_TH_2_lhsrhs: term_TH_2_rhsforAll: term_TH_2_forAllverificationDomain: Thermodynamic
|
TH_3 | Identity | Zero entropy: fully resolved state has S = 0. |
lhs: term_TH_3_lhsrhs: term_TH_3_rhsforAll: term_TH_3_forAllverificationDomain: Thermodynamic
|
TH_4 | Identity | Landauer bound on total resolution cost. |
lhs: term_TH_4_lhsrhs: term_TH_4_rhsforAll: term_TH_4_forAllverificationDomain: Thermodynamic
|
TH_5 | Identity | Critical inverse temperature for UOR site system. |
lhs: term_TH_5_lhsrhs: term_TH_5_rhsforAll: term_TH_5_forAllverificationDomain: Thermodynamic
|
TH_6 | Identity | Constraint application removes entropy; convergence rate equals cooling rate. |
lhs: term_TH_6_lhsrhs: term_TH_6_rhsforAll: term_TH_6_forAllverificationDomain: Thermodynamic
|
TH_7 | Identity | CatastropheThreshold is the temperature of a partition phase transition. |
lhs: term_TH_7_lhsrhs: term_TH_7_rhsforAll: term_TH_7_forAllverificationDomain: Thermodynamic
|
TH_8 | Identity | Step formula as free-energy cost of a constraint boundary. |
lhs: term_TH_8_lhsrhs: term_TH_8_rhsforAll: term_TH_8_forAllverificationDomain: Thermodynamic
|
TH_9 | Identity | Computational hardness maps to type incompleteness (high temperature). |
lhs: term_TH_9_lhsrhs: term_TH_9_rhsforAll: term_TH_9_forAllverificationDomain: Thermodynamic
|
TH_10 | Identity | Type resolution is measurement; cost ≥ entropy removed. |
lhs: term_TH_10_lhsrhs: term_TH_10_rhsforAll: term_TH_10_forAllverificationDomain: Thermodynamic
|
AR_1 | Identity | Adiabatic schedule: decreasing freeRank, cost-per-site ordering. |
lhs: term_AR_1_lhsrhs: term_AR_1_rhsforAll: term_AR_1_forAllverificationDomain: Analytical
|
AR_2 | Identity | Adiabatic cost is sum of constraint costs in optimal order. |
lhs: term_AR_2_lhsrhs: term_AR_2_rhsforAll: term_AR_2_forAllverificationDomain: Analytical
|
AR_3 | Identity | Adiabatic cost satisfies Landauer bound. |
lhs: term_AR_3_lhsrhs: term_AR_3_rhsforAll: term_AR_3_forAllverificationDomain: Analytical
|
AR_4 | Identity | Adiabatic efficiency η ≤ 1. |
lhs: term_AR_4_lhsrhs: term_AR_4_rhsforAll: term_AR_4_forAllverificationDomain: Analytical
|
AR_5 | Identity | Greedy vs adiabatic cost difference: ≤ 5% for n ≤ 16. |
lhs: term_AR_5_lhsrhs: term_AR_5_rhsforAll: term_AR_5_forAllverificationDomain: Analytical
|
PD_1 | Identity | Phase space definition. |
lhs: term_PD_1_lhsrhs: term_PD_1_rhsforAll: term_PD_1_forAllverificationDomain: Thermodynamic
|
PD_2 | Identity | Phase boundaries occur where g divides 2^n − 1 or g is a power of 2. |
lhs: term_PD_2_lhsrhs: term_PD_2_rhsforAll: term_PD_2_forAllverificationDomain: Thermodynamic
|
PD_3 | Identity | Parity boundary divides R_n into equal halves. |
lhs: term_PD_3_lhsrhs: term_PD_3_rhsforAll: term_PD_3_forAllverificationDomain: Thermodynamic
|
PD_4 | Identity | Resonance lines in the phase diagram. |
lhs: term_PD_4_lhsrhs: term_PD_4_rhsforAll: term_PD_4_forAllverificationDomain: Thermodynamic
|
PD_5 | Identity | Phase count at level n is at most 2^n (typically O(n)). |
lhs: term_PD_5_lhsrhs: term_PD_5_rhsforAll: term_PD_5_forAllverificationDomain: Thermodynamic
|
RC_1 | Identity | Reversible pinning stores prior state in ancilla site. |
lhs: term_RC_1_lhsrhs: term_RC_1_rhsforAll: term_RC_1_forAllverificationDomain: Thermodynamic
|
RC_2 | Identity | Reversible pinning has zero total entropy change. |
lhs: term_RC_2_lhsrhs: term_RC_2_rhsforAll: term_RC_2_forAllverificationDomain: Thermodynamic
|
RC_3 | Identity | Deferred Landauer cost at ancilla erasure. |
lhs: term_RC_3_lhsrhs: term_RC_3_rhsforAll: term_RC_3_forAllverificationDomain: Thermodynamic
|
RC_4 | Identity | Reversible total cost equals irreversible total cost (redistributed). |
lhs: term_RC_4_lhsrhs: term_RC_4_rhsforAll: term_RC_4_forAllverificationDomain: Thermodynamic
|
RC_5 | Identity | Quantum UOR: superposed sites, cost proportional to winning path. |
lhs: term_RC_5_lhsrhs: term_RC_5_rhsforAll: term_RC_5_forAllverificationDomain: Thermodynamic
|
DC_1 | Identity | Ring derivative: ∂_R f(x) = f(succ(x)) - f(x). |
lhs: term_DC_1_lhsrhs: term_DC_1_rhsforAll: term_DC_1_forAllverificationDomain: Analytical
|
DC_2 | Identity | Hamming derivative: ∂_H f(x) = f(bnot(x)) - f(x). |
lhs: term_DC_2_lhsrhs: term_DC_2_rhsforAll: term_DC_2_forAllverificationDomain: Analytical
|
DC_3 | Identity | Hamming derivative of identity: ∂_H id(x) = -(2x + 1) mod 2^n. |
lhs: term_DC_3_lhsrhs: term_DC_3_rhsforAll: term_DC_3_forAllverificationDomain: Analytical
|
DC_4 | Identity | Commutator from derivatives: [neg, bnot](x) = ∂_R neg(x) - ∂_H neg(x). |
lhs: term_DC_4_lhsrhs: term_DC_4_rhsforAll: term_DC_4_forAllverificationDomain: Analytical
|
DC_5 | Identity | Carry dependence: the difference ∂_R f - ∂_H f decomposes into carry contributions. |
lhs: term_DC_5_lhsrhs: term_DC_5_rhsforAll: term_DC_5_forAllverificationDomain: Analytical
|
DC_6 | Identity | Jacobian definition: J_k(x) = ∂_R f_k(x) where f_k = site_k. |
lhs: term_DC_6_lhsrhs: term_DC_6_rhsforAll: term_DC_6_forAllverificationDomain: Analytical
|
DC_7 | Identity | Top-site anomaly: J_{n-1}(x) may differ from lower sites. |
lhs: term_DC_7_lhsrhs: term_DC_7_rhsforAll: term_DC_7_forAllverificationDomain: Analytical
|
DC_8 | Identity | Rank-curvature identity: rank(J(x)) = d_H(x, succ(x)) - 1 for generic x. |
lhs: term_DC_8_lhsrhs: term_DC_8_rhsforAll: term_DC_8_forAllverificationDomain: Analytical
|
DC_9 | Identity | Total curvature from Jacobian: κ(x) = Σ_k J_k(x). |
lhs: term_DC_9_lhsrhs: term_DC_9_rhsforAll: term_DC_9_forAllverificationDomain: Analytical
|
DC_10 | Identity | Curvature-weighted ordering: optimal next constraint maximizes J_k over free sites. |
lhs: term_DC_10_lhsrhs: term_DC_10_rhsforAll: term_DC_10_forAllverificationDomain: Analytical
|
DC_11 | Identity | Curvature equipartition: Σ_{x} J_k(x) ≈ (2^n - 2)/n for each k. |
lhs: term_DC_11_lhsrhs: term_DC_11_rhsforAll: term_DC_11_forAllverificationDomain: Analytical
|
HA_1 | Identity | Constraint nerve: N(C) is the simplicial complex on constraints. |
lhs: term_HA_1_lhsrhs: term_HA_1_rhsforAll: term_HA_1_forAllverificationDomain: Topological
|
HA_2 | Identity | Stall iff non-trivial homology: resolution stalls ⟺ H_k(N(C)) ≠ 0 for some k > 0. |
lhs: term_HA_2_lhsrhs: term_HA_2_rhsforAll: term_HA_2_forAllverificationDomain: Topological
|
HA_3 | Identity | Betti-entropy theorem: S_residual ≥ Σ_k β_k × ln 2. |
lhs: term_HA_3_lhsrhs: term_HA_3_rhsforAll: term_HA_3_forAllverificationDomain: Topological
|
IT_2 | Identity | Euler-Poincaré formula for constraint nerve. |
lhs: term_IT_2_lhsrhs: term_IT_2_rhsforAll: term_IT_2_forAllverificationDomain: Topological
|
IT_3 | Identity | Spectral Euler characteristic. |
lhs: term_IT_3_lhsrhs: term_IT_3_rhsforAll: term_IT_3_forAllverificationDomain: Topological
|
IT_6 | Identity | Spectral gap bounds convergence rate from below. |
lhs: term_IT_6_lhsrhs: term_IT_6_rhsforAll: term_IT_6_forAllverificationDomain: Topological
|
IT_7a | Identity | UOR index theorem (topological form): total curvature minus Euler characteristic equals residual entropy in bits. |
lhs: term_IT_7a_lhsrhs: term_IT_7a_rhsforAll: term_IT_7a_forAllverificationDomain: IndexTheoreticverificationDomain: AnalyticalverificationDomain: Topological
|
IT_7b | Identity | UOR index theorem (entropy-topology duality). |
lhs: term_IT_7b_lhsrhs: term_IT_7b_rhsforAll: term_IT_7b_forAllverificationDomain: IndexTheoreticverificationDomain: AnalyticalverificationDomain: Topological
|
IT_7c | Identity | UOR index theorem (spectral cost bound): resolution cost ≥ n - χ(N(C)). |
lhs: term_IT_7c_lhsrhs: term_IT_7c_rhsforAll: term_IT_7c_forAllverificationDomain: IndexTheoreticverificationDomain: AnalyticalverificationDomain: Topological
|
IT_7d | Identity | UOR index theorem (completeness criterion): resolution is complete iff χ(N(C)) = n and all Betti numbers vanish. |
lhs: term_IT_7d_lhsrhs: term_IT_7d_rhsforAll: term_IT_7d_forAllverificationDomain: IndexTheoreticverificationDomain: AnalyticalverificationDomain: Topological
|
phi_1 | Identity | Ring → Constraints map: negation transforms a residue constraint. |
lhs: term_phi_1_lhsrhs: term_phi_1_rhsforAll: term_phi_1_forAllverificationDomain: Pipeline
|
phi_2 | Identity | Constraints → Sites map: composition maps to union of site pinnings. |
lhs: term_phi_2_lhsrhs: term_phi_2_rhsforAll: term_phi_2_forAllverificationDomain: Pipeline
|
phi_3 | Identity | Sites → Partition map: a closed site state determines a unique 4-component partition. |
lhs: term_phi_3_lhsrhs: term_phi_3_rhsforAll: term_phi_3_forAllverificationDomain: Pipeline
|
phi_4 | Identity | Resolution pipeline: φ₄ = φ₃ ∘ φ₂ ∘ φ₁ is the composite resolution map. |
lhs: term_phi_4_lhsrhs: term_phi_4_rhsforAll: term_phi_4_forAllverificationDomain: Pipeline
|
phi_5 | Identity | Operations → Observables map: negation preserves d_R, may change d_H. |
lhs: term_phi_5_lhsrhs: term_phi_5_rhsforAll: term_phi_5_forAllverificationDomain: Pipeline
|
phi_6 | Identity | Observables → Refinement map: observables on a state yield a refinement suggestion. |
lhs: term_phi_6_lhsrhs: term_phi_6_rhsforAll: term_phi_6_forAllverificationDomain: Pipeline
|
psi_1 | Identity | ψ_1: Constraints → SimplicialComplex (nerve construction). Maps a set of constraints to its nerve simplicial complex. |
lhs: term_psi_1_lhsrhs: term_psi_1_rhsforAll: term_psi_1_forAllverificationDomain: Topological
|
psi_2 | Identity | ψ_2: SimplicialComplex → ChainComplex (chain functor). Maps a simplicial complex to its chain complex. |
lhs: term_psi_2_lhsrhs: term_psi_2_rhsforAll: term_psi_2_forAllverificationDomain: Topological
|
psi_3 | Identity | ψ_3: ChainComplex → HomologyGroups (homology functor). Computes homology groups from a chain complex. |
lhs: term_psi_3_lhsrhs: term_psi_3_rhsforAll: term_psi_3_forAllverificationDomain: Topological
|
psi_5 | Identity | ψ_5: ChainComplex → CochainComplex (dualization functor). Dualizes a chain complex to obtain a cochain complex. |
lhs: term_psi_5_lhsrhs: term_psi_5_rhsforAll: term_psi_5_forAllverificationDomain: Topological
|
psi_6 | Identity | ψ_6: CochainComplex → CohomologyGroups (cohomology functor). Computes cohomology groups from a cochain complex. |
lhs: term_psi_6_lhsrhs: term_psi_6_rhsforAll: term_psi_6_forAllverificationDomain: Topological
|
D_{2^n} | DihedralGroup | The dihedral group of order 2^(n+1), generated by neg (ring reflection) and bnot (hypercube reflection). Every element of this group acts as an isometry on the type space 𝒯_n. |
generatedBy: neggeneratedBy: bnotpresentation: ⟨r, s | r^{2^n} = s² = e, srs = r⁻¹⟩
|
Surface Symmetry | Identity | The Surface Symmetry Theorem: the composite P∘Π∘G is a well-typed morphism iff G and P share the same state:Frame F. When the shared-frame condition holds, the output lands in the type-equivalent neighbourhood of the source symbol. |
lhs: term_surfaceSymmetry_lhsrhs: term_surfaceSymmetry_rhsforAll: term_surfaceSymmetry_forAllverificationDomain: Pipeline
|
CC_1 | Identity | Completeness implies O(1) resolution: a CompleteType T satisfies ∀ x ∈ R_n, resolution(x, T) terminates in O(1). |
lhs: term_CC_1_lhsrhs: term_CC_1_rhsforAll: term_CC_1_forAllverificationDomain: Pipeline
|
CC_2 | Identity | Completeness is monotone: if T ⊆ T' (T' has more constraints), then completeness(T) implies completeness(T'). |
lhs: term_CC_2_lhsrhs: term_CC_2_rhsforAll: term_CC_2_forAllverificationDomain: Algebraic
|
CC_3 | Identity | Witness composition: concat(W₁, W₂) is a valid audit trail iff W₁.sitesClosed + W₂.sitesClosed = n. |
lhs: term_CC_3_lhsrhs: term_CC_3_rhsforAll: term_CC_3_forAllverificationDomain: Algebraic
|
CC_4 | Identity | The CompletenessResolver is the unique fixed point of the ψ-pipeline applied to a CompletenessCandidate. |
lhs: term_CC_4_lhsrhs: term_CC_4_rhsforAll: term_CC_4_forAllverificationDomain: Pipeline
|
CC_5 | Identity | CompletenessCertificate soundness: cert.verified = true implies χ(N(C)) = n and for all k: β_k = 0. |
lhs: term_CC_5_lhsrhs: term_CC_5_rhsforAll: term_CC_5_forAllverificationDomain: Topological
|
QL_1 | Identity | neg(bnot(x)) = succ(x) holds in Z/(2ⁿ)Z for all n ≥ 1. Universal form of the Critical Identity across all quantum levels. |
lhs: term_QL_1_lhsrhs: term_QL_1_rhsforAll: term_QL_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
QL_2 | Identity | The dihedral group D_{2ⁿ} generated by neg and bnot has order 2ⁿ⁺¹ for all n ≥ 1. |
lhs: term_QL_2_lhsrhs: term_QL_2_rhsforAll: term_QL_2_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
QL_3 | Identity | The reduction distribution P(j) = 2^{-j} is the Boltzmann distribution at β* = ln 2 for all n ≥ 1. |
lhs: term_QL_3_lhsrhs: term_QL_3_rhsforAll: term_QL_3_forAllverificationDomain: ThermodynamicuniversallyValid: truevalidityKind: Universal
|
QL_4 | Identity | The site budget of a PrimitiveType at quantum level n is exactly n (one site per bit). |
lhs: term_QL_4_lhsrhs: term_QL_4_rhsforAll: term_QL_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
QL_5 | Identity | Resolution complexity for a CompleteType is O(1) for all n ≥ 1. |
lhs: term_QL_5_lhsrhs: term_QL_5_rhsforAll: term_QL_5_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
QL_6 | Identity | Content addressing is a bijection for all n ≥ 1 (AD_1/AD_2 universality). |
lhs: term_QL_6_lhsrhs: term_QL_6_rhsforAll: term_QL_6_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
QL_7 | Identity | The ψ-pipeline produces a valid ChainComplex for any ConstrainedType at any quantum level n ≥ 1. |
lhs: term_QL_7_lhsrhs: term_QL_7_rhsforAll: term_QL_7_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
GR_1 | Identity | Binding monotonicity: freeRank(B_{i+1}) ≤ freeRank(B_i) for all i in a Session. |
lhs: term_GR_1_lhsrhs: term_GR_1_rhsforAll: term_GR_1_forAllverificationDomain: Algebraic
|
GR_2 | Identity | Binding soundness: a Binding b is sound iff b.datum resolves under b.constraint in O(1). |
lhs: term_GR_2_lhsrhs: term_GR_2_rhsforAll: term_GR_2_forAllverificationDomain: Pipeline
|
GR_3 | Identity | Session convergence: a Session S converges iff there exists i such that freeRank(B_i) = 0. |
lhs: term_GR_3_lhsrhs: term_GR_3_rhsforAll: term_GR_3_forAllverificationDomain: Algebraic
|
GR_4 | Identity | Context reset isolation: bindings in C_fresh are independent of bindings in C_prior after a SessionBoundary. |
lhs: term_GR_4_lhsrhs: term_GR_4_rhsforAll: term_GR_4_forAllverificationDomain: Algebraic
|
GR_5 | Identity | Contradiction detection: ContradictionBoundary fires iff there exist bindings b, b' with the same address, different datum, under the same constraint. |
lhs: term_GR_5_lhsrhs: term_GR_5_rhsforAll: term_GR_5_forAllverificationDomain: Algebraic
|
TS_1 | Identity | Nerve realisability: for any target (χ*, β₀* = 1, β_k* = 0 for k ≥ 1) with χ* ≤ n, there exists a ConstrainedType T over R_n whose constraint nerve realises the target. |
lhs: term_TS_1_lhsrhs: term_TS_1_rhsforAll: term_TS_1_forAllverificationDomain: Pipeline
|
TS_2 | Identity | Minimal basis bound: for the IT_7d target (χ* = n, all β* = 0), the MinimalConstraintBasis has size exactly n (one constraint per site position). No redundant constraints exist in the minimal basis. |
lhs: term_TS_2_lhsrhs: term_TS_2_rhsforAll: term_TS_2_forAllverificationDomain: Pipeline
|
TS_3 | Identity | Synthesis monotonicity: adding a constraint to a synthesis candidate never decreases the Euler characteristic of the resulting nerve (χ is monotone non-decreasing under constraint addition). |
lhs: term_TS_3_lhsrhs: term_TS_3_rhsforAll: term_TS_3_forAllverificationDomain: Pipeline
|
TS_4 | Identity | Synthesis convergence: the TypeSynthesisResolver terminates for any realisable target in at most n constraint additions (for n-site types). |
lhs: term_TS_4_lhsrhs: term_TS_4_rhsforAll: term_TS_4_forAllverificationDomain: Pipeline
|
TS_5 | Identity | Synthesis–certification duality: a SynthesizedType T achieves the IT_7d target if and only if the CompletenessResolver certifies T as a CompleteType. The forward ψ-pipeline and the inverse TypeSynthesisResolver are dual computations. |
lhs: term_TS_5_lhsrhs: term_TS_5_rhsforAll: term_TS_5_forAllverificationDomain: Pipeline
|
TS_6 | Identity | Jacobian-guided synthesis efficiency: using the Jacobian (DC_10) to select the next constraint reduces the expected number of synthesis steps from O(n²) (uninformed) to O(n log n) (Jacobian-guided). |
lhs: term_TS_6_lhsrhs: term_TS_6_rhsforAll: term_TS_6_forAllverificationDomain: Pipeline
|
TS_7 | Identity | Unreachable signatures: a Betti profile with β₀ = 0 is unreachable by any non-empty ConstrainedType — the nerve of a non-empty constraint set is always connected (β₀ ≥ 1). |
lhs: term_TS_7_lhsrhs: term_TS_7_rhsforAll: term_TS_7_forAllverificationDomain: Pipeline
|
WLS_1 | Identity | Lift unobstructedness criterion: WittLift T' is a CompleteType iff the spectral sequence E_r^{p,q} collapses at E_2 (d_2 = 0 and all higher differentials zero). |
lhs: term_WLS_1_lhsrhs: term_WLS_1_rhsforAll: term_WLS_1_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
WLS_2 | Identity | Obstruction localisation: a non-trivial LiftObstruction is localised to a specific site at bit position n+1. The obstruction class lives in H²(N(C(T))) and is killed by adding one constraint involving the new site. |
lhs: term_WLS_2_lhsrhs: term_WLS_2_rhsforAll: term_WLS_2_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
WLS_3 | Identity | Monotone lifting for trivially obstructed types: if T is a CompleteType at Q_n and its constraint set is closed under the Q_{n+1} extension map, then T' is a CompleteType at Q_{n+1} with basisSize(T') = basisSize(T) + 1. |
lhs: term_WLS_3_lhsrhs: term_WLS_3_rhsforAll: term_WLS_3_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
WLS_4 | Identity | Spectral sequence convergence bound: for constraint configurations of homological depth d (H_k(N(C(T))) = 0 for k > d), the spectral sequence converges by page E_{d+2}. |
lhs: term_WLS_4_lhsrhs: term_WLS_4_rhsforAll: term_WLS_4_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
WLS_5 | Identity | Universal identity preservation: every op:universallyValid identity holds in ℤ/(2^{n+1})ℤ with the lifted constraint set. The lift does not invalidate any certified universal identity. |
lhs: term_WLS_5_lhsrhs: term_WLS_5_rhsforAll: term_WLS_5_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
WLS_6 | Identity | ψ-pipeline universality for quantum lifts: the ψ-pipeline produces a valid ChainComplex for any WittLift T' — the chain complex of T' restricts to the chain complex of T on the base nerve, and the extension is well-formed by construction. |
lhs: term_WLS_6_lhsrhs: term_WLS_6_rhsforAll: term_WLS_6_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
MN_1 | Identity | Holonomy group containment: HolonomyGroup(T) ≤ D_{2^n} for all ConstrainedTypes T over R_n. The holonomy group is always a subgroup of the full dihedral group. |
lhs: term_MN_1_lhsrhs: term_MN_1_rhsforAll: term_MN_1_forAllverificationDomain: Topological
|
MN_2 | Identity | Additive flatness (extends OB_H1): if all constraints in T are additive (ResidueConstraint or DepthConstraint type), then HolonomyGroup(T) = {id} — T is a FlatType. |
lhs: term_MN_2_lhsrhs: term_MN_2_rhsforAll: term_MN_2_forAllverificationDomain: Topological
|
MN_3 | Identity | Dihedral generation: if T contains both a neg-related and a bnot-related constraint in a common closed path, then HolonomyGroup(T) = D_{2^n} — T has full dihedral holonomy. |
lhs: term_MN_3_lhsrhs: term_MN_3_rhsforAll: term_MN_3_forAllverificationDomain: Topological
|
MN_4 | Identity | Holonomy-Betti implication: HolonomyGroup(T) ≠ {id} ⟹ β₁(N(C(T))) ≥ 1. Non-trivial monodromy requires a topological loop. (Converse is false: β₁ ≥ 1 does not imply non-trivial holonomy.) |
lhs: term_MN_4_lhsrhs: term_MN_4_rhsforAll: term_MN_4_forAllverificationDomain: Topological
|
MN_5 | Identity | CompleteType holonomy: a CompleteType (IT_7d: χ = n, all β = 0) has trivial holonomy. IT_7d implies FlatType because IT_7d requires β₁ = 0, which by MN_4 implies trivial monodromy. |
lhs: term_MN_5_lhsrhs: term_MN_5_rhsforAll: term_MN_5_forAllverificationDomain: Topological
|
MN_6 | Identity | Monodromy composition: if p₁ and p₂ are closed constraint paths, then monodromy(p₁ · p₂) = monodromy(p₁) · monodromy(p₂) in D_{2^n} (group homomorphism from loops to dihedral elements). |
lhs: term_MN_6_lhsrhs: term_MN_6_rhsforAll: term_MN_6_forAllverificationDomain: Topological
|
MN_7 | Identity | TwistedType obstruction class: the monodromy of a TwistedType contributes a non-zero class to H²(N(C(T')); ℤ/2ℤ) where T' is any WittLift of T. TwistedTypes always have non-trivial lift obstructions. |
lhs: term_MN_7_lhsrhs: term_MN_7_rhsforAll: term_MN_7_forAllverificationDomain: Topological
|
PT_1 | Identity | Product type site additivity: siteBudget(A × B) = siteBudget(A) + siteBudget(B). |
lhs: term_PT_1_lhsrhs: term_PT_1_rhsforAll: term_PT_1_forAllverificationDomain: Algebraic
|
PT_2 | Identity | Product type partition product: partition(A × B) = partition(A) ⊗ partition(B). |
lhs: term_PT_2_lhsrhs: term_PT_2_rhsforAll: term_PT_2_forAllverificationDomain: Topological
|
PT_3 | Identity | Product type Euler additivity: χ(N(C(A × B))) = χ(N(C(A))) + χ(N(C(B))). |
lhs: term_PT_3_lhsrhs: term_PT_3_rhsforAll: term_PT_3_forAllverificationDomain: IndexTheoretic
|
PT_4 | Identity | Product type entropy additivity: S(A × B) = S(A) + S(B). |
lhs: term_PT_4_lhsrhs: term_PT_4_rhsforAll: term_PT_4_forAllverificationDomain: Thermodynamic
|
ST_1 | Identity | Sum type site budget: siteBudget(A + B) = max(siteBudget(A), siteBudget(B)). |
lhs: term_ST_1_lhsrhs: term_ST_1_rhsforAll: term_ST_1_forAllverificationDomain: Algebraic
|
ST_2 | Identity | Sum type entropy: S(A + B) = ln 2 + max(S(A), S(B)). |
lhs: term_ST_2_lhsrhs: term_ST_2_rhsforAll: term_ST_2_forAllverificationDomain: Thermodynamic
|
GS_1 | Identity | Context temperature: T_ctx(C) = freeRank(C) × ln 2 / n. |
lhs: term_GS_1_lhsrhs: term_GS_1_rhsforAll: term_GS_1_forAllverificationDomain: Thermodynamic
|
GS_2 | Identity | Grounding degree: σ(C) = (n − freeRank(C)) / n. |
lhs: term_GS_2_lhsrhs: term_GS_2_rhsforAll: term_GS_2_forAllverificationDomain: Algebraic
|
GS_3 | Identity | Grounding monotonicity: σ(B_{i+1}) ≥ σ(B_i) for all i in a Session. |
lhs: term_GS_3_lhsrhs: term_GS_3_rhsforAll: term_GS_3_forAllverificationDomain: Algebraic
|
GS_4 | Identity | Ground state equivalence: σ(C) = 1 ↔ freeRank(C) = 0 ↔ S(C) = 0 ↔ T_ctx(C) = 0. |
lhs: term_GS_4_lhsrhs: term_GS_4_rhsforAll: term_GS_4_forAllverificationDomain: Thermodynamic
|
GS_5 | Identity | O(1) resolution guarantee: freeRank(C) = 0 ∧ q.address ∈ bindings(C) → stepCount(q, C) = 0. |
lhs: term_GS_5_lhsrhs: term_GS_5_rhsforAll: term_GS_5_forAllverificationDomain: Pipeline
|
GS_6 | Identity | Pre-reduction of effective budget: effectiveBudget(q, C) = max(0, siteBudget(q.type) − |pinnedSites(C) ∩ q.siteSet|). |
lhs: term_GS_6_lhsrhs: term_GS_6_rhsforAll: term_GS_6_forAllverificationDomain: Algebraic
|
GS_7 | Identity | Thermodynamic cooling cost: Cost_saturation(C) = n × k_B T × ln 2. |
lhs: term_GS_7_lhsrhs: term_GS_7_rhsforAll: term_GS_7_forAllverificationDomain: Thermodynamic
|
MS_1 | Identity | Connectivity lower bound: β₀(N(C)) ≥ 1 for all non-empty C. |
lhs: term_MS_1_lhsrhs: term_MS_1_rhsforAll: term_MS_1_forAllverificationDomain: Pipeline
|
MS_2 | Identity | Euler capacity ceiling: χ(N(C)) ≤ n for all C at quantum level n. |
lhs: term_MS_2_lhsrhs: term_MS_2_rhsforAll: term_MS_2_forAllverificationDomain: Algebraic
|
MS_3 | Identity | Betti monotonicity under addition: χ(N(C + c)) ≥ χ(N(C)) for any constraint c added to C. |
lhs: term_MS_3_lhsrhs: term_MS_3_rhsforAll: term_MS_3_forAllverificationDomain: Topological
|
MS_4 | Identity | Level-relative achievability: a signature achievable at quantum level n remains achievable at level n+1. |
lhs: term_MS_4_lhsrhs: term_MS_4_rhsforAll: term_MS_4_forAllverificationDomain: Pipeline
|
MS_5 | Identity | Empirical completeness convergence: verified SynthesisSignature individuals converge to the exact morphospace boundary. |
lhs: term_MS_5_lhsrhs: term_MS_5_rhsforAll: term_MS_5_forAllverificationDomain: Pipeline
|
GD_1 | Identity | Geodesic condition: a ComputationTrace is a geodesic iff its steps are AR_1-ordered and each step selects the constraint maximising J_k over free sites (DC_10). |
lhs: term_GD_1_lhsrhs: term_GD_1_rhsforAll: term_GD_1_forAllverificationDomain: Analytical
|
GD_2 | Identity | Geodesic entropy bound: ΔS_step(i) = ln 2 for every step i of a geodesic trace. |
lhs: term_GD_2_lhsrhs: term_GD_2_rhsforAll: term_GD_2_forAllverificationDomain: Thermodynamic
|
GD_3 | Identity | Total geodesic cost: Cost_geodesic(T) = freeRank_initial × k_B T ln 2 = TH_4. |
lhs: term_GD_3_lhsrhs: term_GD_3_rhsforAll: term_GD_3_forAllverificationDomain: Thermodynamic
|
GD_4 | Identity | Geodesic uniqueness up to step-order equivalence: all geodesics for the same ConstrainedType share stepCount and constraint set. |
lhs: term_GD_4_lhsrhs: term_GD_4_rhsforAll: term_GD_4_forAllverificationDomain: Analytical
|
GD_5 | Identity | Subgeodesic detectability: a trace is sub-geodesic iff ∃ step i where J_k(step_i) < max_{free sites} J_k(state_i). |
lhs: term_GD_5_lhsrhs: term_GD_5_rhsforAll: term_GD_5_forAllverificationDomain: Pipeline
|
QM_1 | Identity | Von Neumann–Landauer bridge: S_vonNeumann(ψ) = Cost_Landauer(collapse(ψ)). |
lhs: term_QM_1_lhsrhs: term_QM_1_rhsforAll: term_QM_1_forAllverificationDomain: QuantumThermodynamic
|
QM_2 | Identity | Measurement as site topology change: projective collapse on a SuperposedSiteState is topologically equivalent to applying a ResidueConstraint that pins the collapsed site. |
lhs: term_QM_2_lhsrhs: term_QM_2_rhsforAll: term_QM_2_forAllverificationDomain: Topological
|
QM_3 | Identity | Superposition entropy bound: 0 ≤ S_vN(ψ) ≤ ln 2 for any single-site SuperposedSiteState. |
lhs: term_QM_3_lhsrhs: term_QM_3_rhsforAll: term_QM_3_forAllverificationDomain: QuantumThermodynamic
|
QM_4 | Identity | Collapse idempotence: collapse(collapse(ψ)) = collapse(ψ). Measurement on an already-collapsed state is a no-op. |
lhs: term_QM_4_lhsrhs: term_QM_4_rhsforAll: term_QM_4_forAllverificationDomain: Algebraic
|
QM_5 | Identity | Amplitude normalization (Born rule): the sum of squared amplitudes equals 1 for any well-formed SuperposedSiteState. |
lhs: term_QM_5_lhsrhs: term_QM_5_rhsforAll: term_QM_5_forAllverificationDomain: QuantumThermodynamicuniversallyValid: truevalidityKind: Universal
|
RC_6 | Identity | Amplitude renormalization: a SuperposedSiteState can always be normalized to satisfy QM_5. |
lhs: term_RC_6_lhsrhs: term_RC_6_rhsforAll: term_RC_6_forAllverificationDomain: SuperpositionDomainuniversallyValid: truevalidityKind: Universal
|
FPM_8 | Identity | Partition exhaustiveness: the four component cardinalities sum to the ring size. |
lhs: term_FPM_8_lhsrhs: term_FPM_8_rhsforAll: term_FPM_8_forAllverificationDomain: EnumerativeuniversallyValid: truevalidityKind: Universal
|
FPM_9 | Identity | Exterior membership criterion: x is exterior iff x is not in the carrier of T. |
lhs: term_FPM_9_lhsrhs: term_FPM_9_rhsforAll: term_FPM_9_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MN_8 | Identity | Holonomy classification covering: every ConstrainedType with a computed holonomy group is either flat or twisted, not both. |
lhs: term_MN_8_lhsrhs: term_MN_8_rhsforAll: term_MN_8_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
QL_8 | Identity | Witt level chain inverse: wittLevelPredecessor is the left inverse of nextWittLevel. |
lhs: term_QL_8_lhsrhs: term_QL_8_rhsforAll: term_QL_8_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
D_7 | Identity | Dihedral composition rule: (rᵃ sᵖ)(rᵇ sᵠ) = r^(a + (-1)ᵖ b mod 2ⁿ) s^(p xor q). |
lhs: term_D_7_lhsrhs: term_D_7_rhsforAll: term_D_7_forAllverificationDomain: GeometricuniversallyValid: truevalidityKind: Universal
|
SP_1 | Identity | Classical embedding: superposition resolution of a classical (non-superposed) datum reduces to classical resolution. |
lhs: term_SP_1_lhsrhs: term_SP_1_rhsforAll: term_SP_1_forAllverificationDomain: SuperpositionDomainuniversallyValid: truevalidityKind: Universal
|
SP_2 | Identity | Collapse–resolve commutativity: collapsing then resolving classically equals resolving in superposition then collapsing. |
lhs: term_SP_2_lhsrhs: term_SP_2_rhsforAll: term_SP_2_forAllverificationDomain: QuantumThermodynamicuniversallyValid: truevalidityKind: Universal
|
SP_3 | Identity | Amplitude preservation: the SuperpositionResolver preserves the normalized amplitude vector during ψ-pipeline traversal. |
lhs: term_SP_3_lhsrhs: term_SP_3_rhsforAll: term_SP_3_forAllverificationDomain: SuperpositionDomainuniversallyValid: truevalidityKind: Universal
|
SP_4 | Identity | Born rule outcome probability: the probability of collapsing to site k equals the squared amplitude of that site. |
lhs: term_SP_4_lhsrhs: term_SP_4_rhsforAll: term_SP_4_forAllverificationDomain: QuantumThermodynamicuniversallyValid: truevalidityKind: Universal
|
PT_2a | Identity | Product type partition tensor: the partition of a product type is the tensor product of the component partitions. |
lhs: term_PT_2a_lhsrhs: term_PT_2a_rhsforAll: term_PT_2a_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
PT_2b | Identity | Sum type partition coproduct: the partition of a sum type is the coproduct of the variant partitions. |
lhs: term_PT_2b_lhsrhs: term_PT_2b_rhsforAll: term_PT_2b_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
GD_6 | Identity | Geodesic predicate decomposition: a trace is geodesic iff it is both AR_1-ordered and DC_10-selected. |
lhs: term_GD_6_lhsrhs: term_GD_6_rhsforAll: term_GD_6_forAllverificationDomain: AnalyticaluniversallyValid: truevalidityKind: Universal
|
WT_1 | Identity | LiftChain(Q_j, Q_k) is valid CompleteType tower iff every chainStep WittLift has trivial or resolved LiftObstruction. |
lhs: term_WT_1_lhsrhs: term_WT_1_rhsforAll: term_WT_1_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
WT_2 | Identity | Obstruction count bound: the number of non-trivial LiftObstructions in a chain is at most the chain length. |
lhs: term_WT_2_lhsrhs: term_WT_2_rhsforAll: term_WT_2_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
WT_3 | Identity | Resolved basis size formula: the basis size at Q_k equals basisSize(Q_j) + chainLength + obstructionResolutionCost. |
lhs: term_WT_3_lhsrhs: term_WT_3_rhsforAll: term_WT_3_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
WT_4 | Identity | Flat tower characterization: isFlat(chain) iff obstructionCount = 0 iff HolonomyGroup trivial at every step. |
lhs: term_WT_4_lhsrhs: term_WT_4_rhsforAll: term_WT_4_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
WT_5 | Identity | LiftChainCertificate existence: a CompleteType at Q_k satisfies IT_7d with a witness chain. |
lhs: term_WT_5_lhsrhs: term_WT_5_rhsforAll: term_WT_5_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
WT_6 | Identity | Single-step reduction: QT_3 with chainLength=1 and cost=0 reduces to QLS_3. |
lhs: term_WT_6_lhsrhs: term_WT_6_rhsforAll: term_WT_6_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
WT_7 | Identity | Flat chain basis size: for flat chains, resolvedBasisSize(Q_k) = basisSize(Q_j) + (k - j). |
lhs: term_WT_7_lhsrhs: term_WT_7_rhsforAll: term_WT_7_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
CC_PINS | Identity | Carry-constraint site-pinning map: pinsSites(CarryConstraint(p)) equals the set of bit positions where p has a 1 plus the first-zero stopping position. |
lhs: term_CC_PINS_lhsrhs: term_CC_PINS_rhsforAll: term_CC_PINS_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
CC_COST_SITE | Identity | Carry-constraint cost-to-site count: the number of sites pinned by a CarryConstraint equals popcount plus one for the stopping position. |
lhs: term_CC_COST_SITE_lhsrhs: term_CC_COST_SITE_rhsforAll: term_CC_COST_SITE_forAllverificationDomain: EnumerativeuniversallyValid: truevalidityKind: Universal
|
jsat_RR | Identity | CRT joint satisfiability: two ResidueConstraints are jointly satisfiable iff the gcd of their moduli divides the difference of their residues. |
lhs: term_jsat_RR_lhsrhs: term_jsat_RR_rhsforAll: term_jsat_RR_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
jsat_CR | Identity | Carry-residue joint satisfiability: a CarryConstraint and ResidueConstraint are jointly satisfiable iff the carry-pinned sites are compatible with the residue class. |
lhs: term_jsat_CR_lhsrhs: term_jsat_CR_rhsforAll: term_jsat_CR_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
jsat_CC | Identity | Carry-carry joint satisfiability: two CarryConstraints are jointly satisfiable iff their bit-patterns have no conflicting positions. |
lhs: term_jsat_CC_lhsrhs: term_jsat_CC_rhsforAll: term_jsat_CC_forAllverificationDomain: EnumerativeuniversallyValid: truevalidityKind: Universal
|
D_8 | Identity | Dihedral inverse formula: the inverse of r^a s^p in D_(2^n) is r^(-(−1)^p a mod 2^n) s^p. |
lhs: term_D_8_lhsrhs: term_D_8_rhsforAll: term_D_8_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
D_9 | Identity | Dihedral reflection order: every reflection element r^k s^1 in D_(2^n) has order 2. |
lhs: term_D_9_lhsrhs: term_D_9_rhsforAll: term_D_9_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
EXP_1 | Identity | Monotone carrier characterization: a ConstrainedType has an upward-closed carrier iff every ResidueConstraint has residue = modulus - 1 and no CarryConstraint or DepthConstraint appears. |
lhs: term_EXP_1_lhsrhs: term_EXP_1_rhsforAll: term_EXP_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
EXP_2 | Identity | Monotone constraint count: the number of expressible monotone ConstrainedTypes at quantum level Q_n is 2^n, corresponding to the principal filter count. |
lhs: term_EXP_2_lhsrhs: term_EXP_2_rhsforAll: term_EXP_2_forAllverificationDomain: EnumerativeuniversallyValid: truevalidityKind: Universal
|
EXP_3 | Identity | SumType carrier semantics: the carrier of a SumType is the coproduct (disjoint union) of component carriers, not the set-theoretic union. |
lhs: term_EXP_3_lhsrhs: term_EXP_3_rhsforAll: term_EXP_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
ST_3 | Identity | SumType Euler characteristic additivity: for a SumType with topologically disjoint component nerves, the Euler characteristic is additive. |
lhs: term_ST_3_lhsrhs: term_ST_3_rhsforAll: term_ST_3_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
ST_4 | Identity | SumType Betti number additivity: for disjoint component nerves, all Betti numbers are additive. |
lhs: term_ST_4_lhsrhs: term_ST_4_rhsforAll: term_ST_4_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
ST_5 | Identity | SumType completeness transfer: a SumType A+B is CompleteType iff both A and B are CompleteType and they have equal quantum levels. |
lhs: term_ST_5_lhsrhs: term_ST_5_rhsforAll: term_ST_5_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
TS_8 | Identity | Betti-1 minimum constraint count: the minimum number of constraints needed to achieve first Betti number beta_1 = k in the constraint nerve is 2k + 1. |
lhs: term_TS_8_lhsrhs: term_TS_8_rhsforAll: term_TS_8_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
TS_9 | Identity | TypeSynthesisResolver termination: the resolver terminates in at most 2^n steps for any target signature at quantum level Q_n, returning either a ConstrainedType or a ForbiddenSignature certificate. |
lhs: term_TS_9_lhsrhs: term_TS_9_rhsforAll: term_TS_9_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
TS_10 | Identity | ForbiddenSignature membership criterion: a topological signature is a ForbiddenSignature iff no ConstrainedType with at most n constraints realises it at quantum level Q_n. |
lhs: term_TS_10_lhsrhs: term_TS_10_rhsforAll: term_TS_10_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
WT_8 | Identity | ObstructionChain length bound: the length of the ObstructionChain from Q_j to Q_k is at most (k-j) times C(basisSize(Q_j), 3). |
lhs: term_WT_8_lhsrhs: term_WT_8_rhsforAll: term_WT_8_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
WT_9 | Identity | TowerCompletenessResolver termination: the resolver terminates for any finite LiftChain within the QT_8 bound, producing a CompleteType certificate or a bounded ObstructionChain. |
lhs: term_WT_9_lhsrhs: term_WT_9_rhsforAll: term_WT_9_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
COEFF_1 | Identity | Standard coefficient ring: the coefficient ring for all psi-pipeline cohomology computations in uor.foundation is Z/2Z, consistent with MN_7. |
lhs: term_COEFF_1_lhsrhs: term_COEFF_1_rhsforAll: term_COEFF_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
GO_1 | Identity | GluingObstruction feedback: given a GluingObstruction class in H^1(N(C)), the killing RefinementSuggestion adds a constraint whose pinned sites contain the intersection of the cycle-generating pair. |
lhs: term_GO_1_lhsrhs: term_GO_1_rhsforAll: term_GO_1_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
GR_6 | Identity | Grounding re-entry free rank: for a session at full grounding, a new query q has freeRank equal to the number of q's site coordinates not already bound. |
lhs: term_GR_6_lhsrhs: term_GR_6_rhsforAll: term_GR_6_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
GR_7 | Identity | Grounding degree degradation: after re-entry with query q, the grounding degree becomes min(current sigma, 1 - freeRank(q)/n). |
lhs: term_GR_7_lhsrhs: term_GR_7_rhsforAll: term_GR_7_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
QM_6 | Identity | Amplitude index set characterization: the amplitude index set of a SuperposedSiteState over ConstrainedType T at Q_n is the set of monotone pinning trajectories consistent with T's constraints. |
lhs: term_QM_6_lhsrhs: term_QM_6_rhsforAll: term_QM_6_forAllverificationDomain: SuperpositionDomainuniversallyValid: truevalidityKind: Universal
|
CIC_1 | Identity | Certificate issuance: every valid Transform admits a TransformCertificate attesting correct source-to-target mapping. |
lhs: term_CIC_1_lhsrhs: term_CIC_1_rhsforAll: term_CIC_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
CIC_2 | Identity | Certificate issuance: every metric-preserving Transform admits an IsometryCertificate attesting distance preservation. |
lhs: term_CIC_2_lhsrhs: term_CIC_2_rhsforAll: term_CIC_2_forAllverificationDomain: GeometricuniversallyValid: truevalidityKind: Universal
|
CIC_3 | Identity | Certificate issuance: every involutive operation f where f(f(x)) = x admits an InvolutionCertificate. |
lhs: term_CIC_3_lhsrhs: term_CIC_3_rhsforAll: term_CIC_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
CIC_4 | Identity | Certificate issuance: full saturation (σ = 1, freeRank = 0) admits a GroundingCertificate. |
lhs: term_CIC_4_lhsrhs: term_CIC_4_rhsforAll: term_CIC_4_forAllverificationDomain: ThermodynamicuniversallyValid: truevalidityKind: Universal
|
CIC_5 | Identity | Certificate issuance: an AR_1-ordered and DC_10-selected trace admits a GeodesicCertificate. |
lhs: term_CIC_5_lhsrhs: term_CIC_5_rhsforAll: term_CIC_5_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
CIC_6 | Identity | Certificate issuance: a MeasurementEvent verifying the von Neumann–Landauer bridge at β* = ln 2 admits a MeasurementCertificate. |
lhs: term_CIC_6_lhsrhs: term_CIC_6_rhsforAll: term_CIC_6_forAllverificationDomain: QuantumThermodynamicuniversallyValid: truevalidityKind: Universal
|
CIC_7 | Identity | Certificate issuance: a MeasurementEvent verifying P(outcome k) = |α_k|² admits a BornRuleVerification certificate. |
lhs: term_CIC_7_lhsrhs: term_CIC_7_rhsforAll: term_CIC_7_forAllverificationDomain: QuantumThermodynamicuniversallyValid: truevalidityKind: Universal
|
GC_1 | Identity | Certificate issuance: shared-frame grounding that lands in the type-equivalent neighbourhood admits a GroundingCertificate. |
lhs: term_GC_1_lhsrhs: term_GC_1_rhsforAll: term_GC_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
GR_8 | Identity | Session composition validity: compose(S_A, S_B) is valid at Q_k iff all pinned-site intersections agree at every tower level Q_0 through Q_k. |
lhs: term_GR_8_lhsrhs: term_GR_8_rhsforAll: term_GR_8_forAllverificationDomain: AlgebraicuniversallyValid: falsevalidityKind: ParametricLowervalidKMin: 0
|
GR_9 | Identity | ContextLease disjointness: two distinct leases on the same SharedContext have non-overlapping site sets. |
lhs: term_GR_9_lhsrhs: term_GR_9_rhsforAll: term_GR_9_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
GR_10 | Identity | ExecutionPolicy confluence: different execution policies on the same pending query set produce the same final resolved state (Church-Rosser for session resolution). |
lhs: term_GR_10_lhsrhs: term_GR_10_rhsforAll: term_GR_10_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MC_1 | Identity | Lease partition conserves total budget: the sum of freeRank over all leases equals the SharedContext freeRank. |
lhs: term_MC_1_lhsrhs: term_MC_1_rhsforAll: term_MC_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MC_2 | Identity | Per-lease binding monotonicity: within a leased sub-domain, freeRank decreases monotonically (SR_1 restricted to lease). |
lhs: term_MC_2_lhsrhs: term_MC_2_rhsforAll: term_MC_2_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MC_3 | Identity | General composition freeRank via inclusion-exclusion. |
lhs: term_MC_3_lhsrhs: term_MC_3_rhsforAll: term_MC_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MC_4 | Identity | Disjoint-lease composition is additive: the intersection term vanishes when leases are site-disjoint (SR_9). |
lhs: term_MC_4_lhsrhs: term_MC_4_rhsforAll: term_MC_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MC_5 | Identity | Policy-invariant final binding set: different execution policies produce identical SiteBinding records. |
lhs: term_MC_5_lhsrhs: term_MC_5_rhsforAll: term_MC_5_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MC_6 | Identity | Full lease coverage implies composed saturation: k sessions on disjoint covering leases, each locally converged, produce a GroundedContext via composition. |
lhs: term_MC_6_lhsrhs: term_MC_6_rhsforAll: term_MC_6_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MC_7 | Identity | Distributed O(1) resolution: a query against a composed GroundedContext resolves in zero steps. |
lhs: term_MC_7_lhsrhs: term_MC_7_rhsforAll: term_MC_7_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
MC_8 | Identity | Parallelism bound: per-session resolution work is bounded by lease size, not by total site count n. |
lhs: term_MC_8_lhsrhs: term_MC_8_rhsforAll: term_MC_8_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
WC_1 | Identity | Witt coordinate identification: the bit coordinates (x_0, …, x_[n−1]) of x ∈ Z/(2ⁿ)Z are exactly its Witt coordinates under the canonical isomorphism W_n(F_2) ≅ Z/(2ⁿ)Z. |
lhs: term_WC_1_lhsrhs: term_WC_1_rhsforAll: term_WC_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
WC_2 | Identity | Witt sum correction equals carry: the k-th Witt addition polynomial correction term S_k − x_k − y_k (mod 2) is exactly the carry c_k(x,y). |
lhs: term_WC_2_lhsrhs: term_WC_2_rhsforAll: term_WC_2_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
WC_3 | Identity | Carry recurrence is the Witt polynomial recurrence: CA_2 implements the ghost equation for S_[k+1] at p=2. |
lhs: term_WC_3_lhsrhs: term_WC_3_rhsforAll: term_WC_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
WC_4 | Identity | The δ-correction at level k equals the single-level carry c_[k+1](x,y). Each application of δ divides by 2, consuming one unit of 2-adic valuation. |
lhs: term_WC_4_lhsrhs: term_WC_4_rhsforAll: term_WC_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
WC_5 | Identity | LiftObstruction is equivalent to δ-nonvanishing: a nontrivial LiftObstruction at Q_[k+1] means δ_k ≠ 0 for some element pair. |
lhs: term_WC_5_lhsrhs: term_WC_5_rhsforAll: term_WC_5_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
WC_6 | Identity | Metric discrepancy equals Witt defect: d_Δ(x,y) > 0 iff the ghost map correction (carry) is nonzero. |
lhs: term_WC_6_lhsrhs: term_WC_6_rhsforAll: term_WC_6_forAllverificationDomain: AnalyticaluniversallyValid: truevalidityKind: Universal
|
WC_7 | Identity | D_1 is the Witt truncation order relation: succ^[2ⁿ](x) = x is the group relation r^[2ⁿ] = 1 in the Witt-Burnside ring of D_[2∞]. |
lhs: term_WC_7_lhsrhs: term_WC_7_rhsforAll: term_WC_7_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
WC_8 | Identity | D_3 is the Witt-Burnside conjugation relation: neg(succ(neg(x))) = pred(x) is srs = r⁻¹ in the pro-dihedral group. |
lhs: term_WC_8_lhsrhs: term_WC_8_rhsforAll: term_WC_8_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
WC_9 | Identity | D_4 is a Witt-Burnside reflection composition: bnot(neg(x)) = pred(x) is the product of two reflections yielding inverse rotation. |
lhs: term_WC_9_lhsrhs: term_WC_9_rhsforAll: term_WC_9_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
WC_10 | Identity | The δ-ring Frobenius lift on W_n(F_2) is the identity map because F_2 is a perfect field of characteristic 2 (a² = a for a ∈ F_2). |
lhs: term_WC_10_lhsrhs: term_WC_10_rhsforAll: term_WC_10_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
WC_11 | Identity | The Verschiebung on W_n(F_2) is multiplication by 2: V(x) = 2x = add(x,x). This is a coordinate shift with zero Witt defect. |
lhs: term_WC_11_lhsrhs: term_WC_11_rhsforAll: term_WC_11_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
WC_12 | Identity | The δ-operator on W_n(F_2) is the squaring defect divided by 2: δ(x) = (x − mul(x,x)) / 2. Expressible entirely in existing op/ primitives (sub, mul, arithmetic right shift). |
lhs: term_WC_12_lhsrhs: term_WC_12_rhsforAll: term_WC_12_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
OA_1 | Identity | Ostrowski product formula at p=2: |2|_2 · |2|_∞ = 1. The 2-adic and Archimedean absolute values of 2 are multiplicative inverses. |
lhs: term_OA_1_lhsrhs: term_OA_1_rhsforAll: term_OA_1_forAllverificationDomain: ArithmeticValuationuniversallyValid: truevalidityKind: Universal
|
OA_2 | Identity | Crossing cost equals ln 2: the Archimedean image of one unit of 2-adic valuation, under the product formula, is ln 2 nats. |
lhs: term_OA_2_lhsrhs: term_OA_2_rhsforAll: term_OA_2_forAllverificationDomain: ArithmeticValuationuniversallyValid: truevalidityKind: Universal
|
OA_3 | Identity | QM_1 grounding: the Landauer cost β* = ln 2 is the crossing cost from OA_2, derived from the prime p=2 that structures the Witt tower. |
lhs: term_OA_3_lhsrhs: term_OA_3_rhsforAll: term_OA_3_forAllverificationDomain: ArithmeticValuationuniversallyValid: truevalidityKind: Universal
|
OA_4 | Identity | Born rule bridge (conditional on amplitude rationality): P(outcome k) = |α_k|_∞², where |·|_∞ is the Archimedean image of the 2-adic amplitude via the product formula. |
lhs: term_OA_4_lhsrhs: term_OA_4_rhsforAll: term_OA_4_forAllverificationDomain: ArithmeticValuationuniversallyValid: truevalidityKind: Universal
|
OA_5 | Identity | Entropy per δ-level equals the crossing cost: each application of the δ-operator (division by 2) costs ln 2 nats in the Archimedean completion, which is the per-bit Landauer cost. |
lhs: term_OA_5_lhsrhs: term_OA_5_rhsforAll: term_OA_5_forAllverificationDomain: ArithmeticValuationuniversallyValid: truevalidityKind: Universal
|
HT_1 | Identity | KanComplex(N(C)) — the constraint nerve satisfies the Kan extension condition for all horns of dimension ≤ d where d is the maximum simplex dimension of N(C). |
lhs: term_HT_1_lhsrhs: term_HT_1_rhsforAll: term_HT_1_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
HT_2 | Identity | Path components of nerve recover β₀: π₀(N(C)) ≅ Z^{β₀} counts the connected components of the constraint configuration. |
lhs: term_HT_2_lhsrhs: term_HT_2_rhsforAll: term_HT_2_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
HT_3 | Identity | MN_6 monodromy is abelianisation of full π₁: the fundamental group π₁(N(C)) surjects onto the HolonomyGroup D_{2^n} via abelianisation. |
lhs: term_HT_3_lhsrhs: term_HT_3_rhsforAll: term_HT_3_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
HT_4 | Identity | Higher homotopy groups vanish above nerve dimension: π_k(N(C)) = 0 for all k > dim(N(C)), because the nerve is a finite CW-complex. |
lhs: term_HT_4_lhsrhs: term_HT_4_rhsforAll: term_HT_4_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
HT_5 | Identity | 1-truncation determines flat/twisted classification: τ_{≤1}(N(C)) captures the holonomy action that distinguishes FlatType from TwistedType. |
lhs: term_HT_5_lhsrhs: term_HT_5_rhsforAll: term_HT_5_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
HT_6 | Identity | Trivial k-invariants beyond depth d imply spectral collapse: if κ_k is trivial for all k > d then the spectral sequence collapses at E_{d+2}. |
lhs: term_HT_6_lhsrhs: term_HT_6_rhsforAll: term_HT_6_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
HT_7 | Identity | Non-trivial Whitehead product implies lift obstruction: [α, β] ≠ 0 in π_{p+q−1} implies a non-trivial LiftObstruction that Betti numbers alone cannot detect. |
lhs: term_HT_7_lhsrhs: term_HT_7_rhsforAll: term_HT_7_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
HT_8 | Identity | Hurewicz isomorphism for first non-vanishing group: π_k(N(C)) ⊗ Z ≅ H_k(N(C); Z) for the smallest k with π_k ≠ 0, linking homotopy invariants to homology. |
lhs: term_HT_8_lhsrhs: term_HT_8_rhsforAll: term_HT_8_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
psi_7 | Identity | ψ_7: KanComplex → PostnikovTower — compute the Postnikov truncations τ_{≤k} for k = 0, 1, …, dim(N(C)). |
lhs: term_psi_7_lhsrhs: term_psi_7_rhsforAll: term_psi_7_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
psi_8 | Identity | ψ_8: PostnikovTower → HomotopyGroups — extract the homotopy groups π_k from each truncation stage. |
lhs: term_psi_8_lhsrhs: term_psi_8_rhsforAll: term_psi_8_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
psi_9 | Identity | ψ_9: HomotopyGroups → KInvariants — compute the k-invariants κ_k classifying the Postnikov tower. |
lhs: term_psi_9_lhsrhs: term_psi_9_rhsforAll: term_psi_9_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
HP_1 | Identity | Pipeline composition: nerve construction + Kan promotion = ψ_7 ∘ ψ_1. |
lhs: term_HP_1_lhsrhs: term_HP_1_rhsforAll: term_HP_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
HP_2 | Identity | Homotopy extraction agrees with homology on k-skeleton. |
lhs: term_HP_2_lhsrhs: term_HP_2_rhsforAll: term_HP_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
HP_3 | Identity | k-invariant computation detects QLS_4 convergence. |
lhs: term_HP_3_lhsrhs: term_HP_3_rhsforAll: term_HP_3_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
HP_4 | Identity | Complexity bound for homotopy type computation. |
lhs: term_HP_4_lhsrhs: term_HP_4_rhsforAll: term_HP_4_forAllverificationDomain: AnalyticaluniversallyValid: truevalidityKind: Universal
|
MD_1 | Identity | Moduli space dimension equals basis size of any contained type. |
lhs: term_MD_1_lhsrhs: term_MD_1_rhsforAll: term_MD_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MD_2 | Identity | Zeroth deformation cohomology = automorphism group intersected with dihedral group. |
lhs: term_MD_2_lhsrhs: term_MD_2_rhsforAll: term_MD_2_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MD_3 | Identity | First deformation cohomology = tangent space to the moduli space at T. |
lhs: term_MD_3_lhsrhs: term_MD_3_rhsforAll: term_MD_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MD_4 | Identity | Second deformation cohomology = LiftObstruction space. |
lhs: term_MD_4_lhsrhs: term_MD_4_rhsforAll: term_MD_4_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
MD_5 | Identity | FlatType stratum has codimension zero in the moduli space. |
lhs: term_MD_5_lhsrhs: term_MD_5_rhsforAll: term_MD_5_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
MD_6 | Identity | TwistedType stratum has codimension at least 1. |
lhs: term_MD_6_lhsrhs: term_MD_6_rhsforAll: term_MD_6_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
MD_7 | Identity | VersalDeformation existence is guaranteed when the obstruction space H² vanishes. |
lhs: term_MD_7_lhsrhs: term_MD_7_rhsforAll: term_MD_7_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MD_8 | Identity | A deformation family preserves completeness iff H²(Def(T_t)) = 0 along the entire path. |
lhs: term_MD_8_lhsrhs: term_MD_8_rhsforAll: term_MD_8_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
MD_9 | Identity | The site of a ModuliTowerMap at T has dimension 1 when the obstruction is trivial. |
lhs: term_MD_9_lhsrhs: term_MD_9_rhsforAll: term_MD_9_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
MD_10 | Identity | The site of a ModuliTowerMap at T is empty iff T is a TwistedType at every level. |
lhs: term_MD_10_lhsrhs: term_MD_10_rhsforAll: term_MD_10_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
MR_1 | Identity | ModuliResolver boundary agrees with MorphospaceBoundary. |
lhs: term_MR_1_lhsrhs: term_MR_1_rhsforAll: term_MR_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MR_2 | Identity | StratificationRecord covers every CompleteType in exactly one stratum. |
lhs: term_MR_2_lhsrhs: term_MR_2_rhsforAll: term_MR_2_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
MR_3 | Identity | ModuliResolver complexity bound. |
lhs: term_MR_3_lhsrhs: term_MR_3_rhsforAll: term_MR_3_forAllverificationDomain: AnalyticaluniversallyValid: truevalidityKind: Universal
|
MR_4 | Identity | Achievable signatures correspond to membership in some HolonomyStratum. |
lhs: term_MR_4_lhsrhs: term_MR_4_rhsforAll: term_MR_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
CY_1 | Identity | Carry generates at site k iff and(x_k, y_k) = 1. Extends CA_1 (addition decomposition) and WC_2 (Witt sum correction). |
lhs: term_CY_1_lhsrhs: term_CY_1_rhsforAll: term_CY_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
CY_2 | Identity | Carry propagates at site k iff xor(x_k, y_k) = 1 and c_k = 1. Extends CA_2 (carry recurrence) and WC_3 (Witt polynomial recurrence). |
lhs: term_CY_2_lhsrhs: term_CY_2_rhsforAll: term_CY_2_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
CY_3 | Identity | Carry kills at site k iff and(x_k, y_k) = 0 and xor(x_k, y_k) = 0. Complement of CY_1 and CY_2. |
lhs: term_CY_3_lhsrhs: term_CY_3_rhsforAll: term_CY_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
CY_4 | Identity | d_Δ(x,y) = |carryCount(x+y) − hammingDistance(x,y)|. The metric incompatibility IS the discrepancy between carry count and Hamming distance. Strengthens WC_6. |
lhs: term_CY_4_lhsrhs: term_CY_4_rhsforAll: term_CY_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
CY_5 | Identity | Optimal encoding theorem: the encoding that minimizes Σ d_Δ over observed pairs is the one where the carry chain’s significance hierarchy matches the domain’s dependency structure. |
lhs: term_CY_5_lhsrhs: term_CY_5_rhsforAll: term_CY_5_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
CY_6 | Identity | Site ordering theorem: d_Δ is minimized when high-significance sites (upstream in the carry chain) encode the most structurally informative observables. |
lhs: term_CY_6_lhsrhs: term_CY_6_rhsforAll: term_CY_6_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
CY_7 | Identity | Carry lookahead: the carry chain for n sites is computable in O(log n) using prefix computation on generate/propagate pairs. |
lhs: term_CY_7_lhsrhs: term_CY_7_rhsforAll: term_CY_7_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
BM_1 | Identity | σ(C) = (n − freeRank(C)) / n. The saturation metric is the complement of free site ratio. Derives from SC_2. |
lhs: term_BM_1_lhsrhs: term_BM_1_rhsforAll: term_BM_1_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
BM_2 | Identity | χ = Σ(−1)^k β_k. The Euler characteristic of the constraint nerve. Derives from IT_2. |
lhs: term_BM_2_lhsrhs: term_BM_2_rhsforAll: term_BM_2_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
BM_3 | Identity | Index theorem: Σκ_k − χ = S_residual / ln 2. Links all six metrics. Derives from IT_7a. |
lhs: term_BM_3_lhsrhs: term_BM_3_rhsforAll: term_BM_3_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
BM_4 | Identity | J_k = 0 for pinned sites. The Jacobian vanishes on resolved sites. |
lhs: term_BM_4_lhsrhs: term_BM_4_rhsforAll: term_BM_4_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
BM_5 | Identity | d_Δ > 0 iff carry ≠ 0. The metric discrepancy equals the Witt defect. Derives from WC_6. |
lhs: term_BM_5_lhsrhs: term_BM_5_rhsforAll: term_BM_5_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
BM_6 | Identity | Metric composition tower: d_Δ → {σ, J_k} → β_k → χ → r. Each metric derives from previous ones. |
lhs: term_BM_6_lhsrhs: term_BM_6_rhsforAll: term_BM_6_forAllverificationDomain: IndexTheoreticuniversallyValid: truevalidityKind: Universal
|
GL_1 | Identity | σ = lower adjoint evaluated at current type. The saturation metric is the lower adjoint of the Galois connection. Derives from SC_2. |
lhs: term_GL_1_lhsrhs: term_GL_1_rhsforAll: term_GL_1_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
GL_2 | Identity | r = complement of upper adjoint image. The residual freedom is what the type closure does not reach. |
lhs: term_GL_2_lhsrhs: term_GL_2_rhsforAll: term_GL_2_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
GL_3 | Identity | CompleteType = fixpoint of Galois connection, σ=1, r=0. Derives from IT_7d. |
lhs: term_GL_3_lhsrhs: term_GL_3_rhsforAll: term_GL_3_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
GL_4 | Identity | Type refinement = ascending in type lattice = descending in site freedom. The Galois connection reverses order. |
lhs: term_GL_4_lhsrhs: term_GL_4_rhsforAll: term_GL_4_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
NV_1 | Identity | nerve(C₁ ∪ C₂) = nerve(C₁) ∪ nerve(C₂) for disjoint constraint domains. |
lhs: term_NV_1_lhsrhs: term_NV_1_rhsforAll: term_NV_1_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
NV_2 | Identity | Mayer–Vietoris: β_k(C₁ ∪ C₂) computable from parts and intersection. |
lhs: term_NV_2_lhsrhs: term_NV_2_rhsforAll: term_NV_2_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
NV_3 | Identity | Single constraint addition: Δβ_k ∈ {−1, 0, +1} per dimension. |
lhs: term_NV_3_lhsrhs: term_NV_3_rhsforAll: term_NV_3_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
NV_4 | Identity | Constraint accumulation monotonicity: β_k non-increasing under SR_1. Derives from SR_1. |
lhs: term_NV_4_lhsrhs: term_NV_4_rhsforAll: term_NV_4_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
SD_1 | Identity | ScalarType grounding: quantize(value, range, bits) produces ring element where d_R reflects value proximity. |
lhs: term_SD_1_lhsrhs: term_SD_1_rhsforAll: term_SD_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
SD_2 | Identity | SymbolType grounding: argmin_{encoding} Σ d_Δ over observed pairs (CY_5). |
lhs: term_SD_2_lhsrhs: term_SD_2_rhsforAll: term_SD_2_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
SD_3 | Identity | SequenceType = free monoid on element type with backbone constraint. |
lhs: term_SD_3_lhsrhs: term_SD_3_rhsforAll: term_SD_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
SD_4 | Identity | TupleType site count = Σ field site counts, site ordering follows CY_6. |
lhs: term_SD_4_lhsrhs: term_SD_4_rhsforAll: term_SD_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
SD_5 | Identity | GraphType constraint nerve = graph nerve, β_k equality. |
lhs: term_SD_5_lhsrhs: term_SD_5_rhsforAll: term_SD_5_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
SD_6 | Identity | SetType d_Δ invariant under element permutation, D_{2n} symmetry. |
lhs: term_SD_6_lhsrhs: term_SD_6_rhsforAll: term_SD_6_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
SD_7 | Identity | TreeType β_1=0, β_0=1 topological constraints. |
lhs: term_SD_7_lhsrhs: term_SD_7_rhsforAll: term_SD_7_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
SD_8 | Identity | TableType = SequenceType(TupleType(S)), functorial decomposition. |
lhs: term_SD_8_lhsrhs: term_SD_8_rhsforAll: term_SD_8_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
DD_1 | Identity | Dispatch determinism: same query and same registry always yield the same resolver. |
lhs: term_DD_1_lhsrhs: term_DD_1_rhsforAll: term_DD_1_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
DD_2 | Identity | Dispatch coverage: every query in the registry domain has a matching resolver. |
lhs: term_DD_2_lhsrhs: term_DD_2_rhsforAll: term_DD_2_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PI_1 | Identity | Inference idempotence: ι(ι(s,C),C) = ι(s,C) on GroundedContext. |
lhs: term_PI_1_lhsrhs: term_PI_1_rhsforAll: term_PI_1_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PI_2 | Identity | Inference soundness: ι(s,C) resolves to a type consistent with C. |
lhs: term_PI_2_lhsrhs: term_PI_2_rhsforAll: term_PI_2_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PI_3 | Identity | Inference composition: ι = P ∘ Π ∘ G (references phi_4). |
lhs: term_PI_3_lhsrhs: term_PI_3_rhsforAll: term_PI_3_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PI_4 | Identity | Inference complexity: O(n) worst case, O(1) on CompleteType. |
lhs: term_PI_4_lhsrhs: term_PI_4_rhsforAll: term_PI_4_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PI_5 | Identity | Inference coherence: roundTrip(P(Π(G(s)))) = s. |
lhs: term_PI_5_lhsrhs: term_PI_5_rhsforAll: term_PI_5_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PA_1 | Identity | Accumulation permutation invariance: accumulating bindings in any order yields the same saturated context (derives from SR_10). |
lhs: term_PA_1_lhsrhs: term_PA_1_rhsforAll: term_PA_1_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PA_2 | Identity | Accumulation monotonicity: α(b,C) ⊇ C (the context only grows, never loses bindings). Derives from SR_1. |
lhs: term_PA_2_lhsrhs: term_PA_2_rhsforAll: term_PA_2_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PA_3 | Identity | Accumulation soundness: α(b,C) preserves all previously satisfied constraints. Derives from SR_2. |
lhs: term_PA_3_lhsrhs: term_PA_3_rhsforAll: term_PA_3_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PA_4 | Identity | Accumulation base preservation: α does not modify previously pinned sites. |
lhs: term_PA_4_lhsrhs: term_PA_4_rhsforAll: term_PA_4_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PA_5 | Identity | Accumulation identity: α(∅, C) = C. |
lhs: term_PA_5_lhsrhs: term_PA_5_rhsforAll: term_PA_5_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PL_1 | Identity | Lease disjointness: partitioned leases have pairwise disjoint site sets (derives from SR_9). |
lhs: term_PL_1_lhsrhs: term_PL_1_rhsforAll: term_PL_1_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PL_2 | Identity | Lease conservation: union of all leases equals the original shared context (derives from MC_1). |
lhs: term_PL_2_lhsrhs: term_PL_2_rhsforAll: term_PL_2_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PL_3 | Identity | Lease coverage: every site in the shared context appears in exactly one lease (derives from MC_6). |
lhs: term_PL_3_lhsrhs: term_PL_3_rhsforAll: term_PL_3_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PK_1 | Identity | Composition validity: κ(S₁,S₂) is a valid session if S₁,S₂ have disjoint leases (derives from SR_8). |
lhs: term_PK_1_lhsrhs: term_PK_1_rhsforAll: term_PK_1_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PK_2 | Identity | Distributed resolution: resolving in κ(S₁,S₂) equals resolving in S₁ or S₂ independently (derives from MC_7). |
lhs: term_PK_2_lhsrhs: term_PK_2_rhsforAll: term_PK_2_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PP_1 | Identity | Pipeline unification: κ(λₖ(α*(ι(s,·))),C) = resolve(s,C). The full composed pipeline equals the top-level resolution function. |
lhs: term_PP_1_lhsrhs: term_PP_1_rhsforAll: term_PP_1_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
PE_1 | Identity | Stage 0 initializes state vector to 1. |
lhs: term_PE_1_lhsrhs: term_PE_1_rhsforAll: term_PE_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PE_2 | Identity | Stage 1 dispatches resolver (δ selects). |
lhs: term_PE_2_lhsrhs: term_PE_2_rhsforAll: term_PE_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PE_3 | Identity | Stage 2 produces valid ring address (G grounds). |
lhs: term_PE_3_lhsrhs: term_PE_3_rhsforAll: term_PE_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PE_4 | Identity | Stage 3 resolves constraints (Π terminates). |
lhs: term_PE_4_lhsrhs: term_PE_4_rhsforAll: term_PE_4_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PE_5 | Identity | Stage 4 accumulates without contradiction (α consistent). |
lhs: term_PE_5_lhsrhs: term_PE_5_rhsforAll: term_PE_5_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PE_6 | Identity | Stage 5 extracts coherent output (P projects). |
lhs: term_PE_6_lhsrhs: term_PE_6_rhsforAll: term_PE_6_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PE_7 | Identity | Full pipeline is the composition PE_6 ∘ … ∘ PE_1. |
lhs: term_PE_7_lhsrhs: term_PE_7_rhsforAll: term_PE_7_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PM_1 | Identity | Phase rotation Ω^k at stage k. |
lhs: term_PM_1_lhsrhs: term_PM_1_rhsforAll: term_PM_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PM_2 | Identity | Phase gate checks Ω^k at boundary. |
lhs: term_PM_2_lhsrhs: term_PM_2_rhsforAll: term_PM_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PM_3 | Identity | Gate failure triggers complex conjugate rollback. |
lhs: term_PM_3_lhsrhs: term_PM_3_rhsforAll: term_PM_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PM_4 | Identity | Rollback is involutory: (z̄)̄ = z. |
lhs: term_PM_4_lhsrhs: term_PM_4_rhsforAll: term_PM_4_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PM_5 | Identity | Epoch boundary preserves saturation. |
lhs: term_PM_5_lhsrhs: term_PM_5_rhsforAll: term_PM_5_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PM_6 | Identity | Service window provides base context. |
lhs: term_PM_6_lhsrhs: term_PM_6_rhsforAll: term_PM_6_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PM_7 | Identity | Machine is deterministic given initial state. |
lhs: term_PM_7_lhsrhs: term_PM_7_rhsforAll: term_PM_7_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
ER_1 | Identity | Stage transition requires guard satisfaction. |
lhs: term_ER_1_lhsrhs: term_ER_1_rhsforAll: term_ER_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
ER_2 | Identity | Effect application is atomic. |
lhs: term_ER_2_lhsrhs: term_ER_2_rhsforAll: term_ER_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
ER_3 | Identity | Guard evaluation is side-effect-free. |
lhs: term_ER_3_lhsrhs: term_ER_3_rhsforAll: term_ER_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
ER_4 | Identity | Effect composition is order-independent within a stage. |
lhs: term_ER_4_lhsrhs: term_ER_4_rhsforAll: term_ER_4_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
EA_1 | Identity | Epoch boundary resets free sites. |
lhs: term_EA_1_lhsrhs: term_EA_1_rhsforAll: term_EA_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
EA_2 | Identity | Grounding carries across epochs. |
lhs: term_EA_2_lhsrhs: term_EA_2_rhsforAll: term_EA_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
EA_3 | Identity | Service window bounds context size. |
lhs: term_EA_3_lhsrhs: term_EA_3_rhsforAll: term_EA_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
EA_4 | Identity | Epoch admits one datum or one refinement pass. |
lhs: term_EA_4_lhsrhs: term_EA_4_rhsforAll: term_EA_4_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
OE_1 | Identity | Adjacent stages with compatible guards may fuse. |
lhs: term_OE_1_lhsrhs: term_OE_1_rhsforAll: term_OE_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
OE_2 | Identity | Independent effects commute. |
lhs: term_OE_2_lhsrhs: term_OE_2_rhsforAll: term_OE_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
OE_3 | Identity | Disjoint leases parallelize. |
lhs: term_OE_3_lhsrhs: term_OE_3_rhsforAll: term_OE_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
OE_4a | Identity | Stage fusion preserves semantics. |
lhs: term_OE_4a_lhsrhs: term_OE_4a_rhsforAll: term_OE_4a_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
OE_4b | Identity | Effect commutation preserves outcome. |
lhs: term_OE_4b_lhsrhs: term_OE_4b_rhsforAll: term_OE_4b_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
OE_4c | Identity | Lease parallelism preserves coverage. |
lhs: term_OE_4c_lhsrhs: term_OE_4c_rhsforAll: term_OE_4c_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
CS_1 | Identity | Each stage has bounded cost. |
lhs: term_CS_1_lhsrhs: term_CS_1_rhsforAll: term_CS_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
CS_2 | Identity | Pipeline cost = sum of stage costs. |
lhs: term_CS_2_lhsrhs: term_CS_2_rhsforAll: term_CS_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
CS_3 | Identity | Rollback cost is at most forward cost. |
lhs: term_CS_3_lhsrhs: term_CS_3_rhsforAll: term_CS_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
CS_4 | Identity | Preflight cost is O(1). |
lhs: term_CS_4_lhsrhs: term_CS_4_rhsforAll: term_CS_4_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
CS_5 | Identity | Total reduction cost bounded by n × stage_max_cost. |
lhs: term_CS_5_lhsrhs: term_CS_5_rhsforAll: term_CS_5_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
CS_6 | Identity | Budget solvency rejection: a CompileUnit whose declared thermodynamicBudget is strictly less than the Landauer minimum (bitsWidth(Q_k) × ln 2) is rejected at the BudgetSolvencyCheck preflight. |
lhs: term_CS_6_lhsrhs: term_CS_6_rhsforAll: term_CS_6_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
CS_7 | Identity | Unit address identity: the unitAddress of a CompileUnit is the u:Element computed by hashing the canonical byte serialization of the root term’s transitive closure. |
lhs: term_CS_7_lhsrhs: term_CS_7_rhsforAll: term_CS_7_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
FA_1 | Identity | Every pending query eventually reaches a stage gate. |
lhs: term_FA_1_lhsrhs: term_FA_1_rhsforAll: term_FA_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
FA_2 | Identity | No starvation under bounded epoch admission. |
lhs: term_FA_2_lhsrhs: term_FA_2_rhsforAll: term_FA_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
FA_3 | Identity | Fair lease allocation under disjoint composition. |
lhs: term_FA_3_lhsrhs: term_FA_3_rhsforAll: term_FA_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
SW_1 | Identity | Service window bounds context memory. |
lhs: term_SW_1_lhsrhs: term_SW_1_rhsforAll: term_SW_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
SW_2 | Identity | Window slide preserves saturation invariant. |
lhs: term_SW_2_lhsrhs: term_SW_2_rhsforAll: term_SW_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
SW_3 | Identity | Evicted epochs release lease resources. |
lhs: term_SW_3_lhsrhs: term_SW_3_rhsforAll: term_SW_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
SW_4 | Identity | Window size ≥ 1 (non-empty). |
lhs: term_SW_4_lhsrhs: term_SW_4_rhsforAll: term_SW_4_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
LS_1 | Identity | Suspended lease preserves pinned state. |
lhs: term_LS_1_lhsrhs: term_LS_1_rhsforAll: term_LS_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
LS_2 | Identity | Lease expiry triggers resource release. |
lhs: term_LS_2_lhsrhs: term_LS_2_rhsforAll: term_LS_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
LS_3 | Identity | Checkpoint restore is idempotent. |
lhs: term_LS_3_lhsrhs: term_LS_3_rhsforAll: term_LS_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
LS_4 | Identity | Active → Suspended → Active round-trip preserves state. |
lhs: term_LS_4_lhsrhs: term_LS_4_rhsforAll: term_LS_4_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
TJ_1 | Identity | AllOrNothing transaction rolls back on any failure. |
lhs: term_TJ_1_lhsrhs: term_TJ_1_rhsforAll: term_TJ_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
TJ_2 | Identity | BestEffort transaction commits partial results. |
lhs: term_TJ_2_lhsrhs: term_TJ_2_rhsforAll: term_TJ_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
TJ_3 | Identity | Transaction atomicity within a single epoch. |
lhs: term_TJ_3_lhsrhs: term_TJ_3_rhsforAll: term_TJ_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
AP_1 | Identity | Partial saturation is monotonically non-decreasing across stages. |
lhs: term_AP_1_lhsrhs: term_AP_1_rhsforAll: term_AP_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
AP_2 | Identity | Approximation quality improves with additional epochs. |
lhs: term_AP_2_lhsrhs: term_AP_2_rhsforAll: term_AP_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
AP_3 | Identity | Deferred queries are eventually processed or explicitly dropped. |
lhs: term_AP_3_lhsrhs: term_AP_3_rhsforAll: term_AP_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
EC_1 | Identity | Ω⁶ = −1: reduction converges in 6 stages (phase half-turn). |
lhs: term_EC_1_lhsrhs: term_EC_1_rhsforAll: term_EC_1_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
EC_2 | Identity | Complex conjugate rollback involutory: (z̄)̄ = z. |
lhs: term_EC_2_lhsrhs: term_EC_2_rhsforAll: term_EC_2_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
EC_3 | Identity | Pairwise convergence: commutator converges to identity. |
lhs: term_EC_3_lhsrhs: term_EC_3_rhsforAll: term_EC_3_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
EC_4 | Identity | Triple convergence: associator converges to zero. |
lhs: term_EC_4_lhsrhs: term_EC_4_rhsforAll: term_EC_4_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
EC_4a | Identity | Associator monotonicity: associator norm non-increasing. |
lhs: term_EC_4a_lhsrhs: term_EC_4a_rhsforAll: term_EC_4a_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
EC_4b | Identity | Associator finiteness: reaches 0 in bounded steps. |
lhs: term_EC_4b_lhsrhs: term_EC_4b_rhsforAll: term_EC_4b_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
EC_4c | Identity | Associator vanishing implies associativity on resolved site space. |
lhs: term_EC_4c_lhsrhs: term_EC_4c_rhsforAll: term_EC_4c_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
EC_5 | Identity | Adams termination: no convergence level beyond L3_Self. |
lhs: term_EC_5_lhsrhs: term_EC_5_rhsforAll: term_EC_5_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
DA_1 | Identity | Cayley-Dickson R→C: adjoin i with i²=−1, conjugation (a+bi)* = a−bi. |
lhs: term_DA_1_lhsrhs: term_DA_1_rhsforAll: term_DA_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
DA_2 | Identity | Cayley-Dickson C→H: adjoin j with j²=−1, ij=k, ji=−k, k²=−1. |
lhs: term_DA_2_lhsrhs: term_DA_2_rhsforAll: term_DA_2_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
DA_3 | Identity | Cayley-Dickson H→O: adjoin l, Fano plane products, associativity fails. |
lhs: term_DA_3_lhsrhs: term_DA_3_rhsforAll: term_DA_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
DA_4 | Identity | Adams theorem: no normed division algebra of dimension 16 exists. |
lhs: term_DA_4_lhsrhs: term_DA_4_rhsforAll: term_DA_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
DA_5 | Identity | Convergence level k lives in k-th division algebra: L0 in R, L1 in C, L2 in H, L3 in O. |
lhs: term_DA_5_lhsrhs: term_DA_5_rhsforAll: term_DA_5_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
DA_6 | Identity | Commutator vanishes iff algebra at that level is commutative. |
lhs: term_DA_6_lhsrhs: term_DA_6_rhsforAll: term_DA_6_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
DA_7 | Identity | Associator vanishes iff algebra at that level is associative. |
lhs: term_DA_7_lhsrhs: term_DA_7_rhsforAll: term_DA_7_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
IN_1 | Identity | d_Δ as interaction cost between entities. |
lhs: term_IN_1_lhsrhs: term_IN_1_rhsforAll: term_IN_1_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
IN_2 | Identity | Disjoint leases imply commutator = 0. |
lhs: term_IN_2_lhsrhs: term_IN_2_rhsforAll: term_IN_2_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
IN_3 | Identity | Shared sites imply commutator > 0. |
lhs: term_IN_3_lhsrhs: term_IN_3_rhsforAll: term_IN_3_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
IN_4 | Identity | SR_8 implies negotiation converges (commutator decreases monotonically). |
lhs: term_IN_4_lhsrhs: term_IN_4_rhsforAll: term_IN_4_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
IN_5 | Identity | Convergent negotiation selects U(1) ⊂ SU(2). |
lhs: term_IN_5_lhsrhs: term_IN_5_rhsforAll: term_IN_5_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
IN_6 | Identity | Outcome space of pairwise negotiation is S². |
lhs: term_IN_6_lhsrhs: term_IN_6_rhsforAll: term_IN_6_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
IN_7 | Identity | Mutual modeling selects H ⊂ O. |
lhs: term_IN_7_lhsrhs: term_IN_7_rhsforAll: term_IN_7_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
IN_8 | Identity | Interaction nerve β_k bounds coupling complexity at dimension k. |
lhs: term_IN_8_lhsrhs: term_IN_8_rhsforAll: term_IN_8_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
IN_9 | Identity | β_2(nerve) × max_disagreement bounds associator norm. |
lhs: term_IN_9_lhsrhs: term_IN_9_rhsforAll: term_IN_9_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
AS_1 | Identity | δ-ι-κ non-associativity: δ reads registry written by κ. |
lhs: term_AS_1_lhsrhs: term_AS_1_rhsforAll: term_AS_1_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
AS_2 | Identity | ι-α-λ non-associativity: λ reads lease state written by α. |
lhs: term_AS_2_lhsrhs: term_AS_2_rhsforAll: term_AS_2_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
AS_3 | Identity | λ-κ-δ non-associativity: δ reads state written by κ. |
lhs: term_AS_3_lhsrhs: term_AS_3_rhsforAll: term_AS_3_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
AS_4 | Identity | Root cause: non-associativity from read-write interleaving through mediating entity. |
lhs: term_AS_4_lhsrhs: term_AS_4_rhsforAll: term_AS_4_forAllverificationDomain: ComposedAlgebraicuniversallyValid: truevalidityKind: Universal
|
MO_1 | Identity | Unit law: I ⊗ A ≅ A ≅ A ⊗ I. |
lhs: term_MO_1_lhsrhs: term_MO_1_rhsforAll: term_MO_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MO_2 | Identity | Associativity: (A⊗B)⊗C ≅ A⊗(B⊗C). |
lhs: term_MO_2_lhsrhs: term_MO_2_rhsforAll: term_MO_2_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MO_3 | Identity | Certificate composition: cert(A⊗B) contains cert(A) and cert(B). |
lhs: term_MO_3_lhsrhs: term_MO_3_rhsforAll: term_MO_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MO_4 | Identity | σ(A⊗B) ≥ max(σ(A), σ(B)): sequential composition does not lose saturation. |
lhs: term_MO_4_lhsrhs: term_MO_4_rhsforAll: term_MO_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
MO_5 | Identity | r(A⊗B) ≤ min(r(A), r(B)): residual can only shrink under sequential composition. |
lhs: term_MO_5_lhsrhs: term_MO_5_rhsforAll: term_MO_5_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
OP_1 | Identity | Site additivity: siteCount(F(G)) = F.sites + Σ_i G_i.sites. |
lhs: term_OP_1_lhsrhs: term_OP_1_rhsforAll: term_OP_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
OP_2 | Identity | Grounding distributivity: grounding(F(G(x))) = F.ground(G.ground(x)). |
lhs: term_OP_2_lhsrhs: term_OP_2_rhsforAll: term_OP_2_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
OP_3 | Identity | d_Δ decomposition: d_Δ(F(G)) decomposes into outer + inner d_Δ. |
lhs: term_OP_3_lhsrhs: term_OP_3_rhsforAll: term_OP_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
OP_4 | Identity | Table(Tuple(fields)): standard tabular data structure decomposition. |
lhs: term_OP_4_lhsrhs: term_OP_4_rhsforAll: term_OP_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
OP_5 | Identity | Tree(leaves): standard hierarchical data structure (AST, XML, JSON). |
lhs: term_OP_5_lhsrhs: term_OP_5_rhsforAll: term_OP_5_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
FX_1 | Identity | Pinning decrements free count by exactly 1. |
lhs: term_FX_1_lhsrhs: term_FX_1_rhsforAll: term_FX_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
FX_2 | Identity | Unbinding increments free count by exactly 1. |
lhs: term_FX_2_lhsrhs: term_FX_2_rhsforAll: term_FX_2_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
FX_3 | Identity | Phase effects preserve site budget. |
lhs: term_FX_3_lhsrhs: term_FX_3_rhsforAll: term_FX_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
FX_4 | Identity | Disjoint effects commute. |
lhs: term_FX_4_lhsrhs: term_FX_4_rhsforAll: term_FX_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
FX_5 | Identity | Composite free-count delta is additive. |
lhs: term_FX_5_lhsrhs: term_FX_5_rhsforAll: term_FX_5_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
FX_6 | Identity | Every ReversibleEffect has an inverse (PinningEffect⁻¹ = UnbindingEffect on same site, PhaseEffect⁻¹ = conjugate phase). |
lhs: term_FX_6_lhsrhs: term_FX_6_rhsforAll: term_FX_6_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
FX_7 | Identity | External effects must match their declared shape. |
lhs: term_FX_7_lhsrhs: term_FX_7_rhsforAll: term_FX_7_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PR_1 | Identity | Every predicate is total: evaluation terminates for all inputs. |
lhs: term_PR_1_lhsrhs: term_PR_1_rhsforAll: term_PR_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PR_2 | Identity | Every predicate is pure: evaluation does not modify state. |
lhs: term_PR_2_lhsrhs: term_PR_2_rhsforAll: term_PR_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PR_3 | Identity | Exhaustive + mutually exclusive dispatch is deterministic. |
lhs: term_PR_3_lhsrhs: term_PR_3_rhsforAll: term_PR_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PR_4 | Identity | Match evaluation is deterministic given exhaustive, ordered arms. |
lhs: term_PR_4_lhsrhs: term_PR_4_rhsforAll: term_PR_4_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PR_5 | Identity | Stage transition requires typed guard satisfaction. |
lhs: term_PR_5_lhsrhs: term_PR_5_rhsforAll: term_PR_5_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
CG_1 | Identity | Entry guard must be satisfied to enter a stage. |
lhs: term_CG_1_lhsrhs: term_CG_1_rhsforAll: term_CG_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
CG_2 | Identity | Exit guard must be satisfied, then the stage effect is applied. |
lhs: term_CG_2_lhsrhs: term_CG_2_rhsforAll: term_CG_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
DIS_1 | Identity | The root resolver dispatch table is exhaustive and mutually exclusive over all TypeDefinitions. |
lhs: term_DIS_1_lhsrhs: term_DIS_1_rhsforAll: term_DIS_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
DIS_2 | Identity | Resolver dispatch is deterministic for every type. |
lhs: term_DIS_2_lhsrhs: term_DIS_2_rhsforAll: term_DIS_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
PAR_1 | Identity | Disjoint parallel computations commute: A ⊗ B = B ⊗ A when site targets are disjoint. |
lhs: term_PAR_1_lhsrhs: term_PAR_1_rhsforAll: term_PAR_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
PAR_2 | Identity | Parallel free-count deltas are additive. |
lhs: term_PAR_2_lhsrhs: term_PAR_2_rhsforAll: term_PAR_2_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
PAR_3 | Identity | Partitioning is exhaustive: component cardinalities sum to total site budget. |
lhs: term_PAR_3_lhsrhs: term_PAR_3_rhsforAll: term_PAR_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
PAR_4 | Identity | All interleavings of disjoint parallel computations yield the same final context. |
lhs: term_PAR_4_lhsrhs: term_PAR_4_rhsforAll: term_PAR_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
PAR_5 | Identity | Parallel certificate is the conjunction of component certificates plus disjointness. |
lhs: term_PAR_5_lhsrhs: term_PAR_5_rhsforAll: term_PAR_5_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
HO_1 | Identity | A ComputationDatum’s ring value is the content hash of its certificate. |
lhs: term_HO_1_lhsrhs: term_HO_1_rhsforAll: term_HO_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
HO_2 | Identity | Application preserves certification. |
lhs: term_HO_2_lhsrhs: term_HO_2_rhsforAll: term_HO_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
HO_3 | Identity | Composition certification requires both components certified and type-compatible. |
lhs: term_HO_3_lhsrhs: term_HO_3_rhsforAll: term_HO_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
HO_4 | Identity | Fully saturated partial application equals direct application. |
lhs: term_HO_4_lhsrhs: term_HO_4_rhsforAll: term_HO_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
STR_1 | Identity | Every epoch terminates: the reduction within each epoch reaches convergence angle π. |
lhs: term_STR_1_lhsrhs: term_STR_1_rhsforAll: term_STR_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
STR_2 | Identity | Grounding preservation across epoch boundaries. |
lhs: term_STR_2_lhsrhs: term_STR_2_rhsforAll: term_STR_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
STR_3 | Identity | Every finite prefix computes in finite time. |
lhs: term_STR_3_lhsrhs: term_STR_3_rhsforAll: term_STR_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
STR_4 | Identity | The first epoch starts from the unfold seed context. |
lhs: term_STR_4_lhsrhs: term_STR_4_rhsforAll: term_STR_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
STR_5 | Identity | Each subsequent epoch starts from the previous boundary’s continuation context. |
lhs: term_STR_5_lhsrhs: term_STR_5_rhsforAll: term_STR_5_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
STR_6 | Identity | Lease expiry at an epoch boundary returns claimed sites to the next epoch’s linear budget. |
lhs: term_STR_6_lhsrhs: term_STR_6_rhsforAll: term_STR_6_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
FLR_1 | Identity | Every partial computation produces exactly one of Success or Failure. |
lhs: term_FLR_1_lhsrhs: term_FLR_1_rhsforAll: term_FLR_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
FLR_2 | Identity | A total computation always succeeds. |
lhs: term_FLR_2_lhsrhs: term_FLR_2_rhsforAll: term_FLR_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
FLR_3 | Identity | Sequential failure propagation: if A fails, B is not evaluated. |
lhs: term_FLR_3_lhsrhs: term_FLR_3_rhsforAll: term_FLR_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
FLR_4 | Identity | Parallel failure independence: one component’s failure does not prevent the other’s success. |
lhs: term_FLR_4_lhsrhs: term_FLR_4_rhsforAll: term_FLR_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
FLR_5 | Identity | Recovery produces a new ComputationResult. |
lhs: term_FLR_5_lhsrhs: term_FLR_5_rhsforAll: term_FLR_5_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
FLR_6 | Identity | The reduction’s existing rollback mechanism is a Recovery whose effect is the conjugate phase rotation. |
lhs: term_FLR_6_lhsrhs: term_FLR_6_rhsforAll: term_FLR_6_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
LN_1 | Identity | In a linear trace, every site is targeted exactly once. Total effect count equals site budget. |
lhs: term_LN_1_lhsrhs: term_LN_1_rhsforAll: term_LN_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
LN_2 | Identity | After a LinearEffect, the target site is pinned. |
lhs: term_LN_2_lhsrhs: term_LN_2_rhsforAll: term_LN_2_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
LN_3 | Identity | A consumed LinearSite cannot be targeted again. |
lhs: term_LN_3_lhsrhs: term_LN_3_rhsforAll: term_LN_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
LN_4 | Identity | Lease allocation decrements the linear budget by the lease cardinality. |
lhs: term_LN_4_lhsrhs: term_LN_4_rhsforAll: term_LN_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
LN_5 | Identity | Lease expiry returns claimed sites to the budget. |
lhs: term_LN_5_lhsrhs: term_LN_5_rhsforAll: term_LN_5_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
LN_6 | Identity | Every geodesic trace is a linear trace. |
lhs: term_LN_6_lhsrhs: term_LN_6_rhsforAll: term_LN_6_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
SB_1 | Identity | Subtyping is constraint superset: more constraints = more specific. |
lhs: term_SB_1_lhsrhs: term_SB_1_rhsforAll: term_SB_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
SB_2 | Identity | Subtype has fewer valid resolutions. |
lhs: term_SB_2_lhsrhs: term_SB_2_rhsforAll: term_SB_2_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
SB_3 | Identity | The constraint nerve of the supertype is a sub-complex of the subtype’s nerve. |
lhs: term_SB_3_lhsrhs: term_SB_3_rhsforAll: term_SB_3_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
SB_4 | Identity | Covariance preserves inclusion. |
lhs: term_SB_4_lhsrhs: term_SB_4_rhsforAll: term_SB_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
SB_5 | Identity | Contravariance reverses inclusion. |
lhs: term_SB_5_lhsrhs: term_SB_5_rhsforAll: term_SB_5_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
SB_6 | Identity | Lattice depth equals site budget. |
lhs: term_SB_6_lhsrhs: term_SB_6_rhsforAll: term_SB_6_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
BR_1 | Identity | Every recursive step strictly decreases the descent measure. |
lhs: term_BR_1_lhsrhs: term_BR_1_rhsforAll: term_BR_1_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
BR_2 | Identity | Recursion depth is bounded by the initial measure value. |
lhs: term_BR_2_lhsrhs: term_BR_2_rhsforAll: term_BR_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
BR_3 | Identity | Every bounded recursion terminates. |
lhs: term_BR_3_lhsrhs: term_BR_3_rhsforAll: term_BR_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
BR_4 | Identity | Structural recursion’s measure is the input type’s structural size. |
lhs: term_BR_4_lhsrhs: term_BR_4_rhsforAll: term_BR_4_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
BR_5 | Identity | The base predicate is satisfied exactly when the measure reaches zero. |
lhs: term_BR_5_lhsrhs: term_BR_5_rhsforAll: term_BR_5_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
RG_1 | Identity | The working set is determined by the constraint nerve and the stage’s site targets. |
lhs: term_RG_1_lhsrhs: term_RG_1_rhsforAll: term_RG_1_forAllverificationDomain: TopologicaluniversallyValid: truevalidityKind: Universal
|
RG_2 | Identity | All addresses within a region are within the region’s diameter under the chosen metric. |
lhs: term_RG_2_lhsrhs: term_RG_2_rhsforAll: term_RG_2_forAllverificationDomain: AnalyticaluniversallyValid: truevalidityKind: Universal
|
RG_3 | Identity | Total working set size is bounded by the addressable space at the quantum level. |
lhs: term_RG_3_lhsrhs: term_RG_3_rhsforAll: term_RG_3_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|
RG_4 | Identity | The resolver at stage k accesses only addresses within its working set. |
lhs: term_RG_4_lhsrhs: term_RG_4_rhsforAll: term_RG_4_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
IO_1 | Identity | Ingested data conforms to the source’s declared type. |
lhs: term_IO_1_lhsrhs: term_IO_1_rhsforAll: term_IO_1_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
IO_2 | Identity | Emitted data conforms to the sink’s declared type. |
lhs: term_IO_2_lhsrhs: term_IO_2_rhsforAll: term_IO_2_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
IO_3 | Identity | Every ingestion through a source produces a valid ring datum via grounding. |
lhs: term_IO_3_lhsrhs: term_IO_3_rhsforAll: term_IO_3_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
IO_4 | Identity | Every emission through a sink produces a valid surface symbol via projection. |
lhs: term_IO_4_lhsrhs: term_IO_4_rhsforAll: term_IO_4_forAllverificationDomain: PipelineuniversallyValid: truevalidityKind: Universal
|
IO_5 | Identity | Every boundary effect touches at least one site. |
lhs: term_IO_5_lhsrhs: term_IO_5_rhsforAll: term_IO_5_forAllverificationDomain: AlgebraicuniversallyValid: truevalidityKind: Universal
|