Math 218: Matrices and Vector Spaces

Welcome! You have found the homepage of the Fall 2021 manifestation of Math 218.

A=QR Factorizations

We can check if a list of vectors is orthonormal but putting them into the columns of a matrix Q and checking if Q.T*Q == identity_matrix(Q.ncols())

When A=QR, projection onto the column space of A is simplified with P=Q*Q.T.

When A=QR, the least-squares problem [A.T*A | A.T*b] reduces to [R | Q.T*b].