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:
(a11a21a12a22a13a23) *(b11b21) =?
To multiply matrices, the number of columns of one of them must be equal to the number of rows of another one!
For example,
⎝⎛a11a21a31a12a22a32⎠⎞ * (b11b21b12b22) =⎝⎛a11∗b11+a12∗b21a21∗b11+a22∗b21a31∗b11+a32∗b21a11∗b12+a12∗b22a21∗b12+a22∗b22a31∗b12+a32∗b22⎠⎞
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