Definition (Graph Laplacian)

The Graph Laplacian (or the Laplacian Matrix) is a matrix representation of a graph. It represents the edges of a graph similar to how an adjacency matrix is defined, but requires each row to sum to . For example, given , the adjacency graph is all s, but the diagonals. However, the Laplacian matrix of is:

where for , it has an edge to and , so the first row has two s, and the diagonal is to make the row sum to . The same applies for the other rows.

For directed graphs, either the in-degree or out-degree can be used to determine the diagonal entries. For example, for the directed graph , the Laplacian matrix is:

Formally, it is defined by

where is the degree matrix and is the adjacency matrix. is a diagonal matrix where the -th diagonal entry is the degree of vertex .