Compute the eigenvector centrality of node 1 in the 2×2 adjacency matrix
A=(0110)
by finding the normalized eigenvector corresponding to the largest eigenvalue.
[6]
Question 2
Skill question
Adjacency matrices and paths in graph theory.
In a social network, the adjacency matrix A (where Aij=1 if users i and j are friends, and 0 otherwise) is defined as:
A=0110101111000100
Determine how many mutual friends users 1 and 2 share.
[3]
Question 3
Skill question
Use the adjacency matrix of the directed graph below to compute the reachability matrix (transitive closure).
Label nodes in order 1 to 4.
[4]
Question 4
Skill question
Adjacency matrices for directed networks.
Construct the adjacency matrix for a directed network of 4 nodes where the directed edges are: 1→2, 2→3, 3→4, 4→1, and 2→4.
[2]
Question 5
Skill question
A directed graph has adjacency matrix A=001100110
Compute the number of distinct paths of length 2 from vertex 1 to vertex 3.
[3]
Question 6
Skill question
The undirected graph G has adjacency matrix:
A=011101110
Find the degree of vertex 2 in G.
[1]
Question 7
Skill question
A transportation network of 3 cities has adjacency matrix A=011101110
where Aij=1 if there is a direct bus route between city i and city j. Find the number of different two-bus-ride itineraries that exist from city 1 to city 2 (allowing revisits).
[2]
Question 8
Skill question
In a social network with adjacency matrix A representing the friendships between 5 users, it is given that the entry (A3)1,5=4. Interpret this value in the context of the social network.
[3]
Question 9
Skill question
Given an undirected graph with adjacency matrix A, show that the trace of A3 equals 6 times the number of triangles in the graph.
[3]
Question 10
Skill question
Given the adjacency matrix of an undirected graph with 4 vertices:
A=0101101001011010
Determine the number of edges in the graph.
[2]
Question 11
Skill question
A flight network of 4 airports is given by the adjacency matrix
A=0101101101011110
Calculate the number of distinct two-leg flight options from airport 1 to airport 3.
[3]
Question 12
Skill question
A social network’s adjacency matrix A is given by
A=0110101111010110
Determine whether the network is bipartite.
[4]
Question 13
Skill question
The directed graph G, shown below, has vertices V={1,2,3,4}.
Determine whether the graph G is strongly connected. Justify your answer.
[3]
Question 14
Skill question
A weighted adjacency matrix W for 3 warehouses shows shipping times (in hours):
W=025203530
Ignoring the weights, find how many distinct two-hop routes exist from warehouse 1 to warehouse 3.