Number and Algebra
Functions
Geometry and Trigonometry
Statistics and Probability
Calculus
Construct the adjacency matrix for the undirected graph with vertex set {A,B,C,D}\{A,B,C,D\}{A,B,C,D} and edges ABABAB, BCBCBC, CDCDCD, DADADA.
Given the adjacency matrix below for an undirected simple graph with vertices 1,2,3,41,2,3,41,2,3,4, determine the total number of edges in the graph.
Construct the adjacency matrix for the directed graph with vertices {A,B,C,D,E}\{A,B,C,D,E\}{A,B,C,D,E} and arcs A→BA\to BA→B, A→CA\to CA→C, B→CB\to CB→C, C→AC\to AC→A, D→ED\to ED→E.
Construct the adjacency matrix for the directed graph with vertices {1,2,3,4}\{1,2,3,4\}{1,2,3,4} and arcs 1→21\to21→2, 2→32\to32→3, 3→43\to43→4, 4→14\to14→1, 2→42\to42→4, 4→24\to24→2.
Construct the adjacency matrix for the undirected graph on vertices {1,2,3,4,5}\{1,2,3,4,5\}{1,2,3,4,5} with edges {1,2},{1,3},{1,5},{2,3},{2,4},{3,4},{4,5}\{1,2\},\{1,3\},\{1,5\},\{2,3\},\{2,4\},\{3,4\},\{4,5\}{1,2},{1,3},{1,5},{2,3},{2,4},{3,4},{4,5}.
For the multigraph with vertices {A,B,C}\{A,B,C\}{A,B,C} having two parallel edges between AAA and BBB, one edge between AAA and CCC, and one between BBB and CCC, write the adjacency matrix.
Construct the adjacency matrix for the undirected graph with vertices {v1,v2,v3}\{v_1,v_2,v_3\}{v1,v2,v3} and edges v1v1v_1v_1v1v1 (loop), v1v2v_1v_2v1v2, v2v3v_2v_3v2v3.
Construct the adjacency matrix for the directed graph with vertices {1,2,3}\{1,2,3\}{1,2,3} and arcs 1→11\to11→1 (loop), 1→21\to21→2, 2→32\to32→3, 3→23\to23→2, 3→33\to33→3 (loop).
Construct the adjacency matrix for the directed graph with vertices {1,2,3,4,5,6}\{1,2,3,4,5,6\}{1,2,3,4,5,6} and arcs 1→21\to21→2, 2→32\to32→3, 3→13\to13→1, 4→54\to54→5, 5→65\to65→6, 6→46\to46→4, 2→52\to52→5.
Given the adjacency matrix of a directed graph
compute the number of walks of length 2 from vertex 1 to vertex 3 by finding the (1,3)(1,3)(1,3) entry of A2A^2A2.
Given the directed graph below, construct its adjacency matrix and then write the adjacency matrix of the converse graph (reverse all arcs).
Vertices: {A,B,C,D}\{A,B,C,D\}{A,B,C,D}. Arcs of GGG: A→BA\to BA→B, B→CB\to CB→C, C→AC\to AC→A, C→DC\to DC→D.
Previous
No previous topic
Next
Question Type 2: Creating adjacency tables for weighted and unweighted graphs