Math 781: Matrices and Data

Welcome! You have found the homepage of the Spring 2025 manifestation of Math 781.

Column Spaces

To check if v is in the column space of a matrix A, we can calculate A.augment(v, subdivide=True).rref() and look for a pivot in the augmented column.

More efficiently, we can use the Rouché–Capelli Theorem and directly check A.rank() == A.augment(v).rank().