8

I know that the graph Laplacian of a fully connected graph commutes with the Laplacian of any other graph.

Is there any theorem stating something similar about some more general family of graphs? I'm specially interested to know if there's any result about sparse random graphs.

Thanks.

--EDIT (Re-statement): What Laplacians commute with a -given- Laplacian? One answer is all of its powers and their linear combination (see:Given a matrix, is there always another matrix which commutes with it?) Are there other graphs (a more general family) with this property?

SKV
  • 254
  • 2
    In general a polynomial in a Laplacian will not be a Laplacian. The Laplacian of the complement will commute with the Laplacian, but it's not clear that there will be much else in general. – Chris Godsil Apr 22 '13 at 21:28

1 Answers1

4

Let $X_{ij}$ be the graph on $n$ vertices with exactly one edge, joining $i$ to $j$. The Laplacian of $X_{ij}$ is $(e_i-e_j)(e_i-e_j)^T$. It's not difficult to check that if this commutes with the Laplacian $L$ of a graph $G$ and $v$ is a vertex of $G$ not $i$ or $j$, then $v$ is adjacent to $i$ if and only if it is adjacent to $j$.

It follows that if $L$ commutes with the Laplacian of $X_{ij}$ for all $i$ and $j$, then $G$ is a either a complete graph, or the graph with no edges.

Chris Godsil
  • 13,703
  • Thanks, I was looking for Laplacians that commute with a given Laplacian. This answer is correct for general Laplacians. I updated the question to reflect this. I found this post also very relevant: [http://math.stackexchange.com/questions/92480/given-a-matrix-is-there-always-another-matrix-which-commutes-with-it] – SKV Apr 22 '13 at 19:01