I have seen several people saying the order operation is

  • Brackets/Parenthesis
  • Orders (roots and powers)
  • Divisions
  • Multiplications
  • Subtractions
  • Additions

But I was taught it as

  • Brackets/Parenthesis
  • Roots and powers, left to right (independently of the exact operation)
  • Divisions and multiplications, left to right (independently of the exact operation)
  • Subtractions and additions, left to right (independently of the exact operation)

So, what order were you taught and/or use today?

  • alsimoneau@lemmy.ca
    link
    fedilink
    arrow-up
    2
    ·
    13 hours ago

    If there is confusion, you wrote it wrong. Don’t inline it, use a proper equation in whatever software you’re using. If you need to inline it, go heavy on parentheses.

  • WolfLink@sh.itjust.works
    link
    fedilink
    arrow-up
    3
    ·
    21 hours ago

    This are equivalent because the order of multiplications/divisions and the order of additions/subtractions doesn’t affect the end result.

    Also in general if the order of operations in your equation isn’t clear without thinking about it you are doing it wrong and need to add some parenthesis.

    Also caveat: on a computer the order of operations can matter in more detail due to floating point errors, and you may want to add extra parenthesis to control it.

  • SpongyAneurysm@feddit.org
    link
    fedilink
    arrow-up
    2
    ·
    1 day ago

    I’ve seen this topic come up for the second time this week. i’m an engineer, so I’ve been trained to use maths as a tool extensively. But to be honest, I couldn’t even tell you. I don’t remember specific rules for it, I just do it without even thinking about it anymore.

    • yermaw@sh.itjust.works
      link
      fedilink
      arrow-up
      1
      ·
      12 hours ago

      Its only ever a problem when people post up ambiguous equations and use sock-puppet accounts to call every answer stupid and wrong until a huge fight erupts.

  • chunes@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    1 day ago

    I only write math in the context of programming languages. I prefer ones without order of operations. Rebol, (Polish notation), Factor/Forth (Postfix notation), smalltalk, (left-to-right) apl (right-to-left), etc.

    In short, it doesn’t matter as long as your audience understands you.

  • Ephera@lemmy.ml
    link
    fedilink
    arrow-up
    26
    ·
    2 days ago

    Yeah, differentiating between multiplications vs. divisions and additions vs. subtractions doesn’t make sense, because they’re the same thing respectively, just written differently.

    When you divide by 3, you can also multiply by ⅓.
    When you subtract 7, you can also add -7.

    There is one quirk to be aware of, though. When people notate a division with a long horizontal line, that implies parentheses around both of the expressions, top and bottom.

    • Otter@lemmy.ca
      link
      fedilink
      arrow-up
      2
      ·
      2 days ago

      Something I haven’t seen mentioned yet is how we remember it as either BEDMAS or PEMDAS, but not PEDMAS or BEMDAS. The order of M and D are tied to whether we use the term brackets or parentheses. BEMDAS sounds very wrong to me

    • heh@lemmy.world
      link
      fedilink
      arrow-up
      6
      ·
      edit-2
      1 day ago

      It’s because in any higher level math these rules aren’t needed. Everyone just uses brackets(and mathematical notation) to clearly define an order of operations. There’s no confusion as you’ll never see something potentially ambiguous like “x * y / z / a” .

      And even if you did, the division operators would likely be horizontal lines to make it clear what is being divided.

      • MatSeFi@lemmy.liebeleu.de
        link
        fedilink
        arrow-up
        1
        ·
        1 day ago

        Right the brackets … and functional notation…

        Just had a quick read on wikipedia s order of operations an now I know why I can not remember any more… Every peace of software does its own Thing so one can not relay on conventions.

    • Platypus@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      23
      ·
      2 days ago

      I think the question is whether you interpret that acronym as P E M D A S or P E MD AS (i.e., whether multiplication has higher precedence than division or whether they are the same).

      The latter is correct, the former is an unfortunately common misunderstanding.

      • monovergent@lemmy.ml
        link
        fedilink
        arrow-up
        3
        ·
        edit-2
        2 days ago

        Until now, it did not occur to me that there are some who believe multiplication and addition come before division and subtraction, respectively. Order of operations clickbait arguments make a bit more “sense” now.

  • Mirodir@discuss.tchncs.de
    link
    fedilink
    arrow-up
    2
    ·
    2 days ago

    What we were taught and what I’ve seen a lot in the German speaking world was “punkt for strich”, “dot before line” since the addition and subtraction symbols are written with lines and the mult/div with dots (⋅ and :).

    The fact that parentheses/brackets are always top priority was taught separately (even before multiplication iirc) and once we got to powers/roots it was just quickly mentioned that they have higher prio than mult/div/add/sub.

  • Krusty@quokk.au
    link
    fedilink
    English
    arrow-up
    11
    ·
    edit-2
    2 days ago

    Exponents are typically highest exponent first.

    10^10^10 implies 10^(10^10) not (10^10)^10 which is astronomically different.  
    

    PEMDAS

    Parentheses, exponents, multiplication, division, addition, and subtraction.

    • TotallyWorthLife@lemmy.worldOP
      link
      fedilink
      arrow-up
      4
      ·
      edit-2
      2 days ago

      Never met multiple exponents in a row at the same size and level without brackets/parenthesis, always saw them as a^b^c, or a^(b^(c)) , so I didn’t even think about that case.

  • ParlimentOfDoom@piefed.zip
    link
    fedilink
    English
    arrow-up
    6
    ·
    2 days ago

    The people spouting the first one didn’t learn it correctly.

    Most of those are mindlessly parroting the mnemonic device without getting that a few of them are swappable.

  • kat_angstrom@lemmy.world
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    1 day ago

    BEDMAS cuz all y’all “parentheses” people are way too hoity toity and they’re called Brackets, y’all

    Edit: this is a shitpost. The downvotes are deserved.

  • sylver_dragon@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    2 days ago

    When you get to doing division and multiplication, it can make sense to look at what is being done to what and see if operations cancel out or simplify. E.g. if you are multiplying by 6 and dividing by 2 and bother operations are going to affect the same number/group/etc. there is no need to do both operations, you just multiply by 3 since that’s ultimately what you are doing. Really, any place you can simplify operations, do that. Same goes for addition/subtraction. The Commutative Property is really handy for making hard math easier.