III. Opérations sur les matrices
Il est possible de :
a- Ajouter 2 matrices de même format
Ex :
2 -1 + 4 0 = 6 -1
5 3 2 -1 7 2 on additionne les coefficients correspondants
b- Multiplier une matrice par un réel
Ex :
-3 x 1 0 0 = -3x1 -3x0 -3x0 = -3 0 0
2 -5 7 -3x2 -3x-5 -3x7 -6 15 -21
c- Multiplier une matrice de format (n,p) par une matrice de format (p,q) pour
obtenir une matrice de format (n,q).
Ex :
a b c 1ère colonne x 1ère ligne
d e f 2ère colonne x 1ère ligne
g h i 3ère colonne x 1ère ligne
x
aj+dk+gl bj+ek+hl cj+fk+il
j k l am+dn+go bm+en+ho cm+fn+io
m n o
1ère colonne x 2ère ligne
2ère colonne x 2ère ligne
3ère colonne x 2ère ligne
Notation :
0 2 -2
1 0 1
-1 4 1
2 1 3 2 16 0
3 -1 -2 1 -2 -9
Remarque :
AxA= A² Si A matrice carrée
AxAxA=A3
…