$\begingroup$

The graph Laplacian is defined:

$$L=D-W$$

Where $W$ is the Similarity Matrix of the graph and $D$ is a diagonal matrix whose entries are column sums of $W$ (or row sums, by symmetry of $W$).

$W$ has multiple names:

  • the similarity matrix
  • the weight matrix
  • the affinity matrix
  • the adjacency matrix etc.

Are these names equivalent? Or are there subtle differences in their use?


References:

$\endgroup$1

2 Answers

$\begingroup$

They're all the same. Different communities use different names. In graph theory, it's always called "adjacency matrix" in unweighted graphs, and sometimes the "weight matrix" if the graphs are weighted. "Affinity" and "similarity" are sometimes used in data science when the weights are computed using some similarity score between the points in a point cloud data set.

$\endgroup$0$\begingroup$
Term Context
Adjacency matrix Term used in graph theory when the underlying object is a graph.
Weight matrix Term sometimes used in graph theory when they underlying object is a weighted graph.
Similarity matrix Term generally used in machine learning when the underlying object is a collection of data points in $\mathbb{R}^n$, from which a graph representation is created using a similarity measure. This is equivalent to the adjacency matrix of this graph.
Affinity matrix Synonym for Similarity matrix (via affinity measure as a synonym of similarity measure).
$\endgroup$

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy