1. Google page ranking is based on eigenvector. In summary, it is an eigenvector problem for a class of matrices known as stochastic matrices, ie row or col sum = 1. Using Perron-Frobenius theorem, we can find its stationary distribution, which is nothing but its dominant eigenvector. Sorting this vector gives the page-rank.
Article: http://www.ams.org/samplings/feature-column/fcarc-pagerank
2. How Netflix works? in heart it is a singular value decomposition problem. It all boils down to coming up with dim-red on a large - sparse user/item matrix
NewYork Times article: http://www.nytimes.com/2008/11/23/magazine/23Netflix-t.html?pagewanted=all&_r=0
3. LSI - latent semantic indexing is another beautiful thing - closely related instead of lexical matches, we find semantic matches again based on SVD.
SIAM paper link: http://lsirwww.epfl.ch/courses/dis/2003ws/papers/ut-cs-94-270.pdf
4.Music Genome project
http://courses.cs.washington.edu/courses/csep521/07wi/prj/michael.pdf
a variant of the CF algorithm.