Foundational Definitions For The Cn^3 Formalization #
This module contains the basic combinatorial, Gaussian, and coordinate-level objects used throughout the active development.
It is intentionally definition-heavy: the later analytic and counting bridges live in the split follow-on modules
RequestProject.HadamardCn3TorusCountRequestProject.HadamardCn3MomentsRequestProject.HadamardCn3MOORequestProject.HadamardCn3ResidualBase
Architecture #
We model edge data using symmetric matrices Fin n → Fin n → ℝ rather than an
explicit Fin (n.choose 2) coordinate system. This keeps the basic
definitions, influence statistics, and Gaussian support quantities closer to
the mathematical notation used downstream.
Setup and Core Definitions #
The same quadratic form evaluated on real coordinates, used for the Gaussian comparison side of the Mossel-O'Donnell-Oleszkiewicz invariance principle.
Equations
Instances For
The inner-core Gaussian mass G_core(d,t) = ∫_{‖λ‖²≤d/t} e^{-2t‖λ‖²} dλ. Defined as the Lebesgue integral with indicator.
Equations
Instances For
The number N_{n,s} of n × s partial Hadamard matrices. An n × s partial Hadamard matrix has entries ±1 with pairwise orthogonal rows.
Equations
Instances For
The normalized count N_{n,s} / 2^{ns}.
This is the combinatorial quantity directly identified with the normalized
torus integral.
Equations
- normalizedCount n s = ↑(hadamardCount n s) / 2 ^ (n * s)
Instances For
The ordered 4-cycle form C_4^ord(λ) = Σ over ordered 4-cycles.
Equations
- orderedCycle4 n lam = 8 * simpleCycle4 n lam
Instances For
The simple 4-cycle contribution coming from cycles that use the last vertex.
Equations
Instances For
The triangle form splits by whether a triangle uses the last vertex.
Manuscript lem:quartic-peeling in corrected-quartic form.
Internal Gaussian characteristic-function support #
The complex Gaussian integrand for the quadratic phase gaussianInnerX.
Equations
- gaussianPsiIntegrand n lam x = Complex.exp (↑((-∑ i : Fin n, x i ^ 2) / 2) + ↑(gaussianInnerX n lam x) * Complex.I)
Instances For
The complex-valued Gaussian characteristic function corresponding to
gaussianInnerX.
Equations
Instances For
The Gaussian quadratic-characteristic function used in the MOO comparison,
written via its real and imaginary parts:
E[cos(gaussianInnerX)] + i E[sin(gaussianInnerX)]. This is the exact package
needed to combine the MOO cosine/sine comparison with the Gaussian modulus
estimate from the text.
Equations
- gaussianPsi n lam = ↑(stdGaussianAvg n fun (x : Fin n → ℝ) => Real.cos (gaussianInnerX n lam x)) + ↑(stdGaussianAvg n fun (x : Fin n → ℝ) => Real.sin (gaussianInnerX n lam x)) * Complex.I
Instances For
The matrix-model moments vary continuously with the edge weights.
The cubic triangle sum is a continuous polynomial in the matrix entries.
Sum of the two-edge products over triangles containing the ordered pair (u,v).
Equations
Instances For
Internal last-coordinate peeling identities #
The quintic correction is a continuous polynomial in the matrix entries.
The count scale 2^{4nt} A_n(t) appearing in cor:cn3-count-asym.
Equations
- countScale n t = 2 ^ (4 * n * t) * gaussianScale n ↑t