Matrice inverse - Propriétés et définitions Définition La matrice inverse A − 1 A^{-1} A − 1 d’une matrice carrée A est une matrice qui donne l’identité quand on la multiplie avec A − 1 A^{-1} A − 1 . Si elle existe, on a :
A ⋅ A − 1 = A − 1 ⋅ A = E n A\cdot A^{-1}=A^{-1}\cdot A=E_n A ⋅ A − 1 = A − 1 ⋅ A = E n
E n E_n E n est la matrice identité de dimension n × n n\times n n × n .
Exemple – Multiplication de la matrice A A A et de son inverseA = ( 1 3 1 4 ) , A − 1 = ( 4 − 3 − 1 1 ) A=\left(\begin{matrix}1&3\\1&4\\\end{matrix}\right),\ {\ A}^{-1}=\left(\begin{matrix}4&-3\\-1&1\\\end{matrix}\right) A = ( 1 1 3 4 ) , A − 1 = ( 4 − 1 − 3 1 )
Prouve, que A − 1 A^{-1}\ A − 1 est la matrice inverse de A :
A ⋅ A − 1 = ( 1 3 1 4 ) ⋅ ( 4 − 3 − 1 1 ) A\cdot A^{-1}=\left(\begin{matrix}1&3\\1&4\\\end{matrix}\right)\cdot\left(\begin{matrix}4&-3\\-1&1\\\end{matrix}\right) A ⋅ A − 1 = ( 1 1 3 4 ) ⋅ ( 4 − 1 − 3 1 )
Multiplie :
( 1 ⋅ 4 − 3 ⋅ 1 4 ⋅ 3 − 3 ⋅ 4 − 1 ⋅ 1 + 1 ⋅ 1 − 1 ⋅ 3 + 1 ⋅ 4 ) = ( 1 0 0 1 ) ⏟ M a t r i c e i d e n t i t e ˊ = E n \left(\begin{matrix}1\cdot 4-3\cdot1&4\cdot3-3\cdot4\\-1\cdot1+1\cdot 1&-1\cdot3+1\cdot4\\\end{matrix}\right)=\underbrace{\left(\begin{matrix}1&0\\0&1\\\end{matrix}\right)}_{Matrice\ identit\acute{e}}=E_n ( 1 ⋅ 4 − 3 ⋅ 1 − 1 ⋅ 1 + 1 ⋅ 1 4 ⋅ 3 − 3 ⋅ 4 − 1 ⋅ 3 + 1 ⋅ 4 ) = M a t r i ce i d e n t i t e ˊ ( 1 0 0 1 ) = E n
Remarque 1 : Pas toutes les matrices carrées ont une matrice inverse.
Remarque 2 : La matrice inverse n’existe que si le déterminant n’est pas égal à zéro : d e t A ≠ 0 det{A}\neq0 d e t A = 0 .
Propriétés des matrices inverses
A ⋅ A − 1 = A − 1 ⋅ A = E n {A\cdot A}^{-1}=A^{-1}\cdot A=E_n A ⋅ A − 1 = A − 1 ⋅ A = E n
L’ordre dans lequel on multiplie la matrice inverse avec la matrice originale ne joue pas de rôle : Le résultat dans les deux cas est la matrice identité.
( A − 1 ) − 1 = A {{(A}^{-1})}^{-1}=A ( A − 1 ) − 1 = A
La matrice inverse de la matrice inverse est à nouveau la matrice originale.
E n − 1 = E n {E_n}^{-1}=E_n E n − 1 = E n
La matrice inverse de la matrice identité est la matrice identité.
( r A ) − 1 = r − 1 ⋅ A − 1 {(rA)}^{-1}={r^{-1}\cdot A}^{-1} ( r A ) − 1 = r − 1 ⋅ A − 1
La matrice inverse d’une matrice multipliée par un scalaire est la matrice inverse multipliée par l’inverse du scalaire.
( A T ) − 1 = ( A − 1 ) T {{(A}^T)}^{-1}={{(A}^{-1})}^T ( A T ) − 1 = ( A − 1 ) T
L’inverse d’une matrice transposée correspond à la transposée de la matrice inverse.
d e t ( A − 1 ) = d e t ( A ) − 1 det(A^{-1})={det(A)}^{-1} d e t ( A − 1 ) = d e t ( A ) − 1
Le déterminant de la matrice inverse est égal à l'inverse du déterminant de la matrice originale.
Déterminer la matrice inverse Matrice en 2 dimensions FORMULE
A = ( a 11 a 12 a 21 a 22 ) A=\left(\begin{matrix}a_{11}&a_{12}\\a_{21}&a_{22}\\\end{matrix}\right) A = ( a 11 a 21 a 12 a 22 )
A − 1 = 1 det ( A ) ( a 22 − a 12 − a 21 a 11 ) A^{-1}=\frac{1}{\det{\left(A\right)}}\left(\begin{matrix}a_{22}&-a_{12}\\-a_{21}&a_{11}\\\end{matrix}\right) A − 1 = det ( A ) 1 ( a 22 − a 21 − a 12 a 11 )
Exemple – Calculer la matrice inverse d’une matrice 2 × 2 A . 2\times2 A. 2 × 2 A . A = ( 5 3 3 2 ) A=\left(\begin{matrix}5&3\\3&2\\\end{matrix}\right) A = ( 5 3 3 2 )
Calcule le déterminant :
d e t ( A ) = 10 − 9 = 1 det{\left(A\right)}=10-9=1 d e t ( A ) = 10 − 9 = 1
Calcule la matrice inverse :
A − 1 = 1 1 ( 2 − 3 − 3 5 ) = ( 2 − 3 − 3 5 ) A^{-1}=\frac{1}{1}\left(\begin{matrix}2&-3\\-3&5\\\end{matrix}\right)=\left(\begin{matrix}2&-3\\-3&5\\\end{matrix}\right) A − 1 = 1 1 ( 2 − 3 − 3 5 ) = ( 2 − 3 − 3 5 )
Vérifie :
A ⋅ A − 1 = ( 5 3 3 2 ) ⋅ ( 2 − 3 − 3 5 ) = ( 10 − 9 − 15 + 15 6 − 6 − 9 + 10 ) = ( 1 0 0 1 ) A\cdot A^{-1}=\left(\begin{matrix}5&3\\3&2\\\end{matrix}\right)\cdot\left(\begin{matrix}2&-3\\-3&5\\\end{matrix}\right)=\left(\begin{matrix}10-9&-15+15\\6-6&-9+10\\\end{matrix}\right)=\left(\begin{matrix}1&0\\0&1\\\end{matrix}\right) A ⋅ A − 1 = ( 5 3 3 2 ) ⋅ ( 2 − 3 − 3 5 ) = ( 10 − 9 6 − 6 − 15 + 15 − 9 + 10 ) = ( 1 0 0 1 )
Matrice en 3 dimensions La formule suivante est utilisée pour calculer l’inverse d’une matrice 3 × 3 3\times3 3 × 3 . Cependant, elle est rarement utilisée à l’école.
FORMULE A = ( a b c d e f g h i ) A=\left(\begin{matrix}a&b&c\\d&e&f\\g&h&i\\\end{matrix}\right) A = a d g b e h c f i
A − 1 = 1 det ( A ) ⋅ ( e i − f h c h − b i b f − c e f g − d i a i − c g c d − a f d h − e g b g − a h a e − b d ) A^{-1}=\frac{1}{\det(A)}\cdot\left(\begin{matrix}ei-fh&ch-bi&bf-ce\\fg-di&ai-cg&cd-af\\dh-eg&bg-ah&ae-bd\\\end{matrix}\right) A − 1 = det ( A ) 1 ⋅ e i − f h f g − d i d h − e g c h − bi ai − c g b g − ah b f − ce c d − a f a e − b d
Exemple – Calculer la matrice inverse de la matrice 3 × 3 A 3\times3 \ A 3 × 3 A . A = ( 1 3 2 − 1 0 2 1 5 0 ) A=\left(\begin{matrix}1&3&2\\-1&0&2\\1&5&0\\\end{matrix}\right) A = 1 − 1 1 3 0 5 2 2 0
Calcule le déterminant :
d e t ( A ) = 1 ⋅ 0 ⋅ 0 + 3 ⋅ 2 ⋅ 1 + 2 ⋅ ( − 1 ) ⋅ 5 − 2 ⋅ 0 ⋅ 1 − 1 ⋅ 2 ⋅ 5 − 3 ⋅ ( − 1 ) ⋅ 0 = 6 − 10 − 10 = − 14 det{\left(A\right)}=1\cdot0\cdot0+3\cdot2\cdot1+2\cdot\left(-1\right)\cdot5-2\cdot0\cdot1-1\cdot2\cdot5-3\cdot\left(-1\right)\cdot0=6-10-10=-14 d e t ( A ) = 1 ⋅ 0 ⋅ 0 + 3 ⋅ 2 ⋅ 1 + 2 ⋅ ( − 1 ) ⋅ 5 − 2 ⋅ 0 ⋅ 1 − 1 ⋅ 2 ⋅ 5 − 3 ⋅ ( − 1 ) ⋅ 0 = 6 − 10 − 10 = − 14
Calcule la matrice inverse :
A − 1 = ( 1 3 2 − 1 0 2 1 5 4 ) − 1 = 1 − 14 ( − 10 10 6 2 − 2 − 4 − 5 − 2 3 ) = ( 5 7 − 5 7 − 6 14 − 1 7 1 7 2 7 5 14 1 7 − 3 14 ) = A^{-1}=\left(\begin{matrix}1&3&2\\-1&0&2\\1&5&4\\\end{matrix}\right)^{-1}=\frac{1}{-14}\left(\begin{matrix}-10&10&6\\2&-2&-4\\-5&-2&3\\\end{matrix}\right)=\left(\begin{matrix}\frac{5}{7}&\frac{-5}{7}&\frac{-6}{14}\\\frac{-1}{7}&\frac{1}{7}&\frac{2}{7}\\\frac{5}{14}&\frac{1}{7}&\frac{-3}{14}\\\end{matrix}\right)= A − 1 = 1 − 1 1 3 0 5 2 2 4 − 1 = − 14 1 − 10 2 − 5 10 − 2 − 2 6 − 4 3 = 7 5 7 − 1 14 5 7 − 5 7 1 7 1 14 − 6 7 2 14 − 3 =
Vérifie :
A ⋅ A − 1 = ( 1 3 2 − 1 0 2 1 5 0 ) ⋅ ( 5 7 − 5 7 − 3 7 − 1 7 1 7 2 7 5 14 1 7 − 3 14 ) = ( 5 7 − 3 7 + 10 14 − 5 7 + 3 7 + 2 7 − 3 7 + 6 7 − 3 7 − 5 7 + 0 + 5 7 5 7 + 0 + 2 7 3 7 + 0 − 3 7 5 7 − 5 7 + 0 − 5 7 + 5 7 + 0 − 3 7 + 10 7 + 0 ) = ( 1 0 0 0 1 0 0 0 1 ) A\cdot A^{-1}=\left(\begin{matrix}1&3&2\\-1&0&2\\1&5&0\\\end{matrix}\right)\cdot\left(\begin{matrix}\frac{5}{7}&\frac{-5}{7}&\frac{-3}{7}\\\frac{-1}{7}&\frac{1}{7}&\frac{2}{7}\\\frac{5}{14}&\frac{1}{7}&\frac{-3}{14}\\\end{matrix}\right)=\left(\begin{matrix}\frac{5}{7}-\frac{3}{7}+\frac{10}{14}&\frac{-5}{7}+\frac{3}{7}+\frac{2}{7}&\frac{-3}{7}+\frac{6}{7}-\frac{3}{7}\\\frac{-5}{7}+0+\frac{5}{7}&\frac{5}{7}+0+\frac{2}{7}&\frac{3}{7}+0-\frac{3}{7}\\\frac{5}{7}-\frac{5}{7}+0&\frac{-5}{7}+\frac{5}{7}+0&\frac{-3}{7}+\frac{10}{7}+0\\\end{matrix}\right)=\left(\begin{matrix}1&0&0\\0&1&0\\0&0&1\\\end{matrix}\right) A ⋅ A − 1 = 1 − 1 1 3 0 5 2 2 0 ⋅ 7 5 7 − 1 14 5 7 − 5 7 1 7 1 7 − 3 7 2 14 − 3 = 7 5 − 7 3 + 14 10 7 − 5 + 0 + 7 5 7 5 − 7 5 + 0 7 − 5 + 7 3 + 7 2 7 5 + 0 + 7 2 7 − 5 + 7 5 + 0 7 − 3 + 7 6 − 7 3 7 3 + 0 − 7 3 7 − 3 + 7 10 + 0 = 1 0 0 0 1 0 0 0 1