PEDSApr 20

Meeting times on graphs in near-cubic time

arXiv:2604.1887213.4h-index: 19Has Code
Predicted impact top 66% in PE · last 90 daysOriginality Incremental advance
AI Analysis

This provides a significant speedup for a fundamental problem in random walks, benefiting researchers in graph theory, Markov chains, and evolutionary dynamics.

The paper reduces the computational complexity of computing all pairwise expected meeting times of two random walkers on an undirected graph from O(N^6) to O(N^4) with a practical algorithm, and further to O(N^3 log^2 N) in theory, by exploiting structure in the linear system. It also extends the method to related problems in evolutionary dynamics.

The expected meeting time of two random walkers on an undirected graph of size $N$, where at each time step one walker moves and the process stops when they collide, satisfies a system of $\binom{N}{2}$ linear equations. Naïvely, solving this system takes $O\left(N^{6}\right)$ operations. However, this system of linear equations has nice structure in that it is almost a Sylvester equation, with the obstruction being a diagonal absorption constraint. We give a simple algorithm for solving this system that exploits this structure, leading to $O\left(N^{4}\right)$ operations and $Θ\left(N^{2}\right)$ space for exact computation of all $\binom{N}{2}$ meeting times. While this practical method uses only standard dense linear algebra, it can be improved (in theory) to $O\left(N^{3}\log^{2}N\right)$ operations by exploiting the Cauchy structure of the diagonal correction. We generalize this result slightly to cover the Poisson equation for the absorbing "lazy" pair walk with an arbitrary source, which can be solved at the same cost, with $O\left(N^{3}\right)$ per additional source on the same graph. We conclude with applications to evolutionary dynamics, giving improved algorithms for calculating fixation probabilities and mean trait frequencies.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes