Definition of Order of Operations

In summary, the order of operations was defined by mathematicians primarily to make writing polynomials easier. It allows for a clear hierarchy in expressions, with exponents being evaluated first, followed by multiplication and division, and finally addition and subtraction. This order was chosen for convenience and not necessarily for any natural or inherent reasons. In some computer languages, the order of operations is not used and instead all operations must be explicitly parenthesized. Ultimately, the order of operations is arbitrary and could potentially be changed, but it has become a standard convention in mathematics.
  • #1
V0ODO0CH1LD
278
0
I realize now that I took something for granted when I first learned it god knows when.. So I though of starting a discussion as to why were the order of operations defined the way they were? I mean, is there some kind of natural explanation as to why we should compute exponents first and additions and subtractions last? Or is it one of those "right-hand rule" dilemmas where we are just trying to avoid one question having multiple answers?
 
Mathematics news on Phys.org
  • #2
The order of operations was defined by mathematicians. From what I know, most likely to make writing polynomials easier.

Certainly you can define the order of operations in a variety of ways. But it makes things look unnatural.

For example

Take 5x^2 + 3x + 10 under the normal order of operations.

Now say that addition should come before muliplication.

Let's try to re-write that same polynomial.

(5x^2) + (3x) + 10

I have to add parenthesis here to get the same result.

I guess my point is that in the math we use, we made the order of operations the way it is for convenience. I think that it kind of makes sense the way it is. Without going into too much details think about how you first learned multiplication.

You were probably told that 5*4 = 5 + 5 + 5 + 5.

When you learned about exponents, you were probably told that 5^3 = 5 * 5 * 5 = (5 + 5 + 5 + 5 + 5) * 5 = 5 + 5 + 5 ... + 5

There is a nice hierarchy here that is well preserved in the way we think about them.
 
  • #3
Order of operations is a notational shorthand that was created for convenience of working with polynomials.

In some computer languages, notably Lisp, there is not such concept. Instead, you have to parenthesize EVERY operation.

Instead of x^2 + 2x + 1, you have to write (+ (+ (pow x 2) (* 2 x)) 1). It's rather obnoxious! But, from a computer science standpoint, it is absolutely trivial to parse.

Note that the order of operations is completely arbitrary, with the exception of parentheses which have a special syntactic interpretation. If instead of PEMDAS we chose PSADME, we would instead write the above expression as

(x^2) + (2x) + 1

The PEMDAS order is such that the normal form of any polynomial (the form: a_n x^n + a_n-1 x^(n-1) + ... + a_0) is always parentheses-free.
 
  • #4
V0ODO0CH1LD said:
I realize now that I took something for granted when I first learned it god knows when.. So I though of starting a discussion as to why were the order of operations defined the way they were? I mean, is there some kind of natural explanation as to why we should compute exponents first and additions and subtractions last? Or is it one of those "right-hand rule" dilemmas where we are just trying to avoid one question having multiple answers?

I found a couple of interesting links.

http://mathforum.org/library/drmath/view/52582.html

and

http://jeff560.tripod.com/grouping.html
 
  • #5

The order of operations is a fundamental concept in mathematics that dictates the correct sequence in which mathematical operations should be performed in an equation. It is commonly remembered as PEMDAS (Parentheses, Exponents, Multiplication and Division, Addition and Subtraction).

The reason for defining the order of operations is to ensure consistency and avoid ambiguity in mathematical expressions. Without a specific order, different individuals may interpret an equation differently and arrive at different answers, leading to confusion and errors.

The order of operations follows a logical sequence that is based on the properties of numbers and mathematical operations. Exponents, for example, represent repeated multiplication, which is a more complex operation than addition or subtraction. Therefore, it makes sense to compute exponents first before moving on to simpler operations.

Additionally, the order of operations is also designed to follow the conventions and conventions used in algebra and other branches of mathematics. For instance, in algebra, it is standard to write equations with the variable on the left side and constants on the right side. The order of operations ensures that this convention is maintained and that equations are solved correctly.

In summary, the order of operations is not arbitrary or based on any "right-hand rule" dilemma. It is a logical and consistent way of solving equations that is based on the properties of numbers and mathematical operations. It is essential to understand and follow the order of operations to ensure accuracy and clarity in mathematical expressions.
 

1. What is the definition of order of operations?

The order of operations, also known as the "PEMDAS" rule, is a set of rules used to determine the sequence in which mathematical operations should be performed in an equation or expression. It is used to avoid ambiguity and ensure that all calculations are done correctly.

2. What does PEMDAS stand for?

PEMDAS is an acronym that stands for "Parentheses, Exponents, Multiplication and Division, Addition and Subtraction". These are the operations that are included in the order of operations and are performed in that specific order.

3. Why is the order of operations important?

The order of operations is important because it helps to ensure that mathematical expressions are evaluated correctly and consistently. Without following the correct order, the result of a calculation can be incorrect.

4. Are there any exceptions to the order of operations?

Yes, there are some exceptions to the order of operations. One common exception is when there are multiple operations at the same level, such as multiplication and division, or addition and subtraction. In these cases, the operations should be performed from left to right.

5. How is the order of operations used in real-life situations?

The order of operations is used in various fields, including engineering, finance, and computer programming. In these fields, complex calculations are often required, and following the correct order of operations is crucial to ensure accurate results.

Similar threads

Replies
3
Views
233
  • General Math
Replies
3
Views
1K
  • General Math
Replies
20
Views
5K
Replies
8
Views
1K
Replies
1
Views
865
  • General Math
Replies
1
Views
2K
  • Set Theory, Logic, Probability, Statistics
Replies
2
Views
1K
Replies
5
Views
2K
  • General Math
Replies
17
Views
3K
Back
Top