Harman Patil (Editor)

Google matrix

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Google matrix

A Google matrix is a particular stochastic matrix that is used by Google's PageRank algorithm. The matrix represents a graph with edges representing links between pages. The rank of each page can be generated iteratively from the Google matrix using the power method. However, in order for the power method to converge, the matrix must be stochastic, irreducible and aperiodic.

Contents

Adjacency matrix A and Markov matrix S

In order to generate the Google matrix G, we must first generate an adjacency matrix A which represents the relations between pages or nodes.

Assuming there are N pages, we can fill out A by doing the following:

  1. A matrix element A i , j is filled with 1 if node j has a link to node i , and 0 otherwise; this is the adjacency matrix of links.
  2. A related matrix S corresponding to the transitions in a Markov chain of given network is constructed from A by dividing the elements of column "j" by a number of k j where k j is the total number of outgoing links from node j to all other nodes. The columns having zero matrix elements, corresponding to dangling nodes, are replaced by a constant value 1/N. Such a procedure adds a link from every sink, dangling state a to every other node.
  3. Now by the construction the sum of all elements in any column of matrix S is equal to unity. In this way the matrix S is mathematically well defined and it belongs to the class of Markov chains and the class of Perron-Frobenius operators. That makes S suitable for the PageRank algorithm.

Construction of Google matrix G

Then the final Google matrix G can be expressed via S as:

G i j = α S i j + ( 1 α ) 1 N ( 1 )

By the construction the sum of all non-negative elements inside each matrix column is equal to unity. The numerical coefficient α is known as a damping factor.

Usually S is a sparse matrix and for modern directed networks it has only about ten nonzero elements in a line or column, thus only about 10N multiplications are needed to multiply a vector by matrix G.

Examples of Google matrix

An example of the matrix S construction via Eq.(1) within a simple network is given in the article CheiRank.

For the actual matrix, Google uses a damping factor α around 0.85. The term ( 1 α ) gives a surfer probability to jump randomly on any page. The matrix G belongs to the class of Perron-Frobenius operators of Markov chains. The examples of Google matrix structure are shown in Fig.1 for Wikipedia articles hyperlink network in 2009 at small scale and in Fig.2 for University of Cambridge network in 2006 at large scale.

Spectrum and eigenstates of G matrix

For 0 < α < 1 there is only one maximal eigenvalue λ = 1 with the corresponding right eigenvector which has non-negative elements P i which can be viewed as stationary probability distribution. These probabilities ordered by their decreasing values give the PageRank vector P i with the PageRank K i used by Google search to rank webpages. Usually one has for the World Wide Web that P 1 / K β with β 0.9 . The number of nodes with a given PageRank value scales as N P 1 / P ν with the exponent ν = 1 + 1 / β 2.1 . The left eigenvector at λ = 1 has constant matrix elements. With 0 < α all eigenvalues move as λ i α λ i except the maximal eigenvalue λ = 1 , which remains unchanged. The PageRank vector varies with α but other eigenvectors with λ i < 1 remain unchanged due to their orthogonality to the constant left vector at λ = 1 . The gap between λ = 1 and other eigenvalue is 1 α 0.15 gives a rapid convergence of a random initial vector to the PageRank approximately after 50 multiplications on G matrix.

At α = 1 the matrix G has generally many degenerate eigenvalues λ = 1 (see e.g. [6]). Examples of the eigenvalue spectrum of the Google matrix of various directed networks is shown in Fig.3 from and Fig.4 from.

The Google matrix can be also constructed for the Ulam networks generated by the Ulam method [8] for dynamical maps. The spectral properties of such matrices are discussed in [9,10,11,12,13,15]. In a number of cases the spectrum is described by the fractal Weyl law [10,12].

The Google matrix can be constructed also for other directed networks, e.g. for the procedure call network of the Linux Kernel software introduced in [15]. In this case the spectrum of λ is described by the fractal Weyl law with the fractal dimension d 1.3 (see Fig.5 from ). Numerical analysis shows that the eigenstates of matrix G are localized (see Fig.6 from ). Arnoldi iteration method allows to compute many eigenvalues and eigenvectors for matrices of rather large size [13].

Other examples of G matrix include the Google matrix of brain [17] and business process management [18], see also. Applications of Google matrix analysis to DNA sequences is described in [20]. Such a Google matrix approach allows also to analyze entanglement of cultures via ranking of multilingual Wikipedia articles abouts persons [21]

References

Google matrix Wikipedia