Question
Question: What is the product of \(\left[\begin{matrix} 1&2\\\3&4\end{matrix}\right]\) and \(\left[\begin{matr...
What is the product of [1\324] and [5\869710]?
Solution
The matrix multiplication is a bit complex process because it is not done like the real numbers. We first need to ensure that the matrices we are multiplying have compatible orders or not. After that we multiply the first row by first column by element wise multiplication and summing them to form the element at the first column first row position. And we do it till we do not get the complete resultant matrix of the desired order.
Complete step-by-step solution:
To multiply two matrices we first check the basic required property of matching the order. Here, the first matrix has order 2×2 and the second matrix has order 2×3. And in order for the multiplication to be defined the number of columns of the first matrix must be equal to the number of rows of the second matrix. And in this case it is satisfied. Now, we use the formula below for matrix multiplication:
If A=[aij] is an m×n matrix and B=[bij] is an n×p matrix,
the product AB is an m×p matrix.
AB=[cij]
where cij=ai1b1j+ai2b2j+...+ainbnj
So we have:
A=[1\324]
B=[5\869710]
We have:
AB=[1×5+2×8\3×5+4×81×6+2×93×6+4×91×7+2×103×7+4×10]
⟹AB=[21\4724542761]
Hence, we have found the product of the given matrices.
Note: Make sure that you add the terms before giving the resultant value in each position of the resultant matrix. Look for any calculation mistake that might occur while doing multiplication. Always check the order compatibility of the matrices before multiplying them. Also note that if we multiply the given matrices in the other order then matrix multiplication would not be possible.