Google Matrix

The Google matrix is the matrix used in Google’s original PageRank algorithm to rank web pages.

If a web consists of nnn pages, the Google matrix GGG is defined as:G=αS+(1α)1nEG = \alpha S + (1-\alpha)\frac{1}{n}EG=αS+(1−α)n1​E

where:

  • SSS is the normalized link matrix (each column sums to 1).
  • EEE is an n×nn \times nn×n matrix of all ones.
  • α\alphaα is the damping factor, typically 0.850.850.85.
  • nnn is the number of pages.

Here’s the formula visually:

G=αS+(1α)1nEG=\alpha S+(1-\alpha)\frac{1}{n}EG=αS+(1−α)n1​E

Why it’s used

The matrix models a “random surfer” who:

  • Follows a link on the current page with probability α\alphaα.
  • Jumps to a random page with probability 1α1-\alpha1−α.

The PageRank vector ppp is the stationary distribution satisfyingGp=p.Gp = p.Gp=p.

That is, ppp is the eigenvector corresponding to eigenvalue 111.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top