Il s'agit d'une définition récursive.
Les
Le mineur d'une matrice
Problème : L'inversion matricielle n'est pas trivialle.
L'élément neutre de la multiplication matricielle est noté
Soit la partie supérieure de la matrice, soit la partie inférieure de la matrice, n'est composée que de 0.
Tous les éléments de la matrice sont nuls, sauf ceux sur sa diagonale.
Donc :
On sait que les opérations suivantes sont possibles pour résoudre le système sans changer la solution :
La solution est la dernière colonne dont chaque élément est divisé par le pivôt sur la même ligne.
On considère, dans
col1 | col2 | col3 | col4 | |
---|---|---|---|---|
lig1 | 1 | -0.5 | -1 | 2 |
lig2 | 2 | -1 | 1 | 1 |
lig3 | 1 | -1 | -2 | 3 |
col1 | col2 | col3 | col4 | |
---|---|---|---|---|
lig1 | 1 | -0.5 | -1 | 2 |
lig2 | 2 | -1 | 1 | 1 |
lig3 | 1 | -1 | -2 | 3 |
col1 | col2 | col3 | col4 | Opérations | |
---|---|---|---|---|---|
lig1 | 1 | -0.5 | -1 | 2 | |
lig2 | 0 | 0 | 3 | -3 | lig2 -= 2 * lig1 |
lig3 | 0 | -0.5 | -1 | 1 | lig3 -= 1 * lig1 |
col1 | col2 | col3 | col4 | |
---|---|---|---|---|
lig1 | 1 | -0.5 | -1 | 2 |
lig3 | 0 | -0.5 | -1 | 1 |
lig2 | 0 | 0 | 3 | -3 |
Un pivôt ne peut pas être nul.
col1 | col2 | col3 | col4 | |
---|---|---|---|---|
lig1 | 1 | -0.5 | -1 | 2 |
lig3 | 0 | -0.5 | -1 | 1 |
lig2 | 0 | 0 | 3 | -3 |
col1 | col2 | col3 | col4 | Opérations | |
---|---|---|---|---|---|
lig1 | 1 | 0 | 0 | 1 | lig1 -= lig3 |
lig3 | 0 | -0.5 | -1 | 1 | |
lig2 | 0 | 0 | 3 | -3 | lig2 -= 0 * lig3 |
col1 | col2 | col3 | col4 | |
---|---|---|---|---|
lig1 | 1 | 0 | 0 | 1 |
lig3 | 0 | -0.5 | -1 | 1 |
lig2 | 0 | 0 | 3 | -3 |
col1 | col2 | col3 | col4 | Opérations | |
---|---|---|---|---|---|
lig1 | 1 | 0 | 0 | 1 | lig1 -= 0 * lig2 |
lig3 | 0 | -0.5 | 0 | 0 | lig3 += 1/3 * lig2 |
lig2 | 0 | 0 | 3 | -3 |