Bonsoir,
* = multiplication
a = 5(2x + 3)
a = 5 * 2x + 5 * 3 #Distributivité simple.
a = 10x + 15
b = 5 + (2x + 3)
b = 5 + 2x + 3 #Un "+" devant une parenthèse, on peut directement enlever les parenthèses.
b = 2x + 8
c = 3(5 + 2x)
c = 3 * 5 + 3 * 2x #Distributivité simple.
c = 6x + 15
d = 4(5x - 2)
d = 4 * 5x - 4 * 2 #Distributivité simple.
d = 20x - 8
e = 4(5x * 2)
e = 4 * 10x #Parenthèses prioritaires.
e = 40x
f = 4(3 * x + 2)
f = 4(3x + 2)
f = 4 * 3x + 4 * 2 #Distributivité simple.
f = 12x + 8
Bonne soirée,
Thomas