No need to memorize the precedence table

Fortunately, we don't need to memorize the precedence table.

We can always control the order of operations by grouping terms inside of pairs of matching parentheses.

For example, I could write the expression from the earlier slide in the following two ways:

(2*(a + 3))
((2*a) + 3)