Section 19.3 A Simple Application
Imagine that a query into an internet search engine finds \(5\) websites. The engine wants to report these sites to the user in some sort of order relating to how useful each site might be, i.e. the engine wants to work out a ranking for each site.
One approach to this problem is to look at the links between the sites. For the sake of discussion, let the links between the sites be as shown in Figure 19.3.1. We can represent the information in this diagram via a matrix \(A\) where the entries \(a_{ij}\) satisfy
Thus
Now let \(r_i\) be the ranking of website \(i\text{.}\) Then we require
and
The idea here is that if a site has links to it from an important site (i.e. one with a high ranking) then that is better than having a link to it from an obscure site (i.e. one with a low ranking). So, letting the constant of proportionality be \(k\text{,}\) for the websites linked according to Figure 19.3.1 we have
or, in matrix form
Thus the rankings satisfy the equation
or
i.e. an eigenvalue problem. For the matrix \(A\) as given above it turns out that the ranking vector is
and so the sites would be listed in the order \(5, 4, 3, 1, 2\text{.}\)
Of course Google’s page ranking system is much more sophisticated than that described above but the idea is essentially the same. Also, there is much more advanced mathematics needed behind the scenes than indicated above. For example how do we know which eigenvalue and associated eigenvector to take? What happens if all of the eigenvalues are complex? And so on.