Learn how to easily add and subtract matrix operations. Complete with example questions and step-by-step explanations. Merdeka Curriculum Phase F
A matrix is an arrangement of numbers arranged in rows and columns. Operations on matrices are an important part of what you learn in class XI Phase F of the Independent Curriculum. One of the basic operations on matrices is addition and subtraction.
Study Buddy! Before continuing, make sure you have understood and studied Matrix Concepts and Matrix Types↝ , as well as Matrix Transpose and Similarities↝ yes.
1. Terms for Addition and Subtraction of Matrices
In order for two matrices to be added or subtracted, the two matrices must have the same order. The order of a matrix is the number of rows and columns in the matrix. For example, matrix A with order 2x3 can be added or subtracted from matrix B which also has order 2x3.
2. Matrix Addition
Suppose we have two matrices A and B with the same order, then the addition of matrices A and B can be written as follows:
$$ \begin{align*} A + B &= \begin{bmatrix} a_{11} & a_{12} & \cdots & a_{1n} \\ a_{21} & a_{22} & \cdots & a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{bmatrix} + \begin{bmatrix} b_{11} & b_{12} & \cdots & b_{1n} \\ b_{21} & b_{22} & \cdots & b_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ b_{m1} & b_{m2} & \cdots & b_{mn} \end{bmatrix} \\&= \begin{bmatrix} a_{11}+b_{11} & a_{12}+b_{12} & \cdots & a_{1n}+b_{1n} \\ a_{21}+b_{21} & a_{22}+b_{22} & \cdots & a_{2n}+b_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{m1}+b_{m1} & a_{m2}+b_{m2} & \cdots & a_{mn}+b_{mn} \end{bmatrix}\end{align*}$$
Example:
Given that Matrix $A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}$ and Matrix $ B = \begin{bmatrix} 5 & 6 \\ 7 & 8 \end{bmatrix}$. Determine the result of $A+B$!
Solution ✍️
$$\begin{align*}A + B &=\begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}+ \begin{bmatrix} 5 & 6 \\ 7 & 8 \end{bmatrix} \\&= \begin{bmatrix} 1+5 & 2+6 \\ 3+7 & 4+8 \end{bmatrix} \\&= \begin{bmatrix} 6 & 8 \\ 10 & 12 \end{bmatrix}\end{align*}$$
So, the result of $A+B$ is $\begin{bmatrix} 6 & 8 \\ 10 & 12 \end{bmatrix}$
3. Matrix Subtraction
Matrix subtraction has the same concept as addition. Suppose we have two matrices A and B with the same order, then the reduction of matrices A and B can be written as follows:
$$A - B = A + (-B)$$
Example:
Given that the matrix $ A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}$, and the matrix $ B = \begin{bmatrix} 5 & 6 \\ 7 & 8 \end{bmatrix} $. Determine the outcome of $A-B$!
Solution ✍️
$$\begin{align*} A - B &= \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} - \begin{bmatrix} 5 & 6 \\ 7 & 8 \end{bmatrix} \\ &= \begin{bmatrix} 1-5 & 2-6 \\ 3-7 & 4-8 \end{bmatrix} \\& = \begin{bmatrix} -4 & -4 \\ -4 & -4 \end{bmatrix} \end{align*}$$4. Properties of Matrix Addition
- Commutative: $A + B = B + A$
- Asosiatif: $(A + B) + C = A + (B + C)$
- Identity elements: There is a zero matrix (all elements are zero) which, if added to another matrix, will produce itself.
5. Practice Addition and Subtraction of Matrices
So that you better understand matrix addition and subtraction operations, please try the following practice questions
- Given the matrix $A = \begin{bmatrix} 2 & 3 \\-1 & 4 \end{bmatrix}$ and $B = \begin{bmatrix} 1 & -2 \\ 5 & 0 \end{bmatrix}$ . Calculate $A + B$.
- If the matrix $C = \begin{bmatrix}-3 & 2 \\1 & 4 \\0 & -2\end{bmatrix}$ and $ D = \begin{bmatrix}5 & -1 \\2 & 3 \\1 & 0\end{bmatrix}$, determine C - D.
- Given the matrix $P + Q = \begin{bmatrix}7 & 2 \\-1 & 5\end{bmatrix}$ and $Q = \begin{bmatrix}3 & -1 \\2 & 1\end{bmatrix}$. Determine the matrix P.
- If the matrix $A = \begin{bmatrix} x & 2 \\ 3 & y \end{bmatrix}$ and $B = \begin{bmatrix}4 & -1 \\ 2 & 5 \end {bmatrix}$ and $A + B = \begin{bmatrix} 7 & 1 \\ 5 & 7 \end{bmatrix}$, determine the values of $x$ and $y$.
- Given the matrix $X = \begin{bmatrix}a & b \\c & d\end{bmatrix}$. If $X + X = \begin{bmatrix}6 & 8 \\10 & 12\end{bmatrix}$, Determine the value of $2a + 3d$.
Addition and subtraction of matrices are very important basic operations. These two operations can only be performed on matrices that have the same order. By understanding the basic concepts of adding and subtracting matrices, we can perform various more complex matrix operations.