Exercice1
Ecrire un algorithme Sympy Python qui génère l'expression (x - y)4 et la développe via la méthode expand().
Solution
import sympy as sy
1 2 3 4 5 |
import sympy as sy x , y = sy.symbols('x y') expr = (x - y)**4 print(expr) # affiche: (x - y)**4 print(expr.expand())# affiche: x**4 - 4*x**3*y + 6*x**2*y**2 - 4*x*y**3 + y**4 |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 1: création et développement d'une expression sympy”