I think there is a mistake in the problem, for example, multiplying the m x r matrix "A" by the m x s matrix "B".
Let "A" be 2x3 matrix and "B" be 2x1 matrix, then the product of "A" by "B" won't be defined:
"\\begin{pmatrix}\n a_{11} & a_{12} & a_{13} \\\\\n a_{21} & a_{22} & a_{23}\n\\end{pmatrix}" *"\\begin{pmatrix}\n b_{11} \\\\\n b_{21}\n\\end{pmatrix}" "=?"
To multiply matrices, the number of columns of one of them must be equal to the number of rows of another one!
For example,
"\\begin{pmatrix}\n a_{11} & a_{12} \\\\\n a_{21} & a_{22} \\\\\n a_{31} & a_{32}\n\\end{pmatrix}" * "\\begin{pmatrix}\n b_{11} & b_{12} \\\\\n b_{21} & b_{22}\n\\end{pmatrix}" ="\\begin{pmatrix}\n a_{11}*b_{11}+ a_{12}*b_{21}& a_{11}*b_{12}+a_{12}*b_{22} \\\\\n a_{21}*b_{11}+ a_{22}*b_{21}& a_{21}*b_{12}+a_{22}*b_{22} \\\\\n a_{31}*b_{11}+ a_{32}*b_{21}& a_{31}*b_{12}+a_{32}*b_{22}\n\\end{pmatrix}"
In matrices "A" and "B" we can't do like this!
Comments
Thank for a clarification. Please submit a new question clearly indicating how matrices and parts should be located.
I think it meant, (A B) where matrix A and B are side by side in the same bracket, while (C D) where matrix C is on top of D in the same bracket
Leave a comment