pith. machine review for the scientific record. sign in
inductive definition def or abbrev high

ParticlePair

show as:
view Lean formalization →

ParticlePair is the inductive type distinguishing particles from antiparticles to support charge conservation within the RRF ledger. Researchers modeling conservation laws in Recognition Science cite it when defining signed quantities for transactions. The definition is a direct two-constructor inductive type with no proof obligations or additional structure.

claimThe type of particle pairs is the inductive type generated by the two constructors particle and antiparticle.

background

The RRF ledger algebra treats conservation as double-entry bookkeeping: every transaction requires debit plus credit to equal zero. Each conservation law (energy, charge, momentum) appears as an instance of ledger closure. The ParticlePair type supplies the binary distinction required to assign opposite signs to particles and antiparticles, thereby enforcing net-zero charge on balanced entries.

proof idea

The declaration is the inductive definition of the particle-pair type with exactly two constructors.

why it matters in Recognition Science

This definition is the immediate prerequisite for the particleCharge map that returns +1 for particle and -1 for antiparticle, thereby realizing charge conservation inside the ledger. It supplies the concrete distinction needed for the module's treatment of conservation laws as ledger closure and feeds directly into downstream charge-assignment functions.

scope and limits

formal statement (Lean)

 158inductive ParticlePair | particle | antiparticle
 159

used by (1)

From the project-wide theorem graph. These declarations reference this one in their body.