Markov centrality , also known as random-walk closeness [2], is based on the concept of mean first passage time (MFPT) in a Markov chain [3]. The MFPT \(m_{ij}\) from node \(i\) to node \(j\) is the expected number of steps required to reach \(j\) for the first time starting from \(i\):
\begin{equation*}
m_{ij} = \sum_{n=1}^{\infty} n \cdot f_{ij}^{(n)},
\end{equation*}
where \(f_{ij}^{(n)}\) is the probability that the chain first reaches \(j\) in exactly \(n\) steps.
The Markov centrality of node \(i\) is defined as the inverse of the average MFPT to \(i\) from a set of root nodes \(R\) (e.g., \(R = \mathcal{N} \setminus \{i\}\)):
\begin{equation*}
c_{\mathrm{Markov}}(i) = \frac{1}{\frac{1}{|R|}\sum_{j \in R} m_{ji}}.
\end{equation*}
This measure applies to both directed and undirected graphs. Intuitively, \(m_{ij}\) represents an average distance from \(i\) to \(j\) under random-walk dynamics, so Markov centrality can be interpreted as an averaged random-walk closeness centrality.

References

[1] Shvydun, S. (2025). Zoo of Centralities: Encyclopedia of Node Metrics in Complex Networks. arXiv: 2511.05122 https://doi.org/10.48550/arXiv.2511.05122
[2] Blöchl, F., Theis, F. J., Vega-Redondo, F., & Fisher, E. O. N. (2011). Vertex centralities in input-output networks reveal the structure of modern economies. Physical Review E—Statistical, Nonlinear, and Soft Matter Physics, 83(4), 046127. doi: 10.1103/PhysRevE.83.046127.
[3] White, S., & Smyth, P. (2003). Algorithms for estimating relative importance in networks. In Proceedings of the ninth ACM SIGKDD international conference on Knowledge discovery and data mining, pp. 266-275. doi: 10.1145/956750.956782.