A network (graph) can be represented as an adjacency matrix. For \(n\) vertices, the matrix is \(n \times n\) where entry \(a_{ij}\) = number of edges from vertex \(i\) to vertex \(j\).
Consider 3 towns: A, B, C with roads: A–B, A–C, B–C, B–B (loop).
The \((i,j)\) entry of \(A^n\) gives the number of walks of length \(n\) from vertex \(i\) to vertex \(j\).
A transition matrix \(T\) models movement between states over time. Each column sums to 1 (column-stochastic).
Column 1: From State 1, probability 0.7 of staying, 0.4 of moving to State 2 (columns sum to 1.1 — this example is for illustration; valid matrices have columns summing to 1).
The state vector \(S_n\) gives the distribution across states at step \(n\):
At week 0: 80% of customers use Brand X, 20% use Brand Y.
Week 1:
76% Brand X, 24% Brand Y after one week.
KEY TAKEAWAY: Adjacency matrices encode graph structure; transition matrices encode probabilistic movement. Both rely on matrix multiplication to compute multi-step results.
VCAA FOCUS: Be able to set up a transition matrix from a verbal description, identify the state vector, and compute \(S_1\) or \(S_2\) by hand.