How can I divide two matrices together?

For example, let A and B be 3x3 Matrices = What is A/B? How can I compute that?

1 Answer
Feb 12, 2017

By computing the "divisor" matrix's inverse, then post-multiplying the "dividend" matrix by this inverse.

Explanation:

Strictly speaking, division of matrices is not possible. But we can get around that by remembering that division can also be thought of as "multiplication by an inverse".

For instance, if we wanted to "divide" A -: BA÷B, we'd first compute the inverse B^-1B1, and then multiply A xx B^-1A×B1. Note that this means BB must be invertible, and so we need it to be a square matrix.

You can use Gauss-Jordan elimination on the matrix BB augmented with the identity matrix I_nIn on the right to find the inverse of BB:

[(,,,|,1,0,0),(,B,,|,0,1,0),(,,,|,0,0,1)]

Row-reducing B into I on the left turns I into B^-1 on the right:

=>[(1,0,0,|,,,),(0,1,0,|,,B^-1,),(0,0,1,|,,,)]

There are other ways, but this is one of the more common.

Once you have B^-1, post-multiply A by B^-1 to get your "quotient".

Hope this helps!