Difference between revisions of "Order of operations"

(Order Of Operations)
(9 intermediate revisions by 7 users not shown)
Line 1: Line 1:
The '''order of operations''' is a [[mathematical convention]] for [[arithmetic]] computation.  The order of operations is usually summarized by the acronym PEMDAS, which stands for [[parentheses]], [[exponent]]s, [[multiplication]] and [[division]], [[addition]] and [[subtraction]].
+
The '''order of operations''' is a [[mathematical convention]] for [[arithmetic]] computation.  The below list indicates the order to do arithmetic, from top to bottom.
  
==See also==
+
* [[Parentheses]] -- when there are multiple operations and parentheses within the parentheses, treat the section inside as a separate expression and do the order of operations within said parentheses
* [[algebra]]
+
* [[Exponent|Exponents]]
 +
* [[Multiplication]] and [[Division]] -- done from left to right
 +
* [[Addition]] and [[Subtraction]] -- done from left to right
 +
 
 +
The order of operations is usually summarized by the acronym PEMDAS. An AoPS mnemonic you can use to remember the order of operations is "Please Evaluate, My Dear AoPS Students".
 +
 
 +
Sometimes, properties like the Communicative Property, Associative Property, and [[Distributive Property]] can be applied.
 +
 
 +
== Video on Order Of Operations ==
 +
[https://youtu.be/Ti9nA3Tn_CE Order of Operations]
 +
 
 +
==Examples==
 +
 
 +
===Example 1===
 +
 
 +
Consider the expression <math>2^8-(3+5)</math>.  First, we do addition first because it is in parentheses.
 +
<cmath>2^8 - 8</cmath>
 +
Next, we evaluate <math>2^8</math> because exponents go next.
 +
<cmath>256-8</cmath>
 +
Afterward, there are no multiplication and division, so we can move on to addition and subtraction.
 +
<cmath>248</cmath>
 +
Therefore, <math>2^8 - (3+5) = \boxed{248}</math>.
 +
 
 +
===Example 2===
 +
 
 +
Consider the expression <math>14(4\times 7-58)-1</math>.  The operations in the parentheses go first, but there are subtraction and multiplication both involved.  Within the parentheses, the multiplication goes first, then the subtraction.
 +
<cmath>14(28 - 58) - 1</cmath>
 +
<cmath>14(-30) - 1</cmath>
 +
Afterward, we do multiplication, then subtraction.
 +
<cmath>-420-1</cmath>
 +
<cmath>-421</cmath>
 +
Therefore, <math>14(4\times 7-58)-1 = \boxed{-421}</math>.
 +
 
 +
==Problems==
 +
 
 +
* Problems on [https://artofproblemsolving.com/alcumus/ Alcumus]
 +
** Order of Operations
 +
* [[2017 AMC 10A Problems/Problem 1]]
 +
 
 +
==See Also==
 +
* [[Algebra]]

Revision as of 15:17, 24 December 2020

The order of operations is a mathematical convention for arithmetic computation. The below list indicates the order to do arithmetic, from top to bottom.

  • Parentheses -- when there are multiple operations and parentheses within the parentheses, treat the section inside as a separate expression and do the order of operations within said parentheses
  • Exponents
  • Multiplication and Division -- done from left to right
  • Addition and Subtraction -- done from left to right

The order of operations is usually summarized by the acronym PEMDAS. An AoPS mnemonic you can use to remember the order of operations is "Please Evaluate, My Dear AoPS Students".

Sometimes, properties like the Communicative Property, Associative Property, and Distributive Property can be applied.

Video on Order Of Operations

Order of Operations

Examples

Example 1

Consider the expression $2^8-(3+5)$. First, we do addition first because it is in parentheses. \[2^8 - 8\] Next, we evaluate $2^8$ because exponents go next. \[256-8\] Afterward, there are no multiplication and division, so we can move on to addition and subtraction. \[248\] Therefore, $2^8 - (3+5) = \boxed{248}$.

Example 2

Consider the expression $14(4\times 7-58)-1$. The operations in the parentheses go first, but there are subtraction and multiplication both involved. Within the parentheses, the multiplication goes first, then the subtraction. \[14(28 - 58) - 1\] \[14(-30) - 1\] Afterward, we do multiplication, then subtraction. \[-420-1\] \[-421\] Therefore, $14(4\times 7-58)-1 = \boxed{-421}$.

Problems

See Also