Encyclopedia Gravity Gravity Seven Gaps Zq Continuum Blocker Zero Phase Not Exact Shell Tail Cancella

ARTICLE 3 claims 3 theorems

Gravity Seven Gaps Zq Continuum Blocker Zero Phase Not Exact Shell Tail Cancella

A machine-checked theorem shows that the simplest possible phase assignment makes a gravity path sum diverge, blocking a proposed route to remove an artificial complexity cutoff.

The zero-phase obstruction

The declaration is a formal, machine-checked theorem in the Recognition Science framework's library of formal theorems. It states that a particular mathematical object, called the zero phase, does not satisfy a condition called exact shell tail cancellation. In plain terms, the zero phase assigns no phase rotation at all to any path in a discrete model of gravity. The theorem proves that when you add up contributions from paths in this model, the contributions from very complex paths do not shrink and cancel out as they should. Instead, they keep fluctuating, so the total sum does not settle down to a definite value.

To understand why this matters, picture a path sum in quantum gravity as a ledger: a discrete record of events where each possible path contributes a number. The framework's path sum adds these numbers over paths of increasing complexity, up to a cutoff B. A natural question is whether the result stabilizes as B grows without bound. The zero phase is the simplest possible choice: every path contributes its raw weight with no phase rotation. The theorem proves this choice fails the cancellation criterion, and a companion theorem shows an explicit failure witness: for any cutoff N, there exist later cutoffs m and n such that the sum of contributions between them has magnitude greater than 1. The sums never become small, so the sequence has no limit.

In Recognition Science, the framework models gravity through such discrete path sums. The theorem is part of a larger effort called the Seven Gaps project, which isolates the exact analytic conditions needed to remove a complexity cutoff from a particular path sum. The zero-phase result is a no-go statement: it rules out one specific, naive route. It shows that removing the cutoff requires a nontrivial phase structure, not the trivial zero phase. The theorem is discriminating: it provides a concrete counterexample to the hope that any phase assignment would work.

What the theorem does not claim is equally important. It does not claim that gravity fails, that the framework's model is wrong, or that no phase assignment can work. It only rules out the zero phase. The result says nothing about whether some other phase assignment satisfies the cancellation condition; that question remains open. It also makes no claim about continuum geometry, observations, convergence rates, or a derived measure. The theorem is purely about the discrete path sum with the zero phase assignment, and its failure to converge under the exact shell cancellation criterion.

THEOREM zeroPhase_not_exactShellTailCancellation · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.lean
zeroPhase_not_exactShellTailCancellation · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.lean:250
/-- **NON-VACUITY WITNESS.** Zero phase fails the ordered-tail cancellation
criterion. A one-shell late block already has norm greater than one, because
the positive shell masses grow at least as `n^(3n)`. -/
theorem zeroPhase_not_exactShellTailCancellation :
    ¬ ExactShellTailCancellation zeroPhase := by
  intro htail
  obtain ⟨N, hN⟩ := htail 1 one_pos
  let k : ℕ := max 2 N
  have hNk : N ≤ k := le_max_right 2 N
  have hsingle :
      ∑ j ∈ Finset.Ico (k + 1) ((k + 1) + 1),
          exactShellAmplitude zeroPhase j =
        exactShellAmplitude zeroPhase (k + 1) := by
    rw [Finset.sum_Ico_eq_sub (exactShellAmplitude zeroPhase)
      (Nat.le_succ (k + 1)), Finset.sum_range_succ, add_sub_cancel_left]
  have hsmall := hN k (k + 1) hNk (Nat.le_succ k)
  rw [hsingle, exactShellAmplitude_zeroPhase, Complex.norm_real,
    Real.norm_eq_abs, abs_of_pos (shellMass_pos (k + 1))] at hsmall
  have hk2 : 2 ≤ k := le_max_left 2 N
  have hpowN : k + 1 ≤ (k + 1) ^ (3 * (k + 1)) :=
    Nat.le_self_pow (by omega) (k + 1)
  have hpowR :
      ((k + 1 : ℕ) : ℝ) ≤ ((k + 1 : ℕ) : ℝ) ^ (3 * (k + 1)) := by
    calc
      ((k + 1 : ℕ) : ℝ)
          ≤ (((k + 1) ^ (3 * (k + 1)) : ℕ) : ℝ) := by
            exact_mod_cast hpowN
      _ = ((k + 1 : ℕ) : ℝ) ^ (3 * (k + 1)) := Nat.cast_pow _ _
  have hkR : (1 : ℝ) < (k + 1 : ℕ) := by
    exact_mod_cast (show 1 < k + 1 by omega)
  have hmass : (1 : ℝ) < shellMass (k + 1) := by
    have hlower := RegulatorRemovalNoGo.shellMass_lower (k + 1)
    linarith
  linarith
THEOREM not_hasExactComplexityCutoffLimit_zeroPhase · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.lean
not_hasExactComplexityCutoffLimit_zeroPhase · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.lean:301
/-- Zero phase has no unregulated exact-shell complexity-cutoff limit. -/
theorem not_hasExactComplexityCutoffLimit_zeroPhase :
    ¬ HasExactComplexityCutoffLimit zeroPhase := by
  rw [hasExactComplexityCutoffLimit_iff_tailCancellation]
  exact zeroPhase_not_exactShellTailCancellation
THEOREM zeroPhase_epsilon_one_failure · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.lean
/-- **C1 EPSILON-ONE WITNESS.** Beyond every proposed tail threshold there
is a contiguous one-shell block whose zero-phase norm is greater than one.
The bridge is direct: `shellMass_lower` concerns the same cap-free exact
quotient `ExactPathClass` and the same `classMu` used by
`exactShellAmplitude`; it is neither a pre-quotient nor a cap-dependent mass.
-/
theorem zeroPhase_epsilon_one_failure (N : ℕ) :
    ∃ m n : ℕ, N ≤ m ∧ m ≤ n ∧
      1 < ‖∑ k ∈ Finset.Ico m n, exactShellAmplitude zeroPhase k‖ := by
  let k : ℕ := max 2 N
  have hNk : N ≤ k := le_max_right 2 N
  have hsingle :
      ∑ j ∈ Finset.Ico k (k + 1), exactShellAmplitude zeroPhase j =
        exactShellAmplitude zeroPhase k := by
    rw [Finset.sum_Ico_eq_sub (exactShellAmplitude zeroPhase)
      (Nat.le_succ k), Finset.sum_range_succ, add_sub_cancel_left]
  have hk2 : 2 ≤ k := le_max_left 2 N
  have hpowN : k ≤ k ^ (3 * k) :=
    Nat.le_self_pow (by omega) k
  have hpowR : ((k : ℕ) : ℝ) ≤ ((k : ℕ) : ℝ) ^ (3 * k) := by
    calc
      ((k : ℕ) : ℝ) ≤ ((k ^ (3 * k) : ℕ) : ℝ) := by
        exact_mod_cast hpowN
      _ = ((k : ℕ) : ℝ) ^ (3 * k) := Nat.cast_pow _ _
  have hkR : (1 : ℝ) < (k : ℕ) := by
    exact_mod_cast (show 1 < k by omega)
  have hmass : (1 : ℝ) < shellMass k := by
    have hlower := RegulatorRemovalNoGo.shellMass_lower k
    linarith
  refine ⟨k, k + 1, hNk, Nat.le_succ k, ?_⟩
  rw [hsingle, exactShellAmplitude_zeroPhase, Complex.norm_real,
    Real.norm_eq_abs, abs_of_pos (shellMass_pos k)]
  exact hmass

What this page does not claim

The theorem does not claim that no phase assignment can remove the complexity cutoff. The theorem does not claim anything about continuum geometry, observations, or a derived measure. The theorem does not claim that the framework's gravity model is physically incorrect.

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