Exercice 7
Ecrire un algorithme en Python Sympy qui permet de résoudre l'équation: x3 - x2 - 2x + 2
Solution
1 2 3 4 5 6 7 8 9 10 |
import sympy as sy x = sy.Symbol('x') # définir l'équation eq = sy.Eq(x**3 - x**2 -2*x + 2 , 0) # resoudre l'équation solution = sy.solve( eq ) print( solution ) # affiche: [1, -sqrt(2), sqrt(2)] |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 7: résoudre équation troisième degré avec Sympy Python”