Encyclopedia Gravity Gravity Seven Gaps Regulator Removal No Go Not Has Zrsregulator Removal Zero Pha
ARTICLE 3 claims 3 theorems
Gravity Seven Gaps Regulator Removal No Go Not Has Zrsregulator Removal Zero Pha
A machine-checked proof shows a certain sum over discrete complexes cannot be made finite by a standard smoothing trick, and it leaves the oscillatory case open.
The zero-phase no-go
In the Recognition Science framework, a ledger is a discrete record of events, and one recurring question is whether a particular sum over its configurations, a path sum, can be given a finite value by a limiting procedure. The declaration not_hasZRSRegulatorRemoval_zeroPhase is a proved theorem that answers this question in the negative for one specific case. It states that the Gaussian-regulated quotient path sum Z_RS_uv has no limit as the regulator parameter ρ approaches zero from above, when the phase is zero.
The proof is quantitative. It first establishes an identity for the sum of per-class measures over the quotient of exact complexes: this sum equals the labeled count divided by the full relabeling gauge volume, v!·e!·t! (theorem sum_classMuOn_eq_card_div_factorials). This is a Burnside / orbit-stabilizer route. From this, the shell mass, defined as the sum of 1/|Aut| over classes, is shown to grow without bound (shellMass_unbounded), because restricting to a single signature (n, n, n) gives a lower bound of n^(3n) (shellMass_lower). Labeled entropy beats the factorial gauge volume.
The headline no-go follows. At zero phase, every regulated term is real and nonnegative, so a single shell bounds the regulated sum from below (single_shell_re_lower_bound). As ρ → 0⁺, the regulator on any fixed shell tends to 1, so any putative limit L is exceeded by a shell of mass > L.re + 2. This yields a contradiction, proving ¬ HasZRSRegulatorRemoval zeroPhase.
What this theorem does not claim is as important as what it proves. It says nothing about oscillatory phases: regulator removal for a genuine action phase would require proved cancellation between unit phases and remains open (OscillatoryRemovalOpen is a named open definition, never claimed). The zero-phase refutation does not transport to nonzero phases because the lower-bound argument uses positivity, which oscillation destroys. The theorem also says nothing about the physical continuum limit: the complexity cutoff is not mesh refinement, and no ledger flag is flipped by this result. The quotient-sum convention of Z_RS_uv must not be silently equated with the labeled-sum convention of PathSumMeasure.Z.
In plain terms, this is a kernel-checked no-go result: one specific, natural route to a finite path sum is dead at zero phase. The failure is not a gap in proof but a proved impossibility. The framework's library of formal theorems records this as a theorem with zero axioms beyond the standard trio, and it records the oscillatory case as an open target, not a defeat.
THEOREM not_hasZRSRegulatorRemoval_zeroPhase · IndisputableMonolith/Gravity/SevenGaps/RegulatorRemovalNoGo.lean
/-- **HEADLINE (kernel no-go).** Regulator removal FAILS at zero phase:
the Gaussian-regulated quotient path sum `Z_RS_uv ρ zeroPhase` has NO
limit as `ρ → 0⁺`. Mechanism: any putative limit `L` is beaten by a
single shell of mass `> L.re + 2` (shell masses diverge), whose regulated
contribution tends to its full mass as the regulator is removed. -/
theorem not_hasZRSRegulatorRemoval_zeroPhase :
¬ HasZRSRegulatorRemoval zeroPhase := by
rintro ⟨L, hL⟩
have hre : Filter.Tendsto (fun ρ : ℝ => (Z_RS_uv ρ zeroPhase).re)
(nhdsWithin 0 (Set.Ioi 0)) (nhds L.re) :=
(Complex.continuous_re.tendsto L).comp hL
obtain ⟨n₀, hn₀⟩ := shellMass_unbounded (L.re + 2)
have hexp : Filter.Tendsto
(fun ρ : ℝ => Real.exp (-ρ * (n₀ : ℝ) ^ 2) * shellMass n₀)
(nhdsWithin 0 (Set.Ioi 0)) (nhds (shellMass n₀)) := by
refine Filter.Tendsto.mono_left ?_ nhdsWithin_le_nhds
refine Continuous.tendsto' ?_ 0 (shellMass n₀) ?_
· exact (Real.continuous_exp.comp
(continuous_neg.mul continuous_const)).mul continuous_const
· simp only [neg_zero, zero_mul, Real.exp_zero, one_mul]
have hev1 : ∀ᶠ ρ in nhdsWithin (0 : ℝ) (Set.Ioi 0),
L.re + 1 < Real.exp (-ρ * (n₀ : ℝ) ^ 2) * shellMass n₀ :=
hexp.eventually_const_lt (by linarith)
have hev2 : ∀ᶠ ρ in nhdsWithin (0 : ℝ) (Set.Ioi 0),
(Z_RS_uv ρ zeroPhase).re < L.re + 1 :=
hre.eventually_lt_const (by linarith)
have hev3 : ∀ᶠ ρ in nhdsWithin (0 : ℝ) (Set.Ioi 0), ρ ∈ Set.Ioi (0 : ℝ) :=
eventually_mem_nhdsWithin
obtain ⟨ρ, ⟨h1, h2⟩, h3⟩ := ((hev1.and hev2).and hev3).exists
have h4 := single_shell_re_lower_bound ρ (Set.mem_Ioi.mp h3) n₀
linarith
THEOREM shellMass_unbounded · IndisputableMonolith/Gravity/SevenGaps/RegulatorRemovalNoGo.lean
/-- **HEADLINE DIVERGENCE.** The shell masses are unbounded: for every
real threshold there is a shell whose total `1/|Aut|` mass exceeds it. -/
theorem shellMass_unbounded (C : ℝ) : ∃ n : ℕ, C < shellMass n := by
obtain ⟨m, hm⟩ := exists_nat_gt C
refine ⟨max 1 m, ?_⟩
have hle : ((max 1 m : ℕ) : ℝ) ^ (3 * max 1 m) ≤ shellMass (max 1 m) :=
shellMass_lower (max 1 m)
have hselfN : (max 1 m : ℕ) ≤ (max 1 m) ^ (3 * max 1 m) :=
Nat.le_self_pow (by omega) _
have hself : ((max 1 m : ℕ) : ℝ) ≤ ((max 1 m : ℕ) : ℝ) ^ (3 * max 1 m) := by
calc ((max 1 m : ℕ) : ℝ)
≤ (((max 1 m) ^ (3 * max 1 m) : ℕ) : ℝ) := by exact_mod_cast hselfN
_ = ((max 1 m : ℕ) : ℝ) ^ (3 * max 1 m) := Nat.cast_pow _ _
have hmR : (m : ℝ) ≤ ((max 1 m : ℕ) : ℝ) := by
exact_mod_cast le_max_right 1 m
linarith
THEOREM OscillatoryRemovalOpen · IndisputableMonolith/Gravity/SevenGaps/RegulatorRemovalNoGo.lean
/-- **NAMED OPEN (definition only, NEVER claimed).** Whether regulator
removal holds for SOME phase (in particular, for a genuine oscillatory
action phase whose cancellations could tame the diverging shell masses).
The zero-phase refutation above does NOT decide this: its lower-bound
argument uses positivity, which oscillation destroys. No theorem in this
module asserts or refutes this Prop. -/
def OscillatoryRemovalOpen : Prop :=
∃ phase : ∀ n : ℕ, ExactPathClass n → ℝ, HasZRSRegulatorRemoval phase
What this page does not claim
The theorem does not prove anything about regulator removal for nonzero phases, which remains open. The theorem does not establish anything about the physical continuum limit, which is a separate standing constraint. The theorem does not equate the quotient-sum convention of Z_RS_uv with the labeled-sum convention of PathSumMeasure.Z.
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/RegulatorRemovalNoGo.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:
- For which nonzero phases, if any, does the Gaussian-regulated quotient path sum have a limit as the regulator is removed?
- What mechanism could provide the proved cancellation between unit phases that oscillatory removal would require?
- How does the quotient-sum convention of Z_RS_uv relate to the labeled-sum convention of PathSumMeasure.Z in other contexts?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM not_hasZRSRegulatorRemoval_zeroPhase · IndisputableMonolith/Gravity/SevenGaps/RegulatorRemovalNoGo.lean
/-- **HEADLINE (kernel no-go).** Regulator removal FAILS at zero phase: the Gaussian-regulated quotient path sum `Z_RS_uv ρ zeroPhase` has NO limit as `ρ → 0⁺`. Mechanism: any putative limit `L` is beaten by a single shell of mass `> L.re + 2` (shell masses diverge), whose regulated contribution tends to its full mass as the regulator is removed. -/ theorem not_hasZRSRegulatorRemoval_zeroPhase : ¬ HasZRSRegulatorRemoval zeroPhase := by rintro ⟨L, hL⟩ have hre : Filter.Tendsto (fun ρ : ℝ => (Z_RS_uv ρ zeroPhase).re) (nhdsWithin 0 (Set.Ioi 0)) (nhds L.re) := (Complex.continuous_re.tendsto L).comp hL obtain ⟨n₀, hn₀⟩ := shellMass_unbounded (L.re + 2) have hexp : Filter.Tendsto (fun ρ : ℝ => Real.exp (-ρ * (n₀ : ℝ) ^ 2) * shellMass n₀) (nhdsWithin 0 (Set.Ioi 0)) (nhds (shellMass n₀)) := by refine Filter.Tendsto.mono_left ?_ nhdsWithin_le_nhds refine Continuous.tendsto' ?_ 0 (shellMass n₀) ?_ · exact (Real.continuous_exp.comp (continuous_neg.mul continuous_const)).mul continuous_const · simp only [neg_zero, zero_mul, Real.exp_zero, one_mul] have hev1 : ∀ᶠ ρ in nhdsWithin (0 : ℝ) (Set.Ioi 0), L.re + 1 < Real.exp (-ρ * (n₀ : ℝ) ^ 2) * shellMass n₀ := hexp.eventually_const_lt (by linarith) have hev2 : ∀ᶠ ρ in nhdsWithin (0 : ℝ) (Set.Ioi 0), (Z_RS_uv ρ zeroPhase).re < L.re + 1 := hre.eventually_lt_const (by linarith) have hev3 : ∀ᶠ ρ in nhdsWithin (0 : ℝ) (Set.Ioi 0), ρ ∈ Set.Ioi (0 : ℝ) := eventually_mem_nhdsWithin obtain ⟨ρ, ⟨h1, h2⟩, h3⟩ := ((hev1.and hev2).and hev3).exists have h4 := single_shell_re_lower_bound ρ (Set.mem_Ioi.mp h3) n₀ linarithThe declaration not_hasZRSRegulatorRemoval_zeroPhase is a proved theorem that the Gaussian-regulated quotient path sum Z_RS_uv has no limit as the regulator parameter ρ approaches zero from above, when the phase is zero. not_hasZRSRegulatorRemoval_zeroPhase · IndisputableMonolith/Gravity/SevenGaps/RegulatorRemovalNoGo.leanTHEOREM shellMass_unbounded · IndisputableMonolith/Gravity/SevenGaps/RegulatorRemovalNoGo.lean
/-- **HEADLINE DIVERGENCE.** The shell masses are unbounded: for every real threshold there is a shell whose total `1/|Aut|` mass exceeds it. -/ theorem shellMass_unbounded (C : ℝ) : ∃ n : ℕ, C < shellMass n := by obtain ⟨m, hm⟩ := exists_nat_gt C refine ⟨max 1 m, ?_⟩ have hle : ((max 1 m : ℕ) : ℝ) ^ (3 * max 1 m) ≤ shellMass (max 1 m) := shellMass_lower (max 1 m) have hselfN : (max 1 m : ℕ) ≤ (max 1 m) ^ (3 * max 1 m) := Nat.le_self_pow (by omega) _ have hself : ((max 1 m : ℕ) : ℝ) ≤ ((max 1 m : ℕ) : ℝ) ^ (3 * max 1 m) := by calc ((max 1 m : ℕ) : ℝ) ≤ (((max 1 m) ^ (3 * max 1 m) : ℕ) : ℝ) := by exact_mod_cast hselfN _ = ((max 1 m : ℕ) : ℝ) ^ (3 * max 1 m) := Nat.cast_pow _ _ have hmR : (m : ℝ) ≤ ((max 1 m : ℕ) : ℝ) := by exact_mod_cast le_max_right 1 m linarithThe shell mass, defined as the sum of 1/|Aut| over classes, is shown to grow without bound. shellMass_unbounded · IndisputableMonolith/Gravity/SevenGaps/RegulatorRemovalNoGo.leanTHEOREM OscillatoryRemovalOpen · IndisputableMonolith/Gravity/SevenGaps/RegulatorRemovalNoGo.lean
/-- **NAMED OPEN (definition only, NEVER claimed).** Whether regulator removal holds for SOME phase (in particular, for a genuine oscillatory action phase whose cancellations could tame the diverging shell masses). The zero-phase refutation above does NOT decide this: its lower-bound argument uses positivity, which oscillation destroys. No theorem in this module asserts or refutes this Prop. -/ def OscillatoryRemovalOpen : Prop := ∃ phase : ∀ n : ℕ, ExactPathClass n → ℝ, HasZRSRegulatorRemoval phaseThe theorem says nothing about oscillatory phases: regulator removal for a genuine action phase would require proved cancellation between unit phases and remains open. OscillatoryRemovalOpen · IndisputableMonolith/Gravity/SevenGaps/RegulatorRemovalNoGo.lean