Question:

In a simple graph, which of the following statements is/are true?
(I) Adjacency matrix is symmetric.
(II) Trace of the adjacency matrix is 1.

Show Hint

Simple graphs have no self-loops, so the adjacency matrix diagonal, and hence its trace, is always zero.
Updated On: Jul 3, 2026
  • Only (I)
  • Only (II)
  • Both (I) and (II)
  • Neither (I) nor (II)
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

Step 1: A simple graph has no loops (no edges from a vertex to itself) and no multiple edges between the same pair of vertices. Its adjacency matrix \(A\) is defined by \(A_{ij} = 1\) if vertices \(i\) and \(j\) are adjacent, and \(A_{ij} = 0\) otherwise.

Step 2: Check statement (I). Since the graph is undirected, an edge between \(i\) and \(j\) is the same as an edge between \(j\) and \(i\), so \(A_{ij} = A_{ji}\) for all \(i, j\). This means \(A = A^T\), so the adjacency matrix is always symmetric. Statement (I) is true.

Step 3: Check statement (II). Because a simple graph has no loops, every diagonal entry \(A_{ii} = 0\). The trace is the sum of the diagonal entries:

\[ \text{trace}(A) = \sum_{i} A_{ii} = 0 \]

So the trace of the adjacency matrix of a simple graph is always \(0\), never \(1\). Statement (II) is false.

Only statement (I) is true.

\[\boxed{\text{Only (I)}}\]
Was this answer helpful?
0
0