1. **Énoncé du problème :**
Trigonaliser la matrice
$$A = \begin{pmatrix} 1 & 4 & -2 \\ 0 & 6 & -3 \\ -1 & 4 & 0 \end{pmatrix}$$
puis calculer ses puissances.
2. **Rappel :**
Trigonaliser une matrice consiste à trouver une matrice inversible $P$ telle que
$$P^{-1}AP = T$$
avec $T$ triangulaire supérieure.
Pour cela, on calcule les valeurs propres, puis les vecteurs propres et éventuellement les vecteurs généralisés.
3. **Calcul des valeurs propres de $A$ :**
On calcule le polynôme caractéristique
$$\det(A - \lambda I) = 0$$
avec
$$A - \lambda I = \begin{pmatrix} 1-\lambda & 4 & -2 \\ 0 & 6-\lambda & -3 \\ -1 & 4 & -\lambda \end{pmatrix}$$
Calcul du déterminant :
$$\det(A - \lambda I) = (1-\lambda) \begin{vmatrix} 6-\lambda & -3 \\ 4 & -\lambda \end{vmatrix} - 4 \begin{vmatrix} 0 & -3 \\ -1 & -\lambda \end{vmatrix} - 2 \begin{vmatrix} 0 & 6-\lambda \\ -1 & 4 \end{vmatrix}$$
Calcul des mineurs :
$$\begin{aligned}
& (1-\lambda)((6-\lambda)(-\lambda) - (-3)4) - 4(0 \cdot (-\lambda) - (-3)(-1)) - 2(0 \cdot 4 - (6-\lambda)(-1)) \\
= & (1-\lambda)(-(6-\lambda)\lambda + 12) - 4(0 - 3) - 2(0 + 6 - \lambda) \\
= & (1-\lambda)(-6\lambda + \lambda^2 + 12) + 12 - 2(6 - \lambda) \\
= & (1-\lambda)(\lambda^2 - 6\lambda + 12) + 12 - 12 + 2\lambda \\
= & (1-\lambda)(\lambda^2 - 6\lambda + 12) + 2\lambda \\
= & (\lambda^2 - 6\lambda + 12) - \lambda(\lambda^2 - 6\lambda + 12) + 2\lambda \\
= & \lambda^2 - 6\lambda + 12 - \lambda^3 + 6\lambda^2 - 12\lambda + 2\lambda \\
= & -\lambda^3 + 7\lambda^2 - 16\lambda + 12
\end{aligned}$$
4. **Résolution du polynôme caractéristique :**
$$-\lambda^3 + 7\lambda^2 - 16\lambda + 12 = 0$$
On peut chercher des racines entières parmi les diviseurs de 12 : $\pm1, \pm2, \pm3, \pm4, \pm6, \pm12$.
Testons $\lambda=1$ :
$$-1 + 7 - 16 + 12 = 2 \neq 0$$
$\lambda=2$ :
$$-8 + 28 - 32 + 12 = 0$$
Donc $\lambda=2$ est une racine.
Divisons le polynôme par $(\lambda - 2)$ :
$$-\lambda^3 + 7\lambda^2 - 16\lambda + 12 = -(\lambda - 2)(\lambda^2 - 5\lambda + 6)$$
Factorisons le polynôme du second degré :
$$\lambda^2 - 5\lambda + 6 = (\lambda - 2)(\lambda - 3)$$
Donc les valeurs propres sont
$$\lambda_1 = 2, \quad \lambda_2 = 2, \quad \lambda_3 = 3$$
5. **Calcul des vecteurs propres :**
Pour $\lambda=2$ :
$$A - 2I = \begin{pmatrix} -1 & 4 & -2 \\ 0 & 4 & -3 \\ -1 & 4 & -2 \end{pmatrix}$$
Résolvons $(A - 2I)X=0$ :
De la 2e ligne : $4x_2 - 3x_3 = 0 \Rightarrow 4x_2 = 3x_3$.
De la 1ère ligne : $-x_1 + 4x_2 - 2x_3 = 0$.
Remplaçons $x_2 = \frac{3}{4}x_3$ :
$$-x_1 + 4 \times \frac{3}{4} x_3 - 2x_3 = -x_1 + 3x_3 - 2x_3 = -x_1 + x_3 = 0 \Rightarrow x_1 = x_3$$
Le vecteur propre s'écrit donc
$$X = \begin{pmatrix} x_3 \\ \frac{3}{4} x_3 \\ x_3 \end{pmatrix} = x_3 \begin{pmatrix} 1 \\ \frac{3}{4} \\ 1 \end{pmatrix}$$
Pour $\lambda=3$ :
$$A - 3I = \begin{pmatrix} -2 & 4 & -2 \\ 0 & 3 & -3 \\ -1 & 4 & -3 \end{pmatrix}$$
Résolvons $(A - 3I)X=0$ :
De la 2e ligne : $3x_2 - 3x_3 = 0 \Rightarrow x_2 = x_3$.
De la 1ère ligne : $-2x_1 + 4x_2 - 2x_3 = 0$.
Remplaçons $x_2 = x_3$ :
$$-2x_1 + 4x_3 - 2x_3 = -2x_1 + 2x_3 = 0 \Rightarrow x_1 = x_3$$
Le vecteur propre s'écrit donc
$$X = x_3 \begin{pmatrix} 1 \\ 1 \\ 1 \end{pmatrix}$$
6. **Construction de la matrice $P$ et de la matrice triangulaire $T$ :**
Prenons les vecteurs propres comme colonnes de $P$ :
$$P = \begin{pmatrix} 1 & 1 & 1 \\ \frac{3}{4} & \frac{3}{4} & 1 \\ 1 & 1 & 1 \end{pmatrix}$$
Mais ici, on a deux fois la valeur propre 2, il faut vérifier la dimension de l'espace propre pour $\lambda=2$.
En fait, le rang de $A - 2I$ est 2, donc la dimension de l'espace propre est 1, donc $A$ n'est pas diagonalisable mais trigonalizable.
7. **Trigonalisation :**
On peut trouver un vecteur généralisé $v$ tel que
$$(A - 2I)v = u$$
avec $u$ vecteur propre associé à $\lambda=2$.
On construit alors
$$P = (u, v, w)$$
avec $w$ vecteur propre associé à $\lambda=3$.
La matrice $T = P^{-1}AP$ est triangulaire supérieure avec les valeurs propres sur la diagonale :
$$T = \begin{pmatrix} 2 & * & * \\ 0 & 2 & * \\ 0 & 0 & 3 \end{pmatrix}$$
8. **Calcul des puissances de $A$ :**
Puisque
$$A = PTP^{-1} \Rightarrow A^n = PT^nP^{-1}$$
avec
$$T^n = \begin{pmatrix} 2^n & * & * \\ 0 & 2^n & * \\ 0 & 0 & 3^n \end{pmatrix}$$
Les puissances de $T$ sont faciles à calculer car $T$ est triangulaire.
**Conclusion :**
La matrice $A$ est trigonalizable avec valeurs propres $2$ (multiplicité 2) et $3$.
La puissance $A^n$ s'obtient par
$$A^n = PT^nP^{-1}$$
avec $T^n$ triangulaire supérieure dont la diagonale est $2^n, 2^n, 3^n$.
Trigonalisation Matrice A C52993
Step-by-step solutions with LaTeX - clean, fast, and student-friendly.