Addition et soustraction de deux matrices
L'addition et la soustraction de matrices s'effectuent élément par élément, à condition que les matrices aient les mêmes dimensions.
Exemple sur des matrices de rang 2
Pour $a$, $b$, $c$, $d$, $a'$, $b'$, $c'$ et $d'$ huit nombres réels :
Addition :
$\begin{bmatrix} a & b \\ c & d \\ \end{bmatrix} + \begin{bmatrix} a' & b' \\ c' & d' \\ \end{bmatrix} = \begin{bmatrix}a + a' & b + b' \\ c + c' & d + d' \\ \end{bmatrix}$
Soustraction :
$\begin{bmatrix} a & b \\ c & d \\ \end{bmatrix} - \begin{bmatrix} a' & b' \\ c' & d' \\ \end{bmatrix} = \begin{bmatrix}a - a' & b - b' \\ c - c' & d - d' \\ \end{bmatrix}$
Multiplication d'une matrice par un réel
La multiplication d'une matrice par un scalaire consiste à multiplier chaque élément de la matrice par ce nombre réel.
Exemple sur des matrices de rang 2
Pour $a$, $b$, $c$, $d$ et $k$ cinq nombres réels :
$k \times \begin{bmatrix} a & b \\ c & d \\ \end{bmatrix} = \begin{bmatrix}k\times a & k\times b \\ k\times c & k\times d \\ \end{bmatrix}$