Glam Prestige Journal

Bright entertainment trends with youth appeal.

$\begingroup$

I was wondering if for the below matrix multiplication:

$A^T * A *\ A^{-1} * (A^{-1})^T$

we can assume the product of the inner 2 matrices to equal the identity matrix I, and simply rewrite this as:

$A^T * (A^{-1})^T$

or is this not generally acceptable because matrix multiplication is not commutative?

$\endgroup$ 2

1 Answer

$\begingroup$

You are correct. Since matrix multiplication is associative, thus you can do

$A^T \cdot A \cdot A^{-1} \cdot(A^{-1})^T = A^T \cdot (A \cdot A^{-1}) \cdot (A^{-1})^T = A^T \cdot (A^{-1})^T$

But you can even go further by switching the inverse with the transpose:

$A^T \cdot (A^{-1})^T = A^T \cdot (A^{T})^{-1} = I $

So your whole expression is equal to the identity matrix.

$\endgroup$ 0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy