Taking different numbers, positive negative and zero, as x, y, z and compute x + (y + z) and (x + y) + z. Check whether the equation, x + (y + z) = (x + y) + z holds for all these numbers.
Let’s take x = 0,1,-1 y = 1,0,-1 and z = -1,1,0 respectively.
CASE 1: When x = 0, y = 1 and z = -1
Then, x + (y + z),
= 0 + (1-1)
= 0
CASE 2: When x = 1, y = 0 and z = 1
Then, x + (y + z)
= 1 + (0 + 1)
= 2
CASE 3: When x = -1, y = -1 and z = 0,
Then, x + (y + z)
= -1 + (-1 + 0)
= -2
Calculating (x + y) + z
CASE 1: When x = 0, y = 1 and z = -1
= (0 + 1) + (-1)
= 0
CASE 2:When x = 1, y = 0 and z = 1
= (1 + 0) + 1
= 2
CASE 3:When x = -1, y = -1 and z = 0
= (-1-1) + 0
= -2
Since, in every case x + (y + z) = (x + y) + z so,this holds for all these numbers.
Couldn't generate an explanation.
Generated by AI. May contain inaccuracies — always verify with your textbook.