Review the key concepts, formulae, and examples before starting your quiz.
🔑Concepts
Order and Equality: A matrix is a rectangular array of numbers arranged in rows and columns, denoted as . Two matrices are equal only if they have the exact same dimensions and every corresponding element is equal to . Visually, this means both grids must have the same shape and identical values in every cell.
Matrix Addition and Subtraction: These operations are only possible for matrices of the same order. To add or subtract, you perform the operation on corresponding elements. Visually, imagine stacking two identical grids and adding the numbers that occupy the same position ().
Scalar Multiplication: Multiplying a matrix by a scalar involves multiplying every individual element of the matrix by that constant. Visually, this scales the entire content of the matrix grid by the factor . For example, .
Matrix Multiplication Rule: Two matrices and can be multiplied to form only if the number of columns in is equal to the number of rows in . If is and is , the resulting matrix will have the order .
The Multiplication Process: To find the element in the -th row and -th column of the product, you multiply the elements of the -th row of the first matrix by the corresponding elements of the -th column of the second matrix and sum them up. Visually, this follows a 'Row-by-Column' movement pattern.
Commutativity and Associativity: While matrix addition is commutative (), matrix multiplication is generally NOT commutative (). However, both addition and multiplication are associative, meaning and .
Identity and Zero Matrices: The Identity matrix is a square matrix with s on the main diagonal (top-left to bottom-right) and s elsewhere; it acts as the multiplicative identity (). The Zero matrix contains only zeros and acts as the additive identity ().
Distributive Property: Matrix multiplication distributes over matrix addition. This is expressed as and , provided the dimensions allow for these operations.
📐Formulae
(Commutative Law of Addition)
(General Non-commutativity of Multiplication)
💡Examples
Problem 1:
Given matrices and , calculate .
Solution:
Step 1: Multiply matrix by scalar :
Step 2: Multiply matrix by scalar :
Step 3: Subtract from :
Explanation:
This problem demonstrates scalar multiplication followed by matrix subtraction. Each element of the matrix is scaled first, and then corresponding elements are subtracted.
Problem 2:
Find the product if and .
Solution:
Step 1: Check dimensions. is and is . Resulting matrix will be .
Step 2: Calculate element (Row 1 of Col 1 of ):
Step 3: Calculate element (Row 1 of Col 2 of ):
Step 4: Calculate element (Row 2 of Col 1 of ):
Step 5: Calculate element (Row 2 of Col 2 of ):
Final Matrix
Explanation:
This shows the Row-by-Column multiplication method. Each entry in the resulting matrix is a sum of products of corresponding entries from the rows of the first matrix and columns of the second.