How do I multiply two matrices together?

In order to multiply two matrices together, you must first have that the number of columns in the first matrix must be equal to the the number of rows in the second matrix.

So if you wish to multiply matrix A and matrix B,

matrix A must have dimensions ( m x n ) whilst matrix B must have dimensions ​(​n ​x q) . Once you multiply these matrices, the new matrix formed will have dimension m xq​ .

(Note that m and q can be equal)

For example, matrix A can have dimension 3x2 and matrix B can have dimension 2x4 and so the new matrix will have dimension 3x4.

To multiply matrices, you take the first row of Matrix A and multiply its elements by the elements in the first column of Matrix B. You then take the first row of Matrix A and multiply its elements by the elements in the second column of Matrix B. You then keep repeating this process till you have multiplied the elements of the first row of Matrix A to the elements of  every single column of Matrix B.

You then take the second row of Matrix A and multiply its elements by the elements of the first column of Matrix B. You then take the second row of Matrix A and multiply it by the elements of the second column of Matrix B. You keep doing this till you have multiplied the second row of Matrix A by every single column of matrix B.

You then repeat this process for the third, fourth, fifth (and so on...) row of matrix A.  The following example should make this clear.

EXAMPLE

​Matrix A is ( A B )    and Matrix B is ( 1 2 3 4 )

                     ( C D )                                   ( 5 6 7 8) 

The dimension of A is 2x2 and the dimension of B is 2x4. Hence, the dimension of the new matrix shall be 2x4.

Using the above rules, it should be simple to follow that new matrix is:

[ (1a+5b)   (2a+6b)   (3a+7b)  (4a+8b) ​]

[ (​1c+5d  ​(​2c+6d)​   (3c+7d)   (4c+8d) ​]

Also note that matrix A multiplied by matrix B does not yield the same result as matrix B multiplied by matrix A. The order in which you multiply matrices matters.

Answered by Iretunde S. Maths tutor

10461 Views

See similar Maths A Level tutors

Related Maths A Level answers

All answers ▸

A level Maths question - The graph of y=2sin(2x)+1 is rotated 360 degrees about the x-axis to form a solid. Find the volume enclosed by the curve, the co-ordinate axes and the line x=pi/2


(19x - 2)/((5 - x)(1 + 6x)) can be expressed as A/(5-x) + B/(1+6x) where A and B are integers. Find A and B


Why, how and when do we use partial fractions and polynomial long division?


Find dy/dx where y=e^(4xtanx)


We're here to help

contact us iconContact usWhatsapp logoMessage us on Whatsapptelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

© MyTutorWeb Ltd 2013–2024

Terms & Conditions|Privacy Policy