Matrix Addition and Subtraction
Addition and subtraction are done with matrices of the same size.
\[ \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} \]
\[ \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} + \begin{bmatrix} 1 \\ 0 \end{bmatrix} \text{ is not defined} \]
\[ \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} - \begin{bmatrix} 5 & 6 \\ 7 & 8 \end{bmatrix} = \begin{bmatrix} -4 & -4 \\ -4 & -4 \end{bmatrix} \]
\[ = (-4) \begin{bmatrix} 1 & 1 \\ 1 & 1 \end{bmatrix} \]
Scalar multiple of matrix \( \begin{bmatrix} 1 & 1 \\ 1 & 1 \end{bmatrix} \)
\[ (2) \begin{bmatrix} 1 \\ 2 \end{bmatrix} + (3) \begin{bmatrix} -1 \\ 4 \end{bmatrix} = \begin{bmatrix} 2 \\ 4 \end{bmatrix} + \begin{bmatrix} -3 \\ 12 \end{bmatrix} = \begin{bmatrix} -1 \\ 16 \end{bmatrix} \]