The Google matrix is the matrix used in Google’s original PageRank algorithm to rank web pages.
If a web consists of n pages, the Google matrix G is defined as:G=αS+(1−α)n1E
where:
- S is the normalized link matrix (each column sums to 1).
- E is an n×n matrix of all ones.
- α is the damping factor, typically 0.85.
- n is the number of pages.
Here’s the formula visually:
G=αS+(1−α)n1E
Why it’s used
The matrix models a “random surfer” who:
- Follows a link on the current page with probability α.
- Jumps to a random page with probability 1−α.
The PageRank vector p is the stationary distribution satisfyingGp=p.
That is, p is the eigenvector corresponding to eigenvalue 1.
