When addition, subtraction, division and exponentiation (raising to a power) appear in an expression and that expression must be simplified, the operations should be performed in the following sequence:
- Simplify all expression within parentheses, brackets, and braces from the inside out.
- Perform all exponential operations, proceeding from left to right.
- Perform all products and quotients, proceeding from left to right.
- Perform all sums and differences, proceeding from left to right.
The following are examples of this process, in which the order of the numerals and operations is the same in each case, but the groupings differ:
[(2 + 3) (-3 -1)2]2
= [5 x (-4)2]2
= (5 x 16)2
= 802
= 6400
[(2 + 3 x (-3) -1)2]2
= [(2 + (-9) -1)2]2
= (-82)2
= 642
= 4096
A note of caution is in order here: This rule doesn’t apply to exponents of exponents. For example, 33 raised to power of 3 is equal to 273 or 19,683. But 3 raised to power of 33 is equal to 327 or 7,625,597,484,987.


Posted in
Tags:





