Courses
Courses for Kids
Free study material
Offline Centres
More
Store Icon
Store
seo-qna
SearchIcon
banner

What is the product of $\left[\begin{matrix} 1&2\\3&4\end{matrix}\right]$ and $\left[\begin{matrix} 5&6&7\\8&9&10\end{matrix}\right]$?

Answer
VerifiedVerified
524.4k+ views
Hint: 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\times 2$ and the second matrix has order $2\times 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=[a_{ij}]$ is an $m\times n$ matrix and $B=[b_{ij}]$ is an $n\times p$ matrix,
the product $AB$ is an $m\times p$ matrix.
$AB=[c_{ij}]$
where $c_{ij}=a_{i1}b_{1j}+a_{i2}b_{2j}+...+a_{in}b_{nj}$
So we have:
$A=\left[\begin{matrix} 1&2\\3&4\end{matrix}\right]$
$B=\left[\begin{matrix} 5&6&7\\8&9&10\end{matrix}\right]$
We have:
$AB=\left[\begin{matrix} 1\times 5+2\times 8&1\times 6+2\times 9&1\times 7+2\times 10\\3\times 5+4\times 8&3\times 6+4\times 9&3\times 7+4\times 10 \end{matrix}\right]$
$\implies AB=\left[\begin{matrix} 21&24&27\\47&54&61 \end{matrix}\right]$
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.