GraphLaplacian
The graph Laplacian, or simply the Laplacian, is a matrix associated with a graph that encodes its connectivity. For an undirected graph G=(V,E) with adjacency matrix A and degree matrix D (diagonal with vertex degrees), the unnormalized Laplacian is L = D − A. Normalized variants include the symmetric Laplacian L_sym = I − D^(-1/2) A D^(-1/2) and the random-walk Laplacian L_rw = I − D^(-1) A. These matrices are real and symmetric, and they are positive semidefinite.
Key properties: L is zero on constant vectors on each connected component; the multiplicity of eigenvalue 0
Applications: spectral clustering and graph partitioning use the eigenvectors corresponding to the smallest nonzero eigenvalues to
Computation and extensions: for large graphs, L is typically sparse, and eigen-decomposition of L or L_sym yields