Encyclopedia > Order of operations

  Article Content

Order of operations

In arithmetic and elementary algebra, certain rules are used for the order in which the operations in algebraic expressions are to be evaluated. These precedence rules (which are mere notational conventions, not mathematical facts) are also used in many programming languages and by most modern calculators. In computing the standard algebraic notation is known as infix notation. This article assumes the reader is familiar with addition, division, exponential powers, multiplication, and subtraction.

The standard order of operations: Because of the order Parentheses, Powers, Multiplication/Division, Addition/Subtraction, the mnemonic "Please Punch My Dear Aunt Sally" is sometimes used as an aid in learning this sequence.

  • 1. Evaluate subexpressions contained within brackets, bars, or parentheses, starting with the innermost expressions.
    • <math>(4+[10/2])/9=[4+5]/9=1</math>

  • 2. Evaluate powers; for iterated powers, start from the right:
    • <math>2^{[3^2]}=[2^9]=512</math>

  • 3. Evaluate multiplications and divisions, starting from the left:
    • <math>[8/2]*3=[4*3]=12</math>

  • 4. Evaluate additions and subtractions, starting from the left:
    • <math>[7-2]-4+1=[5-4]+1=[1+1]=2</math>

The expression: <math>2+3*4</math> is evaluated to 14, and not 20, because multiplication precedes addition. If the intention is to perform the addition first, parentheses must be used: <math>(2+3)*4=20</math>

Example

  • Given:
    • <math>3-(5-(7+1))^2*(-5)+2</math>

  • Evaluate the innermost subexpression (7 + 1):
    • <math>3-(5-8)^2*(-5)+2</math>

  • Evalaute the subexpression within the remaining parenthesis (5 - 8):
    • <math>3-(-3)^2*(-5)+2</math>

  • Evaluate the power of (-3)2:
    • <math>3-9*(-5)+2</math>

  • Evaluate the multiplication 9*(-5):
    • <math>3-(-45)+2</math>

  • Evaluate the subtraction 3-(-45):
    • <math>48+2</math>

  • Evaluate the addition 48+2:
    • <math>48+2=50</math>

See also:



All Wikipedia text is available under the terms of the GNU Free Documentation License

 
  Search Encyclopedia

Search over one million articles, find something about almost anything!
 
 
  
  Featured Article
Flapper

... (a man who frequents "petting" parties) and "bamey-mugging" (sex). They went to jazz clubs at night where they danced provocatively, smoked cigarettes through long ...

 
 
 
This page was created in 40.9 ms