Encyclopedia Gravity Gravity Macroscopic Ledger Macroscopic Shift Map Smul
ARTICLE 3 claims 3 theorems
Gravity Macroscopic Ledger Macroscopic Shift Map Smul
A theorem in the Recognition Science library shows that a large-scale update rule respects scalar multiplication, a step toward treating many sites as one system.
The macroscopic shift
In quantum mechanics, a superposition is a sum of possible states, each with its own complex-number amplitude. A linear operator respects that sum: applying it to the whole is the same as applying it to each part and then adding. The theorem MacroscopicShift_map_smul establishes one half of that property for a large-scale update rule in the Recognition Science framework. It states that multiplying a multi-site configuration by a complex number c, and then applying the macroscopic shift, gives the same result as applying the shift first and then multiplying by c.
The framework's ledger, a discrete record of recognition events, assigns each site an eight-dimensional signal space. The single-site update, a cyclic shift through those eight ticks, was already known to be linear. The new theorem extends that linearity to a finite tensor product of many sites. If a configuration is a pure tensor of site states, the macroscopic shift acts on each factor independently. The scalar-multiplication theorem is the second of two linearity clauses, paired with an additivity theorem, and together they certify that the multi-site update is a genuine linear map.
This matters because it upgrades the macroscopic ledger from a definition to a structural theorem. The framework can now treat a finite collection of sites as a single Hilbert space in which superpositions are preserved by the recognition update. The theorem is machine-checked, with no unproved axioms beyond the standard logical ones. It is a formal result about the algebra of the update, not a claim about the physical force of gravity.
What the theorem does not claim is equally precise. It does not identify the macroscopic shift with the gravitational response operator; that identification remains an open target. It does not say that any particular multi-site configuration is physically realized, only that the mathematical structure supports such superpositions. The scalar-multiplication property is a necessary condition for linearity, but the theorem alone does not establish the full physical content of the macroscopic ledger.
THEOREM MacroscopicShift_map_smul · IndisputableMonolith/Gravity/MacroscopicLedger.lean
theorem MacroscopicShift_map_smul (c : ℂ) (Ψ : MacroscopicLedger ι) :
MacroscopicShift (c • Ψ) = c • MacroscopicShift Ψ :=
MacroscopicShift.map_smul c Ψ
THEOREM MacroscopicShift_tprod · IndisputableMonolith/Gravity/MacroscopicLedger.lean
/-- Action of the macroscopic recognition update on a pure tensor
configuration: `R̂_macro (⨂ᵢ ψᵢ) = ⨂ᵢ R̂ ψᵢ`. -/
theorem MacroscopicShift_tprod (ψ : ι → Signal8) :
MacroscopicShift (PiTensorProduct.tprod ℂ ψ) =
PiTensorProduct.tprod ℂ (fun i => cyclic_shift (ψ i)) := by
unfold MacroscopicShift
rw [PiTensorProduct.map_tprod]
rfl
THEOREM macroscopicLedgerTheorem_inhabited · IndisputableMonolith/Gravity/MacroscopicLedger.lean
theorem macroscopicLedgerTheorem_inhabited
(ι : Type) [Fintype ι] [DecidableEq ι] :
Nonempty (MacroscopicLedgerTheorem ι) :=
⟨macroscopicLedgerTheorem ι⟩
What this page does not claim
The theorem does not identify the macroscopic shift with the gravitational response operator. The theorem does not assert that any particular multi-site configuration is physically realized. Scalar multiplication alone does not establish full linearity without the additivity clause.
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/Gravity/MacroscopicLedger.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 physical conditions would identify the macroscopic shift with the gravitational response operator?
- How does the additivity theorem combine with scalar multiplication to yield full linearity?
- What experimental signature would distinguish a macroscopic ledger superposition from a classical mixture?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM MacroscopicShift_map_smul · IndisputableMonolith/Gravity/MacroscopicLedger.lean
theorem MacroscopicShift_map_smul (c : ℂ) (Ψ : MacroscopicLedger ι) : MacroscopicShift (c • Ψ) = c • MacroscopicShift Ψ := MacroscopicShift.map_smul c ΨMultiplying a multi-site configuration by a complex number c, and then applying the macroscopic shift, gives the same result as applying the shift first and then multiplying by c. MacroscopicShift_map_smul · IndisputableMonolith/Gravity/MacroscopicLedger.leanTHEOREM MacroscopicShift_tprod · IndisputableMonolith/Gravity/MacroscopicLedger.lean
/-- Action of the macroscopic recognition update on a pure tensor configuration: `R̂_macro (⨂ᵢ ψᵢ) = ⨂ᵢ R̂ ψᵢ`. -/ theorem MacroscopicShift_tprod (ψ : ι → Signal8) : MacroscopicShift (PiTensorProduct.tprod ℂ ψ) = PiTensorProduct.tprod ℂ (fun i => cyclic_shift (ψ i)) := by unfold MacroscopicShift rw [PiTensorProduct.map_tprod] rflThe macroscopic shift acts on each factor independently when the configuration is a pure tensor of site states. MacroscopicShift_tprod · IndisputableMonolith/Gravity/MacroscopicLedger.leanTHEOREM macroscopicLedgerTheorem_inhabited · IndisputableMonolith/Gravity/MacroscopicLedger.lean
theorem macroscopicLedgerTheorem_inhabited (ι : Type) [Fintype ι] [DecidableEq ι] : Nonempty (MacroscopicLedgerTheorem ι) := ⟨macroscopicLedgerTheorem ι⟩The theorem is machine-checked, with no unproved axioms beyond the standard logical ones. macroscopicLedgerTheorem_inhabited · IndisputableMonolith/Gravity/MacroscopicLedger.lean