[Math] Is the Laplacian matrix of a directed graph positive semi-definite

graph-laplacian

Define the Laplacian matrix as $L = D – A$. Here $A$ is the adjacency matrix of the directed graph so that the entries $A_{ij}$ of $A$ are equal to $1$ if there is an arrow form the vertex $j$ to $i$ and $0$ otherwise, and $D = \operatorname{diag}(\sum_{j=1}^n A_{1j},\cdots,\sum_{j=1}^n A_{nj})$.

My question is: $L$ is positive semi-definite?

By Gershgorin's Theorem is known that all eigenvalues of L has their real part larger or equal to $0$. But that doesn't implies positive semi-definiteness, right? So, is $L$ is positive semi-definite, and how to prove it?

Best Answer

The two vertex graph with one directed edge provides a counterexample. In that case the Laplacian is given by $$\left( \begin{array}{cc} 1 & -1 \\ 0 & 0 \\ \end{array} \right)$$ For the vector $x = (x_1, x_2)$ we have that $$x^TLx = x_1(x_1 - x_2)$$ We can make this negative by choosing $x_2 > x_1 > 0$.