Encyclopedia Foundation Foundation Pair Kernel Production Operation Channel Selection S25 Balance Curren
ARTICLE 4 claims 4 theorems
Foundation Pair Kernel Production Operation Channel Selection S25 Balance Curren
A machine-checked theorem ties a single accounting operation to a physical channel, while carefully leaving the full physical carrier unbuilt.
The balance current selector
In the Recognition Science framework, a ledger is a discrete record of events, and a recognition is the forced act of recording one. The declaration balanceCurrentSelector_iff_S24_balanceTransport is a formal statement in the framework's machine-checked library of formal theorems. It establishes an exact equivalence: a particular operation, the balance current, selects a physical channel if and only if it satisfies the S24 balance transport condition. In plain terms, the theorem says that the act of recording an event's elementary double-entry current is precisely the same act as transporting that current onto a physical carrier, nothing more and nothing less.
The balance current operation is defined as the elementary posting between two points of an event. The theorem proves that this operation passes a specific probe, the balance current probe, which checks that the current is conserved. It also proves that reversing the operation negates the current, a property of antisymmetry. These are theorem-backed facts about the operation's orientation and conservation. The selector itself is a predicate: it asks whether a given physical response system can, for every possible event, find a channel on its physical carrier that responds with the correct temporal value. The equivalence theorem connects this predicate to the S24 balance transport condition, which is the condition that the event's current is actually carried by the physical channel.
The theorem's power is in its precision. It does not claim that any physical carrier exists. It does not claim that the framework has constructed the full physical carrier object, only that the selection of a channel is equivalent to a transport condition. The committed operations are independent of any proposed response system, so they coexist with both a transport-complete and an incomplete system. No physical carrier, completeness, or observational exhaustion is claimed unconditionally. The theorem is a clean logical bridge: it shows what must be true for a balance operation to select a channel, and it proves that this selection is exactly the S24 transport, not a weaker or stronger condition.
What this changes is the status of the balance operation. It is no longer a mere label or a response tag; it is data with proven properties. The operation's orientation, conservation, and finite-batch composition laws are theorem-backed. The framework proves that the balance current is a conserved, antisymmetric object that, when it selects a channel, does so by transporting its current. This is a concrete step in the framework's program of deriving physical structure from recognition events, but it is a step that knows its own limits. The physical carrier itself remains an open target, and the theorem is careful to say so.
THEOREM balanceCurrentOperation_passes_probe · IndisputableMonolith/Foundation/PairKernelProductionOperationChannelSelectionS25.lean
theorem balanceCurrentOperation_passes_probe
(operation : BalanceCurrentOperation3) :
BalanceCurrentProbe3
(balanceCurrentOperationCurrent3 operation) :=
elementaryPosting_passes_balanceCurrentProbe
operation.event.1.1 operation.event.1.2
THEOREM balanceCurrentOperation_reverse · IndisputableMonolith/Foundation/PairKernelProductionOperationChannelSelectionS25.lean
theorem balanceCurrentOperation_reverse
(operation : BalanceCurrentOperation3) :
balanceCurrentOperationCurrent3
(reverseBalanceCurrentOperation3 operation) =
fun i j =>
-balanceCurrentOperationCurrent3 operation i j := by
change
elementaryPosting
operation.event.1.2 operation.event.1.1 =
fun i j =>
-elementaryPosting
operation.event.1.1 operation.event.1.2 i j
funext i j
unfold elementaryPosting
ring
THEOREM committedOperations_admit_channelSelection_split · IndisputableMonolith/Foundation/PairKernelProductionOperationChannelSelectionS25.lean
/-- The same committed operation package coexists with a system that selects
all operation channels and one that does not. Hence the source operations do
not force their promotion to physical channels. -/
theorem committedOperations_admit_channelSelection_split :
CommittedProductionOperations3 ∧
∃ left right : PostingPhysicalResponseSystem3.{0} 3,
ProductionOperationsSelectPhysicalChannels3 left ∧
¬ ProductionOperationsSelectPhysicalChannels3 right := by
obtain
⟨left, right, _hleftReads, _hrightReads,
hleftTransport, hrightNotTransport⟩ :=
committed_ancestry_admits_eventActTransport_split
exact
⟨committedProductionOperations_hold,
left, right,
(productionOperationSelectors_iff_eventActTransport
left).2 hleftTransport,
fun hright =>
hrightNotTransport
((productionOperationSelectors_iff_eventActTransport
right).1 hright)⟩
THEOREM committedOperations_admit_channelSelection_split · IndisputableMonolith/Foundation/PairKernelProductionOperationChannelSelectionS25.lean
/-- The same committed operation package coexists with a system that selects
all operation channels and one that does not. Hence the source operations do
not force their promotion to physical channels. -/
theorem committedOperations_admit_channelSelection_split :
CommittedProductionOperations3 ∧
∃ left right : PostingPhysicalResponseSystem3.{0} 3,
ProductionOperationsSelectPhysicalChannels3 left ∧
¬ ProductionOperationsSelectPhysicalChannels3 right := by
obtain
⟨left, right, _hleftReads, _hrightReads,
hleftTransport, hrightNotTransport⟩ :=
committed_ancestry_admits_eventActTransport_split
exact
⟨committedProductionOperations_hold,
left, right,
(productionOperationSelectors_iff_eventActTransport
left).2 hleftTransport,
fun hright =>
hrightNotTransport
((productionOperationSelectors_iff_eventActTransport
right).1 hright)⟩
What this page does not claim
The theorem does not construct the physical carrier object. The theorem does not claim that any physical system is transport-complete. The theorem does not derive the full physical semantics of the framework from this selector alone.
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/PairKernelProductionOperationChannelSelectionS25.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:
- What is the full construction of the physical carrier that the framework leaves open?
- How does the balance current selector relate to the spatial and tick operation selectors in the full S25 conjunction?
- What empirical or physical content does the S24 balance transport condition carry beyond its formal definition?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM balanceCurrentOperation_passes_probe · IndisputableMonolith/Foundation/PairKernelProductionOperationChannelSelectionS25.lean
theorem balanceCurrentOperation_passes_probe (operation : BalanceCurrentOperation3) : BalanceCurrentProbe3 (balanceCurrentOperationCurrent3 operation) := elementaryPosting_passes_balanceCurrentProbe operation.event.1.1 operation.event.1.2The balance current operation passes a specific probe, the balance current probe, which checks that the current is conserved. balanceCurrentOperation_passes_probe · IndisputableMonolith/Foundation/PairKernelProductionOperationChannelSelectionS25.leanTHEOREM balanceCurrentOperation_reverse · IndisputableMonolith/Foundation/PairKernelProductionOperationChannelSelectionS25.lean
theorem balanceCurrentOperation_reverse (operation : BalanceCurrentOperation3) : balanceCurrentOperationCurrent3 (reverseBalanceCurrentOperation3 operation) = fun i j => -balanceCurrentOperationCurrent3 operation i j := by change elementaryPosting operation.event.1.2 operation.event.1.1 = fun i j => -elementaryPosting operation.event.1.1 operation.event.1.2 i j funext i j unfold elementaryPosting ringReversing the operation negates the current, a property of antisymmetry. balanceCurrentOperation_reverse · IndisputableMonolith/Foundation/PairKernelProductionOperationChannelSelectionS25.leanTHEOREM committedOperations_admit_channelSelection_split · IndisputableMonolith/Foundation/PairKernelProductionOperationChannelSelectionS25.lean
/-- The same committed operation package coexists with a system that selects all operation channels and one that does not. Hence the source operations do not force their promotion to physical channels. -/ theorem committedOperations_admit_channelSelection_split : CommittedProductionOperations3 ∧ ∃ left right : PostingPhysicalResponseSystem3.{0} 3, ProductionOperationsSelectPhysicalChannels3 left ∧ ¬ ProductionOperationsSelectPhysicalChannels3 right := by obtain ⟨left, right, _hleftReads, _hrightReads, hleftTransport, hrightNotTransport⟩ := committed_ancestry_admits_eventActTransport_split exact ⟨committedProductionOperations_hold, left, right, (productionOperationSelectors_iff_eventActTransport left).2 hleftTransport, fun hright => hrightNotTransport ((productionOperationSelectors_iff_eventActTransport right).1 hright)⟩The committed operations are independent of any proposed response system, so they coexist with both a transport-complete and an incomplete system. committedOperations_admit_channelSelection_split · IndisputableMonolith/Foundation/PairKernelProductionOperationChannelSelectionS25.leanTHEOREM committedOperations_admit_channelSelection_split · IndisputableMonolith/Foundation/PairKernelProductionOperationChannelSelectionS25.lean
/-- The same committed operation package coexists with a system that selects all operation channels and one that does not. Hence the source operations do not force their promotion to physical channels. -/ theorem committedOperations_admit_channelSelection_split : CommittedProductionOperations3 ∧ ∃ left right : PostingPhysicalResponseSystem3.{0} 3, ProductionOperationsSelectPhysicalChannels3 left ∧ ¬ ProductionOperationsSelectPhysicalChannels3 right := by obtain ⟨left, right, _hleftReads, _hrightReads, hleftTransport, hrightNotTransport⟩ := committed_ancestry_admits_eventActTransport_split exact ⟨committedProductionOperations_hold, left, right, (productionOperationSelectors_iff_eventActTransport left).2 hleftTransport, fun hright => hrightNotTransport ((productionOperationSelectors_iff_eventActTransport right).1 hright)⟩No physical carrier, completeness, or observational exhaustion is claimed unconditionally. committedOperations_admit_channelSelection_split · IndisputableMonolith/Foundation/PairKernelProductionOperationChannelSelectionS25.lean