Learning objective
A matrix is an array consisting of n rows and m columns, where n and m are integers. It is represented as an n \times m matrix, with n denoting the number of rows and m representing the number of columns.
The dimensions of a matrix are referred to as the order and are always listed by row then column in the form where represents the number of rows and represents the number of columns. Special forms of a matrix can be classified by their order:
The elements of a matrix are the individual numbers and variables and can be identified by their position using subscript notation a_{mn} where m represents the row the element is located in and n represents the column as shown in the matrix below:
Matrices can only be equal if they have the same order and every element within each matrix is equal. For example, if A=B, then a_{11}=b_{11}, a_{12}=b_{12}\ldots etc.
Matrix A is shown below: A = \begin{bmatrix} 2 & 8 \\ 3 & 1 \\ 9 & 7 \end{bmatrix}
Find the order of matrix A.
Identify the value of a_{21} in matrix A.
Consider the matrix equation: \begin{bmatrix} x & 5 \\ 9 & 6-y \end{bmatrix}=\begin{bmatrix} 3 & 5 \\ 9 & 2 \end{bmatrix}
Solve for x.
Solve for y.
A matrix is a rectangular array of integers consisting of n rows and m columns, defined as having an order of n \times m. The individual components of a matrix are called elements, whose position can be represented in subscript notation as a_{mn}, where m is the row, and n is the column.
Matrices can be used for various operations, including multiplication. Two matrices can be multiplied if the number of columns in the first matrix equals the number of rows in the second matrix. The resulting matrix will have the same number of rows as the first matrix and the same number of columns as the second matrix.
Can be multiplied: A = \begin{bmatrix} 3 & 8 \\ 3 & 1 \\ 9 & 7 \end{bmatrix}\, B = \begin{bmatrix} 4 & 8 \\ 9 & 0 \end{bmatrix}
Cannot be multiplied: C = \begin{bmatrix} 5 & 7 \\ 2 & 9 \\ 7 & 8 \end{bmatrix}\, D = \begin{bmatrix} 2 & 9 \\ 1 & 4 \\ 1 & 5 \end{bmatrix}
To perform matrix multiplication, the component in the ith row and jthcolumn of the resulting matrix is the dot product of the ith row of the first matrix and the jth column of the second matrix.
\begin{bmatrix} 10 & 2 \end{bmatrix} \times \begin{bmatrix} 8 & 7 \\ 0 & 1 \end{bmatrix} = \begin{bmatrix} 10 \cdot 8 + 2 \cdot 0 \,\,\,\,\, 10 \cdot 7 + 2 \cdot 1 \end{bmatrix}
results in \begin{bmatrix} 80 & 72 \end{bmatrix}
Matrix multiplication is not commutative, meaning that the order in which the matrices are multiplied matters.
Determine if the following pairs of matrices can be multiplied.
A = \begin{bmatrix} 2 & 5 \\ 1 & 3 \end{bmatrix}\,\,\,\, B = \begin{bmatrix} 7 & 2 & 6 \\ 1 & 5 & 2 \end{bmatrix}\,\,\,\, C = \begin{bmatrix} 2 & 5 & 8 \\ 3 & 10 & 8 \\ 9 & 4 & 2 \end{bmatrix}
B \cdot C
A \cdot B
C \cdot B
Given the following matrices, perform the multiplication indicated.
E = \begin{bmatrix} 2 & 4 \\ 0 & 3 \\5 & 1 \end{bmatrix}\,\,\,\, F = \begin{bmatrix} 0 & 8 \\ 1 & 9 \end{bmatrix}\,\,\,\, G = \begin{bmatrix} 2 & 8 & 1 \\ 3 & 12 & 0 \\ 1 & 0 & 2 \end{bmatrix}
E \cdot F
G \cdot E
Matrix multiplication involves the process of taking the dot product of rows from the first matrix with columns from the second matrix. To perform this operation, the number of columns in the first matrix must equal the number of rows in the second matrix, resulting in a new matrix with the dimensions of the first matrix's rows and the second matrix's columns.