Glitch in the matrix

Toes♀@ani.social to 196@lemmy.blahaj.zone – 417 points –
573

watches the people with basic math skills fight to the death over the answer

If you really wanna see a bloodbath, watch this:

You know that a couple has two children. You go to the couple's house and one of their children, a young boy, opens the door. What is the probability that the couple's other child is a girl?

50%, since the coins are independent, right?

Oops, I changed it to a more unintuitive one right after you replied! In my original comment, I said "you flip two coins, and you only know that at least one of them landed on heads. What is the probability that both landed on heads?"

And... No! Conditional probability strikes again! When you flipped those coins, the four possible outcomes were TT, TH, HT, HH

When you found out that at least one coin landed on heads, all you did was rule out TT. Now the possibilities are HT, TH, and HH. There's actually only a 1/3 chance that both are heads! If I had specified that one particular coin landed on heads, then it would be 50%

No. It's still 50-50. Observing doesn't change probabilities (except maybe in quantum lol). This isn't like the Monty Hall where you make a choice.

The problem is that you stopped your probably tree too early. There is the chance that the first kid is a boy, the chance the second kid is a boy, AND the chance that the first kid answered the door. Here is the full tree, the gender of the first kid, the gender of the second and which child opened the door, last we see if your observation (boy at the door) excludes that scenario.

1 2 D E


B B 1 N

B G 1 N

G B 1 Y

G G 1 Y

B B 2 N

B G 2 Y

G B 2 N

G G 2 Y

You can see that of the scenarios that are not excluded there are two where the other child is a boy and two there the other child is a girl. 50-50. Observing doesn't affect probabilities of events because your have to include the odds that you observe what you observed.

I was about to reply to you with a comment that started with "oh shit you're right!" But as I wrote it I started rethinking and I'm not sure now.

Because I actually don't think it matters whether we're BB1 or BB2. They're both only one generation of the four possible initial states. Which child opens the door is determined after the determination of which child is which gender. Basically, given that they have two boys, we're guaranteed to see a boy, so you shouldn't count it twice.

Still, I'm now no where near as confident in my answer as I was a moment ago. I might actually go and write the code to perform the experiment as I outlined in an earlier comment (let me know if you think that methodology is flawed/biased, and how you think it should be changed) to see what happens.

That's a great idea let me know how it turns out. If you randomly pick the genders and randomly pick who opens the door, I think it will be 50-50. With these kinds of things they can get pretty tricky. Just because an explanation seems to make sense doesn't mean it's right so I'm curious!

I put it together. Here's the code I wrote in Python.

import random

genders = ['boy', 'girl']

def run():
    other_child_girls = 0
    for i in range(10000):
        other_child = get_other_child()
        if other_child == 'girl':
            other_child_girls += 1
    print(other_child_girls)

def get_other_child():
    children = random.choices(genders, k=2)
    first_child_index = random.randint(0, 1)
    first_child = children[first_child_index]
    if first_child == 'boy':
        other_child_index = (first_child_index + 1) % 2
        return children[other_child_index]
    # Recursively repeat this call until the child at the door is a boy
    # (i.e., discard any cases where the child at the door is a girl)
    return get_other_child()

if __name__ == '__main__':
    run()

And it turns out you were right. I ran it a few times and got answers ranging from 4942 to 5087, i.e., clustered around 50%.

That's cool. Always nice to see a practical example of theory. Thanks to you I got to brush up on my Python too! I think it all makes sense. Everything is random, you exclude examples where s girl comes to the door. The odds are 50-50. Looks like you were right in the end though, this DID stir quite a bit of conversation lol!

There've been a lot of times when I simply didn't believe something in statistics until I simulated it. Like this problem:

I have two children. One is a boy born on a Tuesday. What is the probability I have two boys?

I wanted to simulate that because the answer seems absurd. 13/27? Where does that even come from? I'm scared of snakes, so I use Baby's First Programming Language: Tasker.

  1. Variable randomize %sex Min:1 Max:2

  2. Variable randomize %day Min:1 Max:7

  3. Variable set %child1 "%sex%day"

  4. Variable randomize %sex Min:1 Max:2

  5. Variable randomize %day Min:1 Max:7

  6. Variable set %child2 "%sex%day"

  7. Goto 1 IF %child1 != 11 AND %child2 != 11

Now I've generated two random children, at least one of which is 11–a specific sex born on a specific day.

  1. Variable add %BoyGirl IF %child1 = 2* OR %child2 = 2*

  2. Variable add %BoyBoy IF %child1 = 1* AND %child2 = 1*

If either child is a girl, it adds one to the BG bucket. If neither one is a girl, it adds one to the BB bucket.

  1. Variable add %Counter

  2. Goto 1 IF %Counter > 1,000

Hit play and yep, about 48% of families were BB. But remove the Tuesday part and just simulate the question "I have two children, and at least one of them is a boy," and it drops down to 33% again. I don't understand it, but apparently the math maths.

the math maths

Ha. As someone from the "mathematics is shortened to maths" part of the world, this sounds weird to me. I'd probably say "the maths mathses". I just thought you might enjoy that.

Anyway, I Googled the problem you presented, and came across this excellent answer:

There are even trickier aspects to this question. For example, what is the strategy of the guy telling you about his family? If he always mentions a boy first and not a daughter, we get one probability; if he talks about the sex of the first born child, we get a different probability. Your calculation makes a choice in this issue - you choose the version of "if the father has a boy and a girl, he'll mention the boy".

What I'm aiming to is this: the question is not well-defined mathematically. It has several possible interpretations, and as such the "problem" here is indeed of the language; or more correctly, the fact that a simple statement in English does not convey enough information to specify the precise model for the problem.

The whole answer is worth reading, but that part there is the crux of it. It goes back to one of my earliest comments on this topic in this thread. The problem isn't that maths is weird, it's that language's ability to describe mathematical problems is lacking. There are so many different ways to translate the described problem into mathematical formulae and they necessarily carry assumptions. Even far more subtle assumptions than I at first thought.

I know this wasn’t the main point of your comment, but to be grammatically correct, it would be “the maths math.”

Plural verbs go with their plural noun subject and don’t need the s:

  • This book belongs on the shelf.
  • These books belong on the shelf.

And like you said, maths being short for mathematics means it’s plural.

And this interaction is why lemmy (and others) is superior. No “fuck you, you’re wrong” just “well I think it’s this” followed by “okay, let me try that” 10/10

Yes! They responded to my comment before the edit, where I gave the coin example: "I flipped two coins, at least one of them was heads. What is the probability that both of them are heads?"

Before I read their reply, I edited it to the more confusing and infuriating two kids example. It's annoying because it seems like it should be the same as saying "I have two children, and at least one is a boy. What is the probability that I have two boys?" In both the coin case and this one, the answer is 1/3, but when one child answers the door, it's like sliding one quarter out from behind my hand. Now you know a particular (child, coin)'s (sex, face), and the answer is 50% again.

1 more...

You assume that the probability of TH = HT = HH

When In fact, the probabilities are as follows:

P(HT)+P(TH) = 50% P(HH) = 50%

For all the probabilities being equal, you'd have to consider 4 cases:

HT, TH, HH (1) and HH (2).

The difference between HH (1) and HH (2) is which one you were told that was heads.

Then P(HH) = P(HH (1)) + P(HH (2)) = 2/4 = 50%

The issue is that you weren't told a particular one was heads, only that at least one was heads. If I flipped a nickel and a dime, then the four possibilities are NtDt, NtDh, NhDt, and NhDh. If I say that at least one of them is heads but don't tell you which one, then there are three possibilities: I flipped NhDt, NtDh, or NhDh. It's only when I tell you that the nickel landed on heads that it collapses to NhDt and NhDh.

Sorry if the acronyms are hard to read, they're much faster than typing something like "Heads (nickel) tails (dime)"

7 more...
7 more...

You’ve also ruled out TH by knowing one is heads. So the only possibilities are HT and HH. Is that not 50/50?

it depends on how you know this information. did you look at one of the coins? then it's 50/50. did you ask a friend to look and yell you whether at least one of them is heads? then it's 2/3.

At least one is heads, but unless you know which one it is, you haven't ruled out HT or TH

But you do know which one it is, because you said "other child". As soon as you ask the question, you assign a specific outcome to a specific child eliminating HH and HT (or in the new example, BB and BG). "What are the odds they have a female child" and "what are the odds the other child is female" are not the same question.

9 more...
9 more...

This is basically Monty Hall right? The other child is a girl with 2/3 probability, because the first one being a boy eliminates the case where both children are girls, leaving three total cases, in two of which the other child is a girl (BG, GB, BB).

Actually, it's a Monty Hall problem because a door is opened.

Unironically, yes. A door is opened, and the opening of that door reveals information about the problem and eliminates some possible world-states.

It doesn't, though. The Monty Hall problem utilizes the fact that there were more possibilities before one was eliminated AND that it cannot eliminate the "best" outcome. No such qualities are at play here.

The question being asked here is "what is the gender of the second child?" The gender of the first child is completely irrelevent. Observed or unobserved, door open or closed, it doesn't impact the outcome of the second child.

I suspect it's not the question OP intended to ask, but it's the question they asked nonetheless.

The Monty Hall problem utilizes the fact that there were more possibilities before one was eliminated

So does this problem. There was the GG possibility.

AND that it cannot eliminate the "best" outcome.

True, this problem doesn't have that element.

The question being asked here is "what is the gender of the second child?" The gender of the first child is completely irrelevent. Observed or unobserved, door open or closed, it doesn't impact the outcome of the second child.

I don't agree. First, I'd say your use of the term "second child" is ambiguous, because normally that would mean "the younger of two children", which obviously isn't what's meant here. What you mean to say here is "the child that we have not already seen". It's in that rephrasing that it becomes obvious that having observed the first child matters, because there cannot be a second until there has been a first. And it's in that observation that the outcome is altered.

If we haven't seen the first child and are asked "what will be the gender of the second child to walk through the door?" we would have to answer 50/50. But having seen one child, we eliminate one of four possibilities of gender pairs (BB, BG, GB, GG). This we are left with 3 equally possible cases, 2 of which will be the opposite of the gender of the child we saw first.

Of course, we could easily simulate this experiment to arrive at an empirical answer. Randomly generate 2 genders, randomly select one of those. If they're a girl, end the experiment and move to another iteration (because they didn't fit the parameters). If a boy, record the gender of the other child. Repeat a few dozen times and see how many times the second child was a girl.

Well, I guess OPs point is demonstrated. People will in fact argue about it.

What you're trying to present has multiple holes, but only one matters: you're not paying attention to the question that's being asked. You can say first, second, alpha, beta, Leslie, whatever you want to assign the child in question as, but the question only asks you the gender of a singular child. The door opening child doesn't matter, because it isn't part of the question. No one asked what gender that child is. No one asked what the odds they have a female child is. It just isn't a part of the question.

Yes, I referred to it as the second child because the question that was asked happens to have a child in it and ask you about another. Because we're communicating in a hilariously precise language, we have to say "the other child". But that doesn't make the door opening child a part of the equation. The question could be "there is a child in a box. What are the odds the child is female? Oh, it has a brother by the way." Cool, who cares, the sibling wasn't a part of the question.

The Monty Hall problem spreads multiple outcomes across multiple choices and then eliminates one. The outcomes and options have a relation. This question just asks you about a singular variable with two possible outcomes and throws around an unrelated red herring.

4 more...
4 more...
4 more...
4 more...

It's somewhat ambiguous!

On the one hand, you might be right. This could be akin to flipping two coins and saying that at least one is heads. You've only eliminated GG, so BG, GB, and BB are all possible, so there's only a 1/3 chance that both children are boys.

On the other hand, you could say this is akin to flipping two coins and saying that the one on the left (or the one who opened the door) is heads. In that case, you haven't just ruled out GG, you've ruled out GB. Conditional probability is witchcraft

I don't think the problem is conditional probability, it's translating word problems to maths problems.

If you make the assumptions I made, the maths is unambiguous. Namely, I assumed that a child has a 50/50 probability of being born a boy or a girl. I assumed the child who opens the door is random. I don't think I made any other assumptions that could have been made any other way. With those assumptions, I'm pretty confident my answer is the only correct one, though I'd love to see an argument otherwise.

If the probability of a child being a girl is different, say, 52%, that will affect the result.

More interestingly, if the probability of which child opens the door is different, that will affect the result. If there's a 100% chance the elder child opens the door, it goes to 50/50 of the gender of the second child. This makes it like the "coin on the left" example you gave.

If we said the elder child is going to open the door 75% of the time…well, the maths becomes more complicated than I can be bothered with right now. But it's an interesting scenario!

Assuming the chance of either sex is equal, this problem can be broken down into multiple cases. The first is that there are two unseen kids in the house. What's the probability they are both boys? 1/4. Now the door opens and you see two boys. The probability both are boys is 1/1. But if you only see one boy, the problem simplifies into the probability of a child being a boy. One of the probabilistic events postulated in the original problem is fixed at 1. So the answer is 1/2.

Think of it as the two coin flip, except one coin has two heads. That simplifies to a one coin flip.

No, because knowing the first child is a boy doesn't tell you any information about the second child.

Three doors, Girl Girl Boy

You select a door and Monty opens a door to show a Girl. You had higher odds of picking a girl door to start (2/3). So switching gives you better odds at changing to the door with the Boy because you probably picked a Girl door.

Here the child being a boy doesn't matter and the other child can be either.

It's 50/50 assuming genders are 50/50.

Well not really, right? BG and GB are the same scenario here, so it’s a 50/50 chance.

Even if, say, the eldest child always opened the door, it’d still be a 50/50 chance, as the eldest child being a boy eliminates the possibility of GB, leaving either BG or BB.

Ironically you've got the right answer, but (as you can see in some of the other conversation here) not necessarily for the right reason. It's not necessarily that BG and GB are the same, but that BB and BB are two different scenarios worthy of being counted separately.

3 more...
3 more...
9 more...

Cheeky bastard.

It is 50-50, though. The remaining possible states are BG and BB. Both are equally likely. Any further inference is narrative... not statistics.

The classic example of this is flipping 100 coins. If you get heads 99 times in a row... the last coin is still 50-50. Yes, it is obscenely unlikely to get heads 100 times in a row. But it's already obscenely unlikely to get heads 99 times in a row. And it is obscenely unlikely to alternate perfectly between heads and tails. And it is obscenely unlikely to get a binary pattern spelling out the alphabet. And it is obscenely unlikely to get... literally any pattern.

Every pattern is equally unlikely, with a fair coin. We see 99 heads in a row versus 1 tails at the end, and think it narrowly averted the least-probable outcome. But only because we lump together all sequences with exactly one tails. That's one hundred different patterns. 1-99 is not the same as 99-1. We just treat them the same because we fixate on uniformity.

Compare a non-binary choice: a ten-sided die. Thirty 1s in a row is about as unlikely as 100 heads in a row. But 1 1 1... 2 is the same as 1 1 1... 3. Getting the first 29 is pretty damn unlikely. One chance in a hundred million trillion. But the final die can land on any number 1-10. Nine of them upset the pattern our ape brains want. Wanting it doesn't make it any more likely. Or any less likely.

It would be identically unlikely for a 10-sided die to count from 1 to 10, three times in a row. All the faces appear equally. But swap any two events and suddenly it doesn't count. No pun intended.

If this couple had eight children, for some god-forsaken reason, and you saw seven boys, the eighth kid being another boy is not less likely for it. The possibility space has already been reduced to two possibilities out of... well nine, I suppose, if order doesn't matter. They could have 0-8 boys. They have at least 7. The only field that says the last kid's not a coin toss is genetics, and they say this guy's chromosome game is strong.

You're right, but it's not a subversion of the Gambler's Fallacy, it's a subversion of conditional probability. A classic example is that I have two kids, and at least one of them is a boy. What is the probability that I have two boys?

The intuitive answer is 50%, because one kid's sex doesn't affect the other. But when I told you that I have two kids, there were four possibilities: GG, GB, BG, or BB. When I told you that at least one of them is a boy, all I did was take away the GG option. That means there's only a 1 in 3 chance that I have two boys.

But by having one child answer the door, I change it yet again–now we know the sex of a particular child. We know that the child who opened the door is a boy. This is now akin to saying "I have two children, and the eldest is a boy. What is the possibility that I have two boys?" It's a sneaky nerd snipe, because it targets specifically people who know enough about statistics to know what conditional probability is. It's also a dangerous nerd snipe, because it's entirely possible that my reasoning is wrong!

And don't forget that there's always a slim chance that no matter the gender, the other child is GOAT.

Two more for funsies! I flipped two coins. At least one of them landed on heads. What is the probability that both landed on heads? (Note: this is what my comment originally said before I edited it)

I have two children. At least one of them is a boy born on a Tuesday. What is the probability that I have two boys?

20 more...
20 more...

Different compilers have robbed me of all trust in order-of-operations. If there's any possibility of ambiguity - it's going in parentheses. If something's fucky and I can't tell where, well, better parenthesize my equations, just in case.

This is best practice since there is no standard order of operations across languages. It's an easy place for bugs to sneak in, and it takes a non-insignificant amount of time to debug.

This is the way. It's an intentionally ambiguously written problem to cause this issue depending on how and where you learned order of operations to cause a fight.

5 more...
18 more...

There's quite a few calculators that get this wrong. In college, I found out that Casio calculators do things the right way, are affordable, and readily available. I stuck with it through the rest of my classes.

Casio does a wonderful job, and it's a shame they aren't more standard in American schooling. Texas Instruments costs more of the same jobs, and is mandatory for certain systems or tests. You need to pay like $40 for a calculator that hasn't changed much if at all from the 1990's.

Meanwhile I have a Casio fx-115ES Plus and it does everything that one did, plus some nice quality of life features, for less money.

TI did the same thing Quark and Adobe did later on – got dominance in their markets, killed off their competition, and then sat back and rested on their laurels thinking they were untouchable

EDIT: although in part, we should thank TI for one thing – if they hadn’t monopolized the calculator market, Commodore would’ve gone into calculators instead of computers

3 more...

If you're lucky, you can find these TI calculators in thrift shops or other similar places. I've been lucky since I got both of my last 2 graphing calculators at a yard sale and thrift shop respectively, for maybe around $40-$50 for both.

The TI equivalent to the Casio fx-115ES Plus is the TI-36X Pro, and they both cost $20 at Walmart.

3 more...

My Casio calculators get this wrong, even the newer ones. BTW the correct answer is 16, right?

  • 16 is the right answer if you use PEMDAS only: (8 ÷ 2) × (2 + 2)
  • 1 is the right answer if you use implicit/explicit with PEMDAS: 8 ÷ (2 × (2 + 2))
  • both are correct answers (as in if you don’t put in extra parentheses to reduce ambiguity, you should expect expect either answer)
  • this is also one of the reasons why postfix and prefix notations have an advantage over infix notation
    • postfix (HP, RPN, Forth): 2 2 + 8 2 ÷ × .
    • prefix (Lisp): (× (÷ 8 2) (+ 2 2))

prefix notation doesn't need parentheses either though, at least in this case. lisp uses them for readability and to get multiple arity operators. infix doesn't have any ambiguity either if you parenthesize all operations like that.

4 more...

Yes

8 / 2 (2+2)

8 / 2 (4)

4 (4)

16

No

8 / 2 (2+2)

8 / 2 (4)

8 / 8

1

No. Order of operations is left to right, not right to left. 1 is wrong.

Pemdas.

Multiplication comes before division.

1 is the correct answer.

That's wrong. Multiplication and division have equal precedence, same as addition and subtraction. You do them left to right. PEMDAS could be rewritten like PE(MD)(AS). After parentheses and exponents, it"s Multiplication and division together, then addition and subtraction together. They also teach BODMAS some places, which is "brackets, order, division and multiplication, addition and subtraction" Despite reversing the division and multiplication, it doesn't change the order of operations. They have the same priority, so they are just done left to right. PEMDAS and BODMAS are the different shorthand for the same order of operations.

They were right but for the wrong reason. Implied multiplication–that is, a(b) or ab–often comes before explicit multiplication and division. Apparently it's up to the person writing the equation, so the meme is intentionally and explicitly ambiguous

They're still wrong, in my humble opinion. I'm aware of this notion, and I've even had people share a snip from some book that states this as fact. However, this is not standardized and without the convention being widely understood and recognized as the standard in the world of mathematics (which generally doesn't use the symbol (÷) at all at post-algebra levels), there is no reason to treat it as such just because a few people assert it is should be.

It doesn't make sense at all to me that implied multiplication would be treated any differently, let alone at a higher priority, than explicit multiplication. They're both the same operation, just with different notations, the former of which we use as shorthand.

There are obviously examples that show the use of the division symbol without parentheses sometimes leads to misunderstandings like this. It's why that symbol is not used by real mathematicians at all. It is just abundantly more clear what you're saying if you use the fraction bar notation (the line with numerator on top and denominator on bottom). But the rules as actually written, when followed, only reach one conclusion for this problem and others like it. x÷y(z) is the SAME as x÷y*z. There's no mathematical or logical reason to treat it differently. If you meant for the implicit multiplication to have priority it should be in parentheses, x÷(y(z)), or written with the fraction bar notation.

Implicit multiplication being before regular multiplication/division is so we can write 2y/3x instead of (2y)/(3x). Without priority, 2y/3x becomes (2y÷3)•x.

Coefficients are widely used enough that mathematicians don't want to write parentheses around every single one. So implicit multiplication gets priority.

I think one could argue a coefficient on an unknown variable, like 2y, should take higher priority simply because it cannot be any further resolved or simplified. That is not the case with, say, 2(3+1). Although that does still leave you with potential ambiguity with division/multiplication, such has 1/7y. Is the coefficient 7, or is it 1/7? i.e. Is that 1/(7y)? Or (1/7)y? Either way, if that's not the the standard understood by everyone, then it is a non-standard, inconsistent rule. And as demonstrated, if you do use that rule, it needs to be more clearly defined. That is the source of this "ambiguity". If you don't include it, the order of operations rules, as written, are clear.

5 more...
5 more...
6 more...
7 more...
7 more...

There's an argument to be made that implicit multiplication comes before division, resulting in the answer 1, but all multiplication? That's wrong, full-stop. You calculate (explicit) multiplication and division in one step, left to right. Reason being that division is technically just multiplying by the reciprocal.

1 more...
10 more...
11 more...

a(b) is a×b. Step 2 could be rewritten as 8 / 2 × 4. Working left to right, step 3 becomes 4 × 4.

No, because implicit multiplication binds more tightly than explicit. a/b(c) becomes a/(b×(c))

Says who?

Most maths textbooks written by mathematicians.

I don't mean when they're explaining "here's how the order of operations works". I mean in the basic way that they write more advanced problems and the answers they give for them.

This video, and the prequel to it linked in the description, go into some detail showing who uses what convention and why.

Interestingly I’ve wondered if this is regional, as a fellow Aussie I learned the same as you but it seems in other places they learn the other way

FWIW I went to school in Asia, using an internationally-focused curriculum, rather than going through the Australian curriculum here in Aus.

The video I linked includes some discussion with a calculator manufacturer who apparently is under the impression that teachers in North America are asking for strict BIDMAS, so the calculator manufacturer actually switched their calculators to doing that. Until they then got blowback from the rest of the world's teachers, so they switched back to BIDMAS with juxtaposition being prioritised over division. The video also presents the case that outside of teachers—among actual maths and physics academics—prioritising juxtaposition is always preferred, even in North America.

1 more...
3 more...
5 more...

That's exactly where the calculators in the op differ. For more examples, Casio calculators do implicit multiplication first, while ti's treat it the same as explicit multiplication and division. I think that the latter is more predictable personally, but really you just need to know your calculator.

1 more...
7 more...
8 more...
20 more...
38 more...
45 more...
48 more...

In some countries we're taught to treat implicit multiplications as a block, as if it was surrounded by parenthesis. Not sure what exactly this convention is called, but afaic this shit was never ambiguous here. It is a convention thing, there is no right or wrong as the convention needs to be given first. It is like arguing the spelling of color vs colour.

This is exactly right. It's not a law of maths in the way that 1+1=2 is a law. It's a convention of notation.

The vast majority of the time, mathematicians use implicit multiplication (aka multiplication indicated by juxtaposition) at a higher priority than division. This makes sense when you consider something like 1/2x. It's an extremely common thing to want to write, and it would be a pain in the arse to have to write brackets there every single time. So 1/2x is universally interpreted as 1/(2x), and not (1/2)x, which would be x/2.

The same logic is what's used here when people arrive at an answer of 1.

If you were to survey a bunch of mathematicians—and I mean people doing academic research in maths, not primary school teachers—you would find the vast majority of them would get to 1. However, you would first have to give a way to do that survey such that they don't realise the reason they're being surveyed, because if they realise it's over a question like this they'll probably end up saying "it's deliberately ambiguous in an attempt to start arguments".

The real answer is that anyone who deals with math a lot would never write it this way, but use fractions instead

So are you suggesting that Richard Feynman didn't "deal with maths a lot", then? Because there definitely exist examples where he worked within the limitations of the medium he was writing in (namely: writing in places where using bar fractions was not an option) and used juxtaposition for multiplication bound more tightly than division.

Here's another example, from an advanced mathematics textbook:

Both show the use of juxtaposition taking precedence over division.

I should note that these screenshots are both taken from this video where you can see them with greater context and discussion on the subject.

Mind you, Feynmann clearly states this is a fraction, and denotes it with "/" likely to make sure you treat it as a fraction.

Yep with pen and paper you always write fractions as actual fractions to not confuse yourself, never a division in sight, while with papers you have a page limit to observe. Length of the bars disambiguates precedence which is important because division is not associative; a/(b/c) /= (a/b)/c. "calculate from left to right" type of rules are awkward because they prevent you from arranging stuff freely for readability. None of what he writes there has more than one division in it, chances are that if you see two divisions anywhere in his work he's using fractional notation.

Multiplication by juxtaposition not binding tightest is something I have only ever heard from Americans citing strange abbreviations as if they were mathematical laws. We were never taught any such procedural stuff in school: If you understand the underlying laws you know what you can do with an expression and what not, it's the difference between teaching calculation and teaching algebra.

13 more...
14 more...
15 more...

The real answer is that anyone who deals with math a lot would never write it this way

Yes, they would - it's the standard way to write a factorised term.

but use fractions instead

Fractions and division aren't the same thing.

Fractions and division aren't the same thing.

Are you for real? A fraction is a shorthand for division with stronger (and therefore less ambiguous) order of operations

Are you for real?

Yes, I'm a Maths teacher.

A fraction is a shorthand for division with stronger (and therefore less ambiguous) order of operations

I added emphasis to where you nearly had it.

½ is a single term. 1÷2 is 2 terms. Terms are separated by operators (division in this case) and joined by grouping symbols (fraction bars, brackets).

1÷½=2

1÷1÷2=½ (must be done left to right)

Thus 1÷2 and ½ aren't the same thing (they are equal in simple cases, but not the same thing), but ½ and (1÷2) are the same thing.

15 more...

So 1/2x is universally interpreted as 1/(2x), and not (1/2)x, which would be x/2.

Sorry but both my phone calculator and TI-84 calculate 1/2X to be the same thing as X/2. It's simply evaluating the equation left to right since multiplication and division have equal priorities.

X = 5

Y = 1/2X => (1/2) * X => X/2

Y = 2.5

If you want to see Y = 0.1 you must explicitly add parentheses around the 2X.

Before this thread I have never heard of implicit operations having higher priority than explicit operations, which honestly sounds like 100% bogus anyway.

You are saying that an implied operation has higher priority than one which I am defining as part of the equation with an operator? Bogus. I don't buy it. Seriously when was this decided?

I am no mathematics expert, but I have taken up to calc 2 and differential equations and never heard this "rule" before.

I can say that this is a common thing in engineering. Pretty much everyone I know would treat 1/2x as 1/(2x).

Which does make it a pain when punched into calculators to remember the way we write it is not necessarily the right way to enter it. So when put into matlab or calculators or what have you the number of brackets can become ridiculous.

I'm an engineer. Writing by hand I would always use a fraction. If I had to write this in an email or something (quickly and informally) either the context would have to be there for someone to know which one I meant or I would use brackets. I certainly wouldn't just wrote 1/2x and expect you to know which one I meant with no additional context or brackets

1 more...
1 more...
2 more...

It’s not a law of maths in the way that 1+1=2 is a law

Yes it is, literally! The Distributive Law, and Terms. Also 1+1=2 isn't a Law, but a definition.

So 1/2x is universally interpreted as 1/(2x)

Correct, Terms - ab=(axb).

people doing academic research in maths, not primary school teachers

Don't ask either - this is actually taught in Year 7.

if they realise it’s over a question like this they’ll probably end up saying “it’s deliberately ambiguous in an attempt to start arguments”

The university people, who've forgotten the rules of Maths, certainly say that, but I doubt Primary School teachers would say that - they teach the first stage of order of operations, without coefficients, then high school teachers teach how to do brackets with coefficients (The Distributive Law).

17 more...

BDMAS bracket - divide - multiply - add - subtract

BEDMAS: Bracket - Exponent - Divide - Multiply - Add - Subtract

PEMDAS: Parenthesis - Exponent - Multiply - Divide - Add - Subtract

Firstly, don't forget exponents come before multiply/divide. More importantly, neither defines wether implied multiplication is a multiply/divide operation or a bracketed operation.

9 more...

afair, multiplication was always before division, also as addition was before subtraction

It's BE(D=M)(A=S). Different places have slightly different acronyms - B for bracket vs P for parenthesis, for example.

But multiplication and division are whichever comes first right to left in the expression, and likewise with subtraction.

Although implicit multiplication is often treated as binding tighter than explicit. 1/2x is usually interpreted as 1/(2x), not (1/2)x.

15 more...

Multiplication VS division doesn't matter just like order of addition and subtraction doesn't matter.. You can do either and get same results.

Edit : the order matters as proven below, hence is important

If you do only multiplication first, then 2×3÷3×2 = 6÷6 = 1.

If you do mixed division and multiplication left to right, then 2×3÷3×2 = 6÷3×2 = 2×2 = 4.

Edit: changed whitespace for clarity

4 would be correct since you go left to right.

I was taught that division is just inverse multiplication, and to be treated as such when it came to the order of operations (i.e. they are treated as the same type of operation). Ditto with addition and subtraction.

15 more...
24 more...

I think when a number or variable is adjacent a bracket or parenthesis then it's distribution to the terms within should always take place before any other multiplication or division outside of it. I think there is a clear right answer and it's 1.

No there is no clear right answer because it is ambiguous. You would never seen it written that way.

Does it mean A÷[(B)(C)] or A÷B*C

It means

A ÷ B(C) which is equivalent to A ÷ (B*C)

I literally just explained this. The Parenthesis takes priority over multiplication and division outright.

Maybe
B*C = B(C)
But
A ÷ B(C) =! A ÷ B * C

No. It's ambiguous. In a math book or written by anyone that actually uses math, you don't have a "%"

You group stuff below the line, and you use parens and brackets to group things like (a + b) and (x)(y) so that it is not ambiguous.

2/xy would be almost always interpreted differently than 2/x(x+y) which is ambiguous and could mean (2/x)(x+y) or 2/[(x)(x+y)]

1 more...
1 more...
2 more...
2 more...
44 more...

Please Excuse My Dear Aunt Sally, she downloaded a shitty ad-infested calculator from the Google Play store.

Unfortunately, it's the best calculator I could find so far (for my own needs). I paid to remove the ads though, ads bother me way too much to use something infested with them.

1 more...
1 more...

[...] the question is ambiguous. There is no right or wrong if there are different conflicting rules. The only ones who claim that there is one rule are the ones which are wrong!

https://people.math.harvard.edu/\~knill/pedagogy/ambiguity/index.html

As youngsters, math students are drilled in a particular
convention for the "order of operations," which dictates the order thus:
parentheses, exponents, multiplication and division (to be treated
on equal footing, with ties broken by working from left to right), and
addition and subtraction (likewise of equal priority, with ties similarly
broken). Strict adherence to this elementary PEMDAS convention, I argued,
leads to only one answer: 16.

Nonetheless, many readers (including my editor), equally adherent to what
they regarded as the standard order of operations, strenuously insisted
the right answer was 1. What was going on? After reading through the
many comments on the article, I realized most of these respondents were
using a different (and more sophisticated) convention than the elementary
PEMDAS convention I had described in the article.

In this more sophisticated convention, which is often used in
algebra, implicit multiplication is given higher priority than explicit
multiplication or explicit division, in which those operations are written
explicitly with symbols like x * / or ÷. Under this more sophisticated
convention, the implicit multiplication in 2(2 + 2) is given higher
priority than the explicit division in 8÷2(2 + 2). In other words,
2(2+2) should be evaluated first. Doing so yields 8÷2(2 + 2) = 8÷8 = 1.
By the same rule, many commenters argued that the expression 8 ÷ 2(4)
was not synonymous with 8÷2x4, because the parentheses demanded immediate
resolution, thus giving 8÷8 = 1 again.

This convention is very reasonable, and I agree that the answer is 1
if we adhere to it. But it is not universally adopted.

Everyone in this threading referencing PEMDAS and still thinking the answer is 1 are completely ignoring the part of the convention is left to right. Only way to get 1 is to violate left to right on multiplication and division.

The problem is that BIDMAS and its variants are lies-to-children. Real mathematicians don't use BIDMAS. Multiplication by juxtaposition is extremely common, and always takes priority over division.

Nobody in their right minds would saw 1/2x is the same as (1/2)x. It's 1/(2x).

That's how you get 1. By following conventions used by mathematicians at any level higher than primary school education.

The problem is the /. Usually you'd use a fraction bar, which groups it and makes it unambiguous

There are plenty of contexts where writing in a single flat line is necessary, so it's still useful to address the issue.

Just using more brackets is always a solution, but it can become messy and hard to read if you take it to the extreme (there's a Minute Physics video where he does this and it unintentionally shows you just how bad it is), so it eventually becomes a matter of agreeing on convention and using brackets judicially where there's actual ambiguity.

1 more...

I only minored in math but I definitely see (1/2)x. That's how I always entered polynomials into my ti-83 plus

Edit for clarity: I'd enter "1/2x", as in 0.5x. Casio people have to use parenthesis or explicit multiplication though

7 more...
8 more...
13 more...

I'm with the right answer here. / and * have same precedence and if you wanted to treat 2(2+2) as a single unit, you should have written it like (2*(2+2)).

It's pretty common even in academic literature to treat implied multiplication as having higher precedence than explicit multiplication/division. Otherwise an expression like 1 / 2n would have to be interpreted as (1 / 2) * n rather than the more natural 1 / (2 * n).

A lot of this bullshit can be avoided with better notation systems, but calculators tend to be limited in what you can write, so meh. Unless you want to mislead people for the memes, just put parentheses around things.

That's fair. Personally, I just have a grudge against math notation in general. Makes my programmer brain hurt when there's no consistency and a lot of implicit rules.

Then again, I also like Lisp so I'm not exactly without sin.

As a musician, can I just say: I would give my right nut for a musical notation system that is as clearly defined as mathematical notation. The worst part is that everyone that attempts to fix musical notation, just creates a new standard of notation.

https://m.youtube.com/watch?v=Eq3bUFgEcb4

I know what video you linked even without clicking lol. Yeah, I can agree there. Although my only experience with music was "try to learn guitar, get distracted because ADHD".

The rocksmith game might help you.

Even guitarhero/rockband will help you with using your fingers and will help when you want to try a real guitar. Muscle memory might not be great but for someone who is just doing it for fun it will be helpful getting your fretting and strumming coordination. And them being games might help fend off the adhd enough to keep you motivated to pick it up again after putting it down

1 more...
3 more...
3 more...
4 more...

The problem is whether or not that rule is taught depends on when and where you learned it. Schools only started teaching that rule relatively recently, and even then, not universally. Which of course makes for ideal engagement bait on your hellsite of choice.

3 more...
8 more...
9 more...

People keep debating over this stuff. I have a simpler solution. Math is not real.

The only real answer lmao. People really out here thinking the funny symbols on the paper follow absolute laws. Crazy.

1 more...

My mom's a mathematician, she got annoyed when I said that the order of operations is just arbitrary rules made up by people a couple thousand years ago

It's organized so that more powerful operations get precedence, which seems natural.

Set aside intentionally confusing expressions. The basic idea of the Order of Operations holds water even without ever formally learning the rules.

If an addition result comes first and gets exponentiated, the changes from the addition are exaggerated. It makes addition more powerful than it should be. The big stuff should happen first, then the more granular operations. Of course, there are specific cases where we need to reorder, or add clarity, which is why human decisions about groupings are at the top.

14 more...
19 more...

I'm with you. Has anyone ever actually seen a math? Can you buy a math at the math store? Are there bespoke math craftspeople?

No.

I rest my case.

5 more...
25 more...

this is why I never use ÷ (or more realistically "/") without explicit brackets denoting order of operations.

Yeah, if there's any ambiguity, you probably should have written it in a different way.

this comment section illustrates perfectly why i hate maths so much lmao

love ambiguous, confusing rules nobody can even agree on!

The problem isn't math, it's the people that suck at at it who write ambigous terms like this, and all the people in the comments who weren't educated properly on what conventions are.

Yeah, you could easily make this more straightforward by putting parentheses around 8÷2. It's like saying literature sucks because Finnegans Wake is incomprehensible.

1 more...

Huge shout out to the jaded AF high school math teachers that don't give a fuck any more!

1 more...
3 more...

lol, math is literally the only subject that has rules set in stone. This example is specifically made to cause confusion. Division has the same priority as multiplication. You go from left to right. problem here is the fact that you see divison in fraction form way more commonly. A fraction could be writen up as (x)/(y) not x/y (assuming x and y are multiple steps). Plain and simple.

The fact that some calculator get it wrong means that the calculator is wrongly configured. The fact that some people argue that you do () first and then do what's outside it means that said people are dumb.

They managed to get me once too, by everyone spreading missinformation so confidently. Don't even trust me, look up the facts for yourself. And realise that your comment is just as incorrect as everyone who said the answer is 1. (uhm well they don't agree on 0^0, but that's kind of a paradox)

If we had 1/2x, would you interpret that as 0.5x, or 1/(2x)?

Because I can guarantee you almost any mathematician or physicist would assume the latter. But the argument you're making here is that it should be 0.5x.

It's called implicit multiplication or "multiplication indicated by juxtaposition", and it binds more tightly than explicit multiplication or division. The American Mathematical Society and American Physical Society both agree on this.

BIDMAS, or rather the idea that BIDMAS is the be-all end-all of order of operations, is what's known as a "lie-to-children". It's an oversimplification that's useful at a certain level of understanding, but becomes wrong as you get more advanced. It's like how your year 5 teacher might have said "you can't take the square root of a negative number".

An actual mathematician or physicist would probably ask you to clarify because they don't typically write division inline like that.

That said, Wolfram-Alpha interprets "1/2x" as 0.5x. But if you want to argue that Wolfram-Alpha's equation parser is wrong go ahead.

https://www.wolframalpha.com/input?i=1%2F2x

I will happily point out that Wolfram Alpha does this wrong. So do TI calculators, but not Casio or Sharp.

Go to any mathematics professor and give them a problem that includes 1/2x and ask them to solve it. Don't make it clear that merely asking "how do you parse 1/2x?" is your intent, because in all likelihood they'll just tell you it's ambiguous and be done with it. But if it's written as part of a problem and they don't notice your true intent, you can guarantee they will take it as 1/(2x).

Famed physicist Richard Feynman uses this convention in his work.

In fact, even around the time that BIDMAS was being standardised, the writing being done doing that standardisation would frequently use juxtaposition at a higher priority than division, without ever actually telling the reader that's what they were doing. It indicates that at the time, they perhaps thought it so obvious that juxtaposition should be performed first that it didn't even need to be explained (or didn't even occur to them that they could explain it).

According to Casio, they do juxtaposition first because that's what most teachers around the world want. There was a period where their calculators didn't do juxtaposition first, something they changed to because North American teachers were telling them they should, but the outcry front the rest of the world was enough for them to change it back. And regardless of what teachers are doing, even in America, professors of mathematics are doing juxtaposition first.

I think this problem may ultimately stem from the very strict rote learning approach used by the American education system, where developing a deeper understanding of what's going on seems to be discouraged in favour of memorising facts like "BIDMAS".

To be clear, I'm not saying 1/2x being 1/(2x) rather than 0.5x is wrong. But it's not right either. I'm just pretty firmly in the "inline formulae are ambiguous" camp. Whichever rule you pick, try to apply it consistently, but use some other notation or parenthesis when you want to be clearly understood.

The very fact that this conversation even happens is proof enough that the ambiguity exists. You can be prescriptive about which rules are the correct ones all you like, but that's not going to stop people from misunderstanding. If your goal is to communicate clearly, then you use a more explicit notation.

Even Wolfram Alpha makes a point of restating your input to show how it's being interpreted, and renders "1/2x" as something more like

1
- x
2

to make very clear what it's doing.

Even Wolfram Alpha makes a point of restating your input to show how it’s being interpreted

This is definitely the best thing to do. It's what Casio calculators do, according to those videos I linked.

My main point is that even though there is theoretically an ambiguity there, the way it would be interpreted in the real world, by mathematicians working by hand (when presented in a way that people aren't specifically on the lookout for a "trick") would be overwhelmingly in favour of juxtaposition being evaluated before division. Maybe I'm wrong, but the examples given in those videos certainly seem to point towards the idea that people performing maths at a high level don't even think twice about it.

And while there is a theoretical ambiguity, I think any tool which is operating counter to how actual mathematicians would interpret a problem is doing the wrong thing. Sort of like a dictionary which decides to take an opinionated stance and say "people are using the word wrong, so we won't include that definition". Linguists would tell you the job of a dictionary should be to describe how the word is used, not rigidly stick to some theoretical ideal. I think calculators and tools like Wolfram Alpha should do the same with maths.

Linguists would tell you the job of a dictionary should be to describe how the word is used, not rigidly stick to some theoretical ideal. I think calculators and tools like Wolfram Alpha should do the same with maths.

You're literally arguing that what you consider the ideal should be rigidly adhered to, though.

"How mathematicians do it is correct" is a fine enough sentiment, but conveniently ignores that mathematicians do, in fact, work at WolframAlpha, and many other places that likely do it "wrong".

The examples in the video showing inline formulae that use implicit priority have two things in common that make their usage unambiguous.
First, they all are either restating, or are derived from, formulae earlier in the page that are notated unambiguously, meaning that in context there is a single correct interpretation of any ambiguity.

Second, being a published paper it has to adhere to the style guide of whatever body its published under, and as pointed out in that video, the American Mathematical Society's style guide specifies implicit priority, making it unambiguous in any of their published works. The author's preference is irrelevant.

Also, if it's universally correct and there was no ambiguity in its use among mathematicians, why specify it in the style guide at all?

Mathematicians know wolfram is wrong and it was warned in my maths degree that you should "over bracket" in WA to make yourself understood. They tried hard to make it look like handwritten notation because reading maths from a word processor is typically tough and that creates the odd edge case like this.

1/2x does not equal 0.5x or it'd be written x/2 and I challenge you to find a mathematician who would argue differently. There's no ambiguity and claiming there is because anyone anywhere is having this debate is like claiming the world isn't definitely round because some people argue its flat.

Sometimes people are wrong.

1 more...
1 more...
1 more...
1 more...
2 more...
6 more...
6 more...

math is literally the only subject that has rules set in stone

go past past high school and this isn't remotely true

there are areas of study where 1+1=1

In modular arithmetic you can make 1+1=0 but I'm struggling to think of a situation where 1+1=1 without redefining the + and = functions.

Not saying you're wrong, but do you have an example? I'd be interested to see

2 more...

Off topic, but the rules of math are not set in stone. We didn't start with ZFC, some people reject the C entirely, then there is intuitionistic logic which I used to laugh at until I learned about proof assistants and type theory. And then there are people who claim we should treat the natural numbers as a finite set, because things we can't compute don't matter anyways.

On topic: Parsing notation is not a math problem and if your notation is ambiguous or unclear to your audience try to fix it.

1 more...
18 more...

This is more language/writing style than math. The math is consistent, what’s inconsistent is there are different ways to express math, some of which, quite frankly, are just worse at communicating the mathematical expression clearly than others.

Personally, since doing college math classes, I don’t think I’d ever willingly write an expression like that exactly because it causes confusion. Not the biggest issue for a simple problem, much bigger issue if you’re solving something bigger and need combine a lot of expressions. Just use parentheses and implicit multiplication and division. It’s a lot clearer and easier to work with.

5 more...

It doesn’t have to be confusing. This particular formula is presented in a confusing way. Written differently, the ambiguity is easily resolved.

1 more...

PEMDAS

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

The rule is much older than me and they taught it in school. Nothing ambiguous about it, homie. The phone app is fucked up. Calculator nailed it.

Left to right. If you’re following ALL of the rules of PEMDAS then the answer is 16

8 more...

The comment from subignition explains that the phone's answer, 16, is what you get by strictly following PEMDAS: the rule is that multiplication and division have the same precedence, and you evaluate them from left-to-right.

The calculator uses a different convention where either multiplication has higher priority than division, or where "implicit" multiplication has higher priority (where there is no multiply sign between adjacent expressions).

4 more...

i know about pemdas and also my brother in christ half the people in the comments are saying the phone app is right lmao

edit: my first answer was 16

12 more...
40 more...

People in this thread need to watch this: https://youtu.be/lLCDca6dYpA

10 more...

The problem is that there's no "external" parentheses to really tell us which is right: (8 / 2) * 4 or 8 / (2 * 4)

The amount of comments here shows how much debate this "simple" thing generates

When there are no parentheses, you process left to right on the same tier of operations. That's how it's always been processed.

Afaik the order of operations doesn't have distributive property in it. It would instead simply become multiplication and would go left to right and would therefore be 16.

1 more...

If you agree that parenthesis go first then the equation becomes 8/2x4. Then it's simply left to right because multiplication does not take precedence over division. What's the nuanced talk? That M comes before D in PEMDAS?

3 more...
5 more...

For anyone like me who has math as their worst subject: PEMDAS.

PEMDAS is an acronym used to mention the order of operations to be followed while solving expressions having multiple operations. PEMDAS stands for P- Parentheses, E- Exponents, M- Multiplication, D- Division, A- Addition, and S- Subtraction.

So we gotta do it in the proper order. And remember, if the number is written like 2(3) then its multiplication, as if it was written 2 x 3 or 2 * 3.

So we read 8/2(2+2) and need to do the following;

  • Read the Parentheses of (2 + 2) and follow the order of operations within them, which gets us 4.
  • Then we do 2(4) which is the same as 2 x 4 which is 8
  • 8 / 8 is 1.

The answer is 1. The old calculator is correct, the phone app which has ads backed into it for a thing that all computers were invented to do is inaccurate.

Well that's just wrong... Multiplication and division have equal priorities so they are done from left to right. So: 8 / 2 * (2 + 2)=8 / 2 * 4=4 * 4=16

Implicit multiplication takes priority over explicit multiplication or division. 2(2+2) is not the same thing as 2*(2+2).

Correct! 2(2+2) is a single term - subject to The Distributive Law - and 2x(2+2) is 2 terms. Those who added a multiply sign there have effectively flipped the (2+2) from being in the denominator to being in the numerator, hence the wrong answer.

But it's not called "implicit multiplication" - it's Terms and/or The Distributive Law which applies (and they're 2 separate rules, so you cannot lump them together as a single rule).

Not quite, pemdas can go either from the left or right (as long as you are consistent) and division is the same priority as multiplication because dividing by something is equal to multiplying by the inverse of that thing... same as subtraction being just addition but you flip the sign.

8×1/2=8/2 1-1=1+(-1)

The result is 16 if you rewrite the problem with this in mind: 8÷2(2+2)=8×(1/2)×(2+2)

I've never had anyone tell me operations with the same priority can be done either way, it's always been left to right.

I've always heard it that way too but I think it is for consistency with students, imo Logically, if you are looking at division = multiplying by inverse and subtraction = adding the negative, you should be able to do it both ways. Addition and multiplication are both associative, so we can do 1+2+3 = (1+2)+3 = 1+(2+3) and get the same answer.

3 more...

I’ve never had anyone tell me operations with the same priority can be done either way, it’s always been left to right

It's left to right within each operator. You can do multiplication first and division next, or the other way around, as long as you do each operator left to right. Having said that, you also can do the whole group of equal precedence operators left to right - because you're still preserving left to right for each of the two operators - so you can do multiplication and division left to right at the same time, because they have equal precedence.

Having said that, it's an actual rule for division, but optional for the rest. The actual rule is you have to preserve left-associativity - i.e. a number is associated with the sign to the left of it - and going left to right is an easy way to do that.

3 more...

8÷2(2+2)=8×(1/2)×(2+2)

No, that's wrong. 2(2+2) is a single term, and thus entirely in the denominator. When you separated the coefficient you flipped the (2+2) into the numerator, hence the wrong answer. You must never add multiplication signs where there are none.

3 more...
4 more...

Uh.. no the 1 is wrong? Division and multiplication have the same precedence, so the correct order is to evaluate from left to right, resulting in 16.

The real correct order is to use brackets to remove ambiguity.

Exactly, these types of problems are designed to make people confused and discuss PEMDAS and drive social media engagement.

1 more...

The problem with this is that the division symbol is not an accurate representation of the intended meaning. Division is usually written in fractions which has an implied set of parenthesis, and is the same priority as multiplication. This is because dividing by a number is the same as multiplying by the inverse, same as subtracting is adding the negative of a number.

8/2(2+2) could be rewritten as 8×1/2×(2+2) or (8×(2+2))/2 which both resolve into 16.

You left out the way it can be rewritten which most mathematicians would actually use, which is 8/(2(2+2)), which resolves to 1.

1 more...

P E M D A S

vs

P E M/D A/S

The latter is correct, Multiplication/Division, and Addition/Subtraction each evaluate left to right (when not made unambiguous by Parentheses). I.e., 6÷2×3 = 9, not 1. That said, writing the expression in a way that leaves ambiguity is bad practice. Always use parentheses to group operations when ambiguity might arise.

PEMDAS evaluated from left to right. If you followed that you’d get 16. 1 is ignoring left to right.

1 more...

You are correct. This is the right sequence of operations done here.

The problem is that the way PEMDAS is usually taught multiplication and division are supposed to have equal precedence. The acronym makes it look like multiplication comes before division, but you're supposed to read MD and as one step. (The same goes for addition and subtraction so AS is also supposed to be one step.) It this example the division is left of the multiplication so because they have equal precedence (according to PEMDAS) the division applies first.

IMO it's bad acronym design. It would be easier if multiplication did come before division because that is how everyone intuitively reads the acronym.

Maybe it should be PE(M/D)(A/S). But that version is tricky to pronounce. Or maybe there shouldn't be an acronym at all.

1 more...

Ignore the idiots telling you you're wrong. Everyone with a degree in math, science or engineering makes a distinction between implicit and explicit multiplication and gives implicit multiplication priority.

31 more...

The correct answer is 16. Multiplication and Division happen at the same level of priority, and are evaluated left-to-right.

No it's ambiguous, you claiming there is one right answer is actually wrong.

It is not ambiguous at all, there absolutely is one right answer, and it is 16.

You're taking something you learned when you were like 9 years old and assuming it's correct in every situation forever.

Unfortunately this isn't the case and you're incorrect.

Inaccurate, this has nothing to do with the mnemonic PEMDAS, this has to do with the actual order of operations it tries to instill. That order of operations is not ambiguous, there is a correct way to solve simple equations like the one above, and there is one and only one correct answer to it. That answer is 16.

And in the "actual" order of operations, if we want to pretend one exists, 2( binds more tightly than ÷

if you're going via prescriptivism, then you're wrong, because there are plenty of authoritative sources following the left hand model

if you're going via descriptivism, then you're wrong, because this thread exists

No, 2( does not bind more tightly than ÷. 2( is simply 2×(..., and ÷ and × occur at the same level of priority. After resolving the addition in the parentheses, the remaining operations are resolved left to right.

23 more...
23 more...
23 more...
23 more...
23 more...
24 more...

PEMDAS be damned?

PEMDAS should be read as Parentheses, Exponents, Multiplication and Division, Addition and Subtraction. There are four levels of priority, not six.

24 more...

Left is correct; implicit multiplication takes precedence over explicit multiplication or division.

What the fuck is the difference in implicit vs explicit? It’s the same operation, why the fuck does it matter if there is a symbol?

Multiplication comes first, then division.

Division is a form of Multiplication, just as subtraction is a form of addition. You multiply and divide in the same step, left to right

No, multiplication and division are resolved from left to right in the same step. But implicit multiplication (xy, as opposed to x*y) happens first.

1 more...
4 more...

This is why I loved my Casio 2D. It could use actual fractions to avoid these kind of issues

This is exactly why we have Reversed Polish Notation. When will people learn?

A fifteen year old version of myself somewhere inside just screamed in iptscrae induced frustration.

there's a setting in Qalculate! that asks if you want implicit multiplication to apply to the denominator or the numerator

I don’t understand why people say Maths. Math encompasses every single type of Math. Maths is just wrong.

Because it's British English

That may be, but Math still encompasses all Math so there’s no need to pluralize it.

The discipline is "mathematics." It's really not unreasonable that in some parts of the world, it got shortened to maths.

6 more...
6 more...

And British English is wrong. Those motherfuckers stick "u" into way too many words.

Anymore of this disrespect and I'll stick "u" into an early grave.

/jk

I feel obligated to say English that comes from England is the only real English. You can keep your Americanese.

2 more...
8 more...
12 more...

Ah damn it. It took me ages to find a calculator app that fits my needs..... And now I find out it works like the one on the right.

... the one on the right is correct.... that's a jank ass calculator on the left that doesn't know how to do order of operations 8/2×(2+2) 8/2x4 4x4 16

There isn't a multiplication symbol though. By your logic something like 8÷2x would mean (8÷2)*x because order of operations

Or if you read 8÷2√x as (8÷2)*√x

Just notate 8÷2(2+2) as 8÷2x; x=(2+2) and you get it, you can substitute any complete expression with a variable in an equation and the logic stays the same.

1 more...
5 more...

Hiper Calc is the calculator app that I use. It's very good. When I ran this equation, it actually notified me how the operands should be grouped (weak or strong) and provided two answers. Honestly the whole issue can be avoided if you use more parentheses

1 more...
7 more...

8÷2(2+2)=2(2+2)÷2(2+2)

alternatively if 8÷2(2+2)=16 that means 2(2+2)=8÷16 in other words 8=0,5 which it isnt

your first line is correct, but while it looks like 1 (and it might be under different conventions), evaluating according to standard rules (left to right if not disambiguated by pemdas) yields

2(2+2)/2(2+2) = 2(4)/2(4) = 2*4/2*4 = 8/2*4 = 4*4 = 16

Using implicit multiplication in quotients is weird and really shouldn't happen, this would usually be written as 8/(2*(2+2)) or 8/2*(2+2) and both are much clearer

Your second argument only works if you treat 2(2+2) as a single "thing", which it looks like, but isn't, in this case

not much to refute in the argument of whether its 16 or 1 as its all a matter of convention in the end and ultimately the root of the argument is poor formatting of the expression, im used to implicit multiplication taking precedent and that 2(2+2)===2*(2+2) and that for my first argument having the same expression on 2 sides of a division sign automatically equals 1, but how come you find implicit multiplication in quotients weird? seeing as it happens literally all the time in equations, unless thats a difference in school systems or similar im unaware of

for fun also rewrote the expression into powers of 2 and indeed depending on how you go about implicit multiplication i end up with either 2⁰ or 2⁴, so for the sake of sanity i figure its best to just say x₁=1; x₂=16

It's weird because usually the people writing the expressions want to communicate clearly, and stuff like 1/2x is not immediately clear to everyone, so they write the 1/2 as a fraction.

The same expression on both sides of the division sign only reduce to one if they actually bind to the division sign, which is rarely an issue, but that is exactly the thing that is in question here. I think it's clear that 1 + 1/1 + 1 is 3, not 1, even though 1+1 = 1+1.

But as you said, of course, the evaluation order is just convention, you can just as well write everything in https://en.m.wikipedia.org/wiki/Reverse_Polish_notation

1 more...
1 more...

so far as I know, [BIDMAS] is a creation of some educator, who has taken conventions in real use, and extended them to cover cases where there is no accepted convention. So it misleads students; and moreover, if students are taught PEMDAS by rote without the proviso mentioned above, they will not even get the standard interpretation of a−b+c.

Absolutely rekt.

1 more...

I treat • and × differently, • I treat like the left side and × I treat like the right side calculation.

6 more...