Encyclopedia Gravity Gravity Seven Gaps Zq Phase Structure Opposite Phase Pair Cancels

ARTICLE 4 claims 3 theorems 1 open

Gravity Seven Gaps Zq Phase Structure Opposite Phase Pair Cancels

A simple identity about waves that are half a cycle apart is the engine behind a proposed mechanism for taming an infinite sum in a theory of quantum gravity.

The cancellation lemma

In the mathematics of waves, two oscillations of equal strength that are exactly half a cycle out of step cancel each other completely. The declaration opposite_phase_pair_cancels is a formal, machine-checked proof of this familiar fact in the specific context of a path sum over triangulations. It states that if two configurations in the sum carry equal weight and their phases differ by π, their contributions add to zero. The companion result opposite_phase_pair_strict shows that the triangle inequality, the usual bound that would sum their absolute sizes, is strictly larger than the actual total; cancellation beats the crude estimate.

The setting is the framework's attempt to define a gravitational path integral by summing over discrete geometries. A naive sum over all triangulations diverges, and the framework's earlier work proved that a simple zero-phase sum cannot be made finite. The new idea is to attach an oscillatory phase to each geometry, so that many terms cancel before the sum is taken. The cancellation lemma is the atomic step that makes this idea work: it guarantees that a pair of geometries with opposite phases contributes nothing. A concrete witness at complexity cap B = 2 shows the mechanism is not empty: two specific triangulation classes, one with no vertices and one with a single vertex, have equal mass and phases 0 and π, and their contributions cancel exactly.

What the lemma does not do is as important as what it proves. It is a statement about a finite sum at a fixed complexity cap, not about the infinite limit that would define the full path integral. The continuum limit remains an open problem. The lemma also does not derive the phase function from any physical principle; the phase model is a definitional choice, and the specific witness phase is chosen by hand to make the cancellation work. The framework's own status record marks the continuum limit, regulator removal, and a substrate-derived phase as open targets.

In Recognition Science, this lemma is a structural step, not a physical prediction. It shows that a certain kind of cancellation is available in principle, and it provides a proved example. What it does not show is that this cancellation survives in the limit, or that the phases arise from the framework's own principles. The lemma is a tool, and the tool is sharp; the construction that would use it to define the full path integral is still being built.

THEOREM opposite_phase_pair_cancels · IndisputableMonolith/Gravity/SevenGaps/ZqPhaseStructure.lean
/-- **THEOREM (two-term exact cancellation).**  Equal masses at phases
`θ` and `θ + π` cancel exactly. -/
theorem opposite_phase_pair_cancels (m θ : ℝ) :
    (m : ℂ) * Complex.exp (Complex.I * (θ : ℂ))
      + (m : ℂ) * Complex.exp (Complex.I * ((θ + Real.pi : ℝ) : ℂ)) = 0 := by
  rw [opposite_phase_exp, mul_neg, add_neg_cancel]
THEOREM opposite_phase_pair_strict · IndisputableMonolith/Gravity/SevenGaps/ZqPhaseStructure.lean
/-- **THEOREM (two-term strict improvement).**  For positive mass the
paired two-term sum is STRICTLY below its triangle bound. -/
theorem opposite_phase_pair_strict (m θ : ℝ) (hm : 0 < m) :
    ‖(m : ℂ) * Complex.exp (Complex.I * (θ : ℂ))
        + (m : ℂ) * Complex.exp (Complex.I * ((θ + Real.pi : ℝ) : ℂ))‖
      < ‖(m : ℂ) * Complex.exp (Complex.I * (θ : ℂ))‖
        + ‖(m : ℂ) * Complex.exp (Complex.I * ((θ + Real.pi : ℝ) : ℂ))‖ := by
  rw [opposite_phase_pair_cancels, norm_zero]
  have h1 : ‖(m : ℂ) * Complex.exp (Complex.I * (θ : ℂ))‖ = m := by
    rw [norm_mul, Complex.norm_real, Real.norm_eq_abs, abs_of_pos hm,
      Complex.norm_exp_I_mul_ofReal, mul_one]
  have h2 : ‖(m : ℂ) * Complex.exp (Complex.I * ((θ + Real.pi : ℝ) : ℂ))‖
      = m := by
    rw [norm_mul, Complex.norm_real, Real.norm_eq_abs, abs_of_pos hm,
      Complex.norm_exp_I_mul_ofReal, mul_one]
  rw [h1, h2]
  linarith
THEOREM phased_Zq_pairing_witness · IndisputableMonolith/Gravity/SevenGaps/ZqPhaseStructure.lean
/-- **HEADLINE (non-vacuous quantitative cancellation witness).**  The
explicit phase model at `B = 2` beats the triangle bound by EXACTLY the
paired mass 2: `‖Zq‖ <= totalClassMass 2 - 2`.  This discharges the
pairing hypotheses of the general theorems in one concrete instance. -/
theorem phased_Zq_pairing_witness :
    ‖Zq 2 (phasedWeight witnessPhaseModel)‖ ≤ totalClassMass 2 - 2 := by
  have hb := Zq_pairing_bound 2 (phasedWeight witnessPhaseModel)
    (fun q => le_of_eq (phasedWeight_norm witnessPhaseModel q))
    witnessPaired witnessPairing witnessPairing_injOn witnessPairing_disj
    witnessPairing_cancel
  rw [witnessPaired_mass] at hb
  exact hb

What this page does not claim

The lemma does not prove that the infinite path integral is finite. The lemma does not derive the phase function from any physical principle; the phase model is a definitional choice. The lemma does not show that pairings exist for every phase model or every complexity cap.

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/ZqPhaseStructure.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