Matrices - Operation on matrices: Addition, multiplication and multiplication with a scalar
Review the key concepts, formulae, and examples before starting your quiz.
🔑Concepts
Matrix Addition: Two matrices and can be added if and only if they are of the same order (dimensions). Visualize this as placing one grid over another of identical size; the resulting sum is formed by adding elements at the same corresponding positions, such that .
Scalar Multiplication: This operation involves multiplying every single entry of a matrix by a constant number . Geometrically, this represents a uniform scaling of the matrix data, where a matrix grid expands or contracts based on the value of . For example, .
Matrix Multiplication Compatibility: Multiplication of two matrices and is only defined if the number of columns in the first matrix is equal to the number of rows in the second matrix . If is an matrix and is an matrix, the resulting matrix will have the dimensions .
The Row-Column Rule: To find the element in the -th row and -th column of the product , you compute the dot product of the -th row of and the -th column of . Visualize the row of the first matrix sliding horizontally across and 'pairing up' with the vertical column of the second matrix, multiplying the pairs and summing them up.
Non-Commutative Property: Unlike real numbers, matrix multiplication is generally not commutative (). Changing the order of multiplication often changes the result or makes the operation impossible due to dimension mismatch. Visually, the interaction between rows and columns changes entirely when the matrices are swapped.
Additive Identity and Inverse: The Null Matrix (a matrix where every entry is zero) acts as the additive identity, meaning . For every matrix , there exists an additive inverse (where every element's sign is flipped) such that .
Multiplicative Identity: The Identity matrix is a square matrix with s along the main diagonal (from top-left to bottom-right) and s everywhere else. It acts as the number '1' in matrix algebra, satisfying the property .
Distributive and Associative Laws: Matrix multiplication is associative, meaning , and distributive over addition, meaning . This allows for complex algebraic manipulation of matrix equations similar to standard algebra, provided the order of multiplication is maintained.
📐Formulae
(Addition of matrices of the same order)
(Scalar multiplication)
(General term for matrix multiplication product )
(Commutative Law of Addition)
(Associative Law of Addition)
(Distributive Law for Scalars)
(Associative Law of Multiplication)
(Distributive Law of Multiplication)
💡Examples
Problem 1:
Given and , find .
Solution:
Step 1: Calculate . Multiply every element of by : Step 2: Calculate . Multiply every element of by : Step 3: Add the resulting matrices element-wise:
Explanation:
This problem demonstrates combining scalar multiplication and matrix addition. We scale each matrix individually before adding corresponding entries.
Problem 2:
Find the product if and .
Solution:
Step 1: Calculate element (Row 1 of Col 1 of ): Step 2: Calculate element (Row 1 of Col 2 of ): Step 3: Calculate element (Row 2 of Col 1 of ): Step 4: Calculate element (Row 2 of Col 2 of ): Result:
Explanation:
This uses the Row-Column rule. We multiply elements of the rows of the first matrix by elements of the columns of the second matrix and sum them to find each entry of the product.