Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I recently read Skillicorn's book on matrix decompositions, and was a bit disappointed, as it was targeted to an undergraduate audience. I would like to compile (for myself and others) a short bibliography of essential papers (surveys, but also breakthrough papers) on matrix decompositions. What I have in mind primarily is something on SVD/PCA (and robust/sparse variants), and NNMF, since those are by far the most used. Do you all have any recommendation/suggestion? I am holding off mine not to bias the answers. I would ask to limit each answer to 2-3 papers.

P.S.: I refer to these two decompositions as the most used in data analysis. Of course QR, Cholesky, LU and polar are very important in numerical analysis. That is not the focus of my question though.

share|improve this question
2  
Sounds like a candidate for a community wiki. – Rob Hyndman Nov 6 '10 at 6:51

5 Answers

up vote 11 down vote accepted

How do you know that SVD and NMF are by far the most used matrix decompositions rather than LU, Cholesky and QR? My personal favourite 'breakthrough' would have to be the guaranteed rank-revealing QR algorithm,

  • Chan, Tony F. "Rank revealing QR factorizations". Linear Algebra and its Applications Volumes 88-89, April 1987, Pages 67-82. DOI:10.1016/0024-3795(87)90103-0

... a development of the earlier idea of QR with column-pivoting:

  • Businger, Peter; Golub, Gene H. (1965). Linear least squares solutions by Householder transformations. Numerische Mathematik Volume 7, Number 3, 269-276, DOI:10.1007/BF01436084

A (the?) classic textbook is:

  • Golub, Gene H.; Van Loan, Charles F. (1996). Matrix Computations (3rd ed.), Johns Hopkins, ISBN 978-0-8018-5414-9.

(i know you didn't ask for textbooks but i can't resist)

Edit: A bit more googling finds a paper whose abstract suggests we could be slightly at cross porpoises. My above text was coming from a 'numerical linear algebra' (NLA) perspective; possibly you're concerned more with an 'applied statistics / psychometrics' (AS/P) perspective? Could you perhaps clarify?

share|improve this answer
1  
I would say "the" textbook myself, with Stewart's Matrix Algorithms ( both parts) a close second. I would give a list of the pioneering papers myself, but the OP really should explain if he wants the numerics viewpoint or the stats viewpoint (I can help with the former, but not so much the latter). – J. M. Nov 6 '10 at 9:23
1  
+1 for Golub and Van Loan. And, yes, the definitive article is appropriate. – shabbychef Nov 6 '10 at 19:42
I edited my question to clarify that I am focusing on the statistics part. I agree with everyone that Golub and Van Loan is the standard reference for matrix decompositions. But it's omitting the topic of very large scale decomposition through random projections. A survey paper I would put in my list is "Finding structure with randomness: Stochastic algorithms for constructing approximate matrix decompositions" by Halko et al. – gappy Nov 6 '10 at 20:16

For NNMF, Lee and Seung describe an iterative algorithm which is very simple to implement. Actually they give two similar algorithms, one for minimizing Frobenius norm of residual, the other for minimizing Kullback-Leibler Divergence of the approximation and original matrix.

share|improve this answer

Maybe, you can find interesting

  1. [Learning with Matrix Factorizations] PhD thesis by Nathan Srebro,
  2. [Investigation of Various Matrix Factorization Methods for Large Recommender Systems], Gábor Takács et.al. and almost the same technique described here

The last two links show how sparse matrix factorizations are used in Collaborative Filtering. However, I believe that SGD-like factorization algorithms can be useful somewhere else (at least they are extremely easy to code)

share|improve this answer

At this year's NIPS there was a short paper on distributed, very large-scale SVD that works in a single pass over a streaming input matrix.

The paper's more implementation-oriented but puts things into perspective with real wall-clock times and all. The table near the beginning is a good survey too.

share|improve this answer
What does NIPS stand for? – onestop Dec 16 '10 at 8:23
@onestop link added. NIPS=Neural Information Processing Systems . It is a community (not a system :) ) . But pisk is talking about the conference NIPS 2010. – robin girard Dec 16 '10 at 8:40

Witten, Tibshirani - Penalized matrix decomposition

http://www.biostat.washington.edu/~dwitten/Papers/pmd.pdf

http://cran.r-project.org/web/packages/PMA/index.html

Martinsson, Rokhlin, Szlam, Tygert - Randomized SVD

http://cims.nyu.edu/~tygert/software.html

http://cims.nyu.edu/~tygert/blanczos.pdf

share|improve this answer
2  
Thanks. I know both papers. I am not a great fan of Witten [not Whitten] et al., as i think there are more important papers on sparse decompositions. On randomized SVD, I especially like the review paper "Finding structure with randomness: Stochastic algorithms for constructing approximate matrix decompositions" (arxiv.org/abs/0909.4061) also coauthored by Martinsson. – gappy Nov 22 '10 at 17:17
i agree. i was just putting out there 2 papers no one had mentioned. – pslice Nov 22 '10 at 19:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.