Encyclopedia Gravity Gravity Seven Gaps Zq Continuum Blocker Zero Phase Compatibility And Limit Impos
ARTICLE 4 claims 3 theorems 1 model
Gravity Seven Gaps Zq Continuum Blocker Zero Phase Compatibility And Limit Impos
A machine-checked proof shows that a particular way of removing an approximation from a quantum-gravity calculation cannot work: the zero-phase case is a dead end, not a gap to be filled later.
A limit that cannot exist
In quantum gravity research, a common strategy is to approximate an infinite sum by adding up only the first B terms, then let B grow toward infinity. The hope is that the sequence of finite sums settles down to a definite value, a limit. The Recognition Science framework's machine-checked library of formal theorems examines this strategy in a specific setting: the ledger, a discrete record of path contributions, where each path carries a phase, a complex number of unit magnitude that encodes interference.
The central result, established in the library, concerns the simplest possible choice: the zero phase, where every path's phase is set to 1. The theorem zeroPhase_compatibility_and_limit_impossible states that two desirable properties cannot both hold. The first property is compatibility: the finite sum computed with the capped approximation must equal the finite sum computed with the exact, non-duplicating path decomposition, at every cutoff B. The second is the existence of a limit for the capped sequence. The proof shows these are mutually exclusive: if the sums agree at every stage, then the sequence cannot converge; if it converges, the sums cannot agree.
The proof works by linking the existence of a limit to a cancellation condition on the tail of the sum. A sequence of finite sums converges exactly when the contributions from sufficiently late shells, the gaps between consecutive cutoffs, can be made arbitrarily small. This is the standard Cauchy criterion. The library shows that for the zero phase, this tail cancellation fails spectacularly: no matter how far out one starts, there are two later cutoff points whose difference in partial sums has magnitude greater than 1. The sums oscillate forever and never settle.
The theorem is discriminating. It does not say that all phases fail. It isolates the zero phase as a specific obstruction, and it identifies exactly what a substrate-derived phase must supply: a tail that cancels. The result also names a missing bridge in the current API, a compatibility statement between two different path decompositions, as the smallest required step to connect the capped and exact formalisms. Under that bridge, convergence of the existing sequence becomes equivalent to the tail-cancellation criterion.
What the theorem does not claim is as important as what it establishes. It does not claim that no phase can yield a limit, nor that the zero phase is the only obstruction. It makes no statement about continuum geometry, observations, convergence rates, or a derived measure. All limits here remove a complexity cutoff; they are not mesh refinement. The result is a precise, negative finding about one route, not a verdict on the whole framework.
THEOREM zeroPhase_compatibility_and_limit_impossible · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.lean
/-- A zero-phase capped family cannot both agree with the exact-shell
decomposition and have a complexity-cutoff limit. This is a concrete
discriminant for any proposed bridge implementation. -/
theorem zeroPhase_compatibility_and_limit_impossible :
¬ (CapShellCompatibility zeroCapPhaseFamily zeroPhase ∧
HasPhasedZqComplexityLimit zeroCapPhaseFamily) := by
rintro ⟨hcompat, hlimit⟩
exact zeroPhase_not_exactShellTailCancellation
((hasPhasedZqLimit_iff_exactShellTail_of_compatibility
zeroCapPhaseFamily zeroPhase hcompat).mp hlimit)
THEOREM cauchySeq_Zcap_iff_oscillatoryTail · hasPhasedZqComplexityLimit_iff_cauchy · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.lean
/-- **C1 HEADLINE.** The exact-shell cutoff sequence is Cauchy if and only if
every sufficiently late contiguous shell block is uniformly small. This is a
pure complexity-cutoff criterion and assumes no desired convergence. -/
theorem cauchySeq_Zcap_iff_oscillatoryTail
(phase : ∀ n : ℕ, ExactPathClass n → ℝ) :
CauchySeq (Zcap phase) ↔ OscillatoryTail phase := by
constructor
· intro hC
have hMetric := Metric.cauchySeq_iff.mp hC
intro ε hε
obtain ⟨N, hN⟩ := hMetric ε hε
refine ⟨N, fun m n hm hmn => ?_⟩
have hn : N ≤ n := le_trans hm hmn
have hd := hN m hm n hn
rw [dist_eq_norm] at hd
rw [← Zcap_telescoping phase hmn, norm_sub_rev]
exact hd
· intro htail
rw [Metric.cauchySeq_iff]
intro ε hε
obtain ⟨N, hN⟩ := htail ε hε
refine ⟨N, fun m hm n hn => ?_⟩
rcases le_total m n with hmn | hnm
· rw [dist_eq_norm, norm_sub_rev, Zcap_telescoping phase hmn]
exact hN m n hm hmn
· rw [dist_eq_norm, Zcap_telescoping phase hnm]
exact hN n m hn hnm
/-- **HEADLINE IFF.** The existing phased quotient sums have a
complexity-cutoff limit exactly when their cross-cap differences are Cauchy.
This theorem assumes no convergence and no physical continuum interpretation.
-/
theorem hasPhasedZqComplexityLimit_iff_cauchy (P : CapPhaseFamily) :
HasPhasedZqComplexityLimit P ↔ PhasedZqCauchyCriterion P := by
constructor
· rintro ⟨L, hL⟩
have hC := (Metric.cauchySeq_iff.mp hL.cauchySeq)
intro ε hε
obtain ⟨N, hN⟩ := hC ε hε
refine ⟨N, fun m hm n hn => ?_⟩
simpa only [dist_eq_norm] using hN m hm n hn
· intro h
have hC : CauchySeq (phasedZqSequence P) := by
rw [Metric.cauchySeq_iff]
exact h
exact cauchySeq_tendsto_of_complete hC
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
MODEL CapShellCompatibility · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.lean
/-- Cross-API compatibility needed to identify the current capped quotient
sum with the nonduplicating exact-shell cutoff. Current definitions do not
supply this equality. A construction should come from an equivalence between
bounded quotient classes at cap `B` and exact quotient classes in shells
`n ≤ B`, preserving the measure and phase. -/
structure CapShellCompatibility (P : CapPhaseFamily)
(phase : ∀ n : ℕ, ExactPathClass n → ℝ) : Prop where
sum_eq : ∀ B : ℕ,
phasedZqSequence P B = exactComplexityCutoff phase B
What this page does not claim
The theorem does not claim that no phase can yield a limit. The theorem makes no statement about continuum geometry or observations. The theorem does not provide a convergence rate or a derived measure.
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:
- Does any non-zero phase satisfy the exact-shell tail-cancellation criterion?
- What physical interpretation would a substrate-derived phase carry, if one exists?
- Can the missing CapShellCompatibility bridge be constructed for any non-zero phase family?
- Does the failure of the zero phase generalize to other constant phases?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM zeroPhase_compatibility_and_limit_impossible · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.lean
/-- A zero-phase capped family cannot both agree with the exact-shell decomposition and have a complexity-cutoff limit. This is a concrete discriminant for any proposed bridge implementation. -/ theorem zeroPhase_compatibility_and_limit_impossible : ¬ (CapShellCompatibility zeroCapPhaseFamily zeroPhase ∧ HasPhasedZqComplexityLimit zeroCapPhaseFamily) := by rintro ⟨hcompat, hlimit⟩ exact zeroPhase_not_exactShellTailCancellation ((hasPhasedZqLimit_iff_exactShellTail_of_compatibility zeroCapPhaseFamily zeroPhase hcompat).mp hlimit)The theorem zeroPhase_compatibility_and_limit_impossible states that two desirable properties cannot both hold. zeroPhase_compatibility_and_limit_impossible · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.leanTHEOREM cauchySeq_Zcap_iff_oscillatoryTail · hasPhasedZqComplexityLimit_iff_cauchy · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.lean
/-- **C1 HEADLINE.** The exact-shell cutoff sequence is Cauchy if and only if every sufficiently late contiguous shell block is uniformly small. This is a pure complexity-cutoff criterion and assumes no desired convergence. -/ theorem cauchySeq_Zcap_iff_oscillatoryTail (phase : ∀ n : ℕ, ExactPathClass n → ℝ) : CauchySeq (Zcap phase) ↔ OscillatoryTail phase := by constructor · intro hC have hMetric := Metric.cauchySeq_iff.mp hC intro ε hε obtain ⟨N, hN⟩ := hMetric ε hε refine ⟨N, fun m n hm hmn => ?_⟩ have hn : N ≤ n := le_trans hm hmn have hd := hN m hm n hn rw [dist_eq_norm] at hd rw [← Zcap_telescoping phase hmn, norm_sub_rev] exact hd · intro htail rw [Metric.cauchySeq_iff] intro ε hε obtain ⟨N, hN⟩ := htail ε hε refine ⟨N, fun m hm n hn => ?_⟩ rcases le_total m n with hmn | hnm · rw [dist_eq_norm, norm_sub_rev, Zcap_telescoping phase hmn] exact hN m n hm hmn · rw [dist_eq_norm, Zcap_telescoping phase hnm] exact hN n m hn hnm/-- **HEADLINE IFF.** The existing phased quotient sums have a complexity-cutoff limit exactly when their cross-cap differences are Cauchy. This theorem assumes no convergence and no physical continuum interpretation. -/ theorem hasPhasedZqComplexityLimit_iff_cauchy (P : CapPhaseFamily) : HasPhasedZqComplexityLimit P ↔ PhasedZqCauchyCriterion P := by constructor · rintro ⟨L, hL⟩ have hC := (Metric.cauchySeq_iff.mp hL.cauchySeq) intro ε hε obtain ⟨N, hN⟩ := hC ε hε refine ⟨N, fun m hm n hn => ?_⟩ simpa only [dist_eq_norm] using hN m hm n hn · intro h have hC : CauchySeq (phasedZqSequence P) := by rw [Metric.cauchySeq_iff] exact h exact cauchySeq_tendsto_of_complete hCA sequence of finite sums converges exactly when the contributions from sufficiently late shells can be made arbitrarily small. cauchySeq_Zcap_iff_oscillatoryTail · hasPhasedZqComplexityLimit_iff_cauchy · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.leanTHEOREM 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 hmassFor the zero phase, no matter how far out one starts, there are two later cutoff points whose difference in partial sums has magnitude greater than 1. zeroPhase_epsilon_one_failure · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.leanMODEL CapShellCompatibility · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.lean
/-- Cross-API compatibility needed to identify the current capped quotient sum with the nonduplicating exact-shell cutoff. Current definitions do not supply this equality. A construction should come from an equivalence between bounded quotient classes at cap `B` and exact quotient classes in shells `n ≤ B`, preserving the measure and phase. -/ structure CapShellCompatibility (P : CapPhaseFamily) (phase : ∀ n : ℕ, ExactPathClass n → ℝ) : Prop where sum_eq : ∀ B : ℕ, phasedZqSequence P B = exactComplexityCutoff phase BThe result also names a missing bridge in the current API, a compatibility statement between two different path decompositions. CapShellCompatibility · IndisputableMonolith/Gravity/SevenGaps/ZqContinuumBlocker.lean