Brian Fitzpatrick

Linear Independence

To determine if a list of vectors is linearly independent, we can put them into the columns of a matrix and check that the nullity is zero. We can accomplish this with the syntax matrix.column([list of vectors]).right_nullity() == 0.

Dark
Light