< Back | Next | Content >

Adjacency Matrix: Vertex to Vertex

The graph family argues that one of the best ways to represent them into a matrix is by counting the number of edge between two adjacent vertices.

Two vertices is said to be adjacent or neighbor if it support at least one common edge.

Let us start with example

Graph below has three vertices. Thus, we make adjacency matrix of size 3 by 3. Then we put the name of vertices on the side of the matrix. Look at the picture and we start with an empty matrix. Only the names of vertices are there

Graph Theory Tutorial: Adjacency matrix

Graph Theory Tutorial: Adjacency matrix Graph Theory Tutorial: Adjacency matrix

To fill the adjacency matrix, we look at the name of the vertex in row and column. If those vertices are connected by an edge or more, we count number of edges and put this number as matrix element.

Vertex Graph Theory Tutorial: Adjacency matrix and vertex Graph Theory Tutorial: Adjacency matrix has one common edge, we say that Vertex Graph Theory Tutorial: Adjacency matrix and vertex Graph Theory Tutorial: Adjacency matrix are adjacent (neighbor). We input the number of edge in the matrix cell that correspond to vertex Graph Theory Tutorial: Adjacency matrix and vertex Graph Theory Tutorial: Adjacency matrix .

Graph Theory Tutorial: Adjacency matrix

Vertex Graph Theory Tutorial: Adjacency matrix and Graph Theory Tutorial: Adjacency matrix is adjacent by one edge. Thus, we input the number of edge in the matrix cell that correspond to Vertex Graph Theory Tutorial: Adjacency matrix and Graph Theory Tutorial: Adjacency matrix .

Graph Theory Tutorial: Adjacency matrix

Similarly, vertex Graph Theory Tutorial: Adjacency matrix and Graph Theory Tutorial: Adjacency matrix is connected by one edge. Thus, we input the number of edge in the matrix cell that correspond to vertex Graph Theory Tutorial: Adjacency matrix and Graph Theory Tutorial: Adjacency matrix

Graph Theory Tutorial: Adjacency matrix

There is no other edge on the graph, thus we put the rest of unfilled cells in the matrix as zero

Graph Theory Tutorial: Adjacency matrix

The matrix to represent a graph in this way is called Adjacency matrix .

The size of adjacency matrix is equal to the number of vertices in the graph. It is a square matrix (that is the number of rows is equal to the number of columns).

The adjacency matrix of a graph is symmetric because it has no direction. Two vertices share the same edge can be called from the first one to the second one, or from the second one to the first one. For example, Vertex Graph Theory Tutorial: Adjacency matrix and vertex Graph Theory Tutorial: Adjacency matrix has one common edge, then element (a, b) = 1 and element (b, a) = 1.

Let us try another example:

Graph Theory Tutorial: Adjacency matrix

Can you make the adjacency matrix of this graph? Try it first before you look at the answer below.

The graph has 3 vertices, thus we make a matrix size 3 by 3. We put the name of vertices on the side of the matrix.

Graph Theory Tutorial: Adjacency matrix

Now look at the vertex Graph Theory Tutorial: Adjacency matrix and vertex Graph Theory Tutorial: Adjacency matrix . How many edges do the two vertices support? One. Then we put this value into the matrix

Graph Theory Tutorial: Adjacency matrix

Look at vertex Graph Theory Tutorial: Adjacency matrix and vertex Graph Theory Tutorial: Adjacency matrix . How many edges do these vertices support? None. Then, we put value zero into the corresponding cell in the matrix

Graph Theory Tutorial: Adjacency matrix

Next, you look at vertex Graph Theory Tutorial: Adjacency matrix and vertex Graph Theory Tutorial: Adjacency matrix . How many edge these vertices support? Two. Then we input the matrix into

Graph Theory Tutorial: Adjacency matrix

Since there is no other edge in the graph, we can fill the empty cell with zeros. Thus, we have the answer

Graph Theory Tutorial: Adjacency matrix Graph Theory Tutorial: Adjacency matrix

Some of you may ask about the diagonal part of the matrix, are these cells always zero? No, if you find the graph has some loop in some vertices, you can fill the diagonal element of adjacency matrix with the number of loop.

If a graph has some vertex that is not connected to any other vertices, the adjacency matrix correspond to that single vertex is zero.

Please do some practice to represent graph below into adjacency matrix.

Graph Theory Tutorial: Adjacency matrix

(See the answer in the previous page )

Given the adjacency matrix, can you draw back the graph?

Check example application of graph theory in Q-Learning Tutorial

< Back | Next | Content >

These tutorial is copyrighted.

Preferable reference for this tutorial is

Teknomo, Kardi (2015) Pictorial Introduction to Graph Theory. https:\\people.revoledu.com\kardi\ tutorial\GraphTheory\