I dunno (piefed.cdn.blahaj.zone)
 
you are viewing a single comment's thread
view the rest of the comments
[–] 39 points 9 months ago (43 children)

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.

  • source
  • parent
  • hideshow 43 child comments
  • [–] 11 points 9 months ago* (26 children)

    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.

  • source
  • parent
  • hideshow 26 child comments
  • [–] 10 points 9 months ago* (last edited 9 months ago) (11 children)

    If you have a bunch of unparenthesized addition and subtraction, left to right is correct

    If you have a bunch of unparenthesized addition and subtraction, left to right doesn't matter.

    1 + 2 + 3 = 3 + 2 + 1

  • source
  • parent
  • hideshow 11 child comments
  • [–] 4 points 9 months ago (4 children)

    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.

  • source
  • parent
  • hideshow 4 child comments
  • [–] 5 points 9 months ago (2 children)

    something has to be the rule for processing it

    Well the rule is: any order goes. Summation is commutative.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 4 points 9 months ago*

    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".

  • source
  • parent
  • [–] 2 points 9 months ago

    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

  • source
  • parent
  • [–] -1 points 9 months ago (5 children)

    If you have a bunch of unparenthesized addition and subtraction, left to right doesn't matter.

    Right, because 1-2-3=3-2-1.

  • source
  • parent
  • hideshow 5 child comments
  • [–] 2 points 9 months ago (3 children)

    You flipped the sign on the 3 and 1.

  • source
  • parent
  • hideshow 3 child comments
  • [–] -1 points 9 months ago (2 children)

    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)

  • source
  • parent
  • hideshow 2 child comments
  • [–] -2 points 8 months ago

    I did not flip any signs

    Yes you did! 😂

    merely reversed the order in which the operations are written out

    No, merely reversing the order gives -3-2+1 - you changed the signs on the 1 and 3.

    If you read the right side from right to left, it

    Starts with -3, which you changed to +3

    it has the same meaning as the left side from left to right

    when you don't change any of the signs it does 😂

    Hell, the convention that the sign is on the left is also just a convention

    Nope, it's a rule of Maths, Left Associativity.

  • source
  • parent
  • [–] 5 points 9 months ago (11 children)

    PE(MD)(AS)

    Now just remember to account for those parentheses first...

  • source
  • parent
  • hideshow 11 child comments
  • [–] -2 points 8 months ago (10 children)

    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

  • source
  • parent
  • hideshow 10 child comments
  • [–] 1 point 8 months ago (9 children)

    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.

  • source
  • parent
  • hideshow 9 child comments
  • [–] -2 points 8 months ago* (8 children)

    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 🙄

  • source
  • parent
  • hideshow 8 child comments
  • [–] 3 points 8 months ago* (last edited 8 months ago) (7 children)

    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?

  • source
  • parent
  • hideshow 7 child comments
  • [–] 1 point 8 months ago

    I'm honestly disappointed that you just downvoted and left. Challenging your beliefs with contrary ideas is the only way to improve them and understand the world in a more comprehensive and accurate way.

  • source
  • parent
  • [–] -1 points 8 months ago (4 children)

    you’re just using (AS) without realizing it

    as per the textbooks 🙄

    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 🙄

  • source
  • parent
  • hideshow 4 child comments
  • [–] 2 points 8 months ago* (3 children)

    Oh, it's you. I really want to have a good discussion about this, but it is not possible with your debate style. Once again, fragmenting your opponent's argument into a million partial statements and then responding to those is ineffective for several reasons:

    1. You fail to understand the argument your opponent is making, and so you do not learn anything by engaging with it. You must first understand to learn.

    2. By divorcing each partial statement from its surrounding context, you are likely to change its meaning, so you are no longer even responding to the meaning of what was said.

    3. You are not making a point of your own, which means you are less likely to figure out your own mental model. You are simply stating facts, opinions, or misunderstandings as if they are self-evidently true, without knowing why you believe them to be true.

    4. Expanding on point three, it's very easy to state two contradictory things without realizing it. For example, "No they can’t. The rules are universal" and "It’s only a convention, not a rule, as just proven".

    5. Also expanding on point three, this also makes it hard for people to find the mistakes you're making and correct them, because mistakes in your mental model are only visible through the statements you choose to make, which are incoherent when taken together. For example, I can see that you don't fully understand what I mean by "operator precedence", but this is not obvious from your main point, because you have no main point, because you do not understand what mine is.

    6. If your opponent also used this debate style, the argument takes hours and ends up entirely divorced from the initial meaning, completely destroying any hope of having the debate provide any actual value, ie. greater understanding.

    Please do not take these as insults; it's a long shot to fundamentally change someone's perspective like this in one post, but I would love if you saw the beauty of discussion. To bring it back to your original comment:

    Those Brackets don’t matter. I don’t know why people insist it does

    Understanding the purpose and methods of debate allows you to understand why people know the brackets matter.

  • source
  • parent
  • hideshow 3 child comments
  • [–] -1 points 8 months ago (2 children)

    I really want to have a good discussion about this

    says person who deleted their previous post when I proved how wrong it was 😂

    it is not possible with your debate style

    There's no debate - the rules are in Maths textbooks, which you want to pretend don't exist

    You fail to understand the argument your opponent is making

    You haven't got one. That's why you keep pretending Maths textbooks don't exist

    By divorcing each partial statement from its surrounding context

    says person who deleted one of their posts to remove the context. 😂 The context is the rules of Maths, in case you needed to be reminded 😂

    you are likely to change its meaning

    Nope. I'm still talking about the rules of Maths 😂

    You are not making a point of your own

    Ok, so here you are admitting to comprehension problems. Which part did you not understand in addition and subtraction can be done in any order? 😂

    You are simply stating facts, opinions, or misunderstandings as if they are self-evidently true

    You left out backing it up with textbook screenshots and worked examples 😂

    without knowing why you believe them to be true.

    There's no belief involved. It's easy enough to prove it yourself by doing the Maths 😂

    it’s very easy to state two contradictory things without realizing it

    And yet I never have. Why do you think that is? 😂

    “No they can’t. The rules are universal”

    Which is correct

    “It’s only a convention, not a rule, as just proven”

    Which is also correct, and in no way contradicts the previous point, and I have no idea why you think it does! 😂 The first point is about the rules, and the second point is about conventions, which isn't even the same thing

    this also makes it hard for people to find the mistakes

    That's because I'm not making any 😂

    I can see that you don’t fully understand what I mean by “operator precedence”

    Says person who in their other post claimed "addition first" for -1+3+2 is -(1+3+2) = -6, and not +(3+2)-1=4 😂

    If your opponent also used this debate style,

    Which you don't, given you have no evidence whatsoever to back up your points with 😂

    ends up entirely divorced from the initial meaning

    I've been on-point the whole time, and you keep trying to deflect from how wrong your statements are 😂

    Please do not take these as insults

    Well, obviously not, given I just proved they were all wrong 😂

    allows you to understand why people know the brackets matter.

    Except I've proven, repeatedly, that they don't, and so now you're trying to deflect from that (and deleted one of your posts to hide the evidence of how wrong you are) 😂

  • source
  • parent
  • hideshow 2 child comments
  • [–] 2 points 8 months ago* (last edited 8 months ago) (1 child)

    I'm falling for the troll here but I feel compelled to point out that you did NOT read the post I deleted lmao. I deleted it because I posted it before you "responded" to my points. Go check it out, I just restored it.

    I should clarify that I haven't responded to your "points" because there is nothing worth responding to. Your arguments can all be debunked by reading https://en.wikipedia.org/wiki/Order_of_operations, so I didn't bother doing it myself.

    To avoid any further temptation to respond I will be blocking you. Your absence from my future will be greatly appreciated. I feel that the deleted post is in itself a very good final word to this disappointment of a "conversation" even if it is not entirely accurate. Goodbye.

  • source
  • parent
  • hideshow 1 child comment
  • [–] 0 points 8 months ago

    I’m falling for the troll here

    Just as well for you I've provided all the necessary evidence to prove them wrong then

    I’m honestly disappointed that you just downvoted and left

    BWAHAHAHAHAHA! I DIDN'T leave, quite demonstrably.

    Challenging your beliefs with contrary ideas is the only way to improve them and understand the world in a more comprehensive and accurate way

    So how come you won't then?

    I should clarify that I haven’t responded to your “points” because there is nothing worth responding to

    In other words, you have been proven wrong by them

    Your arguments can all be debunked by reading https://en.wikipedia.org/wiki/Order_of_operations

    Wikipedia can be comprehensively debunked by MATHS TEXTBOOKS - you know, those things you refuse to look at because they prove you are wrong 😂

    I didn’t bother doing it myself.

    So in other words, Wikipedia is all you had, and, having been disproven by Maths textbooks, you've got nothing

    I will be blocking you

    An admission of defeat then

    I feel that the deleted post is in itself a very good final word to this disappointment of a “conversation”

    Feel free to unblock me when you're ready to take your own advice

    if it is not entirely accurate

    Just like all your other posts then

    Goodbye

    Don't let the door hit you on the way out

  • source
  • parent
  • [–] -1 points 8 months ago

    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...

    Isn’t that interesting?

    No, all of it was wrong, again 😂

  • source
  • parent
  • [–] 2 points 9 months ago

    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.

  • source
  • parent
  • [–] 2 points 9 months ago (11 children)

    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

  • source
  • parent
  • hideshow 11 child comments
  • [–] -1 points 9 months ago (1 child)

    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.

  • source
  • parent
  • hideshow 1 child comment
  • [–] -1 points 8 months ago

    Social conventions are real, well defined things

    So are the laws of nature, that Maths arises from

    Some mathematicians like to pretend they aren’t, while using a truckload of them; that’s a hypocritical opinion

    No, you making false accusations against Mathematicians is a strawman

    That’s not to say you can’t change them

    You can change the conventions, you cannot change the rules

    But all of basic arithmetic is a social convention

    Nope, law of nature. Even several animals know how to count.

    you can redefine the numbers and operations any time you want too

    And you end up back where you started, since you can't change the laws of nature

  • source
  • parent
  • [–] -1 points 8 months ago (8 children)

    I mean, arithmetic order is just convention

    Nope, rules arising from the definition of the operators in the first place.

    not a mathematical truth

    It most certainly is a mathematical truth!

    But that convention works in the way we know, yes, because that’s what’s… well… convention

    The mnemonics are conventions, the rules are rules

  • source
  • parent
  • hideshow 8 child comments
  • [–] 0 points 8 months ago (7 children)

    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

  • source
  • parent
  • hideshow 7 child comments
  • [–] 0 points 8 months ago (6 children)

    The rules are socially agreed upon

    Nope! Universal laws.

    They are not a mathematical truth.

    Yes they are! 😂

    There is nothing about the order of multiple different operators in the definition of the operators themselves

    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

    you can order those however you like.

    No you can't! 😂 2+3x4=5x4=20, Oops! WRONG ANSWER 😂

    All that matters is just what calculation it is that you’re after

    And if you want the right answer then you have to obey the order of operations rules

  • source
  • parent
  • hideshow 6 child comments
  • [–] 1 point 8 months ago (5 children)

    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)

  • source
  • parent
  • hideshow 5 child comments
  • [–] -1 points 8 months ago (4 children)

    That’s a very simplistic view of maths

    The Distributive Law and Arithmetic is very simple.

    It’s convention

    Nope, a literal Law. See screenshot

    https://en.wikipedia.org/wiki/Order_of_operations

    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.

  • source
  • parent
  • hideshow 4 child comments
  • [–] 1 point 8 months ago (3 children)

    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.

  • source
  • parent
  • hideshow 3 child comments
  • [–] -2 points 8 months ago (2 children)

    I mean, it is pretty clear here that you do not really understand the purpose of notation,

    says person who doesn't understand that there is only one possible answer to 2+3x4. Even kids who are still counting up know what it is

    Notation is just a constructed language to convey a mathematical idea, it’s malleable

    Yep, and the rules aren't. 2+3x4 can only ever equal 14. In Germany it's written 2+3.4, and it's still equal to 14, because the rules are universal

    Nothing you referenced proved the convention as law

    says person ignoring the textbook screenshots explaining why it's a Law 🙄

    neither is there any mathematical basis for any proof

    Yes there is. See textbook screenshots 🙄

    it simply is nonsensical to “prove” a notation

    It proves the rules 🙄

    Have another source for this being convention https://www.themathdoctors.org/order-of-operations-why/

    Read the comments and you'll find multiple people telling him he is wrong, with references 😂 His usual comeback is "well, that doesn't prove that it's taught everywhere", yeah only that they ALL say the same thing! 😂 And he even admitted at one point he couldn't find his rule in any Maths textbooks. 😂 I even tried to tell him myself, and he deleted my comment because I proved he was wrong 😂

    or https://math.stackexchange.com/questions/884765/mathematical-proof-for-order-of-operations.

    Is well-known to be overridden with people who do not know how to do order of operations 😂 On Mastodon I've seen people asking where is a better place to take Maths problems

    If you want a book about this

    I have plenty of Maths textbooks, which for some reason you refuse to look in

    there’s https://en.wikipedia.org/wiki/Bronshtein_and_Semendyayev that is cited by wikipedia.

    "comprehensive handbook" - so, yet again, not a Maths textbook 🙄

    "first published in 1945 in Russia" - the order of operations rules are older than 1945 😂

    "frequently used guide for scientists, engineers, and technical university students" - notably no mention of Mathematicians

    I’m sure you could also find stuff about this in a set theory book

    and you could find this in a high school Maths textbook

    Though good luck understanding them without sufficient experience in high-level maths

    You know teachers here are required to have a Masters in Maths right?? 😂

    But why is it the correct answer?

    Count up and find out, or use some Cuisenaire rods. This is how young kids learn to do it

    In what context?

    The context of Addition 🙄

    What is the definition of addition?

    1+1=2, then inductively proven for all subsequent numbers

    How can you prove that 1+1=2 from fundamental axioms?

    It's true by definition

    This is harder to answer than you might think

    Not hard at all. 1+1=2 by definition, then the rest of the numbers are proven inductively. You know there are several species of animals that also know how to count, right?

  • source
  • parent
  • hideshow 2 child comments
  • [–] 1 point 8 months ago (1 child)

    Maths is so much more malleable and abstract than what you think it is. You really do not understand maths as well as you think you do, and I feel a bit sad for any student of yours that would wish to explore some deeper revelations of maths, just to be told "nope! That's just how it is!" with no further thinking at all.

    A lot of maths is chosen. Choices with good motivation, but choices nonetheless. So long as there not being contradictions or paradoxes, the formulation of a form of math is valid. Which is why you have different forms of maths with different rules.

    And you really could use some more humility, it's obnoxious when you act all so high and mighty and arrogant, with no interest in questioning your assumptions. Devolving into ridiculing the person you're discussing with and a general vibe of "omfg I'm right you fucking idiot because I'm right how dumb can you get??"

    Like, what is it that you want here, a book from the 700s of the one dude that invented arithmetics and told clearly "I chose this."? You are making your arguments effectively unfalsifiable by just going "Nuh uh" all the time.

    Get some humility and learn a bit about the foundations of maths. Like. Down to set theory. See for yourself what actually is the foundation. And, spoiler, it's not a high school textbook. Hopefully I do not need to tell you how concepts are simplified for younger students, instead of overwhelming them with the complete knowledge of a subject.

  • source
  • parent
  • hideshow 1 child comment
  • [–] -1 points 8 months ago

    Maths is so much more malleable and abstract than what you think it is

    No it isn't, as per Maths textbooks

    You really do not understand maths as well as you think you do

    says someone who doesn't understand it at all

    just to be told “nope! That’s just how it is!” with no further thinking at all

    Just as well I'm their teacher then, hey? 😂 I showed you the textbooks, and you refused to look at them

    A lot of maths is chosen

    Nope! Only the notation.

    So long as there not being contradictions or paradoxes, the formulation of a form of math is valid

    You mean so long as it obeys the laws of nature

    Which is why you have different forms of maths with different rules

    But we don't have different rules, only different notations. The rules of Maths are universal

    And you really could use some more humility

    says person who refuses to look in Maths textbooks

    it’s obnoxious when you act all so high and mighty and arrogant,

    says person who refuses to look in Maths textbooks

    with no interest in questioning your assumptions

    there aren't any. All the rules of Maths are explicitly spelt out in Maths textbooks, not to mention several of which are easy to prove.

    Devolving into ridiculing the person you’re discussing with

    Like the person who refuses to look in Maths textbooks

    told clearly “I chose this.”?

    No-one chose it. There are even several species of animals that know how to count! 😂 It's a universal law

    You are making your arguments effectively unfalsifiable by just going “Nuh uh” all the time

    Just as well I also provide the proof in the form of Maths textbooks. Oh wait, you keep refusing to look at them! 😂

    Get some humility

    says person who refuses to look in Maths textbooks

    learn a bit about the foundations of maths.

    says person who knows nothing about it. Makes up fanciful stories like it was "chosen" when nature proves otherwise

    See for yourself what actually is the foundation

    It's Arithmetic. Even some animals know how to do Arithmetic, none of them know how to do set theory! 😂

    And, spoiler, it’s not a high school textbook.

    That's right, it's a Primary school textbook 😂

    Hopefully I do not need to tell you how concepts are simplified for younger students

    And yet you still manage to not understand them 🙄

    instead of overwhelming them with the complete knowledge of a subject

    Welcome to why Algebra isn't taught until Year 7 😂

  • source
  • parent
  • [–] 1 point 9 months ago (2 children)

    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)

  • source
  • parent
  • hideshow 2 child comments
  • [–] 3 points 8 months ago

    Save yourself the trouble - Smartman Apps is a crank. They categorically will not comprehend the difference between the notation we made up and how numbers work. Dingus keeps saying 'animals can count' like that proves parentheses-first is completely different! from distribution.

    Why'd Russel and Whitehead bother with the Principia Mathematica when they could just point to Clever Hans?

  • source
  • parent
  • [–] -2 points 8 months ago

    this is just a writing standard that is globally agreed on

    No, it's a universal rule of Maths

    The writing rules are defined by humans not by natural force

    Maths is for describing natural forces, and is subject to those laws

    That one thing and another thing are two things, is a rule from nature

    Yep, there are even some animals who understand that, and all of Maths is based upon it.

  • source
  • parent
  • [–] -1 points 8 months ago

    Some people insist there’s no “correct” order for the basic arithmetic operations.

    And those people are wrong

    And worse, some people insist the correct order is parenthesis first, then left to right

    As per Maths textbooks

    Both of those sets of people are wrong

    All Maths textbooks are wrong?? 😂

  • source
  • parent