[Math] Proof of Algebraic connectivity

algebraic-graph-theorygraph theorylinear algebraspectral-graph-theory

I am very curious about the proof of Algebraic connectivity

Algebraic connectivity:

The algebraic connectivity of a graph $G$ is the second-smallest eigenvalue of the Laplacian matrix of $G$. This eigenvalue is greater than $0$ if and only if $G$ is a connected graph.This is a corollary to the fact that the number of times $0$ appears as an eigenvalue in the Laplacian is the number of connected components in the graph.

For details : Algebraic connectivity on Wikipedia.

I found this claims very interesting, how exactly the second smallest eigenvalue can be the sign of connectivity of the graph.

Following fact not less interesting,

Denote eigenvalues by $\lambda_1 \leq \lambda_2 \leq \cdots \leq \lambda_n$, then $\lambda_1=0$. This can be proved by using the fact that the laplacian matrix is positive semidefinite which implies that it has nonnegative eigenvalues , and showing that 0 is eigenvalue of this matrix corresponding to the vector $ \langle 1,1, \cdots, 1 \rangle$.

So far I didn't do the proof of Algebraic connectivity. If you have a link, I will appreciate publishing it.

Thanks!

Best Answer

Let $G = (V, E)$ be a finite graph and let $\Delta$ denote its Laplacian (here we take the convention that the Laplacian is positive semidefinite). For simplicity name the vertices $1, 2, ... n$. Then $\Delta$ is the matrix associated to the quadratic form $$q(x_1, ... x_n) = \sum_{(i, j) \in E} (x_i - x_j)^2$$

which one might call the Dirichlet energy. Recall that, for an appropriate change of variables, such a quadratic form can be written as $$q(z_1, ... z_n) = \sum_i \lambda_i z_i^2$$

where $\lambda_i$ are the eigenvalues of $\Delta$. Thus to determine the multiplicity of the zero eigenvalue it suffices to determine when $q$ can be zero. But from the first expression it should be clear that $q = 0$ if and only if $x_i = x_j$ whenever $(i, j) \in E$; that is, whenever $(x_1, ... x_n)$ determines a function $$x : V \to \mathbb{R}$$

which is constant on each connected component of $G$. The dimension of this space of functions is clearly the number of connected components of $G$, and the conclusion follows.

Related Question