Science  People  Locations  Timeline
Index: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Home > Order of operations


 

Abstract algebra Algebra

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.

1 The standard order of operations

1. Evaluate subexpressions contained within parentheses, starting with the innermost expressions. (Brackets [ ] are used here to indicate what is evaluated next.)
2. Evaluate exponential powers; for iterated powers, start from the right:
3. Evaluate multiplications and divisions, starting from the left:
4. Evaluate additions and subtractions, starting from the left:

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

In the UK, the acronym BODMAS is used for Brackets, raise to the power Of, Division, Multiplication, Addition, Subtraction. The "O" may also stand for "or", or may by replaced with an "I", for Indices.

In the USThe United States of America also referred to as the United States U. America ¹ or the States is a federal republic in central North America, stretching from the Atlantic in the east to the Pacific Ocean in the west. It shares land borders with Canada in, the acronym PEMDAS (for Parentheses, Exponentation, Multiplication/Division, Addition/Subtraction) is used instead, sometimes expressed as the mnemonicA mnemonic ( SAMPA /n@'mAnIk/ in US or /n@'mQnIk/ in UK) is a memory aid. Mnemonics are often verbal, are sometimes in verse form, and are often used to remember lists. Mnemonics rely not only on repetition to remember facts, but also on creating associat "Please Excuse My Dear Aunt Sally".

1.1 Example

2 See also



Read more »

Non User