N9.2: Define canonical localized frequency envelopes and prove H_FE via bootstrap#23
Draft
Copilot wants to merge 2 commits into
Draft
N9.2: Define canonical localized frequency envelopes and prove H_FE via bootstrap#23Copilot wants to merge 2 commits into
Copilot wants to merge 2 commits into
Conversation
… proof Agent-Logs-Url: https://github.com/TOTOGT/DM3-lab/sessions/60c92a3a-9f46-4308-a2f5-49f6035a65d7 Co-authored-by: TOTOGT <266586635+TOTOGT@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Define canonical localized frequency envelopes and prove envelope extraction lemmas
N9.2: Define canonical localized frequency envelopes and prove H_FE via bootstrap
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.
Issue N9.2 required a precise definition of
c_{j,x₀,k}(t)(localized frequency envelopes) and a proof or reduction of the near-diagonal summability hypothesis H_FE:2^k · ∫ Σ_{j=k}^{k+J} 2^{j/2} c_j² dt ≤ A.New:
lean/FreqEnvelopes.leanLean 4 formalization in
namespace TOGT.FreqEnvelopescovering:Canonical definition —
FreqEnvelopeFamilyabstractsc_{j,x₀,k}(t)² = ∫ |P_j f(x,t)|² φ_{x₀,k}(x) dx(Littlewood–Paley projector weighted by smooth spatial bump at scale2^{-k}). Docstring states the concrete LP definition; the structure axiomatises only what H_FE needs.H_FE statement —
def H_FE (F : FreqEnvelopeFamily) (J : ℕ) (A : ℝ) : Propasserts the uniform bound over allk.Bootstrap reduction —
Hyp_Bootstraprequires∫ c_j² dt ≤ C · 2^{-αj}withα > 3/2.H_FE_of_bootstrapderives H_FE with explicit constantA = C(J+1). Onesorrymarks the finite geometric sum comparison insidenearDiag_sum_bound; the surrounding logic is complete.Worked example —
geometricEnvelope(c_j(t) = baseʲ · φ(t),base < 2^{-3/2}) satisfies Hyp_Bootstrap withα = -2 log₂(base) > 3, confirming the definition is non-vacuous.New:
docs/analysis_ns/n9_v0.1_freq_envelopes.mdMathematical exposition: LP projector setup, precise definition of
c_{j,x₀,k}, H_FE statement, full bootstrap proof sketch, and the geometric-decay example with explicit constants.Minor updates
docs/analysis_ns/README.md— index entry for the new note.lean/Main.lean— cross-reference comment toFreqEnvelopes.lean.