[Math] Order of operations for multiplying three matrices

matricesmultiplicative-function

If I have a $1\times 2$ matrix $A$, a $2\times 2$ matrix $B$, and a $2\times 2$ matrix $C$, and am asked to calculate ABC, is there a specific order in which I have to carry out the multiplication?

Would I be correct in assuming I have to calculate $AB$ first to get a $1\times 2$ matrix, and then multiply that result by the $2\times 2$ matrix $C$?

Or can you also calculate $BC$ first and then multiply that result by $A$?

Best Answer

Matrix multiplication is associative, so you can do it in whichever order you like. You can prove it by writing the matrix multiply in summation notation each way and seeing they match.

Related Question