Encyclopedia Gravity Gravity Seven Gaps Dynamic Structure Function Blocker Background Weighted Contin
ARTICLE 3 claims 3 theorems
Gravity Seven Gaps Dynamic Structure Function Blocker Background Weighted Contin
A machine-checked theorem shows a fixed background weight can reach the continuum limit, but cannot represent a metric that changes with the phase-space point.
The background weight limit
In Recognition Science, a framework that derives physical structure from a forced ledger of recognition events, the declaration background_weighted_continuum_reach proves a precise reach result. It states that a fixed weighting function, continuous on the unit interval, can be used to approximate an integral by a finite sum. The theorem is a formal statement about limits: as the number of sample points grows, the weighted average of a product of two continuous functions converges to the integral of their product with the weight. This is a standard result in numerical analysis, here verified inside the framework's machine-checked library of formal theorems.
The declaration's role is to certify what the background-weighted bracket can do, not to claim it does everything. The bracket is a discrete operation that pairs two functions at neighboring points, with a weight attached to each site. The theorem background_weighted_continuum_reach shows that this bracket, with a fixed weight, has a well-defined continuum limit. That is its positive content: the smearing shape survives the passage from a discrete lattice to a continuous description.
What the declaration does not claim is that this fixed weight can represent the full dynamics of general relativity. The framework's own library contains a companion result, no_fixed_background_represents_concrete, which proves that a fixed background weight cannot represent a specific example of a phase-space-dependent inverse metric. The example, concreteDynamicInverseMetric, takes the value 1 at one phase-space point and 2 at another, so it is not constant. A fixed weight, by definition, assigns the same value at every phase-space point, so it cannot match a metric that varies. The theorem fixed_background_represents_only_constant states this generally: a fixed background represents a phase-space-dependent metric only if that metric is actually constant.
In Recognition Science, this distinction matters because the framework aims to reconstruct general relativity from its ledger axioms. The background-weighted bracket is an exact lattice identity and has continuum reach, but it is not the full dynamic Dirac structure function. The missing piece is a Hamiltonian construction that depends on the phase-space point, not just on a fixed background. The library names this open obligation PhaseSpaceDependentHamiltonianConstruction and records it as a target, not as a proved result. The declaration background_weighted_continuum_reach therefore establishes a limit, and the framework's own theorems mark the boundary of what that limit can represent.
THEOREM background_weighted_continuum_reach · IndisputableMonolith/Gravity/SevenGaps/DynamicStructureFunctionBlocker.lean
/-- THEOREM. The existing quadrature theorem gives the full continuum
smearing reach for every continuous fixed background profile. -/
theorem background_weighted_continuum_reach
(W : ℝ → ℝ) (hW : ContinuousOn W (Set.Icc 0 1)) :
BackgroundWeightedContinuumReach W := by
intro Wr S hWr hS
exact weightedStructureSum_tendsto W Wr S hW hWr hS
THEOREM fixed_background_represents_only_constant · IndisputableMonolith/Gravity/SevenGaps/DynamicStructureFunctionBlocker.lean
/-- THEOREM. If one fixed background weight represents `g` at every
phase-space point, then `g` is phase-space constant. -/
theorem fixed_background_represents_only_constant
(w : ZMod n → ℝ) (g : PhaseSpace n → ZMod n → ℝ)
(h : FixedBackgroundRepresents w g) :
PhaseSpaceConstant g := by
intro x y j
rw [← h x j, ← h y j]
THEOREM no_fixed_background_represents_concrete · IndisputableMonolith/Gravity/SevenGaps/DynamicStructureFunctionBlocker.lean
/-- THEOREM (concrete no-go). No fixed two-site background weight represents
the concrete dynamic inverse metric at every phase-space point. -/
theorem no_fixed_background_represents_concrete
(w : ZMod 2 → ℝ) :
¬ FixedBackgroundRepresents w concreteDynamicInverseMetric := by
intro h
exact concreteDynamicInverseMetric_not_constant
(fixed_background_represents_only_constant w concreteDynamicInverseMetric h)
What this page does not claim
The declaration does not prove that a fixed background weight can represent a phase-space-dependent inverse metric. The declaration does not establish the full dynamic Dirac structure function for general relativity. The declaration does not change any closure flag or complete the Hamiltonian construction.
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/SevenGaps/DynamicStructureFunctionBlocker.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 Hamiltonian construction would make the phase-space-dependent Dirac structure function complete?
- How does the framework's missing dynamic Dirac structure function relate to the HKT rigidity statement?
- What physical consequences follow from the fixed-background limitation in the continuum limit?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM background_weighted_continuum_reach · IndisputableMonolith/Gravity/SevenGaps/DynamicStructureFunctionBlocker.lean
/-- THEOREM. The existing quadrature theorem gives the full continuum smearing reach for every continuous fixed background profile. -/ theorem background_weighted_continuum_reach (W : ℝ → ℝ) (hW : ContinuousOn W (Set.Icc 0 1)) : BackgroundWeightedContinuumReach W := by intro Wr S hWr hS exact weightedStructureSum_tendsto W Wr S hW hWr hSThe declaration background_weighted_continuum_reach proves that a fixed weighting function, continuous on the unit interval, can be used to approximate an integral by a finite sum. background_weighted_continuum_reach · IndisputableMonolith/Gravity/SevenGaps/DynamicStructureFunctionBlocker.leanTHEOREM fixed_background_represents_only_constant · IndisputableMonolith/Gravity/SevenGaps/DynamicStructureFunctionBlocker.lean
/-- THEOREM. If one fixed background weight represents `g` at every phase-space point, then `g` is phase-space constant. -/ theorem fixed_background_represents_only_constant (w : ZMod n → ℝ) (g : PhaseSpace n → ZMod n → ℝ) (h : FixedBackgroundRepresents w g) : PhaseSpaceConstant g := by intro x y j rw [← h x j, ← h y j]The theorem fixed_background_represents_only_constant states that a fixed background represents a phase-space-dependent metric only if that metric is actually constant. fixed_background_represents_only_constant · IndisputableMonolith/Gravity/SevenGaps/DynamicStructureFunctionBlocker.leanTHEOREM no_fixed_background_represents_concrete · IndisputableMonolith/Gravity/SevenGaps/DynamicStructureFunctionBlocker.lean
/-- THEOREM (concrete no-go). No fixed two-site background weight represents the concrete dynamic inverse metric at every phase-space point. -/ theorem no_fixed_background_represents_concrete (w : ZMod 2 → ℝ) : ¬ FixedBackgroundRepresents w concreteDynamicInverseMetric := by intro h exact concreteDynamicInverseMetric_not_constant (fixed_background_represents_only_constant w concreteDynamicInverseMetric h)The library contains a companion result, no_fixed_background_represents_concrete, which proves that a fixed background weight cannot represent a specific example of a phase-space-dependent inverse metric. no_fixed_background_represents_concrete · IndisputableMonolith/Gravity/SevenGaps/DynamicStructureFunctionBlocker.lean