Exercice 11
Ecrire un programme en python sympy qui permet de calculer l'inverse d'une matrice donnée et puis le produit de cette matrice avec son inverse
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import sympy as sy A = sy.Matrix([[1, 2, 0], [1, 1, -1], [1, 2, 1]]) # calcul de la mtrice inverse de A B = A.inv() print("Inv(A)= " , B) # affiche: Inv(A)= Matrix([[-3, 2, 2], [2, -1, -1], [-1, 0, 1]]) # le produit est égale à la matrice unité AxB = I3 print("AxB = " , A*B)# affiche: AxB = Matrix([[1, 0, 0], [0, 1, 0], [0, 0, 1]]) |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 11: inverse d'une matrice sympy”