N9.4: Kernel commutator lemma — formal far-range decay bound and J(ε) formula#21
Draft
Copilot wants to merge 2 commits into
Draft
N9.4: Kernel commutator lemma — formal far-range decay bound and J(ε) formula#21Copilot wants to merge 2 commits into
Copilot wants to merge 2 commits into
Conversation
3 tasks
- KernelDecayHyp structure: |K(j,k)| ≤ E0·exp(−ν·(j−k)), E0/ν/T documented - farRange_bound: ∑ₙ |K(k+J+n,k)| ≤ E0·exp(−ν·J)·(1−exp(−ν))⁻¹ (zero sorry) - chooseJ: J(ε) = ⌈log(E0/(ε·(1−exp(−ν))))/ν⌉₊ - farRange_le_eps: with J=J(ε), far-range ≤ ε uniformly in k (zero sorry) - docs/analysis_ns/README.md: N9.4 section with assumptions/bound/J(ε)/dependence table Agent-Logs-Url: https://github.com/TOTOGT/DM3-lab/sessions/cc3a9150-34f6-48b8-9b61-8cd41596f4b6 Co-authored-by: TOTOGT <266586635+TOTOGT@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add lemma to quantify far-range decay and select J
N9.4: Kernel commutator lemma — formal far-range decay bound and J(ε) formula
Apr 3, 2026
TOTOGT
approved these changes
Apr 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a formal Lean 4 proof quantifying how the far-range (j ≥ k + J) kernel contribution decays exponentially and provides an explicit cut-off formula J(ε) to enforce a uniform ε-bound.
New:
lean/KernelCommutatorDecay.leanDecay assumption (
KernelDecayHyp):E0 > 0— amplitude (encodes time horizon T via E0 = C₀·T)ν > 0— spectral-gap decay rateFar-range bound (
farRange_bound):Proved by comparison against the geometric majorant
E0 · exp(−ν·J) · exp(−ν)ⁿ, usingtsum_geometric_of_lt_one. Bound is uniform in k.Optimal cut-off (
chooseJ) and main corollary (farRange_le_eps):With
J = J(ε), the far-range sum is ≤ ε. Dependence: J grows as(1/ν) · log(E0/ε); larger T/E0 increases J, larger ν decreases it.Zero
sorry, zero axioms. Key auxiliary lemmaexp_pow_eq_exp_mul : exp(−ν)ⁿ = exp(−ν·n)proved by induction viaReal.exp_add.Updated:
docs/analysis_ns/README.mdAdded N9.4 section with the decay assumption, bound formula, J(ε) definition, and a parameter-dependence table.