Math 218: Matrices and Vectors

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

PLEASE FILL OUT YOUR COURSE EVALUATIONS

Nonsingular Matrices

Our algorithm for calculating matrix inverses called for augmentation by identity matrices. We can accomplish this with the syntax A.augment(identity_matrix(A.nrows()), subdivide=True).

Of course, sage is capable of calculating inverses directly. The appropriate syntax is A.inverse().