I think it’s meant to play with your expectations. Normally someone’s take being posted is to show them being confidently stupid, otherwise it isn’t as interesting and doesn’t go viral.However, because we’re primed to view it from that lens, we feel crazy to think we’re doing the math correctly and getting the “wrong answer” from what we assume is the “confident dipshit”.
I fell for it. It’s crazy to think how heavily I’ve been trained to believe everything I see is wrong in the most embarrassing and laughable way possible. That’s pretty depressing if you think about it.
Some people insist there’s no “correct” order for the basic arithmetic operations. And worse, some people insist the correct order is parenthesis first, then left to right.
Hopefully you can see where their confusion might come from, though. PEMDAS is more P-E-MD-AS. If you have a bunch of unparenthesized addition and subtraction, left to right is correct. A lot of like, firstgrader math problems are just basic problems that are usually left to right (but should have some extras to highlight PEMDAS somewhere I’d hope).
So they’re mostly telling you they only remember as much math as a small child that barely passed math exercizes.
True, but as with many things, something has to be the rule for processing it. For many teachers as I’ve heard, order of appearance is ‘the rule’ when commutative properties apply. … at least until algebra demands simplification, but that’s a different topic.
No, you completely misunderstood my point. My point is not to describe all valid interpretations of the commutative property, but the one most slow kids will hear.
OFC the actual rule is the order doesn’t matter, but kids that don’t pick up on the nuance of the commutative property will still remember, “order of appearance is fine”.
Yes thank you! If you have a sum it is really great to order it in a way that makes it better to ad in your head and i think that lots of people do that without thinking about it.
X=2+3+1+6+2+4+7+5
X=2+3+5+4+6+7+1+2
X=5+5 + 10 +7+1+2
X=10 + 10 + 7+3
X=10 + 10 + 10
I did not flip any signs, merely reversed the order in which the operations are written out. If you read the right side from right to left, it has the same meaning as the left side from left to right.
Hell, the convention that the sign is on the left is also just a convention, as is the idea that the smallest digit is on the right (which should be a familiar issue to programmers, if you look up big endian vs little endian)
If that’s your idea of reversing the order, then you’re not talking about the same thing as SpaceCadet@feddit.nl. They’re talking about the order of operations and the associativity/commutativity property. You’re talking about the order of the symbols.
They do, it’s grouping those operations to say that they have the same precedence. Without them it implies you always do addition before subtraction, for example.
They do, it’s grouping those operations to say that they have the same precedence
They don’t. It’s irrelevant that they have the same priority. MD and DM are both correct, and AS and SA are both correct. 2+3-1=4 is correct, -1+3+2=4 is correct.
Without them it implies you always do addition before subtraction, for example
And there’s absolutely nothing wrong with doing that, for example. You still always get the correct answer 🙄
Uh, no. I don’t think you’ve thought this through, or you’re just using (AS) without realizing it. Conversations around operator precedence can cause real differences in how expressions are evaluated and if you think everyone else is just being pedantic or is confused then you might not underatand it yourself.
Take for example the expression 3-2+1.
With (AS), 3-2+1 = (3-2)+1 = 1+1 = 2. This is what you would expect, since we do generally agree to evaluate addition and subtraction with the same precedence left-to-right.
With SA, the evaluation is the same, and you get the same answer. No issue there for this expression.
But with AS, 3-2+1 = 3-(2+1) = 3-3 = 0. So evaluating addition with higher precedence rather than equal precedence yields a different answer.
=====
Some other pedantic notes you may find interesting:
There is no “correct answer” to an expression without defining the order of operations on that expression. Addition, subtraction, etc. are mathematical necessities that must work the way they do. But PE(MD)(AS) is something we made up; there is no actual reason why that must be the operator precedence rule we use, and this is what causes issues with communicating about these things. People don’t realize that writing mathematical expressions out using operator symbols and applying PE(MD)(AS) to evaluate that expression is a choice, an arbitrary decision we made, rather than something fundamental like most everything else they were taught in math class. See also Reverse Polish Notation.
Your second example, -1+3+2=4, actually opens up an interesting can of worms. Is negation a different operation than subtraction? You can define it that way. Some people do this, with a smaller, slightly higher subtraction sign before a number indicating negation. Formal definitions sometimes do this too, because operators typically have a set number of arguments, so subtraction is a-b and negation is -c. This avoids issues with expressions starting with a negative number being technically invalid for a two-argument definition of subtraction. Alternatively, you can also define -1 as a single symbol that indicates negative one, not as a negation operation followed by a positive one. These distinctions are for the most part pedantic formalities, but without them you could argue that -1+3+2 evaluated with addition having a higher precedence than subtraction is -(1+3+2) = -6. Defining negation as a separate operation with higher precedence than addition or subtraction, or just saying it’s subtraction and all subtraction has higher prexedence than addition, or saying that -1 is a single symbol, all instead give you your expected answer of 4. Isn’t that interesting?
Conversations around operator precedence can cause real differences in how expressions are evaluated
No they can’t. The rules are universal
you might not underatand it yourself
says someone about to prove that they don’t understand it… 😂
With (AS), 3-2+1 = (3-2)+1 = 1+1 = 2
Nope! With AS 3-2+1=+(3+1)-(2)=4-2=2
This is what you would expect
Yes, I expected you to not understand what AS meant 😂
since we do generally agree to evaluate addition and subtraction with the same precedence left-to-right
It’s only a convention, not a rule, as just proven
With SA, the evaluation is the same
No it isn’t. With SA 3-2+1=-(2)+(3+1)=-2+4=2
you get the same answer
Yep, because order doesn’t matter 🙄 AS and SA both give the same answer
No issue there for this expression
Or any expression
But with AS, 3-2+1 = 3-(2+1)
You just violated the rules and changed the sign of the 1 from a + to a minus. 🙄 -(2+1)=-2-1, not -2+1. Welcome to how you got a wrong answer when you wrongly added brackets to it and mixed the different signs together
So evaluating addition with higher precedence rather than equal precedence yields a different answer
No it doesn’t., as already proven. 3-2+1=+(3+1)-(2)=+4-2=2, same answer 🙄
Some other pedantic notes you may find interesting
It’s hilarious that you added in this in afterwards, hoping I wouldn’t see it so you could claim the last word 😂
There is no “correct answer” to an expression without defining the order of operations on that expression
There is only one order of operations, defined in many Maths textbooks.
Addition, subtraction, etc. are mathematical necessities that must work the way they do
Hence the order of operations rules, found in Maths textbooks
But PE(MD)(AS) is something we made up
PEMDAS actually, and yes, it’s only a convention, not the rules themselves
there is no actual reason why that must be the operator precedence rule we use
That’s why it’s only a convention, and not a rule.
this is what causes issues with communicating about these things.
Nope, doesn’t cause any issues - the rules themselves are the same everywhere, and all of the different mnemonics all work
Your second example, -1+3+2=4, actually opens up an interesting can of worms
No it doesn’t
so subtraction is a-b
Just -b actually
negation is -c
Which is still subtraction, from 0, because every operation on the numberline starts from 0, we just don’t bother writing the zero (just like we don’t bother writing the + sign when the expression starts with an addition).
a two-argument definition of subtraction
Subtraction is unary operator, not binary. If you’re subtracting from another number, then that number has it’s own operator that it’s associated with (and might be an unwritten +), it’s not associated with the subtraction at all.
you can also define -1 as a single symbol
No you can’t. You can put it in Brackets to make it joined to the minus sign though, like in (-1)²=1, as opposed to -1²=-1
not as a negation operation followed by a positive one
The 1 can’t be positive if it follows a minus sign - it’s the rule of Left Associativity 😂
These distinctions are for the most part pedantic formalities
No, they’re just you spouting more wrong stuff 😂
you could argue that -1+3+2 evaluated with addition having a higher precedence than subtraction is -(1+3+2) = -6
No, you can’t. Giving addition a higher priority is +(3+2)-1=+5-1=4, as per Maths textbooks…
Huh I just remembered the orders of arithmetic but parentheses trump all so do them first (I use them in even the calculator app). Mean I assume that’s that that says but never learned that acronym is all. Now figuring out categories of words;really does my noodle in sometimes. Cause some words can be either depending on context. Math when it’s written out has (mostly) the same answer. I say mostly because somewhere in the back of my brain there are some scenarios where something more complicated than straight arithmetic can come out oddly but written as such should come out the same.
I mean, arithmetic order is just convention, not a mathematical truth. But that convention works in the way we know, yes, because that’s what’s… well… convention
Social conventions are real, well defined things. Some mathematicians like to pretend they aren’t, while using a truckload of them; that’s a hypocritical opinion.
That’s not to say you can’t change them. But all of basic arithmetic is a social convention, you can redefine the numbers and operations any time you want too.
The rules are socially agreed upon. They are not a mathematical truth. There is nothing about the order of multiple different operators in the definition of the operators themselves. An operator is simply just a function or mapping, and you can order those however you like. All that matters is just what calculation it is that you’re after
Just because a definition of an operator contains another operator, does not require that operator to take precedence. As you pointed out, 2+3*4 could just as well be calculated to 5*4 and thus 20. There’s no mathematical contradiction there. Nothing broke. You just get a different answer. This is all perfectly in line with how maths work.
You can think of operators as functions, in that case, you could rewrite 2+3*4 as add(2, mult(3, 4)), for typical convention. But it could just as well be mult(add(2, 3), 4), where addition takes precedence. Or, similarly, for 2*3+4, as add(mult(2, 3), 4) for typical convention, or mult(2, add(3, 4)), where addition takes precedence. And I hope you see how, in here, everything seems to work just fine, it just depends on how you rearrange things. This sort of functional breakdown of operators is much closer to mathematical reality, and our operators is just convention, to make it easier to read.
Something in between would be requiring parentheses around every operator, to enforce order. Such as (2+(3*4)) or ((2+3)*4)
Isn’t a Maths textbook, and has many mistakes in it
Just because a definition of an operator contains another operator, does not require that operator to take precedence
Yes it does 😂
2+3x4=2+3+3+3+3=14 by definition of Multiplication
2+3x4=5x4=20 Oops! WRONG ANSWER 😂
As you pointed out, 2+34 could just as well be calculated to 54 and thus 20
No, I pointed out that it can’t be calculated like that, you get a wrong answer, and you get a wrong answer because 3x4=3+3+3+3 by definition
There’s no mathematical contradiction there
Just a wrong answer and a right one. If I have 1 2 litre bottle of milk, and 4 3 litre bottles of milk, even young kids know how to count up how many litres I have. Go ahead and ask them what the correct answer is 🙄
Nothing broke
You got a wrong answer when you broke the rules of Maths. Spoiler alert: I don’t have 20 litres of milk
You just get a different answer
A provably wrong answer 😂
This is all perfectly in line with how maths work
2+3x4=20 is not in line with how Maths works. 2+3+3+3+3 does not equal 20 😂
add(2, mult(3, 4)), for typical
rule
But it could just as well be mult(add(2, 3), 4), where addition takes precedence
And it gives you a wrong answer 🙄 I still don’t have 20 litres of milk
And I hope you see how, in here, everything seems to work just fine
No, I see quite clearly that I have 14 litres of milk, not 20 litres of milk. Even a young kid can count up and tell you that
it just depends on how you rearrange things
Correctly or not
our operators is just convention
The notation is, the rules aren’t
Something in between would be requiring parentheses around every operator, to enforce order
No it wouldn’t. You know we’ve only been using brackets in Maths for 300 years, right? Order of operations is much older than that
Such as (2+(3*4))
Which is exactly how they did it before we started using Brackets in Maths 😂 2+3x4=2+3+3+3+3=14, not complicated.
I mean, it is pretty clear here that you do not really understand the purpose of notation, nor what maths is. Notation is just a constructed language to convey a mathematical idea, it’s malleable
Really though, maths is so much more than “3+5=8 because that’s the correct answer!” But why is it the correct answer? In what context? What is the definition of addition? How can you prove that 1+1=2 from fundamental axioms? This is harder to answer than you might think.
Yeah I know that. But I was feeling confused as to why it was here. That’s why I was feeling trolled, because it made me doubt basic math for being posted in a memes community.
They did the joke wrong. To do it right you need to use the ÷ symbol. Because people never use that after they learn fractions, people treat things like a + b ÷ c + d as
a + b
-----
c + d
Or (a + b) ÷ (c + d) when they should be treating it as a + (b ÷ c) + d.
That’s the most common one of these “troll math” tricks. Because notating as
a + b + d
-
c
Is much more common and useful. So people get used to grouping everything around the division operator as if they’re in parentheses.
Now that’s a good troll math thing because it gets really deep into the weeds of mathematical notation. There isn’t one true order of operations that is objectively correct, and on top of that, that’s hardly the way most people would write that. As in, if you wrote that by hand, you wouldn’t use the / symbol. You’d either use ÷ or a proper fraction.
Personally, I’d call that 36 as written given the context you’re saying it in, instead of calling it 1. But I’d say it’s ambiguous and you should notate in a way to avoid ambiguities. Especially if you’re in the camp of multiplication like a(b) being different from ab and/or a × b.
Well, now you might be running into syntax issues instead of PEMDAS issues depending on what they’re confused about. If it’s 12 over 2*6, it’s 1. If it’s 12 ÷ 2 x 6, it’s 36.
A lot of people try a bunch of funky stuff to represent fractions in text form (like mixing spaces and no spaces) when they should just be treating it like a programmer has to, and use parenthesis if it’s a complex fraction in basic text form.
The P in PEMDAS means to solve everything within parentheses first; there is no “distribution” step or rule that says multiplying without a visible operator other than parentheses comes first. So yes, 36 is valid here. It’s mostly because PEMDAS never shows up in the same context as this sort of multiplication or large fractions
Treat a + b/c + d as a + b/(c + d) I can almost understand, I was guilty of doing that in school with multiplication, but auto-parenthesising the first part is really crazy take, imo
I feel like I am getting trolled
Isn’t 17 the actual right answer?
Exactly
So it’s just an unfunny meme?
I think it’s meant to play with your expectations. Normally someone’s take being posted is to show them being confidently stupid, otherwise it isn’t as interesting and doesn’t go viral.However, because we’re primed to view it from that lens, we feel crazy to think we’re doing the math correctly and getting the “wrong answer” from what we assume is the “confident dipshit”.
There’s layers beyond the superficial.
I fell for it. It’s crazy to think how heavily I’ve been trained to believe everything I see is wrong in the most embarrassing and laughable way possible. That’s pretty depressing if you think about it.
As most memes are.
Not even a meme.
More like a sad realization of the state of (un)education in some parts of the so-called civilized world.
You laugh not to cry.
Some people insist there’s no “correct” order for the basic arithmetic operations. And worse, some people insist the correct order is parenthesis first, then left to right.
Both of those sets of people are wrong.
Hopefully you can see where their confusion might come from, though. PEMDAS is more P-E-MD-AS. If you have a bunch of unparenthesized addition and subtraction, left to right is correct. A lot of like, firstgrader math problems are just basic problems that are usually left to right (but should have some extras to highlight PEMDAS somewhere I’d hope).
So they’re mostly telling you they only remember as much math as a small child that barely passed math exercizes.
If you have a bunch of unparenthesized addition and subtraction, left to right doesn’t matter.
1 + 2 + 3 = 3 + 2 + 1
True, but as with many things, something has to be the rule for processing it. For many teachers as I’ve heard, order of appearance is ‘the rule’ when commutative properties apply. … at least until algebra demands simplification, but that’s a different topic.
Well the rule is: any order goes. Summation is commutative.
No, you completely misunderstood my point. My point is not to describe all valid interpretations of the commutative property, but the one most slow kids will hear.
OFC the actual rule is the order doesn’t matter, but kids that don’t pick up on the nuance of the commutative property will still remember, “order of appearance is fine”.
Yes thank you! If you have a sum it is really great to order it in a way that makes it better to ad in your head and i think that lots of people do that without thinking about it. X=2+3+1+6+2+4+7+5 X=2+3+5+4+6+7+1+2 X=5+5 + 10 +7+1+2 X=10 + 10 + 7+3 X=10 + 10 + 10
Right, because 1-2-3=3-2-1.
You flipped the sign on the 3 and 1.
I did not flip any signs, merely reversed the order in which the operations are written out. If you read the right side from right to left, it has the same meaning as the left side from left to right.
Hell, the convention that the sign is on the left is also just a convention, as is the idea that the smallest digit is on the right (which should be a familiar issue to programmers, if you look up big endian vs little endian)
If that’s your idea of reversing the order, then you’re not talking about the same thing as SpaceCadet@feddit.nl. They’re talking about the order of operations and the associativity/commutativity property. You’re talking about the order of the symbols.
No, 1-2-3=-3-2+1. You changed the signs on the 1 and the 3.
PE(MD)(AS)
Now just remember to account for those parentheses first…
Those Brackets don’t matter. I don’t know why people insist it does
They do, it’s grouping those operations to say that they have the same precedence. Without them it implies you always do addition before subtraction, for example.
They don’t. It’s irrelevant that they have the same priority. MD and DM are both correct, and AS and SA are both correct. 2+3-1=4 is correct, -1+3+2=4 is correct.
And there’s absolutely nothing wrong with doing that, for example. You still always get the correct answer 🙄
Uh, no. I don’t think you’ve thought this through, or you’re just using (AS) without realizing it. Conversations around operator precedence can cause real differences in how expressions are evaluated and if you think everyone else is just being pedantic or is confused then you might not underatand it yourself.
Take for example the expression 3-2+1.
With (AS), 3-2+1 = (3-2)+1 = 1+1 = 2. This is what you would expect, since we do generally agree to evaluate addition and subtraction with the same precedence left-to-right.
With SA, the evaluation is the same, and you get the same answer. No issue there for this expression.
But with AS, 3-2+1 = 3-(2+1) = 3-3 = 0. So evaluating addition with higher precedence rather than equal precedence yields a different answer.
=====
Some other pedantic notes you may find interesting:
There is no “correct answer” to an expression without defining the order of operations on that expression. Addition, subtraction, etc. are mathematical necessities that must work the way they do. But PE(MD)(AS) is something we made up; there is no actual reason why that must be the operator precedence rule we use, and this is what causes issues with communicating about these things. People don’t realize that writing mathematical expressions out using operator symbols and applying PE(MD)(AS) to evaluate that expression is a choice, an arbitrary decision we made, rather than something fundamental like most everything else they were taught in math class. See also Reverse Polish Notation.
Your second example, -1+3+2=4, actually opens up an interesting can of worms. Is negation a different operation than subtraction? You can define it that way. Some people do this, with a smaller, slightly higher subtraction sign before a number indicating negation. Formal definitions sometimes do this too, because operators typically have a set number of arguments, so subtraction is a-b and negation is -c. This avoids issues with expressions starting with a negative number being technically invalid for a two-argument definition of subtraction. Alternatively, you can also define -1 as a single symbol that indicates negative one, not as a negation operation followed by a positive one. These distinctions are for the most part pedantic formalities, but without them you could argue that -1+3+2 evaluated with addition having a higher precedence than subtraction is -(1+3+2) = -6. Defining negation as a separate operation with higher precedence than addition or subtraction, or just saying it’s subtraction and all subtraction has higher prexedence than addition, or saying that -1 is a single symbol, all instead give you your expected answer of 4. Isn’t that interesting?
as per the textbooks 🙄
No they can’t. The rules are universal
says someone about to prove that they don’t understand it… 😂
Nope! With AS 3-2+1=+(3+1)-(2)=4-2=2
Yes, I expected you to not understand what AS meant 😂
It’s only a convention, not a rule, as just proven
No it isn’t. With SA 3-2+1=-(2)+(3+1)=-2+4=2
Yep, because order doesn’t matter 🙄 AS and SA both give the same answer
Or any expression
You just violated the rules and changed the sign of the 1 from a + to a minus. 🙄 -(2+1)=-2-1, not -2+1. Welcome to how you got a wrong answer when you wrongly added brackets to it and mixed the different signs together
No it doesn’t., as already proven. 3-2+1=+(3+1)-(2)=+4-2=2, same answer 🙄
It’s hilarious that you added in this in afterwards, hoping I wouldn’t see it so you could claim the last word 😂
There is only one order of operations, defined in many Maths textbooks.
Hence the order of operations rules, found in Maths textbooks
PEMDAS actually, and yes, it’s only a convention, not the rules themselves
That’s why it’s only a convention, and not a rule.
Nope, doesn’t cause any issues - the rules themselves are the same everywhere, and all of the different mnemonics all work
No it doesn’t
Just -b actually
Which is still subtraction, from 0, because every operation on the numberline starts from 0, we just don’t bother writing the zero (just like we don’t bother writing the + sign when the expression starts with an addition).
Subtraction is unary operator, not binary. If you’re subtracting from another number, then that number has it’s own operator that it’s associated with (and might be an unwritten +), it’s not associated with the subtraction at all.
No you can’t. You can put it in Brackets to make it joined to the minus sign though, like in (-1)²=1, as opposed to -1²=-1
The 1 can’t be positive if it follows a minus sign - it’s the rule of Left Associativity 😂
No, they’re just you spouting more wrong stuff 😂
No, you can’t. Giving addition a higher priority is +(3+2)-1=+5-1=4, as per Maths textbooks…
No, all of it was wrong, again 😂
Huh I just remembered the orders of arithmetic but parentheses trump all so do them first (I use them in even the calculator app). Mean I assume that’s that that says but never learned that acronym is all. Now figuring out categories of words;really does my noodle in sometimes. Cause some words can be either depending on context. Math when it’s written out has (mostly) the same answer. I say mostly because somewhere in the back of my brain there are some scenarios where something more complicated than straight arithmetic can come out oddly but written as such should come out the same.
I mean, arithmetic order is just convention, not a mathematical truth. But that convention works in the way we know, yes, because that’s what’s… well… convention
Social conventions are real, well defined things. Some mathematicians like to pretend they aren’t, while using a truckload of them; that’s a hypocritical opinion.
That’s not to say you can’t change them. But all of basic arithmetic is a social convention, you can redefine the numbers and operations any time you want too.
So are the laws of nature, that Maths arises from
No, you making false accusations against Mathematicians is a strawman
You can change the conventions, you cannot change the rules
Nope, law of nature. Even several animals know how to count.
And you end up back where you started, since you can’t change the laws of nature
Nope, rules arising from the definition of the operators in the first place.
It most certainly is a mathematical truth!
The mnemonics are conventions, the rules are rules
The rules are socially agreed upon. They are not a mathematical truth. There is nothing about the order of multiple different operators in the definition of the operators themselves. An operator is simply just a function or mapping, and you can order those however you like. All that matters is just what calculation it is that you’re after
Nope! Universal laws.
Yes they are! 😂
That’s exactly where it is. 2x3 is defined as 2+2+2, therefore if you don’t do Multiplication before Addition you get wrong answers
No you can’t! 😂 2+3x4=5x4=20, Oops! WRONG ANSWER 😂
And if you want the right answer then you have to obey the order of operations rules
That’s a very simplistic view of maths. It’s convention https://en.wikipedia.org/wiki/Order_of_operations
Just because a definition of an operator contains another operator, does not require that operator to take precedence. As you pointed out, 2+3*4 could just as well be calculated to 5*4 and thus 20. There’s no mathematical contradiction there. Nothing broke. You just get a different answer. This is all perfectly in line with how maths work.
You can think of operators as functions, in that case, you could rewrite 2+3*4 as add(2, mult(3, 4)), for typical convention. But it could just as well be mult(add(2, 3), 4), where addition takes precedence. Or, similarly, for 2*3+4, as add(mult(2, 3), 4) for typical convention, or mult(2, add(3, 4)), where addition takes precedence. And I hope you see how, in here, everything seems to work just fine, it just depends on how you rearrange things. This sort of functional breakdown of operators is much closer to mathematical reality, and our operators is just convention, to make it easier to read.
Something in between would be requiring parentheses around every operator, to enforce order. Such as (2+(3*4)) or ((2+3)*4)
The Distributive Law and Arithmetic is very simple.
Nope, a literal Law. See screenshot
Isn’t a Maths textbook, and has many mistakes in it
Yes it does 😂
2+3x4=2+3+3+3+3=14 by definition of Multiplication
2+3x4=5x4=20 Oops! WRONG ANSWER 😂
No, I pointed out that it can’t be calculated like that, you get a wrong answer, and you get a wrong answer because 3x4=3+3+3+3 by definition
Just a wrong answer and a right one. If I have 1 2 litre bottle of milk, and 4 3 litre bottles of milk, even young kids know how to count up how many litres I have. Go ahead and ask them what the correct answer is 🙄
You got a wrong answer when you broke the rules of Maths. Spoiler alert: I don’t have 20 litres of milk
A provably wrong answer 😂
2+3x4=20 is not in line with how Maths works. 2+3+3+3+3 does not equal 20 😂
rule
And it gives you a wrong answer 🙄 I still don’t have 20 litres of milk
No, I see quite clearly that I have 14 litres of milk, not 20 litres of milk. Even a young kid can count up and tell you that
Correctly or not
The notation is, the rules aren’t
No it wouldn’t. You know we’ve only been using brackets in Maths for 300 years, right? Order of operations is much older than that
Which is exactly how they did it before we started using Brackets in Maths 😂 2+3x4=2+3+3+3+3=14, not complicated.
I mean, it is pretty clear here that you do not really understand the purpose of notation, nor what maths is. Notation is just a constructed language to convey a mathematical idea, it’s malleable
And yeah, it’s easy to just say “this page is wrong!” without any further argument. Nothing you referenced proved the convention as law, and neither is there any mathematical basis for any proof, because it simply is nonsensical to “prove” a notation. Have another source for this being convention https://www.themathdoctors.org/order-of-operations-why/ or https://math.stackexchange.com/questions/884765/mathematical-proof-for-order-of-operations. If you want a book about this, then there’s https://en.wikipedia.org/wiki/Bronshtein_and_Semendyayev that is cited by wikipedia. I’m sure you could also find stuff about this in a set theory book. Though good luck understanding them without sufficient experience in high-level maths
Really though, maths is so much more than “3+5=8 because that’s the correct answer!” But why is it the correct answer? In what context? What is the definition of addition? How can you prove that 1+1=2 from fundamental axioms? This is harder to answer than you might think.
Well, this is just a writing standard that is globally agreed on,
The writing rules are defined by humans not by natural force
(That one thing and another thing are two things, is a rule from nature, as comparison)
There is no answer. Because there is no question.
That is a problem, tho
I know the solution
deleted by creator
Yeah I know that. But I was feeling confused as to why it was here. That’s why I was feeling trolled, because it made me doubt basic math for being posted in a memes community.
They did the joke wrong. To do it right you need to use the ÷ symbol. Because people never use that after they learn fractions, people treat things like a + b ÷ c + d as
a + b ----- c + dOr (a + b) ÷ (c + d) when they should be treating it as a + (b ÷ c) + d.
That’s the most common one of these “troll math” tricks. Because notating as
a + b + d - cIs much more common and useful. So people get used to grouping everything around the division operator as if they’re in parentheses.
Or
12 / 2(6)
And trying to argue this is 36.
Now that’s a good troll math thing because it gets really deep into the weeds of mathematical notation. There isn’t one true order of operations that is objectively correct, and on top of that, that’s hardly the way most people would write that. As in, if you wrote that by hand, you wouldn’t use the
/symbol. You’d either use ÷ or a proper fraction.It’s a good candidate for nerd sniping.
Personally, I’d call that 36 as written given the context you’re saying it in, instead of calling it 1. But I’d say it’s ambiguous and you should notate in a way to avoid ambiguities. Especially if you’re in the camp of multiplication like
a(b)being different fromaband/ora × b.Well, now you might be running into syntax issues instead of PEMDAS issues depending on what they’re confused about. If it’s 12 over 2*6, it’s 1. If it’s 12 ÷ 2 x 6, it’s 36.
A lot of people try a bunch of funky stuff to represent fractions in text form (like mixing spaces and no spaces) when they should just be treating it like a programmer has to, and use parenthesis if it’s a complex fraction in basic text form.
The P in PEMDAS means to solve everything within parentheses first; there is no “distribution” step or rule that says multiplying without a visible operator other than parentheses comes first. So yes, 36 is valid here. It’s mostly because PEMDAS never shows up in the same context as this sort of multiplication or large fractions
Treat
a + b/c + dasa + b/(c + d)I can almost understand, I was guilty of doing that in school with multiplication, but auto-parenthesising the first part is really crazy take, imoThat’s a really odd way to parse it.
a + b ----- c + bAlternatively, the poster calculated the wrong answer, thus assuming this guy was wrong.
Gotcha gotcha, sorry
Removed by mod
This shit take got deleted right in front of my eyes
The system works
Oh so just like me on !lemmyshitpost@lemmy.world