pith. machine review for the scientific record. sign in
def definition def or abbrev high

Q3_laplacian_eigenvalues

show as:
view Lean formalization →

The definition supplies the ordered list of Laplacian eigenvalues for the three-dimensional hypercube graph Q₃ as [0, 2, 2, 2, 4, 4, 4, 6]. Researchers in spectral graph theory within Recognition Science cite it when verifying trace identities or multiplicity counts for the ℤ³ unit cell. The entry is introduced as a direct constant definition with no lemmas or tactics required.

claimThe Laplacian eigenvalues of the three-cube graph $Q_3$ are the list $[0, 2, 2, 2, 4, 4, 4, 6]$.

background

The module encodes combinatorial and spectral properties of the three-dimensional hypercube $Q_3$, the unit cell of the integer lattice ℤ³. This graph has eight vertices, twelve edges, and six faces, with automorphism group of order 48. The Laplacian spectrum is stated directly with multiplicities one for eigenvalue 0, three for 2, three for 4, and one for 6.

proof idea

Direct definition that hard-codes the known eigenvalue list for the Q₃ graph Laplacian.

why it matters in Recognition Science

This supplies the spectral data required by the Q3Cert structure, which encodes the Euler characteristic and trace identity for the critical simplex vertex count of four in three dimensions. It supports the eigenvalue count and trace theorems that feed critical exponent corrections in Recognition Science, consistent with the D = 3 spatial dimensions fixed by the forcing chain.

scope and limits

Lean usage

theorem Q3_trace : Q3_laplacian_eigenvalues.sum = Q3_degree * Q3_vertices := by unfold Q3_laplacian_eigenvalues Q3_degree Q3_vertices; native_decide

formal statement (Lean)

  45def Q3_laplacian_eigenvalues : List ℕ := [0, 2, 2, 2, 4, 4, 4, 6]

proof body

Definition body.

  46

used by (3)

From the project-wide theorem graph. These declarations reference this one in their body.