An easy way to remember PEMDAS

I'm having trouble remembering PEMDAS (in regards to precedence in mathematical equations), ie:

  • Parentheses
  • Exponentiation
  • Multiplication & Division
  • Addition & Subtraction

I understand what all of the above mean, but I am having trouble keeping this in my head. Can you recommend any tricks or tips you use to remember this.

Thanks


Solution 1:

PEMDAS is an acronym to help you remember. try different forms of mnemonic devices, like acrostics: Please Excuse My Dear Aunt Sally; Pancake Explosion Many Deaths Are Suspected; Purple Egglants Make Dinner Alot Sickening; Pink Elephants March, Dance, And Sing; Pizza ended my donuts addiction Saturday

Solution 2:

I think it makes most sense to remember it in four steps:

  1. Parentheses trump everything else -- because that's what they are for.

  2. Addition and subtraction have the same priority, because they are each other's inverse.

  3. Similarly, multiplication and division have the same priority. But that's rarely relevant, because proper mathematics prefers writing division with a faction bar, which delimits its arguments unambiguously without referring to rules.

  4. The ordering between the various groups of operation is chosen such that polynomials work. What "polynomials work" means is that we can use the laws of arithmetic to rewrite everything into something that doesn't need parentheses:

    • Exponentiation must come before multiplication, because then we can rewrite $(2x)(3x)$ into $6x^2$. If multiplication had higher priority than exponentiation we'd need either parentheses as $6(x\text{ to the power of }2)$, or introducing square roots to make $\sqrt 6 \cdot x\text{ to the power of }2$, both of which are inconvenient.

    • Multiplication must come before addition and subtraction, because the distributive law allows us to rewrite an arbitrary product of sums into a sum of products, but not the other way around: $$ (5+x)\cdot y = 5y+xy $$ but there's no product of sums that correspond to $3x+5y$, so it would be inconvenient if we couldn't write that without parentheses but had to write it as $(3\text{ times }x)+(5\text{ times }y)$.

Solution 3:

Well, I suggest you remember the word 'pemdas'. Another way:

  • brackets were designed to be evaluated first, so they go first
  • the other operations go from advanced to simple

Solution 4:

please eat mom's delicious apple strudel

Solution 5:

I recommend thinking about precedence a different way.

  • What did you learn first? Addition and subtraction.
  • What did you learn after that? Multiplication and Division.
  • What after that? Exponentiation.

If you perform these operations in the opposite order that you learned them, you don't have to remember about anyone's Dear Aunt Sally. When these rules are not enough to avoid ambiguity, use parentheses.