Laplacian (Kirchoff) matrix

Tags: #definition

Laplacian (Kirchoff) matrix

Let G be a graph with n vertices. The Laplacian matrix of G is the n×n matrix

L=diag(d1,,dn)A

where di is the degree of the ith vertex and A is the adjacency matrix.

If G is directed graph, di is instead the in-degree of i.

If G is a weighted graph, note that the degree is the sum of the weights of the edges connected to i (and if it is directed, we take the sum over all in-edges)

Properties

Undirected case:

Example

Let G be the following graph:
Pasted image 20260409095759.png|200
Its Laplacian matrix as an UNDIRECTED graph is

L=[4112120110212114]

as a DIRECTED graph, it is

L=[2101010110011003]