矩阵知识对于数学的各个分支都是必不可少的。矩阵是数学中最强大的工具之一。在本文中,我们讨论矩阵乘以矩阵的乘法。在数学中,矩阵乘法是一件非常简单的事情。如果要与一个数字相乘,则只需将该数字与矩阵中存在的所有元素相乘即可。但是,如果我们将一个矩阵与另一个矩阵相乘,那么我们必须看到一些规则。
Rules:
We can multiply two matrices if the number of rows in the 1st matrix is the same as the number of columns in the 2nd matrix, otherwise, we cannot apply multiplication between the matrices.
- Let’s say a matrix of size 2×3 and another matrix is of size 3×2, then we can apply the multiplication between those matrices because the number of columns and rows are the same in both the matrices. And the resultant matrix will be of 2×2
- Let’s say a matrix of size 3×3 and another matrix is of size 4×2, then we cannot apply the multiplication between those matrices because the number of columns and rows are not the same in both the matrices.
矩阵乘以矩阵
假设2个3×3的矩阵分别具有元素a [i,j]和b [i,j]。乘法将如下图所示:
有一些规则,
- 取第一个矩阵的第一行,然后将值乘以第二个矩阵的第一列。不要将行与行相乘,也不要将列与列相乘。
- 在第一次迭代中,将行值与列值相乘,然后将这些值相加。在此图片中,a [0,0]与b [0,0]相乘,然后第一矩阵a [1,0]的第一列的第二值与第二个矩阵的第一行的第二值相乘矩阵b [0,1]。同样,所有值都在相乘。
- 然后,经过一轮迭代,所有乘积值将加在一起,并作为结果矩阵的元素放置,如图所示。
例子
问题1.让和寻找AxB?
解决方案:
问题2。 和 。寻找AxB?
解决方案:
问题3.让 , 和 。查找(AB + AC)?
解决方案:
Now calculate (AB + AC)
问题4.让 , 和 ,然后找到p的值?
解决方案:
First, calculate A2,
Given
By placing the value of A2 in the equation, we get
Now, we can write,
8 = 2p and, -8 = -2p
So, p = 4
The value of p is 4.