order of operations in different cultures?

3.1k Views Asked by At

Are there any cultures or countries around the world that use a different convention for order of operations than the BEDMAS convention? i.e.:

  1. Parentheses
  2. Exponents & Roots
  3. Multiplication & Division
  4. Addition & Subtraction
2

There are 2 best solutions below

0
On

I doubt such differences could exist in modern history after the introduction of compulsory school education (among other things that was one of the reasons behind the standartisation of mathematical notations).

The only case for such difference can come in oral tradition: recall the infamous joke about "two plus two times two". The Windows built-in calculator stil outputs different results depending on whether you use "standard" or "engineering" view.

Finally, it might be interesting to look into Polish and reverse Polish notattions. These notions refer mostly to computer theory, yet they are still relevant.

0
On

One culture is that or array programming languages (APL, J, k/q, BQN) where the order of operations is always right-to-left (unless overridden by parentheses). This is actually a small but crucial aspect of the languages' design. Ken Iverson's Turing Award lecture Notation as a Tool for Thought, available at https://www.jsoftware.com/papers/tot.htm, provides much of his rationale for this choice.