95.2k views
1 vote
Is it possible to multiply the following matrix

[-6 1] x [2 3 6]
[-1 -6] [-4 -1 0]

User Eva FP
by
7.8k points

1 Answer

6 votes
Matrix A is 2x2. The dimensions are in the form m x n where m = 2 and n = 2
Matrix B is 2x3. The dimensions are in the form p x q where p = 2 and q = 3

Question: is A*B possible or defined?
Answer: Yes because the inner dimensions n and p are equal. If n = p was false, then we'd have a mismatch and matrix multiplication is not possible.

Final Answer: Yes

----------------------

Side Note: B*A is not possible since (p x q) * (m x n) turns into (2x3)*(2x2). The inner dimensions q = 3 and m = 2 don't match up. The order of matrix multiplication is important.
User Heath
by
8.3k points

No related questions found

Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.

9.4m questions

12.2m answers

Categories