Given a directed graph $G$, and let $A$ be $G$'s adjacency matrix, whose $(i,j)$-entry is 1 when there is an edge from $i$ to $j$. Is there any interpretative meaning of the $(i,j)$-entry of the matrix $(A^5\cdot{(A^T)}^5)$ and the matrix $({(A^T)}^8\cdot{A}^8)$, respectively ?
|
|
The intuition comes easily if you stop thinking of the matrix elements as switches for the edges. Instead, think of $(A)_{ij}$ as the number of distinct walks of length $1$ from $i$ to $j$. Try! ;) Note this also allows you to account naturally for looping, directed, undirected and multiple edges if you don't restrict to a symmetric matrix with null diagonal and elements in $\{0,1\}$. What happens if you take a power of the adjacency matrix? Multiplying the matrices you are essentially concatenating walks, so...
Transposing the matrix simply flips the edges. So..
|
||||
|
|