Pour ce qui suivre, il est important de poser les définitions suivantes :
-
Opérations sur les matrices
-
Addition de matrices
Soient deux matrices \((A,B) \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K})^2\) de même taille.
$$ \forall (i, j) \in [\![1, n]\!] \times [\![1, p]\!],$$$$(A + B)_{i,j} = a_{i,j} + b_{i,j} $$Autrement dit, on additionne chaque élément de la matrice de gauche avec l'élément de même position de celle de droite :
$$ A + B = \begin{pmatrix} a_{1,1} & a_{1,2} & a_{1,3} & \dots & a_{1, p} \\ a_{2,1} & a_{2,2} & a_{2,3} & \dots & a_{2, p} \\ \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \ddots & \hspace{0.5em} \vdots \\ a_{n,1} & a_{n,2} & a_{n,3} & \dots & a_{n, p} \end{pmatrix} + \begin{pmatrix} b_{1,1} & b_{1,2} & b_{1,3} & \dots & b_{1, p} \\ b_{2,1} & b_{2,2} & b_{2,3} & \dots & b_{2, p} \\ \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \ddots & \hspace{0.5em} \vdots \\ b_{n,1} & b_{n,2} & b_{n,3} & \dots & b_{n, p} \end{pmatrix} $$$$ A + B = \begin{pmatrix} a_{1,1} + b_{1,1} & a_{1,2} + b_{1,2} & a_{1,3} + b_{1,3} & \dots & a_{1, p} + b_{1, p} \\ a_{2,1} + b_{2,1} & a_{2,2} + b_{2,2} & a_{2,3} + b_{2,3} & \dots & a_{2, p} + b_{2,p} \\ \hspace{2em} \vdots & \hspace{2em} \vdots & \hspace{2em} \vdots & \ddots & \hspace{2em} \vdots \\ a_{n,1} + b_{n,1} & a_{n,2} + b_{n,2} & a_{n,3} + b_{n,3} & \dots & a_{n, p} + b_{n,p} \end{pmatrix} $$ -
Produit matriciel
Soient deux matrices \(A \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K})\) et \(B \in \hspace{0.03em} \mathcal{M}_{p,q} (\mathbb{K})\).
Pour multiplier deux matrices, on a besoin que le matrice de gauche ait le même nombre de colonnes que le nombre de lignes de la matrice de droite (ici \(p\)). Le résultat est une matrice \(AB \in \hspace{0.03em} \mathcal{M}_{n,q} (\mathbb{K})\), donc avec \(n\) lignes et \(q\) colonnes.
$$ \forall (i, j) \in [\![1, n]\!] \times [\![1, q]\!],$$$$(A \times B)_{i,j} = \sum_{k = 1}^p a_{i,k} \times b_{k,j} $$Par exemple :
$$ A \times B = \begin{pmatrix} a_{1,1} & a_{1,2} & a_{1,3} & \dots & a_{1, p} \\ a_{2,1} & a_{2,2} & a_{2,3} & \dots & a_{2, p} \\ \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \ddots & \hspace{0.5em} \vdots \\ a_{n,1} & a_{n,2} & a_{n,3} & \dots & a_{n, p} \end{pmatrix} \times \begin{pmatrix} b_{1,1} & b_{1,2} & b_{1,3} & \dots & b_{1, q} \\ b_{2,1} & b_{2,2} & b_{2,3} & \dots & b_{2, q} \\ \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \ddots & \hspace{0.5em} \vdots \\ b_{p,1} & b_{p,2} & b_{p,3} & \dots & b_{p, q} \end{pmatrix} $$$$ A \times B = \begin{pmatrix} \Bigl[a_{1,1} b_{1,1} + a_{1,2} b_{2,1} \ + \ ... \ + \ a_{1,p} b_{p,1} \Bigr] & \Bigl[a_{1,1} b_{1,2} + a_{1,2} b_{2,2} \ + \ ... \ + \ a_{1,p} b_{p,2}\Bigr] & \hspace{1em} \dots \dots \dots \hspace{1em} & \Bigl[a_{1,1} b_{1,q} + a_{1,2} b_{2,q} \ + \ ... \ + \ a_{1,p} b_{p,q}\Bigr] \\ \Bigl[a_{2,1} b_{1,1} + a_{2,2} b_{2,1} \ + \ ... \ + \ a_{2,p} b_{p,1}\Bigr] & \Bigl[a_{2,1} b_{1,2} + a_{2,2} b_{2,2} \ + \ ... \ + \ a_{2,p} b_{p,2}\Bigr] & \hspace{1em} \dots \dots \dots \hspace{1em} & \Bigl[a_{2,1} b_{1,q} + a_{2,2} b_{2,q} \ + \ ... \ + \ a_{2,p} b_{p,q}\Bigr] \\ \hspace{8em} \vdots & \hspace{8em} \vdots & \hspace{1em} \ddots & \hspace{8em} \vdots \\ \hspace{8em} \vdots & \hspace{8em} \vdots & \hspace{1em} \ddots & \hspace{8em} \vdots \\ \Bigl[a_{n,1} b_{1,1} + a_{n,2} b_{2,1} \ + \ ... \ + \ a_{n,p} b_{p,1}\Bigr] & \Bigl[a_{n,1} b_{1,2} + a_{2,2} b_{2,2} \ + \ ... \ + \ a_{n,p} b_{p,2}\Bigr] & \hspace{1em} \dots \dots \dots \hspace{1em} & \Bigl[a_{n,1} b_{1,q} + a_{n,2} b_{2,q} \ + \ ... \ + \ a_{n,p} b_{p,q}\Bigr] \end{pmatrix} $$Attention, de manière générale le produit matriciel n'est pas commutatif : \( (A \times B) \neq (B \times A) \) .
-
Multiplication d'une matrice par un scalaire \(\lambda\)
Soit une matrice \(A \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K})\).
Lorsque l'on multiplie une matrice par un scalaire, cela affecte tous ses éléments.
$$ \forall (i, j) \in [\![1, n]\!] \times [\![1, p]\!],$$$$(\lambda A)_{i,j} = \lambda \ a_{i,j} $$Par exemple :
$$ A = \begin{pmatrix} a_{1,1} & a_{1,2} & a_{1,3} & \dots & a_{1, p} \\ a_{2,1} & a_{2,2} & a_{2,3} & \dots & a_{2, p} \\ \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \ddots & \hspace{0.5em} \vdots \\ a_{n,1} & a_{n,2} & a_{n,3} & \dots & a_{n, p} \end{pmatrix} $$$$ \lambda A = \begin{pmatrix} \lambda \ a_{1,1} & \lambda \ a_{1,2} & \lambda \ a_{1,3} & \dots & \lambda \ a_{1, p} \\ \lambda \ a_{2,1} & \lambda \ a_{2,2} & \lambda \ a_{2,3} & \dots & \lambda \ a_{2, p} \\ \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \ddots & \hspace{0.5em} \vdots \\ \lambda \ a_{n,1} & \lambda \ a_{n,2} & \lambda \ a_{n,3} & \dots & \lambda \ a_{n, p} \end{pmatrix} $$ -
Combinaison linéaire de matrices
Soient deux matrices \((A,B) \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K})^2\) de même taille et \((\lambda, \mu) \in \hspace{0.04em} \mathbb{R}^2\).
Avec les propriétés précédentes d' addition et de multiplication par un scalaire , on peut créer des combinaisons linéaires de matrices et alors :
$$(\lambda A + \mu B)_{i,j} = \lambda \ a_{i,j} + \mu \ b_{i,j} $$ -
Transposition d'une matrice
Soit la matrice carrée \(A \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K})\) de taille \(n\).
La transposition d'une matrice consiste à inverser les indices de lignes et de colonnes de chaque élément. On note \(A^T\) (ou parfois \(^t A\)) la transposée de la matrice \(A\).
$$ \forall (i, j) \in [\![1, n]\!]^2,$$$$ \left(A^T \right)_{i,j} \hspace{0.03em} = a_{j,i} $$Par exemple :
$$ A = \begin{pmatrix} a_{1,1} & \textcolor{rgb(232 124 124)}{a_{1,2}} & \textcolor{rgb(232 124 124)}{a_{1,3}} & \textcolor{rgb(192 52 52)}{\dots} & \textcolor{rgb(232 124 124)}{a_{1, n}} \\ \textcolor{rgb(93 183 129)}{a_{2,1}} & a_{2,2} & \textcolor{rgb(192 52 52)}{a_{2,3}} & \textcolor{rgb(232 124 124)}{\dots} & \textcolor{rgb(232 124 124)}{a_{2, n}} \\ \textcolor{rgb(93 183 129)}{a_{3,1}} & \textcolor{rgb(93 183 129)}{a_{3,2}} & a_{3,3} & \textcolor{rgb(232 124 124)}{\dots} & \textcolor{rgb(232 124 124)}{a_{3, n}} \\ \hspace{1em} \textcolor{rgb(93 183 129)}{\vdots} & \hspace{1em} \textcolor{rgb(93 183 129)}{\vdots} & \hspace{1em} \textcolor{rgb(54 152 46)}{\vdots} & \ddots & \hspace{1em} \textcolor{rgb(232 124 124)}{\vdots} \\ \textcolor{rgb(93 183 129)}{a_{n,1}} & \textcolor{rgb(54 152 46)}{a_{n,2}} & \textcolor{rgb(93 183 129)}{a_{n,3}} & \textcolor{rgb(93 183 129)}{\dots} & a_{n, n} \\ \end{pmatrix} $$Alors, sa transposée est :
$$ A^T = \begin{pmatrix} a_{1,1} & \textcolor{rgb(93 183 129)}{a_{2,1}} & \textcolor{rgb(93 183 129)}{a_{3,1}} & \textcolor{rgb(54 152 46)}{\dots} & \textcolor{rgb(93 183 129)}{a_{n, 1}} \\ \textcolor{rgb(232 124 124)}{a_{1,2}} & a_{2,2} & \textcolor{rgb(54 152 46)}{a_{3,2}} & \textcolor{rgb(93 183 129)}{\dots} & \textcolor{rgb(93 183 129)}{a_{n, 2}} \\ \textcolor{rgb(232 124 124)}{a_{1,3}} & \textcolor{rgb(232 124 124)}{a_{2,3}} & a_{3,3} & \textcolor{rgb(93 183 129)}{\dots} & \textcolor{rgb(93 183 129)}{a_{n, 3}} \\ \hspace{0.8em} \textcolor{rgb(232 124 124)}{\vdots} & \hspace{0.8em} \textcolor{rgb(232 124 124)}{\vdots} & \hspace{0.8em} \textcolor{rgb(232 124 124)}{\vdots} & \ddots & \hspace{0.8em} \textcolor{rgb(93 183 129)}{\vdots} \\ \textcolor{rgb(232 124 124)}{a_{1,n}} & \textcolor{rgb(232 124 124)}{a_{2,n}} & \textcolor{rgb(232 124 124)}{a_{3,n}} & \textcolor{rgb(232 124 124)}{\dots} & a_{n, n} \\ \end{pmatrix} $$Seule la diagonale reste intacte, car si \(i = j\), alors \(a_{i,j} = a_{j,i}\).
-
Inversion d'une matrice
Soit une matrice \(A \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K})\).
L'inverse de la matrice \(A\) est la matrice notée \(A^{-1}\) et de même taille, telle que : \(A A^{-1} = I_n\).
Pour vérifier si une matrice est inversible, on doit calculer son déterminant, et :
$$ A \text{ est inversible } \Longleftrightarrow det(A) \neq 0 $$ -
Comatrice
Soit la matrice carrée \(A \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K})\) de taille \(n\).
La comatrice de la matrice \(A\) est la matrice notée \(com(A)\), telle que :
$$ \forall (i, j) \in [\![1, n]\!]^2,$$$$ com(A)_{i,j} \hspace{0.03em} = C_{i,j} $$$$ \text{où } \ \left \{ \begin{gather*} C_{i,j} : \text{cofacteurs de l'élément } a_{i, j} \\ M_{i, j} : \text{mineure de l'élément } a_{i, j} \end{gather*} \right \} $$\(C_{i, j}\) : cofacteurs de l'élément \(a_{i, j}\)
$$ C_{i,j} = (-1)^{i + j} \times det(M_{i, j}) $$\(M_{i, j}\) : mineure de l'élément \(a_{i, j}\)
La mineure de \(a_{i, j}\) est la sous-matrice de \(A\) privée de la ligne \(i\) et de la colonne \(j\).
Par exemple, à partir de la matrice \(A\) suivante, la mineure \(\textcolor{rgb(118 139 240)}{M_{1,1}}\) apparaît en bleu :
$$ A = \begin{pmatrix} a_{1,1} & a_{1,2} & a_{1,3} & \dots & a_{1, p} \\ a_{2,1} & \textcolor{rgb(85, 109, 229)}{a_{2,2}} & \textcolor{rgb(118 139 240)}{a_{2,3}} & \dots & \textcolor{rgb(118 139 240)}{a_{2, p}} \\ \hspace{0.5em} \vdots & \hspace{0.5em} \textcolor{rgb(118 139 240)}{\vdots} & \hspace{0.5em} \textcolor{rgb(118 139 240)}{\vdots} & \textcolor{rgb(118 139 240)}{\ddots} & \hspace{0.5em} \textcolor{rgb(118 139 240)}{\vdots} \\ a_{n,1} & \textcolor{rgb(85, 109, 229)}{a_{n,2}} & \textcolor{rgb(118 139 240)}{a_{n,3}} & \dots & \textcolor{rgb(118 139 240)}{a_{n, p}} \end{pmatrix} $$Soit,
$$ \textcolor{rgb(118 139 240)}{ M_{1,1} = \begin{pmatrix} a_{2,2} & a_{2,3} & \dots & a_{2, p} \\ \vdots & \hspace{0.5em} \vdots & \ddots & \hspace{0.5em} \textcolor{rgb(118 139 240)}{\vdots} \\ a_{n,2} & a_{n,3} & \dots & a_{n, p} \end{pmatrix} } $$Par exemple, à partir de la matrice \(A\) suivante :
$$ A = \begin{pmatrix} a_{1,1} & a_{1,2} & a_{1,3} \\ a_{2,1} & a_{2,2} & a_{2,3} \\ a_{3,1} & a_{3,2} & a_{3,3} \end{pmatrix} $$Sa comatrice vaut :
$$ com(A) = \begin{pmatrix} \textcolor{rgb(93 183 129)}{+}\begin{vmatrix} a_{2,2} & a_{2,3} \\ a_{3,2} & a_{3,3} \end{vmatrix} & \textcolor{rgb(232 124 124)}{-}\begin{vmatrix} a_{2,1} & a_{2,3} \\ a_{3,1} & a_{3,3} \end{vmatrix} & \textcolor{rgb(54 152 46)}{+}\begin{vmatrix} a_{2,1} & a_{2,2} \\ a_{3,1} & a_{3,2} \end{vmatrix} \\ \textcolor{rgb(232 124 124)}{-}\begin{vmatrix} a_{1,2} & a_{1,3} \\ a_{3,2} & a_{3,3} \end{vmatrix} & \textcolor{rgb(93 183 129)}{+}\begin{vmatrix} a_{1,1} & a_{1,3} \\ a_{3,1} & a_{3,3} \end{vmatrix} & \textcolor{rgb(232 124 124)}{-}\begin{vmatrix} a_{1,1} & a_{1,2} \\ a_{3,1} & a_{3,2} \end{vmatrix} \\ \textcolor{rgb(93 183 129)}{+}\begin{vmatrix} a_{1,2} & a_{1,3} \\ a_{2,2} & a_{2,3} \end{vmatrix} & \textcolor{rgb(192 52 52)}{-}\begin{vmatrix} a_{1,1} & a_{1,3} \\ a_{2,1} & a_{2,3} \end{vmatrix} & \textcolor{rgb(73 174 65)}{+}\begin{vmatrix} a_{1,1} & a_{1,2} \\ a_{2,1} & a_{2,2} \end{vmatrix} \end{pmatrix} $$ -
Écriture matricielle d'un système d'équations linéaires
Un système d'équations linéaires \( (S)\), où les inconnues sont les variables \(x_{i,j}\), peut s'écrire sous forme de système de produit matriciel :
$$ (S) \enspace \left \{ \begin{gather*} a_1 x_{1,1} + a_2 x_{1,2} + a_3 x_{1,3} + \hspace{0.1em}... \hspace{0.1em}+ a_n x_{1,p} = b_1 \\ a_1 x_{2,1} + a_2 x_{2,2} + a_3 x_{2,3} + \hspace{0.1em}... \hspace{0.1em}+ a_n x_{2,p} = b_2 \\ ........................ ............. \ = \ ..\\ a_1 x_{n,1} + a_2 x_{n,2} + a_3 x_{n,3} + \hspace{0.1em}... \hspace{0.1em}+ a_n x_{n,p} = b_n \\ \end{gather*} \right \} $$$$ \Longleftrightarrow$$$$ \underbrace{ \begin{pmatrix} x_{1,1} & x_{1,2} & x_{1,3} & \dots & x_{1, p} \\ x_{2,1} & x_{2,2} & x_{2,3} & \dots & x_{2, p} \\ \hspace{0.8em} \vdots & \hspace{0.8em} \vdots & \hspace{0.8em} \vdots & \ddots & \hspace{0.8em} \vdots \\ x_{n,1} & x_{n,2} & x_{n,3} & \dots & x_{n, p} \\ \end{pmatrix} } _\text{X} \times \underbrace{ \begin{pmatrix} a_1 \\ a_2 \\ \hspace{0.3em}\vdots \\ a_n \end{pmatrix} } _\text{A} = \underbrace{ \begin{pmatrix} b_1 \\ b_2 \\ \hspace{0.3em}\vdots \\ b_n \end{pmatrix} } _\text{B} \ \Longleftrightarrow \ MA = B, \ \text{avec} \enspace \left \{ \begin{gather*} X \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K}) \\ A \in \hspace{0.03em} \mathcal{M}_{1,p} (\mathbb{K}) \\ B \in \hspace{0.03em} \mathcal{M}_{1,p} (\mathbb{K}) \end{gather*} \right \} $$ -
Trace d'une matrice
Soit la matrice carrée \(A \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K})\) de taille \(n\).
On appelle la trace d'une matrice la somme des éléments diagonaux :
$$ A = \begin{pmatrix} \textcolor{rgb(118 139 240)}{a_{1,1}} & a_{1,2} & a_{1,3} & \dots & a_{1,n} \\ a_{2,1} & \textcolor{rgb(118 139 240)}{a_{2,2}} & a_{2,3} & \dots & a_{2,n} \\ a_{3,1} & a_{3,2} & \textcolor{rgb(85, 109, 229)}{a_{3,3}} & \dots & a_{3,n} \\ \hspace{0.1em}\vdots & \hspace{0.1em} \vdots & \hspace{0.1em} \vdots & \textcolor{rgb(118 139 240)}{\ddots} & \hspace{0.1em} \vdots \\ a_{n,1} & a_{n,2} & a_{n,3} & \dots & \textcolor{rgb(85, 109, 229)}{a_{n,n}} \end{pmatrix} $$$$Tr(A) = \sum_{k = 1}^n a_{k,k} = a_{1,1} + a_{2,2} \ + \ ... \ + a_{n,n}$$
-
Addition de matrices
-
Matrices spécifiques
-
Matrice diagonale
Une matrice diagonale est une matrice carrée où tous les éléments sont nuls en dehors de la diagonale principale :
$$ D_n = \begin{pmatrix} \textcolor{rgb(118 139 240)}{d_{1,1}} & 0 & 0 & \dots & 0 \\ 0 & \textcolor{rgb(85, 109, 229)}{d_{2,2}} & 0 & \dots & 0 \\ 0 & 0 & \textcolor{rgb(118 139 240)}{d_{3,3}} & \dots & 0 \\ \hspace{0.1em}\vdots & \hspace{0.1em} \vdots & \hspace{0.1em} \vdots & \textcolor{rgb(118 139 240)}{\ddots} & \hspace{0.1em} \vdots \\ 0 & 0 & 0 & \dots & \textcolor{rgb(118 139 240)}{d_{n,n}} \end{pmatrix} $$$$ \forall (i, j) \in [\![1, n]\!]^2, \ (i \neq j) \Longrightarrow d_{i,j} = 0$$On note aussi la matrice diagonale \(D_n\) uniquement en fonction des éléments de sa diagonale : \(D_n = diag(\lambda_1, \lambda_2, \ ..., \lambda_n)\).
-
Matrice identité
La matrice identité \(I_n\) est définie par :
$$ I_n = \begin{pmatrix} \textcolor{rgb(118 139 240)}{1} & 0 & 0 & \dots & 0 \\ 0 & \textcolor{rgb(118 139 240)}{1} & 0 & \dots & 0 \\ 0 & 0 & \textcolor{rgb(118 139 240)}{1} & \dots & 0 \\ \vdots & \vdots & \vdots & \textcolor{rgb(118 139 240)}{\ddots} & \vdots \\ 0 & 0 & 0 & \dots & \textcolor{rgb(118 139 240)}{1} \\ \end{pmatrix} $$C'est la matrice carrée de taille \(n\) avec la valeur \(1\) sur sa diagonale principale, et \(0\) partout ailleurs. C'est un cas particulier de matrice diagonale. Par exemple,
$$ I_3 = \begin{pmatrix} \textcolor{rgb(118 139 240)}{1} & 0 & 0 \\ 0 & \textcolor{rgb(118 139 240)}{1} & 0 \\ 0 & 0 & \textcolor{rgb(118 139 240)}{1} \end{pmatrix} $$ -
Matrice des uns
La matrice des uns \(J_n\) est la matrice carrée de taille \(n\) où tous les éléments valent \(1\):
$$ J_n = \begin{pmatrix} 1 & 1 & 1 & \dots & 1 \\ 1 & 1 & 1 & \dots & 1 \\ 1 & 1 & 1 & \dots & 1 \\ \vdots & \vdots & \vdots & \textcolor{rgb(118 139 240)}{\ddots} & \vdots \\ 1 & 1 & 1 & \dots & 1 \\ \end{pmatrix} $$Par exemple,\(J_3\) vaut :
$$ J_3 = \begin{pmatrix} 1 & 1 & 1 \\ 1 & 1 & 1 \\ 1 & 1 & 1 \\ \end{pmatrix} $$
-
Matrice diagonale
-
Produit de deux matrices diagonales$$ \forall \Bigl[ D_1 = diag(\lambda_1, \lambda_2, \ ..., \lambda_n), \ D_2 = diag(\mu_1, \mu_2, \ ..., \mu_n) \Bigr] \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K})^2, $$$$ D_1 \times D_2 = D_2 \times D_1 = diag \left(\lambda_1 \mu_1, \lambda_2 \mu_2, \ ..., \lambda_n \mu_n \right) $$
-
Puissance de matrice diagonale$$ \forall \Bigl[ D = diag(\lambda_1, \lambda_2, \ ..., \lambda_n) \Bigr] \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K}), $$$$ D^m = diag \left(\lambda_1^m, \lambda_2^m, \ ..., \lambda_n^m \right) $$
Par ailleurs, les expressions \((3)\) et \((7)\) se comportent de la même manière :
Alors, l'ordre de transposition ou d' inversion n'a pas d'importance,
Soit \(J_n\) la matrice des uns de taille \(n\).
Démonstrations
Le produit matriciel
Associativité
Soient trois matrices \(A \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K})\), \(B \in \hspace{0.03em} \mathcal{M}_{p,q} (\mathbb{K})\) et \(C \in \hspace{0.03em} \mathcal{M}_{q,r} (\mathbb{K})\).
-
Calcul de \((A \times B) \times C\)
Par définition, on a :
$$ \forall (i, j) \in [\![1, n]\!] \times [\![1, r]\!],$$$$\Bigl( (A \times B) \times C \Bigr)_{i,j} = \ \sum_{k = 1}^q (ab)_{i,k} \times c_{k,j} $$Or, le facteur \((ab)_{i,k}\) vaut lui :
$$ \forall (i, k) \in [\![1, n]\!] \times [\![1, q]\!],$$$$ (ab)_{i,k} = \sum_{l = 1}^p a_{i,l} \times b_{l,k} $$Alors on le remplace dans l'expression et :
$$\Bigl( (A \times B) \times C \Bigr)_{i,j} = \ \sum_{k = 1}^q \left[ \sum_{l = 1}^p a_{i,l} \times b_{l,k} \right] \times c_{k,j} $$Comme le facteur \(c_{k,j}\) ne dépent pas de \(l\), il est considéré comme étant une constante et peut être intégré à la somme interne.
$$\Bigl( (A \times B) \times C \Bigr)_{i,j} = \ \sum_{k = 1}^q \sum_{l = 1}^p \Bigl[ a_{i,l} \times b_{l,k} \times c_{k,j} \Bigr] \qquad (1) $$ -
Calcul de \( A \times (B \times C)\)
Calculons maintenant le produit \(A \times (B \times C)\).
$$ \forall (i, j) \in [\![1, n]\!] \times [\![1, r]\!],$$$$\Bigl( A \times (B \times C) \Bigr)_{i,j} = \ \sum_{k = 1}^p a_{i,k} \times (bc)_{k,j} $$De la même mainière que précédemment, on remplace \((bc)_{k,j}\) par son expression et :
$$\Bigl( A \times (B \times C) \Bigr)_{i,j} = \ \sum_{k = 1}^p a_{i,k} \times \left[ \sum_{l = 1}^q b_{k,l} \times c_{l,j} \right] $$$$\Bigl( A \times (B \times C) \Bigr)_{i,j} = \ \sum_{k = 1}^p \sum_{l = 1}^q \Bigl[ a_{i,k} \times b_{k,l} \times c_{l,j} \Bigr] \qquad (2) $$Dans les expressions \((1)\) et \((2)\), les variables \(k\) et \(l\) sont des variables muettes :
$$\Bigl( (A \times B) \times C \Bigr)_{i,j} = \ \sum_{k = 1}^q \sum_{l = 1}^p \Bigl[ a_{i,l} \times b_{l,k} \times c_{k,j} \Bigr] \qquad (1) $$$$\Bigl( A \times (B \times C) \Bigr)_{i,j} = \ \sum_{k = 1}^p \sum_{l = 1}^q \Bigl[ a_{i,k} \times b_{k,l} \times c_{l,j} \Bigr] \qquad (2) $$Alors, elles peuvent donc être interverties, et à ce moment \((1)\) et \((2)\) sont égales et :
$$\Bigl( (A \times B) \times C \Bigr)_{i,j} = \Bigl( A \times (B \times C) \Bigr)_{i,j} = \ \sum_{k = 1}^p \sum_{l = 1}^q \Bigl[ a_{i,l} \times b_{l,k} \times c_{k,j} \Bigr] $$
Soit finalement,
Distributivité
-
Distributivité à gauche
Soit une matrice \(A \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K})\) et deux matrices \((B, C) \in \hspace{0.03em} \mathcal{M}_{p,q} (\mathbb{K})^2\).
Avec la définition du produit matriciel , on a :
$$ \forall (i, j) \in [\![1, n]\!] \times [\![1, q]\!],$$$$\Bigl( A \times (B + C) \Bigr)_{i,j} = \ \sum_{k = 1}^p \Bigl[ a_{i,k} \times (b + c)_{k,j}\Bigr] $$$$\Bigl( A \times (B + C) \Bigr)_{i,j} = \ \sum_{k = 1}^p \Bigl[ a_{i,k} \times (b_{k,j} + c_{k,j})\Bigr]$$$$\Bigl( A \times (B + C) \Bigr)_{i,j} = \ \sum_{k = 1}^p \Bigl[ a_{i,k} \times b_{k,j} + a_{i,k} \times c_{k,j} \Bigr]$$$$\Bigl( A \times (B + C) \Bigr)_{i,j} = \ \sum_{k = 1}^p \Bigl[ a_{i,k} \times b_{k,j}\Bigr] + \sum_{k = 1}^p \Bigl[a_{i,k} \times c_{k,j}\Bigr] $$Soit finalement,
$$ \forall A \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K}) , \ \forall (B, C) \in \hspace{0.03em} \mathcal{M}_{p,q} (\mathbb{K})^2, $$$$ A \times (B + C) = A \times B + A \times C $$ -
Distributivité à droite
Soient deux matrices \((A, B) \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K})^2 \) et une matrice \( C \in \hspace{0.03em} \mathcal{M}_{p,q} (\mathbb{K})\).
De la même manière que plus haut, on a :
$$ \forall (i, j) \in [\![1, n]\!] \times [\![1, q]\!],$$$$\Bigl( (A + B) \times C \Bigr)_{i,j} = \ \sum_{k = 1}^p \Bigl[(a + b)_{i,k} \times c_{k,j}\Bigr] $$$$\Bigl( (A + B) \times C \Bigr)_{i,j} = \ \sum_{k = 1}^p \Bigl[(a_{i,k} + b_{i,k}) \times c_{k,j}\Bigr] $$$$\Bigl( (A + B) \times C \Bigr)_{i,j} = \ \sum_{k = 1}^p \Bigl[a_{i,k} \times c_{k,j} + b_{i,k} \times c_{k,j}\Bigr] $$$$\Bigl( (A + B) \times C \Bigr)_{i,j} = \ \sum_{k = 1}^p \Bigl[a_{i,k} \times c_{k,j}\Bigr] + \sum_{k = 1}^p \Bigl[ b_{i,k} \times c_{k,j}\Bigr] $$Soit finalement,
$$ \forall (A,B) \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K})^2, \ \forall C \in \hspace{0.03em} \mathcal{M}_{p,q} (\mathbb{K}), $$$$ (A + B) \times C = A \times C + B \times C $$
Bilinearité
Soient deux matrices \(A \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K})\) et \(B \in \hspace{0.03em} \mathcal{M}_{p,q} (\mathbb{K})\) et \(\lambda \in \mathbb{R}\) un réel.
Avec la définition du produit matriciel , on a :
De la même manière :
Soit finalement,
Multiplication par l'identité
Soit une matrice \(A \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K})\).
-
Calcul de \(I_n \times A\)
Avec la définition du produit matriciel , on a :
$$ \forall (i, j) \in [\![1, n]\!] \times [\![1, p]\!],$$$$(I_n \times A)_{i,j} = \sum_{k = 1}^n (I_n)_{i,k} \times a_{k,j} $$Mais le facteur \((I_n)_{i,k}\) vaut :
$$ (I_n)_{i,k} = \Biggl \{ \begin{gather*} 1, \ si \ (i = k) \\ 0 \ \text{\sinon} \end{gather*} $$Alors,
$$(I_n \times A)_{i,j} = a_{i,j} = (A)_{i,j} $$C'est la matrice de départ inchangée.
-
Calcul de \(A \times I_p\)
Idem, de l'autre côté :
$$ \forall (i, j) \in [\![1, n]\!] \times [\![1, p]\!],$$$$(A \times I_p)_{i,j} = \sum_{k = 1}^p a_{i,k} \times (I_p)_{k,j} $$De la même manière et pour tout \((i,j)\), dans cette somme de produits lorque \((k = j)\), on obtient \(a_{i,j}\) puisque tous les autres termes valent \(0\) et par conséquent :
$$(A \times I_p)_{i,j} = a_{i,j} = (A)_{i,j} $$
Et finalement,
Produit de matrices diagonales
-
Produit de deux matrices diagonales
Soient deux matrices diagonales \(\Bigl[ D_1 = diag(\lambda_1, \lambda_2, \ ..., \lambda_n), \ D_2 = diag(\mu_1, \mu_2, \ ..., \mu_n) \Bigr] \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K})^2 \).
Avec la définition du produit matriciel , on a :
$$ \forall (i, j) \in [\![1, n]\!]^2,$$$$(D_1 \times D_2)_{i,j} = \sum_{k = 1}^n (d_1)_{i,k} \times (d_2)_{k,j} $$En reprenant la définition d'une matrice diagonale , dans chacun de produits internes de ces sommes :
$$ \Biggl \{ \begin{gather*} \forall (i, k) \in [\![1, n]\!]^2, \ (i \neq k) \Longrightarrow (d_1)_{i,k} = 0 \\ \forall (k, j) \in [\![1, n]\!]^2, \ (k \neq j) \Longrightarrow (d_2)_{k,j} = 0 \end{gather*} $$Alors, pour tout \(k\), le produit \( \Bigl[ (d_1)_{i,k} \times (d_2)_{k,j} \Bigr] \neq 0 \) seulement si :
$$ \Bigl[ (i = k) \land (k = j) \Bigr] \Longleftrightarrow (i = k = j) $$On a alors :
$$ \forall (i, j) \in [\![1, n]\!]^2, \ (D_1 \times D_2)_{i,j} = \Biggl \{ \begin{gather*} (d_1)_{i,j} \times (d_2)_{i,j}, \ si \ (i = j) \\ 0 \ \text{sinon} \end{gather*} $$Soit,
$$ \forall (i, j) \in [\![1, n]\!]^2, \ (D_1 \times D_2)_{i,j} = \Biggl \{ \begin{gather*} (d_1)_{k,k} \times (d_2)_{k,k} = \lambda_k \ \mu_k, \ si \ (i = j = k) \\ 0 \ \text{sinon} \end{gather*} $$$$ (D_1 \times D_2) = \begin{pmatrix} \textcolor{rgb(118 139 240)}{\lambda_1 \ \mu_1} & 0 & 0 & \dots & 0 \\ 0 & \textcolor{rgb(118 139 240)}{\lambda_2 \ \mu_2} & 0 & \dots & 0 \\ 0 & 0 & \textcolor{rgb(118 139 240)}{\lambda_3 \ \mu_3} & \dots & 0 \\ \hspace{0.1em}\vdots & \hspace{0.1em} \vdots & \hspace{0.1em} \vdots & \textcolor{rgb(118 139 240)}{\ddots} & \hspace{0.1em} \vdots \\ 0 & 0 & 0 & \dots & \textcolor{rgb(118 139 240)}{\lambda_n \ \mu_n} \end{pmatrix} $$De la même manière, si l'on effectue le produit dans l'autre sens :
$$ \forall (i, j) \in [\![1, n]\!]^2,$$$$(D_2 \times D_1)_{i,j} = \sum_{k = 1}^n (d_2)_{i,k} \times (d_1)_{k,j} $$Et par le même raisonnement, on obtient aussi que :
$$ \forall (i, j) \in [\![1, n]\!]^2, \ (D_1 \times D_2)_{i,j} = \Biggl \{ \begin{gather*} (d_2)_{k,k} \times (d_1)_{k,k} = \mu_k \ \lambda_k, \ si \ (i = j = k) \\ 0 \ \text{sinon} \end{gather*} $$Les produits de nombres sur le corps \(\mathbb{K}\) étant commutatif, les deux résultats des produits \((D_1 \times D_2)\) et \((D_2 \times D_1)\) sont égaux.
Et finalement,
$$ \forall \Bigl[ D_1 = diag(\lambda_1, \lambda_2, \ ..., \lambda_n), \ D_2 = diag(\mu_1, \mu_2, \ ..., \mu_n) \Bigr] \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K})^2, $$$$ D_1 \times D_2 = D_2 \times D_1 = diag \left(\lambda_1 \mu_1, \lambda_2 \mu_2, \ ..., \lambda_n \mu_n \right) $$ -
Puissance de matrice diagonale
Soit la matrice diagonale \(\Bigl[ D = diag(\lambda_1, \lambda_2, \ ..., \lambda_n) \Bigr] \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K}) \).
En suivant le même raisonnement que précédemment, par une récurrence directe il est évident que :
$$ \forall \Bigl[ D = diag(\lambda_1, \lambda_2, \ ..., \lambda_n) \Bigr] \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K}), $$$$ D^m = diag \left(\lambda_1^m, \lambda_2^m, \ ..., \lambda_n^m \right) $$
Matrice, comatrice, transposée et déterminant
Lien entre matrice, comatrice, transposée et déterminant
Soit \(A \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K})\) une matrice carrée de taille \(n\).
-
Calcul de \( \bigl[A \times com(A)^T \bigr]\)
Si l'on effectue le produit \(A \times com(A)^T\), on a :
$$ \forall (i, j) \in [\![1, n]\!]^2,$$$$ \left(A \times com(A)^T \right)_{i,j} = \sum_{k = 1}^n a_{i,k} \times C_{j,k} $$-
\( \alpha) \) si \( (i = j) \)
Dans le cas où \( (i = j) \), alors :
$$ (i = j) \Longrightarrow \left[ \left(A \times com(A)^T \right)_{i,j} = \sum_{k = 1}^n a_{i,k} \times C_{i,k} \right] $$C'est la définition du déterminant de \(A_{i,j}\) selon la ligne \(i\). Donc :
$$ \forall (i, j) \in [\![1, n]\!]^2, \ (i = j), $$$$ \left(A \times com(A)^T \right)_{i,j} = det(A) $$La matrice produit vaudra alors \(det(A)\) sur toute la diagonale.
-
\( \beta) \) si \( (i \neq j) \)
Dans le cas où \( (i \neq j) \), alors par défaut :
$$ (i \neq j) \Longrightarrow \left[ \left(A \times com(A)^T \right)_{i,j} = \sum_{k = 1}^n a_{i,k} \times C_{j,k} \right] \qquad (3) $$Imaginons alors une nouvelle matrice \(B\), copie de \(A\), et telle que la ligne \(j\) soit remplacée par la ligne \(i\).
$$ \forall (i, j) \in [\![1, n]\!]^2,$$$$ A = \begin{pmatrix} a_{1,1} & a_{1,2} & a_{1,3} & \dots & a_{1, n} \\ a_{2,1} & a_{2,2} & a_{2,3} & \dots & a_{2,n} \\ \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \vdots & \hspace{0.5em} \vdots \\ \textcolor{rgb(93 183 129)}{a_{i,1}} & \textcolor{rgb(93 183 129)}{a_{i,2}} & \textcolor{rgb(93 183 129)}{a_{i,3}} & \textcolor{rgb(93 183 129)}{\dots} & \textcolor{rgb(93 183 129)}{a_{i, n}} \\ \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \vdots & \vdots \\ \textcolor{rgb(232 124 124)}{a_{j,1}} & \textcolor{rgb(232 124 124)}{a_{j,2}} & \textcolor{rgb(232 124 124)}{a_{j,3}} & \textcolor{rgb(232 124 124)}{\vdots} & \textcolor{rgb(232 124 124)}{a_{j, n}} \\ \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \ddots & \vdots \\ a_{n,1} & a_{n,2} & a_{n,3} & \dots & a_{n, n} \end{pmatrix} $$$$ B = \begin{pmatrix} a_{1,1} & a_{1,2} & a_{1,3} & \dots & a_{1, n} \\ a_{2,1} & a_{2,2} & a_{2,3} & \dots & a_{2,n} \\ \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \vdots & \hspace{0.5em} \vdots \\ \textcolor{rgb(93 183 129)}{a_{i,1}} & \textcolor{rgb(93 183 129)}{a_{i,2}} & \textcolor{rgb(93 183 129)}{a_{i,3}} & \textcolor{rgb(93 183 129)}{\dots} & \textcolor{rgb(93 183 129)}{a_{i, n}} \\ \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \vdots & \vdots \\ \textcolor{rgb(93 183 129)}{a_{i,1}} & \textcolor{rgb(93 183 129)}{a_{i,2}} & \textcolor{rgb(93 183 129)}{a_{i,3}} & \textcolor{rgb(93 183 129)}{\dots} & \textcolor{rgb(93 183 129)}{a_{i, n}} \\ \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \hspace{0.5em} \vdots & \ddots & \vdots \\ a_{n,1} & a_{n,2} & a_{n,3} & \dots & a_{n, n} \end{pmatrix} $$Le but est de calculer le déterminant de la matrice \(B\) sur la ligne \(i\), où pour tout \(k\), les éléments \(\textcolor{rgb(54 152 46)}{a_{i,k}}\) viennent remplacer les éléments \(\textcolor{rgb(232 124 124)}{a_{j,k}}\).
Ainsi, si l'on calcule \(det(B)\) sur la ligne \(i\), on obtient :
$$ det(B) = \sum_{k = 1}^n a_{i,k} \times C_{j,k} $$Or, lorsque l'on calcule le déterminant d'une matrice avec deux lignes équivalentes, celui s'annule.
Ce qui est évidemment notre car, par conséquent :
$$ det(B) = 0 \Longrightarrow \sum_{k = 1}^n a_{i,k} \times C_{j,k} = 0 \qquad (4) $$Alors, mettant en perspective les deux expressions \((3)\) et \((4)\) :
$$ \forall (i, j) \in [\![1, n]\!]^2, \ (i \neq j), $$$$ \left(A \times com(A)^T \right)_{i,j} = \sum_{k = 1}^n a_{i,k} \times C_{j,k} \qquad (3) $$$$ \sum_{k = 1}^n a_{i,k} \times C_{j,k} = 0 \qquad (4) $$Cela signifie que :
$$ \forall (i, j) \in [\![1, n]\!]^2, \ (i \neq j), $$$$ \left(A \times com(A)^T \right)_{i,j} = 0 $$Notre matrice produit vaudra alors zéro partout ailleurs.
$$ A \times com(A)^T = \begin{pmatrix} \textcolor{rgb(118 139 240)}{det(A)} & 0 & 0 & \dots & 0 \\ 0 & \textcolor{rgb(118 139 240)}{det(A)} & 0 & \dots & 0 \\ 0 & 0 & \textcolor{rgb(118 139 240)}{det(A)} & \dots & 0 \\ \hspace{0.1em}\vdots & \hspace{0.1em} \vdots & \hspace{0.1em} \vdots & \textcolor{rgb(118 139 240)}{\ddots} & \hspace{0.1em} \vdots \\ 0 & 0 & 0 & \dots & \textcolor{rgb(118 139 240)}{det(A)} \end{pmatrix} $$
Soit finalement que :
$$ A \times com(A)^T = det(A) \times I_n $$ -
\( \alpha) \) si \( (i = j) \)
-
Calcul de \( \bigl[com(A)^T \times A\bigr]\)
Si l'on commute maintenant les facteurs du produit précédent tel que :
$$ \left(com(A)^T \times A \right)_{i,j} = \sum_{k = 1}^n C_{k,i} \times a_{k,j} $$Alors, de la même manière :
-
\( \alpha) \) si \( (i = j) \)
Dans le cas où \( (i = j) \), alors :
$$ (i = j) \Longrightarrow \left[ \left(com(A)^T \times A \right)_{i,j} = \sum_{k = 1}^n C_{k,i} \times a_{k,i} \right] $$C'est à présent la définition du déterminant de \(A_{i,j}\), mais selon la colonne \(i\). Donc :
$$ \forall (i, j) \in [\![1, n]\!]^2, \ (i = j), $$$$ \left(com(A)^T \times A \right)_{i,j} = det(A) $$De même que plus haut, la matrice produit vaudra \(det(A)\) sur toute la diagonale.
-
\( \beta) \) si \( (i \neq j) \)
De même, dans le cas où \( (i \neq j) \), alors par défaut :
$$ (i \neq j) \Longrightarrow \left[ \left(com(A)^T \times A \right)_{i,j} = \sum_{k = 1}^n C_{k,i} \times a_{k,j} \right] \qquad (3^*) $$Et de la même manière que précédemment, on va cette fois remplacer la colonne \(j\) par la colonne \(i\) dans notre nouvelle matrice \(B'\), et ainsi calculer \(det(B')\) sur la ligne \(k\) :
$$ det(B') = 0 \Longrightarrow \sum_{k = 1}^n C_{k,i} \times a_{k,j} = 0 \qquad (4^*) $$Or,
$$ \forall (i, j) \in [\![1, n]\!]^2, \ (i \neq j), $$$$ \left(com(A)^T \times A \right)_{i,j} = \sum_{k = 1}^n C_{k,i} \times a_{k,j} \qquad (3^*) $$$$ \sum_{k = 1}^n C_{k,i} \times a_{k,j} = 0 \qquad (4^*) $$Cela signifie que :
$$ \forall (i, j) \in [\![1, n]\!]^2, \ (i \neq j), $$$$ \left(com(A)^T \times A \right)_{i,j} = 0 $$
De même que plus haut, la matrice produit vaudra zéro partout ailleurs.
$$ com(A)^T \times A = \begin{pmatrix} \textcolor{rgb(118 139 240)}{det(A)} & 0 & 0 & \dots & 0 \\ 0 & \textcolor{rgb(85, 109, 229)}{det(A)} & 0 & \dots & 0 \\ 0 & 0 & \textcolor{rgb(118 139 240)}{det(A)} & \dots & 0 \\ \hspace{0.1em}\vdots & \hspace{0.1em} \vdots & \hspace{0.1em} \vdots & \textcolor{rgb(118 139 240)}{\ddots} & \hspace{0.1em} \vdots \\ 0 & 0 & 0 & \dots & \textcolor{rgb(118 139 240)}{det(A)} \end{pmatrix} $$Soit finalement que :
$$ com(A)^T \times A = det(A) \times I_n $$ -
\( \alpha) \) si \( (i = j) \)
Finalement, on a prouvé que :
Transposition de matrices
Linéarité de la transposée
Soient deux matrices \((A,B) \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K})^2\) de même taille et \((\lambda, \mu) \in \hspace{0.04em} \mathbb{R}^2\) deux nombres réels.
On a vu avec la multiplication d'une matrice par un scalaire que tous ces indices étaient affectés.
De même, la somme deux matrices (de même taille) est l'addition de chacun des éléments de mêmes indices \((i,j)\) ensemble.
Alors grâce à des deux propriétés, on peut prendre une combinaison linéaire de matrices :
En prenant maintenant la transposée , cela inverse tous les indices \(i\) et \(j\) :
Et finalement,
Transposée d'un produit
Soient deux matrices \(A \in \hspace{0.03em} \mathcal{M}_{n,p} (\mathbb{K})\) et \(B \in \hspace{0.03em} \mathcal{M}_{p,q} (\mathbb{K})\).
Avec la définition du produit matriciel , on a :
En prenant maintenant la transposée , cela inverse tous les indices \(i\) et \(j\) :
Or, le produit des transposées en inversant l'ordre vaut la même chose :
Alors,
Inversion de matrices
Calcul de l'inverse
En reprenant la formule \((5)\) :
On a, en prenant uniquement la partie de droite de l'expression :
En multipliant maintenant les deux côtés par \(A^{-1}\) :
Enfin, en divisant chaque membre par \(det(A)\), on obtient :
Soit finalement,
Inverse de l'inverse
Soit \(A \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K})\) une matrice carrée de taille \(n\).
La relation qui lie une matrice inversible à son déterminant est la suivante :
Mais on a aussi la relation suivante :
Alors, si \(A\) est inversible, alors \(A^{-1}\) l'est aussi. On a alors la relation suivante :
Mais aussi :
En multipliant cette relation de chaque côté à gauche par \(A\), on a :
Soit finalement,
Inverse de la transposée
Soit \(A \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K})\) une matrice carrée de taille \(n\).
La matrice \(A\) est inversible si et seulement si \(det(A) \neq 0\). Mais les matrices \(A\) et \(A^T\) ont le même déterminant :
Alors, si \(A\) est inversible, alors \(A^T\) l'est aussi.
Par ailleurs, on a vu plus que :
Alors, dans notre cas :
Or, la matrice transposée de la matrice identité est invariante. Alors :
En multipliant chaque côté à droite par \(\left(A^T \right)^{-1}\), on a :
Et finalement,
Inverse du produit
Soit \((A,B) \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K})\) deux matrices carrées de même taille \(n\).
Si les deux matrices \(A\) et \(B\) sont inversibles, alors :
Or, par les propriétés du déterminant, on sait que:
En combinant les expressions \((7)\) et \((8)\), on a :
Alors, le produit \((A \times B)\) est lui aussi inversible et :
En multipliant cette relation de chaque côté à gauche par \((B^{-1} A^{-1})\), on a :
Par ailleurs, on a vu plus haut que :
Soit finalement,
Les expressions \((6)\) et \((9)\) se comportent de la même manière :
Alors, l'ordre de transposition ou d' inversion n'a pas d'importance.
On en déduit que :
Traces de matrices
Linéarité de la trace
Soit \((A,B) \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K})^2\) deux matrices carrées de taille \(n\) et \((\lambda, \mu) \in \hspace{0.04em} \mathbb{R}^2\) deux nombres réels.
Par définition de la trace et par combinaison linéaire , on a :
Alors, on a directement que :
Et finalement,
Trace d'un produit
Soit \((A,B) \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K})^2\) deux matrices carrées de taille \(n\).
Par définition de la trace , on a :
Or, avec la définition du produit matriciel , on a :
Soit, en remplaçant dans l'expression précédente :
Les variables \(k\) et \(l\) étant des variables muettes, on peut les inverser :
Les produits de nombres étant commutatif sur le corps \(\mathbb{K}\), on peut écrire que :
Or, c'est la même chose que \(Tr(B \times A)\), si l'on reprend l'expression \((10)\) en inversant \(A\) et \(B\).
Et finalement,
Puissances de matrices
Puissances de la matrice des uns
Soit \(J_n\) la matrice des uns de taille \(n\).
En démarrant de \((J_n)^2\) :
Alors, la matrice qui en résulte de même taille vaut \(n\) partout :
Idem, si l'on prend maintenant le cube de \(J_n\), on a :
Or, on a vu juste avant que :
Alors,
Par conséquent, par une récurrence directe on peut facilement montrer que :
Binôme de Newton et Identité géométrique
Soit \((A,B) \in \hspace{0.03em} \mathcal{M}_{n}(\mathbb{K})^2\) deux matrices carrées de taille \(n\) et commutantes .
On sait que la distributivité s'applique sur les matrices. Alors :
De plus, dans notre cas les matrices \(A\) et \(B\) sont commutantes donc : \(\bigl(AB = BA \bigr)\).
Par conséquent, on a :
Alors, on peut prouver par récurrence que les binôme de Newton et l' identité géométrique s'appliquent aussi dans ce cas précis.
Retour en haut de page