7
Question Using the numbers 2, 3, and 5, and the operators ‘+’ and ‘-‘, and brackets, as necessary, generate expressions to give as many different values as possible.
For example, 2 – 3 + 5 = 4 and 3 – (5 – 2) = 0
Here are a few expressions formed by using numbers 2, 3, and 5 and the operators ‘+’ and ‘-‘ and brackets having different values. (2 + 3) – 5 = 5 – 5 = 0, 5 + (3 – 2) = 5 + 1 = 6, -5 + (2 – 3) = -5 + (-1) = -6, (-2 + 3) – 5 = 1 – 5 = – 4, etc.