Matrix Multiplication: Calculating (AB)C and A(BC) Using the Formula

Click For Summary
SUMMARY

The discussion focuses on calculating matrix multiplication for the expressions ((AB)C) and (A(BC)) using the formula (AB)ij = Σk AikBkj. It establishes that to compute ((AB)C)_{ij}, one must first calculate (AB)_{ik} and then apply the multiplication with matrix C. The process involves applying the matrix multiplication formula twice, ensuring accurate results for both expressions. This method is crucial for understanding the associative property of matrix multiplication.

PREREQUISITES
  • Understanding of matrix dimensions (M × N, N × K, K × L)
  • Familiarity with matrix multiplication rules
  • Knowledge of summation notation and its application in matrix operations
  • Basic linear algebra concepts
NEXT STEPS
  • Study the properties of matrix multiplication, including associativity and distributivity
  • Learn about the computational complexity of matrix multiplication algorithms
  • Explore advanced matrix operations, such as Kronecker products and determinants
  • Investigate software tools for matrix computations, such as NumPy for Python
USEFUL FOR

Students and professionals in mathematics, computer science, and engineering who are working with linear algebra and matrix operations, particularly those involved in algorithm development and optimization.

P-Jay1
Messages
32
Reaction score
0
A is an M × N matrix, B is N × K and C is a K × L matrix. Consider matrix
multiplication (AB)ij = Pk AikBkj .

Using the formula, (AB)ij = Pk AikBkj, how would I calculate ((AB)C) and (A(BC))?
 
Physics news on Phys.org
P-Jay1 said:
A is an M × N matrix, B is N × K and C is a K × L matrix. Consider matrix
multiplication (AB)ij = Pk AikBkj .

Using the formula, (AB)ij = Pk AikBkj, how would I calculate ((AB)C) and (A(BC))?
Just use the formula twice (on each of those products). Start with ((AB)C)_{ij}=\sum_k(AB)_{ik}C_{kj}. Now use the formula again to evaluate (AB)_{ik}.
 

Similar threads

  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 33 ·
2
Replies
33
Views
3K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 12 ·
Replies
12
Views
5K
  • · Replies 7 ·
Replies
7
Views
4K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K