• ZILtoid1991@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    4 months ago

    People who are responsible for the Wayland protocol: “This seems like a good idea, but also give veto rights to weirdos.”

  • sepi@piefed.social
    link
    fedilink
    English
    arrow-up
    0
    ·
    4 months ago

    In america, math IS a democracy, and this is why we are losing our democracy.

  • Hildegarde@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    0
    ·
    4 months ago

    A multiple choice question where all the answers are wrong, says nothing about math or the mathematical understanding of the general population.

    This is engagementbait and its hooked you too.

  • Pacattack57@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    4 months ago

    PEMDAS isn’t even real. It’s something we made up to make stupid people feel better about being poor communicators. I challenge someone to create a word problem that actually requires the use of pemdas where you couldn’t just reword the problem to actually make sense.

    Creating fake problems by inserting ambiguity is ridiculous.

      • Pacattack57@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        4 months ago

        Ok than I guess according to you PEMDSA doesn’t work. Or what about PEDMAS or PEDMSA maybe? Oh wait we made up that order cuz it’s easier to say? No way, color me shocked.

    • kkj@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      0
      ·
      4 months ago

      The point is to allow more concise representation of problems that don’t include words. If you’re willing to be arbitrarily verbose, you can just add enough parentheses that you don’t need the other five letters.

  • humanspiral@lemmy.ca
    link
    fedilink
    arrow-up
    0
    ·
    4 months ago

    Some programming languages do away with operator precedence for a big parsing speed boost. J/APL and stack languages are “best known”. in J, right to left parsing,

    16 = 4 * 2 + 2

    • Soggy@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      4 months ago

      Assuming an equation with no context is anything but standard mathematics is peak “well, technically”

  • rumba@lemmy.zip
    link
    fedilink
    English
    arrow-up
    0
    ·
    4 months ago

    I mean, obviously ten.

    But I at least understand 16.

    I deeply worry about the percentage just next to the other three numbers.

    • NCJP@lemmynsfw.com
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      The other choices are people that wanted to awnser ten but could not because it wasn’t a choice. So they took a random number or the one closest to ten

    • TheMinions@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      0
      ·
      4 months ago

      13 is probably the next most chosen because it’s closest to 10.

      Not including the correct answer is also a form of engagement bait to get additional comments and such saying “wait the real answer is 10, wtf?”

    • lauha@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      Your obviously is only a convention and not everyone agree with that. Not even all peogramming languages or calculators.

      If you wanted obviously, it would have to have different order or parentheses or both. Of course everything in math is convention but I mean more obvious.

      2+2*4 is obvious with PEDMAS, but hardy obvious to common people

      2+(2*4) is more obvious to common people

      2*4+2 is even more obvious to people not good with math. I would say this is the preferred form.

      (2*4)+2 doesn’t really add more to it, it just emphasises it more, but unnecessarily.

      • rumba@lemmy.zip
        link
        fedilink
        English
        arrow-up
        0
        ·
        4 months ago

        common people who are not good at math…

        PEMDAS is in the 5th-grade curriculum.

        My obviously is gated to people who can hadle 5th-grade math.

        I would say we should not provide the mathematically illiterate any say in the matter. They need to spend 10 minutes on Youtube and learn it.

      • then_three_more@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        4 months ago

        There’s just 5 lots of 2. If it’s hard then think of x being just a bunch of + smooshed together. So

        2 + 2 x 4

        expands to

        2 + 2 + 2 + 2 + 2

        or contracts to

        5 x 2

        • FishFace@piefed.social
          link
          fedilink
          English
          arrow-up
          0
          ·
          4 months ago

          You’ve completely not understood that order of operations is an arbitrary convention. How did you decide to expand the definition of multiplication before evaluating the addition? Convention.

          You can’t write 2 + 2 ÷ 2 like this, so how are you gonna decide whether to decide to divide or add first?

          • You’ve completely not understood that order of operations is an arbitrary convention

            No, you’ve completely not understood that they are universal rules of Maths

            How did you decide to expand the definition of multiplication before evaluating the addition? Convention

            The definition of Multiplication as being repeated addition

            You can’t write 2 + 2 ÷ 2 like this

            Yes you can

            so how are you gonna decide whether to decide to divide or add first?

            The rules of Maths, which says Division must be before Addition

            • FishFace@piefed.social
              link
              fedilink
              English
              arrow-up
              0
              ·
              4 months ago

              How are you gonna write 2 + 2 ÷ 2 with repeated addition?

              The definition of Multiplication as being repeated addition

              That doesn’t mean it has to be expanded first. You could expand 2 + 2 × 3 as (2+2)+(2+2)+(2+2) and you are unable to tell me what mathematical law prohibits it.

              If this were a universal law, reverse polish notation wouldn’t work as it does. In RPL, 2 2 + 3 × is 12 but 2 3 × 2 + is 8. If you had to expand multiplication first, how would it work? The same can be done with prefix notation, and the same can be done with “pre-school” order of operations.

              Different programming languages have different orders of operations, and those languages work just fine.

              Your argument amounts to saying that it makes the most sense to do multiplication before addition. Which is true, but that only gives you a convention, not a rule.

              • How are you gonna write 2 + 2 ÷ 2 with repeated addition?

                You don’t, because the second 2 is associated with a Division that has to be done before the addition. Maybe go back to school and learn how to do Maths 🙄

                That doesn’t mean it has to be expanded first.

                Yes it does. Everything has to be expanded before you do the addition and subtraction, or you get wrong answers 🙄

                2+3x4=2+3+3+3+3=2+12=14 correct

                2+3x4=5x4=5+5+5+5=20 wrong

                You could expand 2 + 2 × 3 as (2+2)+(2+2)+(2+2)

                Says someone who can’t tell the difference between (2+2)x3=12 and 2+2x3=8 🙄

                you are unable to tell me what mathematical law prohibits it

                The order of operations rules 😂

                reverse polish notation wouldn’t work as it does

                It works because it treats every operation as bracketed without writing the brackets. Also that’s only a Maths notation, not the Maths itself.

                In RPL, 2 2 + 3 × is 12

                Because the way it calculates that is (2+2)x3, not complicated. Same order of operations rules as other Maths notations - just a different way of writing the same thing

                If you had to expand multiplication first, how would it work?

                It works because Brackets - 2 2 + = (2+2) - are before Multiplication

                The same can be done with prefix notation

                Another Maths notation, same rules of Maths

                Different programming languages have different orders of operations

                Maths doesn’t

                those languages work just fine

                They don’t actually. Welcome to most e-calcs give wrong answers because the programmers failed to deal with it correctly.

                Your argument amounts to saying that it makes the most sense to do multiplication before addition

                No, my argument is it’s a universal rule of Maths, as found in Maths textbooks 🙄

                that only gives you a convention, not a rule

                Left to right is a convention (as is not writing the brackets in RPN). Brackets before Multiplication before Addition are rules.

                • FishFace@piefed.social
                  link
                  fedilink
                  English
                  arrow-up
                  0
                  ·
                  3 months ago

                  You don’t, because the second 2 is associated with a Division that has to be done before the addition. Maybe go back to school and learn how to do Maths 🙄

                  Right, so you cannot derive precedence order from the definition of the operations. Your argument based on the definition of multiplication as repeated addition is wrong.

                  or you get wrong answers

                  This is begging the question. We are discussing whether the answers are flat wrong or whether there is a layer of interpretation. Repeating that they are wrong does nothing for this discussion, so there’s no need to bother.

                  You have nothing to say that I can see about why the different interpretations are impossible, or contradictory, or why they ought to qualify as “wrong” even though maths works regardless; you’ve just heard a school-level maths teacher tell you it’s done one way and believe that’s the highest possible authority. I’m sorry, but lots of things we get taught in high school are wrong, or only partially right. I see from your profile that you are a maths teacher, so it’s actually your job to understand maths at a higher level than the level at which you teach it. It may be easier to to teach high school maths this way, but it’s not a good enough level of understanding for an educator (or for a mathematician).

                  Left to right is a convention (as is not writing the brackets in RPN). Brackets before Multiplication before Addition are rules.

                  OK, let’s try a different tack. When I hear the word “rules”, I think you’re talking either about a rule of inference in first order logic or an axiom in a first-order system. But there is no such rule or axiom in, for example, first order Peano arithmetic. So what are you talking about? Can you find somewhere an enumeration of all the rules you’re talking about? Because maybe we’re just talking at cross-purposes: if you deviate from the axioms of Peano arithmetic then we’re fundamentally not doing arithmetic any more. But I contend that you will not find included in any axiomatisation anything which specifies order of operations. This is because from the point of view of the “rules” (i.e. the axioms) the addition and multiplication operations are just function symbols with certain properties. Even the symbols themselves are not really part of the axiomatisation; you could just as well get rid of the + symbol and write A(x, y, z) instead of “x + y = z”; you’d have the exact same arithmetic, the exact same rules.

                  If you’re able to answer this, we can get away from these vague terms which you keep introducing like “notation definition”, and we can instead think about what it means to be a convention versus whatever it is you mean by “rule”. (For example, Peano arithmetic has a privileged position amongst candidates for arithmetic because it encompasses our intuition about how numbers work: you can’t just take an alternative arithmetic, like say arithmetic modulo 17, and say that’s an “alternative convention” because when you add an apple to a bowl of 16 apples, they don’t all disappear. But there’s no such intuition about how to write mathematics to express a certain thing. I contend that is all convention.)

                  It works because it treats every operation as bracketed without writing the brackets. Also that’s only a Maths notation, not the Maths itself.

                  So, you understand that a notation can evaluate things in a certain order with what you call “treating every operation as bracketed without writing brackets.” What does it mean to be “bracketed without writing brackets”? There are exactly two aspects to brackets:

                  1. the symbols themselves - but we’re not writing them! So this isn’t relevant.
                  2. the effect they have - the effect on the order of evaluation of operations

                  So what you’re admitting with these phantom brackets is that a notation can evaluate operations in a different order, even though there are no written brackets.

                  So I can specify these fake brackets to always wrap the left-most operation first: (2 + 3) x 5 and hey look, this notation now has left-to-right order of evaluation, not the usual multiplication first. If you prefer to think of there being invisible brackets there, go right ahead, but the effect is the same.

                  So, how do we decide whether our usual notation “has bogus brackets” or not? Convention. We could choose one way or the other. Nothing breaks if we choose one or the other. Symmetrically, we could say that left-to-right evaluation is the notation “without bogus brackets” and that BODMAS evaluation is the notation “with bogus brackets”. Which choice we make is entirely arbitrary. That is, unless you can find a compelling reason why one is right and the other wrong, rather than just saying it once again.

                  They don’t actually. Welcome to most e-calcs give wrong answers because the programmers failed to deal with it correctly.

                  What problems does it cause? Are the problems purely that they don’t have the order of operations you expect, and so get different answers if you don’t clarify with brackets? Because that, again, is begging the question.

                  To re-iterate, you are in a discussion where you’re trying to establish that it’s a fundamental law of maths that you must do multiplication before addition. The fact that you’ve written a post in which you document how some calculators don’t follow this convention and said that they’re wrong is not evidence of that. It’s just your opinion. Indeed, it’s really (weak) evidence that your opinion is wrong, because you’re less of an authority than the manufacturers of calculators.

                  On calculators, there’s something important you need to realise: basic, non-scientific, non-graphing calculators all have left-to-right order of operations. You can test this with e.g. windows calculator in “standard” mode by typing 2, +, 3, x, 5 (it will give you 25, not 17). Switch it to “scientific” mode and it will give you 17.

                  Why is it different? Because “standard” mode is emulating a basic calculator which has a single accumulator and performs operations on that accumulated value. When you type “x 2” you are multiplying the accumulator by 2; the calculator has already forgotten everything that you typed to get the accumulator. This was done in the early days of calculators because it was more practical when memory looked like this: image

                  Now, you can go on about your bogus brackets until you’re blue in the face, but the fact is that this isn’t “wrong”. It has a different convention for a sensible reason and if you expect something different then it is you who are using the device wrong.

                  From your other comment, since having two threads seems pointless:

                  So if you have one “notation definition” as you call it which says that 2+2*3 means ”first add two to two, then multiply by three” and another which says “first multiply two by three, then add it to two”, why on earth do the “rules” have anything further to say about order of operations?

                  No we don’t. We have another notation which says to do paired operations (equivalent to being in brackets) first.

                  What do you mean “we don’t”? I just made the definition. It exists. This is why terms like “notation definition” are not actually helpful IMO, so let’s be precise and use terms that are either plain english (like “convention”) or mathematical (like “axiom”, “definition”, etc).

      • PEMDAS isn’t obvious to “common people”? Why not? It doesn’t seem like an arbitrary convention to me…

        If “×” means “groups of,” then “2+2×4” means “two plus two groups of four” which only makes sense, to me, to be read as “two plus two groups of four” rather than “two plus two groups of four”

        Sure the order of operations could be arbitrarily different, but I feel like we settled on that order because it simply makes more sense intuitively.

        I’m aware of the possibility that it only feels natural and intuitive to me because I was taught that way, but I at least don’t think that applies to this specific example

        • lauha@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          4 months ago

          PEMDAS isn’t obvious to “common people”? Why not?

          Clearly not if most of these answers are incorrect. If it was obvious, there wouldn’t be as many answers as there are.

        • PEMDAS isn’t obvious to “common people”?

          Everyone is taught the rules of Maths

          If “×” means “groups of,”

          It means repeated addition actually

          “2+2×4” means “two plus two groups of four”

          No, it means 2+2+2+2+2

          Sure the order of operations could be arbitrarily different

          No they can’t

          I feel like we settled on that order because it simply makes more sense intuitively

          It’s because Multiplication is defined as repeated addition, so if you don’t do it before addition you get wrong answers

      • Septimaeus@infosec.pub
        link
        fedilink
        arrow-up
        0
        ·
        4 months ago

        Honestly that’s my pet peeve about this category of content. Over the years I’ve seen (at least) hundreds of these check-out-how-bad-at-math-everyone-is posts and it’s nearly always order of operations related. Apparently, a bunch of people forgot (or just never learned) PEMDAS.

        Now, having an agreed-upon convention absolutely matters for arriving at expected computational outcomes, but we call it a convention for a reason: it’s not a “correct” vs “incorrect” principle of mathematics. It’s just a rule we agreed upon to allow consistent results.

        So any good math educator will be clear on this. If you know the PEMDAS convention already, that’s good, since it’s by far the most common today. But if you don’t yet, don’t worry. It doesn’t mean you’re too dumb to math. With a bit of practice, you won’t even have to remember the acronym.

        • bisby@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          4 months ago

          Most actual math people never have to think about pemdas here because no one would ever write a problem like this. The trick here is “when was the last time I saw an X to mean multiplication” so I would already be off about it

          1 + 1/2 in my brain is clearly 1.5, but 1+1÷2 doesn’t even register in my brain properly.

          • Septimaeus@infosec.pub
            link
            fedilink
            arrow-up
            0
            ·
            4 months ago

            Right, and that clue IMO unravels the more troubling aspect of why this content spreads so quickly:

            It’s deliberately aimed at people with a rudimentary math education who can be made to feel far superior to others who, in spite of having roughly the same level of proficiency, are missing/forgetting a single fact that has a disproportionate effect on the result they expect.

            That is, it’s blue-dress-level contentious engagement bait for anyone with low math skills, whether or not they remember PEMDAS.

            • bisby@lemmy.world
              link
              fedilink
              arrow-up
              0
              ·
              4 months ago

              And yet Maths textbooks do! 😂

              “No one” in this context meant “no one who actually does maths professionally.”

              In a Maths textbook

              Right, and I have decades of maths experience outside of textbooks. So it’s probably been 20 years since I had a meaningful interaction with the × multiplication symbol.

              You don’t know that the obelus means divide??

              I clearly know what the symbol means, I demonstrated a use of it. But again, haven’t had a meaningful interaction with the symbol in 20 years, and yet I deal with / for division daily.

              When I see 1+½ i can instantly say “one and a half”, but when I see 1 + 1 ÷ 2 i actually have to pause for a moment to think about order of operations. Same with 1+2x vs 1 + 2 × x … one I recognize the structure of the problem immediately, and one feels foreign.

              The point is that people who do maths for a living, and are probably above average in maths, tend to write things differently than people who are stopped their maths education in high school (or lower), and these types of memes are designed around making people who know high school maths feel smart. People who actually know maths don’t need memes to justify being better at maths than the rest of the public.

              • “No one” in this context meant “no one who actually does maths professionally.”

                No it doesn’t. Everyone who does Maths professionally does it the same way as in Maths textbooks 🙄

                When I see 1+½ i can instantly say “one and a half”

                And that would be wrong. It’s 1 plus one half. 1½ is one and a half.

                when I see 1 + 1 ÷ 2 i actually have to pause for a moment to think about order of operations

                You don’t know to Divide before Adding??

                one I recognize the structure of the problem immediately, and one feels foreign.

                Says person with “decades of maths experience outside of textbooks” 🙄

                The point is that people who do maths for a living

                That would be me

                are probably above average in maths, tend to write things differently than people who are stopped their maths education in high school (or lower)

                Nope. We all write it the same way as we were taught, even those who have done Maths at University (also me).

                these types of memes are designed around making people who know high school maths feel smart

                No, they’re designed around getting those who have forgotten the rules to argue about it. i.e. engagement bait

        • Jarix@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          4 months ago

          I learned BEDMAS. Doesn’t really change your comment other than effectively “spelling” of a single term

        • having an agreed-upon convention absolutely matters for arriving at expected computational outcomes,

          Proven rules actually

          we call it a convention

          No we don’t - the order of operations rules

          it’s not a “correct” vs “incorrect” principle of mathematics

          The rules most definitely are

          It’s just a rule we agreed upon to allow consistent results

          proven rules which are true whether you agree to it or not! 😂

          any good math educator will be clear on this

          Yep

          If you know the PEMDAS convention already, that’s good, since it’s by far the most common today

          No it isn’t.

          But if you don’t yet, don’t worry

          As long as you know the rules then that’s all that matters

          • Septimaeus@infosec.pub
            link
            fedilink
            arrow-up
            0
            ·
            4 months ago

            Dear Mr Rules,

            I’m not sure what motivates you to so generously offer your various dyadic tokens of knowledge on this subject without qualification while ignoring my larger point, but will assume in good faith that your thirst for knowledge rivals that of your devotion to The Rules.

            First, a question: what are conventions if not agreed upon rules? Second, here is a history of how we actually came to agree upon the aforementioned rules which you may find interesting:

            https://www.themathdoctors.org/order-of-operations-historical-caveats/

            Happy ruling to you.

            • knowledge on this subject without qualification

              I’m a Maths teacher with a Masters - thanks for asking - how about you?

              while ignoring my larger point

              You mean your invalid point, that I debunked?

              what are conventions if not agreed upon rules?

              Conventions are optional, rules aren’t.

              here is a history of how we actually came to agree upon the aforementioned rules which you may find interesting

              He’s well-known to be wrong about his “history”, and if you read through the comments you’ll find plenty of people telling him that, including references. Cajori wrote the definitive books about the history of Maths (notation). They’re available for free on the Internet Archive - no need to believe some random crank and his blog.

              • Septimaeus@infosec.pub
                link
                fedilink
                arrow-up
                0
                ·
                4 months ago

                Dear colleague,

                By qualification I meant explanation. My doctorate is irrelevant to the truth.

                Since you asked, my larger point was about the unhelpful nature of this content, which makes students of math feel inordinately inferior or superior hinged entirely on a single point of familiarity. I don’t handle early math education, but many of my students arrive with baggage from it that hinders their progress, leading me to suspect that early math education sometimes discourages students unnecessarily. In particular, these gotcha-style math memes IMO deepen students’ belief that they’re just bad at math. Hence my dislike of them.

                Re: Dave Peterson, I’ll need to read more about this debate regarding the history of notation and I’ll search for the “proven rules” you mentioned (proofs mean something very specific to me and I can’t yet imagine what that looks like WRT order of operations).

                If what riled you up was my use of the word “conventions” I can use another, but note that conventions aren’t necessarily “optional” when being understood is essential. Where one places a comma in writing can radically change the meaning of a sentence, for example. My greater point however has nothing to do with that. Here I am only concerned about the next generation of maths student and how viral content like this can discourage them unnecessarily.

      • Your obviously is only a convention

        Nope. Rules of Maths

        it would have to have different order or parentheses or both.

        Neither. Multiplication is always before Addition, hence “obviously”

        Of course everything in math is convention

        Nope. The vast majority of it is proven rules

        2+(2*4) is more obvious to common people

        Weird then how many people were able to get this right without brackets for centuries before we started using brackets in Maths (which we’ve only had for 300 years)

      • michaelmrose@lemmy.world
        link
        fedilink
        English
        arrow-up
        0
        ·
        4 months ago

        I feel like people should at least remember math at a 4th grade level and be able to get 10. What is the point of making it obvious the universe will never ever arrange itself in such a fashion. The point is if you remember simple rules you applied for a 10-15 years.

      • rumba@lemmy.zip
        link
        fedilink
        English
        arrow-up
        0
        ·
        4 months ago

        It not even remotely possible to make an odd number out of that.

        The numbers on the right-hand side are what I’m actually working about.

        • Kairos@lemmy.today
          link
          fedilink
          arrow-up
          0
          ·
          4 months ago

          I was trying yo make a shitty joke conflating you worrying (having concern) with you worrrying (wondering what).

          • voracitude@lemmy.world
            link
            fedilink
            arrow-up
            0
            ·
            4 months ago

            If it helps, I saw what you did there, and I exhaled slightly harder out of my nose while smiling wryly. It’s even better the op didn’t get it. So like, well done and stuff 😊

          • rumba@lemmy.zip
            link
            fedilink
            English
            arrow-up
            0
            ·
            edit-2
            4 months ago

            an odd number out of t

            sorry about that, completely wooshed me

  • AltheaHunter@lemmy.blahaj.zone
    link
    fedilink
    English
    arrow-up
    0
    ·
    4 months ago

    It’s not a bad analogy for american democracy. None of the options are correct, so you either pick the wrong answer that makes some amount of sense or write in the correct answer and be completely ignored in the tally of results.

  • RedFrank24@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    4 months ago

    Technically it can be, since PEMDAS is not an immutable law, it’s convention so we can communicate maths and come to the same answer.

    • lugal@lemmy.dbzer0.com
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      It’s a convention just as letters and digits are. If you communicate with people, you better follow the convention they are used to or make it explicit when you don’t. That is when your goal is to be understood of cause. Otherwise dkfurveekfifrhrvaakdjf I guess

    • WhiskyTangoFoxtrot@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      BEDMAS is just as immutable as the idea that those symbols represent numbers and operations. All math is based on conventions; you can’t just decide that some are more important than others.

    • jjjalljs@ttrpg.network
      link
      fedilink
      arrow-up
      0
      ·
      4 months ago

      At least twice now I’ve had math nerds get really mad when I suggested “if people are misreading it, add parentheses”. Very much skinner “it’s the children who are out of touch”.

      Some people would rather be right than understood, I guess.

      No one’s going to die because you write x = c + (a * b) even though those parentheses aren’t strictly needed.

    • theneverfox@pawb.social
      link
      fedilink
      English
      arrow-up
      0
      ·
      4 months ago

      Yeah, in the way that 12 inches equal a foot

      It’s completely arbitrary, but it’s very very very important that we agree on measurements