Section 2.8 Order of Operations
When more than one operator appears in an expression the order of evaluation depends on the rules of precedence. A complete explanation of precedence can get complicated, but just to get you started:
-
Multiplication and division happen before addition and subtraction. So
2 * 3 - 1
yields 5, not 4, and2 / 3 - 1
yields -1, not 1 (remember that in integer division2/3
is 0). -
If the operators have the same precedence they are evaluated from left to right. So in the expression
minute * 100 / 60
, the multiplication happens first, yielding5900 / 60
, which in turn yields 98. If the operations had gone from right to left, the result would be 59 * 1 which is 59, which is wrong. -
Any time you want to override the rules of precedence (or you are not sure what they are) you can use parentheses. Expressions in parentheses are evaluated first, so
2 * (3 - 1) is 4
. You can also use parentheses to make an expression easier to read, as in(minute * 100) / 60
, even though it doesnβt change the result.
Checkpoint 2.8.2.
The following three exercises will walk you through an example of the rules of precedence. Answer the questions in order to check what you remember about the order of operations!
Checkpoint 2.8.3.
Checkpoint 2.8.4.
Checkpoint 2.8.5.
1 + 5
is the only operation remaining. Iβm not going to ask you any questions about it. However, itβs important that you can wrap you head around the fact that the +
operator appeared first in the calculation, but it was the last operator to be evaluated. The order of operations can be kind of confusing at times, but I think youβve got a good grasp of the concept!
You have attempted of activities on this page.