Most symmetric social networks (such as Facebook, LinkedIn, IM) can be either viewed as directed graphs with bidirectional edges, or more simply as undirected graphs where two nodes connected by an undirected edge. A simple fact about random walks on such networks is the following:
Fact: A random walk on a finite, connected undirected graph with M edges has a stationary distribution π defined by . This distribution is unique iff the graph is also aperiodic. An analogous result holds when the graph is weighted if we define
.
This is interesting because instead of computing a very expensive random walk “simulation” (or doing matrix computations) to calculate the stationary distribution, we have a simple, closed formula. For example, the nodes can be “ranked” simply by their degree!
Background
A ‘random walk’ is a useful construct in graph algorithms. It is typically defined on a directed graph where the walk moves from a state i to a state j with probability pij. One such move or transition is sometimes called a step of the walk. Such a random walk is also known as a (homogeneous) Markov chain, which is a chain of random variables {Xj} such that Prob(walk is in node i after step j) =
Random walks have many applications in real-life networks. For example, the pagerank algorithm for scoring influence on the web and certain graph based social recommendation algorithms are essentially random walk algorithms.
A good background on random walks and Markov chains is in [1].
Proof
The proof is very simple. A distribution π is stationary if where
is the stochastic matrix defining the transition probability of going from state i to state j. Now, with a uniform random walk, each edge out of i can be taken with the same probability. i.e.,
. So,
A finite, connected graph is irreducible (every state can be reached from any other state). If the graph is aperiodic as well, the stationary vector is unique, and it is the normalized, eigenvector corresponding to the largest eigenvalue ( = 1 ) of the stochastic matrix P [1].
Real-life networks are certainly finite. They may not be connected or aperiodic, in which case care must be taken to artificially convert the graphs to be so. An example of an undirected graph with period 2 is simply the following graph.
Note that this can be made aperiodic by adding a self-edge from state 0 (or state 1) to itself.
Weighted Graphs
It turns out that the above mentioned fact remains true even when the undirected graph is weighted, i.e., each edge i ↔ j has a weight wij. The transition matrix is then defined by where
. Also, let
. The stationary vector is then defined by
. The proof is very similar to the above.
References