Matrix Multiplication: Definition And Properties

Matrix multiplication is a fundamental operation in linear algebra that combines two matrices to produce a new matrix. It’s important in various fields such as mathematics, computer science, physics, engineering, and more. The matrix multiplication process involves the dot product of rows from the first matrix with columns from the second matrix.

Matrix Multiplication

Let’s consider two matrices:

Matrix A: An m × n matrix (m rows and n columns) Matrix B: An n × p matrix (n rows and p columns) The result of matrix multiplication, denoted as C = AB, is a new matrix C with dimensions m × p (m rows and p columns).

Matrix multiplication is defined as follows:

For each element in the resulting matrix C (C[i][j]), it is obtained by taking the dot product of the i-th row of matrix A with the j-th column of matrix B:

C[i][j] = A[i][1] * B[1][j] + A[i][2] * B[2][j] + … + A[i][n] * B[n][j]

Properties of Matrix Multiplication:

  1. Associativity: (AB)C = A(BC) – The order of matrix multiplication matters, but it’s associative. This means that when you’re multiplying three or more matrices, the way you group them doesn’t affect the final result.
  2. Distributive Property: A(B + C) = AB + AC – Matrix multiplication distributes over matrix addition.
  3. Scalar Multiplication: k(AB) = (kA)B = A(kB) – You can factor out scalars from matrix products.
  4. Identity Matrix: AI = IA = A – Multiplying a matrix by the identity matrix doesn’t change the matrix.
  5. Transpose Property: (AB)^T = B^T * A^T – The transpose of a matrix product is the product of the transposes in reverse order.
  6. Non-Commutativity: In general, matrix multiplication is not commutative, meaning AB ≠ BA. The order of multiplication matters.
  7. Dimensions Compatibility: For matrix multiplication to be valid, the number of columns in the first matrix (n) must be equal to the number of rows in the second matrix (also n). The resulting matrix will have dimensions (m × p), where m is the number of rows of the first matrix and p is the number of columns of the second matrix.

Matrix multiplication plays a crucial role in solving systems of linear equations, transformations, and various applications in computer graphics, physics simulations, optimization problems, and more. It forms the foundation for more advanced concepts like matrix inversion, eigenvalues, eigenvectors, and the study of linear transformations.

by Abdullah Sam
I’m a teacher, researcher and writer. I write about study subjects to improve the learning of college and university students. I write top Quality study notes Mostly, Tech, Games, Education, And Solutions/Tips and Tricks. I am a person who helps students to acquire knowledge, competence or virtue.

Leave a Comment