Sagot :
Réponse :
Bonjour,
Explications :
1)
On considère l’ensemble (E) des points M(x;y) du plan tels que : x²-4x+y²-2y=8.
[tex]x^2-4x+y^2-2y=8\\x^2-2*2x+2^2-4+y^2-2*1*y+1^2-1=8\\(x-2)^2+(y-1)^2=13\\[/tex]
Le cercle a pour centre (2,1) et pour rayon racine de 13.
2) les points d'intersections étant entires,
for x in range(-10,11):
___for y in range(-10;11):
______ if x*x-4*x+y*y-2*y==8 and x+5*y==20 :
___ ___ ___ print (x,y)