• Linear Algebra Review
  • Singular Value Decomposition
  • Best Low-Rank Approximation

The next part of this course will cover numerical linear algebra.

Linear Algebra Review

Recall that an eigenvalue of a square matrix XRd×d is any vector v such that Xv=λv for some scalar λ.

The matrix X has at most d linearly independent eigenvectors. If it has a full set of d eigenvectors v1,,vd where vi2=1 for all i and with eigenvalues λ1λd, the matrix is called diagonalizable and can be written as X=VΛV1.

Decomposing a matrix into its eigenvectors and eigenvalues is called eigendecomposition.

While eigendecomposition only applies to square matrices, we can extend the idea to rectangular matrices with a related tool called singular value decomposition. But first, let’s review eigendecomposition. If a square matrix V has orthonormal rows, it also has orthonormal columns.

That is, VV=I because the eigenvectors are orthonormal. Then, by definition, V1=V. Next, because V is full rank, we can write I=V(V)1=V(V1)1=VV.

This implies that, for any vector x, Vx22=x22=Vx22.

To see this, we can write Vx22=(Vx)(Vx)=xVVx=xx=x22. A similar set of steps shows that Vx22=x22.

We have the same property for the Frobenius norm of a matrix. For any square matrix XRd×d, the Frobenius norm XF2 is defined as the sum of squared entries i,jxij2. To see that the same property holds for the Frobenius norm, we can write VXF2=i=1dVXi22=i=1dXi22=XF2 where Xi denotes the ith column of X and the second equality follows from the previous result. A similar set of steps shows that VXF2=XF2.

Singular Value Decomposition

Singular value decomposition is one of the most fundamental results in linear algebra. Without loss of generality, suppose that nd. Any matrix XRn×d can be written in the form X=UΣV where URn×d, ΣRd×d, and VRd×d. The matrix U satisfies UU=I while V satisfies VV=I. The matrix Σ is diagonal with non-negative entries σ1σ2σd0.

Singular values are unique but factors are not. We would still get a valid decomposition if we multiply the ith column of U and V by 1.

For the eigendecomposition, we showed that Vx22=x22=Vx22. It then followed that VXF2=XF2 and VXF2=XF2. Not all of these properties are true for singular value decomposition.

These properties are not true for rectangular matrices. Let URn×d with n>d be a matrix with orthogonal columns. Then UU=I but UUI.

Similarly, for any x, Ux22=x22 but Ux22x22.

Multiplying a vector by a matrix U with orthonormal columns rotates and/or reflects the vector.

Multiplying a vector by a matrix U with orthonormal rows projects the vector into a lower dimensional space (representing it as coordinates in the lower dimensional space).

So we always have that Ux2x2.

An important takeaway from singular value decomposition is how to view matrix multiplication. We can view multiplying any vector a by a matrix X to form Xa as a composition of three operations:

  1. Rotate and/or reflect the vector (multiplication by V).

  2. Scale the coordinates (multiplication by Σ).

  3. Rotate and/or reflect the vector again (multiplication by U).

We can see this because Xa=U(Σ(Va)).

Let’s compare singular value decomposition to eigendecomposition.

  • Singular value decomposition exists for all matrices (square or rectangular) while eigendecomposition only exists for some square matrices.

  • Singular values are always positive while eigenvalues can be positive or negative.

  • The factors U and V in singular value composition have orthogonal columns while the factor V in eigendecomposition has orthogonal columns if and only if X is full rank.

We can connect singular value decomposition with eigendecomposition by considering the matrix XX. The factor U contains the orthogonal eigenvectors of XX while the factor V contains the orthogonal eigenvectors of XX. To see this, recall that X=UΣV and X=VΣU. Then XX=UΣVVΣU=UΣ2U and similarly XX=VΣ2V. An additional observation is that the singular values of X are the square roots of the eigenvalues of XX and XX. That is, σi2=λi(XX)=λi(XX).

There are many applications of SVD including:

  • Computing the pseudoinverse VΣ1U.

  • Reading off the condition number of X from the ratio of the largest and smallest singular values.

  • Computing matrix norms like X2=σ1 and XF=i=1dσi2.

  • Computing the matrix square root X1/2=VΣ1/2U.

  • Performing principle component analysis.

We’ll focus on a particularly useful application called low-rank approximations of X.

Best Low-Rank Approximation

Low-rank approximations are very useful when our data has some structure. For example, if a dataset only has k unique data points, it will be exactly rank k. If it has k “clusters” of data points (e.g. the 10 digits in the MNIST dataset), the matrix will often be very close to rank k. Similarly, correlation between columns (data features) leads to a low-rank matrix.

We can exploit low-rank structure by using low-rank approximations to reduce the dimensionality of the data or visualizing the data in a lower dimensional space. Examples include data embeddings like word2vec or node2vec, reduced order modeling for solving physical equations, constructing preconditioners in optimization, and noisy triangulation.

Because low-rank approximations are so useful, we would like to know how to find the best low-rank approximation to a matrix X. In fact, we will show that we can find the best rank-k approximation to X by computing the singular value decomposition of X and then setting all but the k largest singular values to zero.

Let X=UΣV be the singular value decomposition of X. Let Xk be the best rank-k approximation to X i.e. Xk=argminrank k BXBF2. We will show that Xk=UkΣkVk where Uk contains the first k columns of U, Σk contains the first k singular values of Σ and Vk contains the first k columns of V.

We will repeatedly use two observations:

  • VXF2=XF2 if VV=I by the connection to 2 norm we saw before and

  • XF2=XF2 since the Frobenius norm is the sum of squared entries (which is invariant under the transpose operation).

We can write argminrank k BXBF2=argminrank k BΣVUBF2 since UU=I.

Then argminrank k BΣVUBF2=argminrank k BVΣBUF2=argminrank k BΣVBUF2 since VV=I.

Then we choose B so that VBU is the matrix which agrees with Σ on the largest k singular values. It is intuitive but not obvious that the best rank-k approximation to a diagonal matrix is a diagonal matrix that agrees on the largest k values.

Claim (Orthogonal Projection): Consider any orthogonal matrix WRd×k. Then XXWWF2=XF2XWWF2.

We will prove the orthogonal claim later. Using the claim, observe that the problem of finding the best rank k approximation Z to a diagonal matrix D is equivalent to argminrank k ZDZF2=argminorthonormal rank k ZDDZZF2=argminorthonormal rank k ZDF2DZZF2=argmaxorthonormal rank k ZZDF2=argmaxorthonormal rank k Zi=1dZi22σi2 where the second equality follows from the orthogonal projection claim, the third equality follows because DF2 is a constant with respect to Z, and Zi is the ith row of Z in the final expression. Since Z is orthonormal and rank k, we have i=1dZi22=k. To see this, observe that sum of squared row norms is the sum of squared column norms which is k. Since Z has k orthonormal columns and d<k, we have Zi221. To see this, imagine “completing” Z by adding columns to make its rows span the entire space. After adding the columns, each row would be a unit vector so each row of Z can have norm at most 1. With these observations, maxorthonormal rank k Zi=1dZi22σi2=i=1dσi2 since we want to put as much mass on the larger singular values as possible.

Now that we know the SVD of a diagonal matrix is the best rank-k approximation, we will return to the orthogonal projection claim. One useful observation of the claim is that argminWRd×kXXWWF2=argmaxWRd×kXWWF2. Since XF2 is a constant with respect to W, we can maximize XWWF2 to minimize XXWWF2. This is often the perspective people take when thinking about principle component analysis.

We will show the orthogonal claim from the observation that the column Xi is orthogonal to itself projected onto WW and then applying the Pythagorean theorem.

The orthogonal projection claim combined with our characterization of the optimal low rank approximation gives us XXkF2=XF2XkF2=i=1nσi2i=1kσi2=i=k+1nσi2.

We can see this because XF2=UΣVF2=ΣVF2=ΣF2 where we used our favorite tricks that UU=I, VV=I, and the Frobenius norm is invariant with respect to transposes.

The characterization of our low-rank approximation error in terms of the singular values gives a sense of how low-rank a matrix is. Data with structure will have a small number of large singular values and a large number of small singular values.

In contrast, data with no structure will have singular values that are all roughly the same size.

Now that we know the best low-rank approximation is the truncated SVD, all that remains is to find the SVD.

We can find the SVD with the following approach:

  • Compute XX in O(nd2) time.

  • Find eigendecomposition of XX=VΛV in O(d3) time using methods like the QR algorithm in O(d3) time.

  • Finally, compute L=XV and then set σi=Li2 and Ui=Li/σi for i=1,,d in O(nd2) time.

The total time complexity is O(nd2+d3+nd2)=O(nd2). If we use the SVD only for low rank approximation, notice that we didn’t really need to find all the singular vectors and values.

We can save time by computing an approximate solution to the SVD. In particular, we will only compute the top k singular vectors and values. We can do this with iterative algorithms that achieve time complexity O(ndk) instead of O(nd2). There are many algorithms for this problem:

  • Krylov subspace methods like the Lanczos method are most commonly used in practice.

  • Power method is the simplest Krylov subspace method and still works very well.

We will focus on the power method next time.