Laplacian matrix: Difference between revisions
No edit summary |
|||
Line 6: | Line 6: | ||
# It is the product <math>M^TM</math> where <math>M</math> is an ''oriented'' [[incidence matrix]] of <math>G</math> (where the vertices are ordered by the function <math>v</math>) and <math>M^T</math> is the [[linear:matrix transpose|matrix transpose]] of <math>M</math>. | # It is the product <math>M^TM</math> where <math>M</math> is an ''oriented'' [[incidence matrix]] of <math>G</math> (where the vertices are ordered by the function <math>v</math>) and <math>M^T</math> is the [[linear:matrix transpose|matrix transpose]] of <math>M</math>. | ||
# It is a matrix defined as follows: | # It is a matrix defined as follows: | ||
* For <math>1 \le i \le n</math>, the <math>(i,i)^{th}</math> entry equals the [[degree of a vertex|degree]] of vertex <math>v(i)</math>. | #* For <math>1 \le i \le n</math>, the <math>(i,i)^{th}</math> entry equals the [[degree of a vertex|degree]] of vertex <math>v(i)</math>. | ||
* For <math>1 \le i,j \le n</math> with <math>i \ne j</math>, the <math>(i,j)^{th}</math> entry is -1 if <math>v(i)</math> and <math>v(j)</math> are adjacent, and 0 otherwise. | #* For <math>1 \le i,j \le n</math> with <math>i \ne j</math>, the <math>(i,j)^{th}</math> entry is -1 if <math>v(i)</math> and <math>v(j)</math> are adjacent, and 0 otherwise. | ||
Other names for the Laplacian matrix are '''graph Laplacian''', '''admittance matrix''', '''Kirchhoff matrix''', and '''discrete Laplacian'''. | |||
==Properties== | ==Properties== |
Revision as of 21:40, 25 May 2014
Definition
Suppose is a finite undirected graph. Let be the size of the vertex set . Fix a bijective correspondence . The Laplacian matrix of is a square matrix defined in the following equivalent ways:
- It is the matrix difference where is the degree matrix of and is the adjacency matrix of , both for the same vertex mapping .
- It is the product where is an oriented incidence matrix of (where the vertices are ordered by the function ) and is the matrix transpose of .
- It is a matrix defined as follows:
- For , the entry equals the degree of vertex .
- For with , the entry is -1 if and are adjacent, and 0 otherwise.
Other names for the Laplacian matrix are graph Laplacian, admittance matrix, Kirchhoff matrix, and discrete Laplacian.
Properties
- The Laplacian matrix of a graph is always a symmetric positive-definite matrix (this can easily be seen from version (2) of the definition.
- The Laplacian matrix is a diagonally dominant matrix: the magnitude of the diagonal entry is greater than or equal to the sum of the magnitudes of the off-diagonal entries in its row. In this case, in fact, exact equality holds for every row.