Exercice 13
Ecrire un algorithme sympy python qui détermine si la matrice suivante est diagonalisable ou non:
Solution
1 2 3 4 5 6 7 8 |
from sympy import Matrix A = Matrix([[2, 2, -2], [0, 1, 1], [0, -2, 4] ]) print(A.is_diagonalizable()) # affiche: True |
La sortie est True donc la matrice A est diagonalisable
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 13: algorithme python sympy qui teste si une matrice est diagonalisable”