ConceptComplete

Laplacian Matrix and Expansion

The Laplacian matrix L=DAL = D - A captures the diffusive properties of a graph. Its second-smallest eigenvalue -- the algebraic connectivity -- measures how well-connected the graph is and controls random walk mixing.


Laplacian Spectrum

Definition8.3Laplacian Matrix

The Laplacian L(G)=DAL(G) = D - A where D=diag(deg(v1),,deg(vn))D = \mathrm{diag}(\deg(v_1), \ldots, \deg(v_n)). Properties: LL is positive semidefinite; eigenvalues 0=μ1μ2μn0 = \mu_1 \leq \mu_2 \leq \cdots \leq \mu_n; the multiplicity of eigenvalue 0 equals the number of connected components; the algebraic connectivity μ2=a(G)\mu_2 = a(G) (Fiedler, 1973) satisfies a(G)>0a(G) > 0 iff GG is connected.

Definition8.4Normalized Laplacian

The normalized Laplacian is L=D1/2LD1/2=ID1/2AD1/2\mathcal{L} = D^{-1/2}LD^{-1/2} = I - D^{-1/2}AD^{-1/2}. Its eigenvalues 0=μ~1μ~n20 = \tilde{\mu}_1 \leq \cdots \leq \tilde{\mu}_n \leq 2. The normalized Laplacian is better suited for irregular graphs. The random walk matrix P=D1AP = D^{-1}A has eigenvalues 1μ~i1 - \tilde{\mu}_i, connecting Laplacian spectrum to random walk behavior.


Cheeger's Inequality and Expansion

ExampleCheeger's Inequality

The conductance (Cheeger constant) of GG is h(G)=minS:0<Sn/2E(S,Sˉ)Sh(G) = \min_{S: 0 < |S| \leq n/2} \frac{|E(S, \bar{S})|}{|S|} (for dd-regular graphs, often normalized by dd). Cheeger's inequality: μ22h(G)2μ2\frac{\mu_2}{2} \leq h(G) \leq \sqrt{2\mu_2} for dd-regular graphs (with hh normalized by dd). This connects the algebraic and combinatorial notions of expansion: good expansion (hh large) is equivalent to a spectral gap (μ2\mu_2 bounded away from 0).

RemarkExpander Graphs

An infinite family of dd-regular graphs {Gn}\{G_n\} with V(Gn)|V(G_n)| \to \infty is an expander family if μ2(Gn)c>0\mu_2(G_n) \geq c > 0 uniformly. Expanders exist for all d3d \geq 3 (probabilistic proof; explicit constructions by Margulis, Lubotzky-Phillips-Sarnak). The Alon-Boppana bound: λ2(G)2d1o(1)\lambda_2(G) \geq 2\sqrt{d-1} - o(1) for dd-regular graphs, so μ2d2d1+o(1)\mu_2 \leq d - 2\sqrt{d-1} + o(1). Ramanujan graphs achieve λ22d1\lambda_2 \leq 2\sqrt{d-1}, optimal expansion.


Applications

Definition8.5Random Walks and Mixing Time

A random walk on GG transitions from vertex uu to a random neighbor. For a connected non-bipartite dd-regular graph, the walk converges to the uniform distribution. The mixing time tmix=O(logn/(1λ))t_{\text{mix}} = O(\log n / (1 - \lambda)) where λ=max(λ2,λn)/d\lambda = \max(|\lambda_2|, |\lambda_n|)/d. The spectral gap 1λ1 - \lambda controls how fast mixing occurs. Expander graphs have tmix=O(logn)t_{\text{mix}} = O(\log n), the fastest possible.