Encyclopedia Foundation Foundation Primitive Recognition Calculus Grow Signed Orbit Le Congr Of Balanced Choice Free

ARTICLE 1 claim 1 theorem

Foundation Primitive Recognition Calculus Grow Signed Orbit Le Congr Of Balanced Choice Free

When two paths through a recognition ledger are balanced, they order their successors identically, a fact that lets the framework compare choices without picking favorites.

The congruence of balanced orbits

A ledger, a discrete record of events, can be walked in many orders. In the Recognition Science framework, a signed orbit is one such walk: a sequence of recognition events, each marked as a gain or a loss. The framework's library, a machine-checked collection of formal theorems, asks when two walks are interchangeable for the purpose of comparing what comes next.

The answer is a congruence theorem. If two signed orbits are balanced, meaning they carry the same net weight of gains over losses, and two further orbits are likewise balanced, then the first pair orders its successors exactly as the second pair does. Formally, the theorem states that balanced replacement preserves the ordering relation: SignedOrbit.le a b holds if and only if SignedOrbit.le a' b' holds, given that a balances a' and b balances b'. The proof chains two one-sided lemmas, each showing that balancing on one side alone respects the order.

This matters because the framework's cost function, the unique function forced by five plain conditions, measures how expensive a recognition event is. Comparing orbits is how the framework decides which path a system takes. Without congruence, the comparison would depend on arbitrary representational choices: which balanced rewrite you happened to apply. The theorem removes that arbitrariness. It guarantees that the order of orbits is a property of the ledger's content, not of the walk's presentation.

In Recognition Science, the theorem underpins a choice-free comparison: balanced orbits are interchangeable for ordering purposes, so no hidden preference enters when the framework ranks paths. The library proves this once, and every later use of orbit ordering inherits the guarantee. What the reader can now see is that the framework's comparisons are stable under the rewrites that matter, a structural fact that keeps the ledger's judgments well-defined.

THEOREM le_congr_of_balanced_cf · IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/Grow/SignedOrbitLeCongrOfBalancedChoiceFree.lean
theorem le_congr_of_balanced_cf {a a' b b' : SignedOrbit}
    (ha : SignedOrbit.balanced a a') (hb : SignedOrbit.balanced b b') :
    SignedOrbit.le a b ↔ SignedOrbit.le a' b' :=
  (le_congr_left_of_balanced_cf ha).trans (le_congr_right_of_balanced_cf hb)

What this page does not claim

This module does not derive the cost function or any constants of the framework. The theorem does not state that all balanced orbits are equal, only that they order successors identically.

Verify this page

Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:

$ lake env lean IndisputableMonolith/Foundation/PrimitiveRecognitionCalculus/Grow/SignedOrbitLeCongrOfBalancedChoiceFree.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)

A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.

Derived articles

This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND