• frezik@midwest.social
    link
    fedilink
    English
    arrow-up
    6
    arrow-down
    1
    ·
    14 hours ago

    Every one of these only makes me say “wouldn’t it be great if we did everything with RPN”?

  • Clent@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    29
    ·
    1 day ago

    Anyone on Facebook that attempts to answer this or engage within its comments has already failed the test.

    • Gsus4@mander.xyz
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      10 hours ago

      Next they’re going to have an epic debate on whether work done by the system is positive or negative and are all going to feel really smart and passionate about it. Like one of those Science vs Religion debate clubs from the 2000s

    • HereIAm@lemmy.world
      link
      fedilink
      English
      arrow-up
      10
      ·
      21 hours ago

      The issue normally with these “trick” questions is the ambiguous nature of that division sign (not so much a problem here) or people not knowing to just go left to right when all operators are of the same priority. A common mistake is to think division is prioritised above multiplication, when it actually has the same priority. Someone should have included some parenthesis in PEDMAS aka. PE(DM)(AS) 😄

      • vithigar@lemmy.ca
        link
        fedilink
        English
        arrow-up
        7
        arrow-down
        1
        ·
        18 hours ago

        The same priority operations can be done in any order without affecting the result, that’s why they can be same priority and don’t need an explicit order.

        6 × 4 ÷ 2 × 3 ÷ 9 evaluates the same regardless of order. Can you provide a counter example?

        • Robust Mirror@aussie.zone
          link
          fedilink
          English
          arrow-up
          3
          ·
          7 hours ago

          Another person already replied using your equation, but I felt the need to reply with a simpler one as well that shows it:

          9-1+3=?

          Subtraction first:
          8+3=11

          Addition first:
          9-4=5

        • HereIAm@lemmy.world
          link
          fedilink
          English
          arrow-up
          7
          arrow-down
          1
          ·
          edit-2
          15 hours ago

          So let’s try out some different prioritization systems.

          Left to right:

          (((6 * 4) / 2) * 3) / 9
          ((24 / 2) * 3) / 9
          (12 * 3) / 9
          36 / 9 = 4
          

          Right to left:

          6 * (4 / (2 * (3 / 9)))  
          6 * (4 / (2 * 0.333...))  
          6 * (4 / 0.666...)  
          6 * 6 = 36
          

          Multiplication first:

          (6 * 4) / (2 * 3) / 9  
          24 / 6 / 9
          

          Here the path divides again, we can do the left division or right division first.

          Left first: 
          (24 / 6) / 9  
          4 / 9 = 0.444...
          
          Right side first:  
          24 / (6 / 9)  
          24 / 0.666... = 36
          

          And finally division first:

          6 * (4 / 2) * (3 / 9)  
          6 * 2 * 0.333...  
          12 * 0.333.. = 4 
          

          It’s ambiguous which one of these is correct. Hence the best method we have for “correct” is left to right.

          • Melvin_Ferd@lemmy.world
            link
            fedilink
            English
            arrow-up
            5
            arrow-down
            1
            ·
            edit-2
            13 hours ago

            Maybe I’m wrong but the way I explain it is until the ambiguity is removed by adding in extra information to make it more specific then all those answers are correct.

            “I saw her duck”

            Until the author gives me clarity then that sentence has multiple meanings. With math, it doesn’t click for people that the equation is incomplete. In an English sentence, ambiguity makes more sense and the common sense approach would be to clarify what the meaning is

            • HereIAm@lemmy.world
              link
              fedilink
              English
              arrow-up
              2
              ·
              12 hours ago

              100% with you. “Left to right” as far as I can tell only exists to make otherwise “unsolvable” problems a kind of official solution. I personally feel like it is a bodge, and I would rather the correct solution for such a problem to be undefined.

              • Robust Mirror@aussie.zone
                link
                fedilink
                English
                arrow-up
                2
                ·
                6 hours ago

                It’s so we don’t have to spam brackets everywhere

                9+2-1+6-4+7-3+5=

                Becomes

                ((((((9+2)-1)+6)-4)+7)-3)+5=

                That’s just clutter for no good reason when we can just say if it doesn’t have parentheses it’s left to right. Having a default evaluation order makes sense and means we only need parentheses when we want to deviate from the norm.

          • barsoap@lemm.ee
            link
            fedilink
            English
            arrow-up
            3
            arrow-down
            1
            ·
            edit-2
            13 hours ago

            It’s ambiguous which one of these is correct. Hence the best method we have for “correct” is left to right.

            The solution accepted anywhere but in the US school system range from “Bloody use parenthesis, then” over “Why is there more than one division in this formula why didn’t you re-arrange everything to be less confusing” to “50 Hertz, in base units, are 50s-1”.

            More practically speaking: Ultimately, you’ll want to do algebra with these things. If you rely on “left to right” type of precedence rules re-arranging formulas becomes way harder because now you have to contend with that kind of implicit constraint. It makes everything harder for no reason whatsoever so no actual mathematician, or other people using maths in earnest, use that kind of notation.

            • HereIAm@lemmy.world
              link
              fedilink
              English
              arrow-up
              3
              ·
              12 hours ago

              I fully agree that if it comes down to “left to right” the problem really needs to be rewritten to be more clear. But I’ve just shown why that “rule” is a common part of these meme problems because it is so weird and quite esoteric.

        • troistigrestristes@lemmy.eco.br
          link
          fedilink
          English
          arrow-up
          2
          ·
          17 hours ago

          Oh my god now this is going to be Lemmy’s top thread for 6 months, isn’t it?

          Btw, yeah I’m with you on this, you just need to know the priorities and you’re good, because the order doesn’t matter for operations with the same priority

          • HereIAm@lemmy.world
            link
            fedilink
            English
            arrow-up
            2
            ·
            edit-2
            15 hours ago

            Except it does matter. I left some examples for another post with multiplication and division, I’ll give you some addition and subtraction to see order matter with those operations as well.

            Let’s take:
            1 + 2 - 3 + 4

            Addition first:
            (1 + 2) - (3 + 4)
            3 - 7 = -4

            Subtraction first:
            1 + (2 - 3) + 4
            1 + (-1) + 4 = 4

            Right to left:
            1 + (2 - (3 + 4))
            1 + (2 - 7)
            1 + (-5) = -4

            Left to right:
            ((1 + 2) - 3) + 4
            (3 - 3) + 4 = 4

            Edit: You can argue that, for example, the addition first could be (1 + 2) + (-3 + 4) in which case it does end up as 4, but in my opinion that’s another ambiguous case.

  • Novaling@lemmy.zip
    link
    fedilink
    English
    arrow-up
    38
    arrow-down
    1
    ·
    2 days ago

    I was good at math and it was one of my favorite core subjects in school, so I know I’m a weirdo but… I never understood how people couldn’t understand basic PEMDAS/BEDMAS/Whatever-the-fuck-your-country-calls-it.

    Obviously these problems are shitty engagement bait because they don’t use parentheses, but still, seeing people fuck up the fact that Multiplication AND Division occur at the same time, and then the next step is Addition AND Subtraction just stupefies me.

    Like, did you sleep through 4 years of elementary school to miss that fact??? Even in middle school pre-algebra teachers still did PEMDAS refreshers. I get that once I get out of college I’m probably gonna forget half the pre-calc shit I learned because I won’t need it, and I’m not being drilled on it everyday like people in school are, but PEMDAS is a fundamental and basic daily life skill that everyone should know…

    I really wish we gave a fuck about US education.

    • barsoap@lemm.ee
      link
      fedilink
      English
      arrow-up
      2
      ·
      edit-2
      13 hours ago

      I never understood how people couldn’t understand basic PEMDAS/BEDMAS/Whatever-the-fuck-your-country-calls-it.

      There’s no “whatever-the-fuck-your-country-calls-it”, the US is the only country using it, and only up to high school. At least I’m not seeing any papers coming out of the US relying on it so at some point they’re dropping it and do what everyone else is doing: Write equations such that you don’t need a left-to-right rule to disambiguate things. Also, using multiplication by juxtaposition (2x + 4x2).

    • kameecoding@lemmy.world
      link
      fedilink
      English
      arrow-up
      5
      arrow-down
      1
      ·
      edit-2
      2 days ago

      For me it’s the arguments when there is a parentheses but no operator (otherwise known as implied multiplication) in these baits e.g. 15 + 2(4 - 2)

      If you don’t know operator orders I have given up long ago, but I have seen a few lengthy discussions about this

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

        Oh yeah, that’s a fun one.

        Where I live, this would be considered juxtaposition, at least by uni professors and scientific community, so 2(4-2) isn’t the same as 2×(4-2), even though on their own they’re equal.

        This way, equations such as 15/2(4-2) end up with a definite solution.

        So,

        15/2(4-2) = 3.75

        While

        15/2×(4-2) = 15

        Usually, however, it is obvious even without assuming juxtaposition because you can look at previous operations. Not to mention that it’s most common with variables (Eg. “2x/3y”).

  • jordanlund@lemmy.world
    link
    fedilink
    English
    arrow-up
    103
    arrow-down
    6
    ·
    edit-2
    2 days ago

    I’m sure we’re all geniuses here, but just in case…

    Please excuse my dear aunt Sally.

    Parenthesis, exponents, multiplication, division, addition, subtraction.

    Why? Because a bunch of dead Greeks say so!

    3x3-3÷3+3

    (3x3)-(3÷3)+3

    9-1+3

    8+3

    11

    • Mistic@lemmy.world
      link
      fedilink
      English
      arrow-up
      10
      ·
      edit-2
      1 day ago

      The “why” goes a little further than that.

      In actuality, it’s because of fundamental properties of operations

      • Commutation

      a + b = b + a

      a×b = b×a

      • Association

      (a + b) + c = a + (b + c)

      (a×b)×c = a×(b×c)

      • Identity

      a + 0 = a

      a×1 = a

      If you know that, then PEMDAS and such are useless because they’re derived from those properties but do not fully encompass them.

      Eg.

      3×2×(2+2) = 3×(4+4) = 12+12 = 24

      This is a correct solution that is improper if you’re strictly adhering to PEMDAS rule as I’ve done multiplication before parenthesis from right to left.

      I could even go completely out of order by doing 3×2×(2+2) = 2×(6+6) and it will still be correct

    • czardestructo@lemmy.world
      link
      fedilink
      English
      arrow-up
      91
      arrow-down
      1
      ·
      2 days ago

      I guess remembering grade school order of operation means you’re a guinus now? Bar has gotten pretty low…

      • Miles O'Brien@startrek.website
        link
        fedilink
        English
        arrow-up
        23
        ·
        2 days ago

        That’s the point.

        Set the bar low, but just high enough that tons of people still trip over it.

        Sit back and enjoy the comment wars.

        The people who are confident but wrong are too proud to admit they were wrong even if they realize it, and comment angrily.

        The people who are right and know why, comment for corrections and some to show off how S-M-R-T they are.

        The people who are wrong but willing to accept that just have their realization and probably don’t think about it again. So do the people who don’t know and/or care.

        But those first two groups will keep the post going in both shares and comments, because “look at all these wrong people”

        It’s all designed to boost engagement.

        • Kusimulkku@lemm.ee
          link
          fedilink
          English
          arrow-up
          9
          ·
          2 days ago

          I like the version where these problems are made purposefully ambiguous so people will fight over it and raise the level of interaction

        • dethedrus@lemmy.dbzer0.com
          link
          fedilink
          English
          arrow-up
          2
          ·
          edit-2
          11 hours ago

          It’s jeenyus you moran!

          All I can envision with that alternative is Whoopi Goldberg with a very fanciful hat serving drinks in space.

      • cecilkorik@lemmy.ca
        link
        fedilink
        English
        arrow-up
        31
        ·
        2 days ago

        Parenthesis, exponents, multiplication, division, addition, subtraction.

        should actually be

        Parenthesis, exponents, (multiplication and division), (addition and subtraction).

        Addition and subtraction are given the same priority, and are done in the same step, from left to right.

        It’s not a great system of notation, it could be made far clearer (and parenthesis allow you to make it as clear as you like), but it’s essentially the universal standard now and it’s what we’re stuck with.

        • iglou@programming.dev
          link
          fedilink
          English
          arrow-up
          4
          arrow-down
          1
          ·
          edit-2
          1 day ago

          No, it should simply be “Parenthesis, exponents, multiplication, addition.”

          A division is defined as a multiplication, and a substraction is defined as an addition.

          I am so confused everytime I see people arguing about this, as this is basic real number arithmetics that every kid in my country learns at 12 yo, when moving on from the simplified version you learn in elementary school.

          • 13igTyme@lemmy.world
            link
            fedilink
            English
            arrow-up
            5
            ·
            1 day ago

            You want PEMA with knowledge of what is defined, when people can’t even understand PEMDAS. You wish for too much.

            • Cethin@lemmy.zip
              link
              fedilink
              English
              arrow-up
              4
              ·
              1 day ago

              I hate most math eduction because it’s all about memorizing formulas and rules, and then memorizing exceptions. The user above’s system is easier to learn, because there’s no exceptions or weirdness. You just learn the rule that division is multiplication and subtraction is addition. They’re just written in a different notation. It’s simpler, not more difficult. It just requires being educated on it. Yes, it’s harder if you weren’t obviously, as is everything you weren’t educated on.

              • Mistic@lemmy.world
                link
                fedilink
                English
                arrow-up
                4
                arrow-down
                2
                ·
                edit-2
                7 hours ago

                That’s because (strictly speaking) they aren’t teaching math. They’re teaching “tricks” to solve equations easier, which can lead to more confusion.

                Like the PEMDAS thing that’s being discussed here. There’s no such thing as “order of operations” in math, but it’s easier to teach by assuming that there is.

                Edit: To the people downvoting: I want to hear your opinions. Do you think I’m wrong? If so, why?

            • iglou@programming.dev
              link
              fedilink
              English
              arrow-up
              3
              ·
              1 day ago

              I’m just confused as to how that is not common knowledge. The country I speak of is France, and we’re not exactly known for our excellent maths education.

      • aliceblossom@lemmy.world
        link
        fedilink
        English
        arrow-up
        31
        arrow-down
        1
        ·
        2 days ago

        Because its not really “1 plus 3”, its negative 1 plus 3 which is two. I know it seems a little weird but the minus sign is " tied" to the thing following it.

      • fluxion@lemmy.world
        link
        fedilink
        English
        arrow-up
        18
        arrow-down
        2
        ·
        edit-2
        2 days ago

        Addition/subtraction work out the same regardless of how you order the operations. If you do subtraction last you start with the original:

        9-1+3

        and you are adding 3 to the result of (9-1). Since you are trying to perform it before the (9-1) operation is carried out, you can add 3 to the 9:

        12-1 = 11

        or you can add three to the -1 and get:

        9+2 = 11

        You only end up with 9-4 if you were subtracting 3 rather than adding three. It all becomes more obvious if you read the original as:

        9 + (-1) + 3

      • Geodad@lemm.ee
        link
        fedilink
        English
        arrow-up
        8
        arrow-down
        1
        ·
        2 days ago

        It’s multiplication or division from left to right followed by addition or subtraction, also from left to right.

        That’s where a lot of people fuck up.

    • barsoap@lemm.ee
      link
      fedilink
      English
      arrow-up
      4
      arrow-down
      15
      ·
      2 days ago

      Why? Because a bunch of dead Greeks say so!

      The Greeks certainly didn’t come up with PEMDAS. US teachers too lazy to teach kids actual maths did. And that’s before taking into account that the Greeks didn’t come up with Algebra.

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

        US teachers too lazy to teach kids actual maths did.

        What’s lazy about learning PEMDAS? And what’s the non-lazy/superior way?

        • barsoap@lemm.ee
          link
          fedilink
          English
          arrow-up
          4
          arrow-down
          16
          ·
          edit-2
          2 days ago

          Learning the actual algebraic laws, instead of an order of operations to mechanically replicate. PEMDAS might get you through a standardised test but does not convey any understanding, it’s like knowing that you need to press a button to call the elevator but not understand what elevators are for.

          Though “lazy teachers” might actually be a bit too charitable a take given the literacy rates of US college graduates mastering in English. US maths teachers very well might not understand basic maths themselves, thinking it’s all about a set of mechanical operations.

          • dohpaz42@lemmy.world
            link
            fedilink
            English
            arrow-up
            5
            ·
            1 day ago

            You might be smart, but you’re still wrong about the importance of order of operations; especially in algebra.

            As far as teachers go, you’re being a dick by generalizing all (US) teachers are lazy and do not understand math.

            Pro tip: opinions are like assholes; you too have one, and yes it too stinks.

          • Halosheep@lemm.ee
            link
            fedilink
            English
            arrow-up
            10
            ·
            2 days ago

            This guy is the the guy posting the answer and then spending hours fighting the idiots who got it wrong on Facebook.

            Nerd.

          • AbidanYre@lemmy.world
            link
            fedilink
            English
            arrow-up
            7
            ·
            edit-2
            2 days ago

            Is it also lazy to learn Roy G. Biv to know the color spectrum instead of learning all the physics and optical properties behind that?

            Or what about My Very Elderly Mother Just Served Us Nine Pickles to know the planets instead of learning orbital dynamics and astrophysics?

            Christ man, it’s a mnemonic device for elementary schoolers.

            • barsoap@lemm.ee
              link
              fedilink
              English
              arrow-up
              3
              arrow-down
              4
              ·
              edit-2
              2 days ago

              Those two things are memorisation tasks. Maths is not about memorisation.

              You are not supposed to remember that the area of a triangle is a * h / 2, you’re supposed to understand why it’s the case. You’re supposed to be able to show that any triangle that can possibly exist is half the area of the rectangle it’s stuck in: Start with the trivial case (right-angled triangle), then move on to more complicated cases. If you’ve understood that once, there is no reason to remember anything because you can derive the formula at a moment’s notice.

              All maths can be understood and derived like that. The names of the colours, their ordering, the names of the planets and how they’re ordered, they’re arbitrary, they have no rhyme or reason, they need to be memorised if you want to recall them. Maths doesn’t, instead it dies when you apply memorisation.

              Ein Anfänger (der) Gitarre Hat Elan. There, that’s the Guitar strings in German. Why do I know that? Because my music theory knowledge sucks. I can’t apply it, music is all vibes to me but I still need a way to match the strings to what the tuner is displaying. You should never learn music theory from me, just as you shouldn’t learn maths from a teacher who can’t prove a * h / 2, or thinks it’s unimportant whether you can prove it.

                • barsoap@lemm.ee
                  link
                  fedilink
                  English
                  arrow-up
                  4
                  ·
                  edit-2
                  2 days ago

                  Nothing. And that’s why people don’t write equations like that: You either see

                       4
                  6 + ---
                       2
                  

                  or

                   6 + 4
                  -------
                     2
                  

                  If you wrote 6 + 4 / 2 in a paper you’d get reviewers complaining that it’s ambiguous, if you want it to be on one line write (6+4) / 2 or 6 + (4/2) or 6 + ⁴⁄₂ or even ½(6 + 4) Working mathematicians never came up with PEMDAS, which disambiguates it without parenthesis, US teachers did. Noone else does it that way because it does not, in the slightest, aid readability.

          • baines@lemmy.cafe
            link
            fedilink
            English
            arrow-up
            3
            arrow-down
            1
            ·
            1 day ago

            just say you like the smell of your own farts, it would be less text for us to read for the same result

      • jordanlund@lemmy.world
        link
        fedilink
        English
        arrow-up
        18
        arrow-down
        1
        ·
        2 days ago

        Multiplication and Division, and Addition and Subtraction are executed at the same level and done in left to right order.

          • prole@lemmy.blahaj.zone
            link
            fedilink
            English
            arrow-up
            4
            arrow-down
            1
            ·
            edit-2
            2 days ago

            Because it’s just a mnemonic to remember what the order of operations is, not like… What the order of operations is, which you should know already if you know the mnemonic.

          • Seasoned_Greetings@lemm.ee
            link
            fedilink
            English
            arrow-up
            2
            arrow-down
            2
            ·
            2 days ago

            Because it’s the only other thing about that system at all. OP wasn’t teaching, just showing what that system does. If you looked for a source that explains it you’d be told

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

    This is the kind of post designed to invoke a reaction. Facebook’s and pretty much every other algorithm driven social media is designed to promote posts that have high interaction. So a post that invokes lots of negative reactions gets lots of promotion. Hence the downfall of modern society.

  • nuko147@lemm.ee
    link
    fedilink
    English
    arrow-up
    57
    arrow-down
    12
    ·
    2 days ago

    Boomers and Xgens need to prove, that they remember basic school math in FB lmao.

    • Duranie@leminal.space
      link
      fedilink
      English
      arrow-up
      41
      arrow-down
      1
      ·
      edit-2
      2 days ago

      Please don’t include X with the boomers. Since we stepped into the real world and realized it functions completely differently than what we were raised to believe, life’s just been a neverending string of “wait, that was wrong too?” We just want to survive another day under the radar.

      Sorry fellow X’rs for publicly acknowledging our existence. Hopefully this post doesn’t get any upvotes. *Pulls blanket back over my head.

      • BassTurd@lemmy.world
        link
        fedilink
        English
        arrow-up
        8
        arrow-down
        1
        ·
        2 days ago

        As a millennial, I’m starting to relate more and more. The world changes very quickly, and all of the sudden things you knew as fact have different meanings, and there are new words and stuff. It’s not all bad change, but it’s change, and odds are, I’m finding out something changed the hard way.

        • Duranie@leminal.space
          link
          fedilink
          English
          arrow-up
          7
          ·
          2 days ago

          Seriously, I was raised with so much propaganda.

          Up until my late twenties I had believed basically everything I was taught in school. I never had reason to question it, as I was basically living in a bubble. Imagine my surprise when I discovered that when the colonists arrived to this country, it wasn’t just big empty open spaces that the native Americans gladly shared with us. Funny enough, that’s roughly when I gained access to the internet.

      • wildbus8979@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        11
        arrow-down
        8
        ·
        2 days ago

        The average home buyer in the US 17 years ago was born in 1968. Today? 1968. Yeah excuse me but as an elder millennial, Gen X can mostly fuck right off.

        • AbidanYre@lemmy.world
          link
          fedilink
          English
          arrow-up
          2
          arrow-down
          1
          ·
          1 day ago

          You understand that gen x starts around 1965, right? Your stat says they’re mostly getting fucked too.

          • jimmux@programming.dev
            link
            fedilink
            English
            arrow-up
            1
            ·
            1 day ago

            I’m on the cusp of X and millennial, so I’ve been around plenty of both.

            Some X’s have done well for themselves, but those without a bit of luck and assistance have mostly had to give up on big dreams of housing security and family.

            Millennials have had it tougher, but many of them still got there, with a bit more luck and assistance.

            It’s been a long decline, with the concentration of capital making it harder for most of us every year. The generational divide is just another distraction from class warfare.

          • wildbus8979@sh.itjust.works
            link
            fedilink
            English
            arrow-up
            1
            arrow-down
            1
            ·
            1 day ago

            And you understand that 68 is after 65? They’re not getting. Fucked, they’re the last ones to be able to afford housing ownership. If the average is 68 that means one side of the bell curve extends well into the generation.

    • thedruid@lemmy.world
      link
      fedilink
      English
      arrow-up
      16
      arrow-down
      2
      ·
      edit-2
      2 days ago

      Gen xers? Don’t irk them. They’re not noticing you right now.

      Very independent, and cranky generation.

    • systemglitch@lemmy.world
      link
      fedilink
      English
      arrow-up
      5
      arrow-down
      12
      ·
      edit-2
      2 days ago

      Who, the people who never had calculators in their pockets growing up? No worries, we can do math better than you.

      lmao

      • wondrous_strange@lemmy.world
        link
        fedilink
        English
        arrow-up
        4
        arrow-down
        1
        ·
        2 days ago

        Knowing basic arithmetic does not mean you know Math, and the fact you so hung up about this trivial aspect says a lot about you. Additionally, you express yourself like a boomer.

  • aMockTie@lemmy.world
    link
    fedilink
    English
    arrow-up
    30
    ·
    edit-2
    2 days ago

    "Hey, this is Presh Talwalkar.

    Discussion of a brief history of this viral math problem, followed by explanations of common incorrect answers. Ultimately followed by brief discussion on the order of operations, concluding in a final example that equals 11

    And that’s the answer. Thank you so much for making us one of the best communities on YouTube, where we solve the world’s problems, one video at a time."

    • Zwuzelmaus@feddit.org
      link
      fedilink
      English
      arrow-up
      9
      arrow-down
      1
      ·
      2 days ago

      Entertainment.

      The only thing that will remain on yt anyway after AI has taken over the content generation and we can trust no “creator” anymore.

    • cabbage@piefed.social
      link
      fedilink
      English
      arrow-up
      29
      ·
      2 days ago

      Not strictly a scam, but there’s a little money to be made creating viral content on Facebook. They receive a tiny portion of the ad revenue from Facebook when they generate engagement.

      It’s just Facebook sucking really.

    • palordrolap@fedia.io
      link
      fedilink
      arrow-up
      7
      ·
      2 days ago

      OK, it’s been a few hours. I’ll do the clumsy thing that everyone else has avoided and point out that it’s deliberately set up so that people who have never heard of operator precedence - those who do things purely left-to-right - don’t get a weird fraction when the division step is done, making them think that the answer they’ve reached must be the right one. You’d still get a handful who’d argue regardless, but that whole number ropes in a whole bunch more.

      Couple that with the fact that the value reached this way doesn’t match the value obtained from using operator precedence and you get arguments about what the right answer is. And a comment like the one you’re reading right now that’s too long for the hard-of-thinking to read.

      “More engagement, baybee [sunglasses smiley emoji] [cash bag emoji]” etc.

      • Lembot_0002@lemm.ee
        link
        fedilink
        English
        arrow-up
        9
        arrow-down
        1
        ·
        2 days ago

        Yes, we can count. I suppose the question was “So what? What is scummy in some viral post?”

  • CaptPretentious@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 day ago

    This thread shows that a whole bunch of people need to start taking online education courses. Getting back your algebra skills, some science perhaps, communication, history, etc.

    I don’t know where you can get a proper education for that after grade school, but I see Brilliant.org advertised a lot.