AdjacencyMatrixCopy to clipboard.
✖
AdjacencyMatrix
Details

- An adjacency matrix is also known as a connectivity matrix.
- AdjacencyMatrix returns a SparseArray object, which can be converted to an ordinary matrix using Normal.
- An entry aij of the adjacency matrix is the number of directed edges from vertex νi to vertex νj.
- The diagonal entries aii count the number of loops for vertex vi.
- An undirected edge is interpreted as two directed edges with opposite directions.
- The vertices vi are assumed to be in the order given by VertexList[g].
- The adjacency matrix for a graph will have dimensions
×
, where
is the number of vertices.

Background & Context
- AdjacencyMatrix returns a square matrix whose rows and columns correspond to the vertices of a graph and whose elements aij are non-negative integers that give the numbers of (directed) edges from vertex vi to vertex vj. An adjacency matrix provides a useful representation of a graph that can be used to compute many properties by means of simple operations on matrices. Examples of computations on graphs that can be performed efficiently given an adjacency matrix include vertex degrees, in- and out-degrees, counts of paths between vertices in at most
steps, graph spectrum, and many others.
- For a graph on
vertices, the adjacency matrix has dimensions
×
. For an undirected graph, the adjacency matrix is symmetric. For a finite simple graph (i.e. an undirected, unweighted graph with no self-loops or multiple edges), the adjacency matrix must have 0s on the diagonal, and its matrix elements are given by
if
is adjacent to
and
otherwise.
- An explicit adjacency matrix representation of a graph based on a particular ordering of vertices is unique. However, since the vertices of a graph may be permuted, there is a class of adjacency matrices that represents the corresponding isomorphism class of graphs. Nonetheless, the adjacency matrix for an isomorphism class is unique modulo permutation of rows and columns of the matrix (corresponding precisely to relabeling of the graph vertices).
- AdjacencyGraph can be used to construct a graph from an adjacency matrix. IncidenceMatrix gives another matrix representation of a graph that gives vertex-edge relationships instead of vertex-vertex relationships. AdjacencyMatrix does not take graph weights into account, so WeightedAdjacencyMatrix must be used when computing the adjacency matrix of a graph having edge weights.
Examples
open allclose allBasic Examples (2)Summary of the most common use cases
The adjacency matrix of an undirected graph:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-dkm3wv


https://wolfram.com/xid/0hyvz9euu3xn7vy6-f5ppu9

The adjacency matrix of a directed graph:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-pqn9g6


https://wolfram.com/xid/0hyvz9euu3xn7vy6-cp35xo

Scope (5)Survey of the scope of standard use cases
The adjacency matrix of an undirected graph is symmetric:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-brfunn


https://wolfram.com/xid/0hyvz9euu3xn7vy6-fo7txu

The adjacency matrix of a directed graph can be unsymmetric:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-becm22


https://wolfram.com/xid/0hyvz9euu3xn7vy6-pcpon

Use rules to specify the graph:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-bndh30

The adjacency matrix of the graph with self-loops has diagonal entries:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-cuz87q


https://wolfram.com/xid/0hyvz9euu3xn7vy6-h7st8b

AdjacencyMatrix works with large graphs:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-jyefgb

https://wolfram.com/xid/0hyvz9euu3xn7vy6-fi4a2b

Use MatrixPlot to visualize the matrix:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-ne4gm8

Applications (7)Sample problems that can be solved with this function
Compute the degree for an undirected graph from its adjacency matrix:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-lmqwj

https://wolfram.com/xid/0hyvz9euu3xn7vy6-drpce4


https://wolfram.com/xid/0hyvz9euu3xn7vy6-c6j3u8

Compute the in-degree for a directed graph from its adjacency matrix:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-6xfvz

https://wolfram.com/xid/0hyvz9euu3xn7vy6-gljmlv


https://wolfram.com/xid/0hyvz9euu3xn7vy6-dx7vu8

Compute the out-degree for a directed graph from its adjacency matrix:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-dxjcn2

https://wolfram.com/xid/0hyvz9euu3xn7vy6-gwxjah


https://wolfram.com/xid/0hyvz9euu3xn7vy6-eh1ubk

Count the number of paths between all vertices in exactly steps for a directed graph:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-ua4e2
There are two paths from 1 to 5 in two steps:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-gqss6k

Count the number of paths from to
in exactly
steps for a directed graph:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-foetn5

https://wolfram.com/xid/0hyvz9euu3xn7vy6-euhrnb

Compute the co-citation matrix, where the co-citation for two vertices is the number of common ancestors:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-j2ewr1

https://wolfram.com/xid/0hyvz9euu3xn7vy6-jw9lr9

https://wolfram.com/xid/0hyvz9euu3xn7vy6-t2ane


https://wolfram.com/xid/0hyvz9euu3xn7vy6-ikfkct

Compute the coupling matrix, where the coupling between two vertices is the number of common descendants:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-bf264s

https://wolfram.com/xid/0hyvz9euu3xn7vy6-sycjs

https://wolfram.com/xid/0hyvz9euu3xn7vy6-bkutjf


https://wolfram.com/xid/0hyvz9euu3xn7vy6-k3mzv

Properties & Relations (14)Properties of the function, and connections to other functions
Rows and columns of the adjacency matrix follow the order given by VertexList:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-joylju


https://wolfram.com/xid/0hyvz9euu3xn7vy6-cwu88m


https://wolfram.com/xid/0hyvz9euu3xn7vy6-i573me

Use VertexIndex to find the matrix row and column corresponding to a pair of vertices:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-6ugpls


https://wolfram.com/xid/0hyvz9euu3xn7vy6-59k8ql

Check whether 1 and 4 are adjacent vertices:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-fdamdx

Compare with EdgeQ:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-smxblt

An undirected graph has a symmetric adjacency matrix:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-tt62l


https://wolfram.com/xid/0hyvz9euu3xn7vy6-iotp57


https://wolfram.com/xid/0hyvz9euu3xn7vy6-dnnjjc

Use AdjacencyGraph to construct a graph from an adjacency matrix:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-clncmi


https://wolfram.com/xid/0hyvz9euu3xn7vy6-p3vm2

The main diagonal of the adjacency matrix for any graph without loops has all zero entries:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-jez1rj


https://wolfram.com/xid/0hyvz9euu3xn7vy6-ddcmod

The number of rows or columns of the adjacency matrix is equal to the number of vertices:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-dxrnuc


https://wolfram.com/xid/0hyvz9euu3xn7vy6-gmegrm


https://wolfram.com/xid/0hyvz9euu3xn7vy6-b6qsb8

Isomorphic graphs can have different adjacency matrices:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-gr1h2g


https://wolfram.com/xid/0hyvz9euu3xn7vy6-e26sju


https://wolfram.com/xid/0hyvz9euu3xn7vy6-m4mylm

Permute the adjacency matrix of g according to the mapping that gets an equal matrix of h:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-rylue0


https://wolfram.com/xid/0hyvz9euu3xn7vy6-7hhmw

A d-regular graph g is connected if the multiplicity of its d eigenvalue is 1:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-ofkze6


https://wolfram.com/xid/0hyvz9euu3xn7vy6-jzz0z2

The multiplicity 3 is 1, so it is connected:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-chrwal


https://wolfram.com/xid/0hyvz9euu3xn7vy6-bdi8ze

For a complete graph, all entries outside the diagonal are 1s in the adjacency matrix:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-ibess

A complete -partite graph has zero diagonal block entries:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-k4sdai

A TuranGraph is bipartite:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-dm7609


https://wolfram.com/xid/0hyvz9euu3xn7vy6-e5s3uc

A StarGraph has 1s in the first column and first row only:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-d7ifij

For a path, rows of an adjacency matrix will contain one or two elements:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-n7ss2q


https://wolfram.com/xid/0hyvz9euu3xn7vy6-e77b1

The adjacency matrix of a line graph can be computed by its IncidenceMatrix:

https://wolfram.com/xid/0hyvz9euu3xn7vy6-pgy1sf


https://wolfram.com/xid/0hyvz9euu3xn7vy6-cv94r3

https://wolfram.com/xid/0hyvz9euu3xn7vy6-ergbug

Wolfram Research (2010), AdjacencyMatrix, Wolfram Language function, https://reference.wolfram.com/language/ref/AdjacencyMatrix.html (updated 2015).
Text
Wolfram Research (2010), AdjacencyMatrix, Wolfram Language function, https://reference.wolfram.com/language/ref/AdjacencyMatrix.html (updated 2015).
Wolfram Research (2010), AdjacencyMatrix, Wolfram Language function, https://reference.wolfram.com/language/ref/AdjacencyMatrix.html (updated 2015).
CMS
Wolfram Language. 2010. "AdjacencyMatrix." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2015. https://reference.wolfram.com/language/ref/AdjacencyMatrix.html.
Wolfram Language. 2010. "AdjacencyMatrix." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2015. https://reference.wolfram.com/language/ref/AdjacencyMatrix.html.
APA
Wolfram Language. (2010). AdjacencyMatrix. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/AdjacencyMatrix.html
Wolfram Language. (2010). AdjacencyMatrix. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/AdjacencyMatrix.html
BibTeX
@misc{reference.wolfram_2025_adjacencymatrix, author="Wolfram Research", title="{AdjacencyMatrix}", year="2015", howpublished="\url{https://reference.wolfram.com/language/ref/AdjacencyMatrix.html}", note=[Accessed: 04-April-2025
]}
BibLaTeX
@online{reference.wolfram_2025_adjacencymatrix, organization={Wolfram Research}, title={AdjacencyMatrix}, year={2015}, url={https://reference.wolfram.com/language/ref/AdjacencyMatrix.html}, note=[Accessed: 04-April-2025
]}