
Tip
The order of operations is the method for simplifying an expression with multiple operations. The order is as follows:
1. Perform operations inside grouping symbols.
2. From left to right, find the value of powers.
3. From left to right, multiply and divide.
4. From left to right, add and subtract.

Sample Problem
Simplify: 6 + (-1)^2 × (8 + 2)

Answer Options
(A) 15
(B) 16
(C) 50
(D) 60
(E) 70
View Correct Answer

(B) 16
6 + (−1)^2 × (8 + 2)
6 + 1 × 10 = 6 + 10 = 16
Was this helpful?