[Math] How page rank relates to the power iteration method

eigenvalues-eigenvectorslinear algebranumerical linear algebrarecursive algorithms

I do not see how pageRank relates to the power method. Since for the pageRank we are looking for the steady stable state (vector) for a Markov (transition) matrix and the matrix has already an eigenvalue equals to one, why multiplication is used throughout the iterations to converge into that vector. Knowing that the only things that changes during the iterations are the eigenvalues with absolute value less than 1 and their corresponding "disappearing" eigenvector.

Therefore, why this not done by factoring the Markov matrix to find the eigenvector corresponds to eigenvalue 1 instead of the iterative multiplication approach?

Best Answer

Finding a full eigendecomposition costs $O(n^3)$ operations and $O(n^2)$ memory space, where $n$ is the side of the matrix. The size $n$ of the Markov matrix is the number of indexed web pages, which is of the order of $10^9$, so a full factorization would be prohibitive.

Related Question