this post was submitted on 03 Dec 2023
421 points (99.8% liked)

196

17884 readers
533 users here now

Be sure to follow the rule before you head out.


Rule: You must post before you leave.



Other rules

Behavior rules:

Posting rules:

NSFW: NSFW content is permitted but it must be tagged and have content warnings. Anything that doesn't adhere to this will be removed. Content warnings should be added like: [penis], [explicit description of sex]. Non-sexualized breasts of any gender are not considered inappropriate and therefore do not need to be blurred/tagged.

If you have any questions, feel free to contact us on our matrix channel or email.

Other 196's:

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Limitless_screaming@kbin.social 18 points 2 years ago (5 children)

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

[–] cerement@slrpnk.net 52 points 2 years ago (3 children)
  • 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))
[–] brian@programming.dev 3 points 2 years ago (1 children)

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.

[–] SmartmanApps@programming.dev 2 points 1 year ago

infix doesn’t have any ambiguity either if you parenthesize all operations like that

There isn't any ambiguity even if you don't.

[–] SmartmanApps@programming.dev 2 points 1 year ago

16 is the right answer if you use PEMDAS only: (8 ÷ 2) × (2 + 2)

You added brackets and changed the answer. 2(2+2) is a single term, and if you break it up then you change the answer (because now the (2+2) is in the numerator instead of in the denominator).

1 is the right answer

The only right answer

both are correct answers

Nope, 1 is the only correct answer.

this is also one of the reasons why postfix and prefix notations have an advantage over infix notation

Except they don't. This isn't a notation problem, it's a people don't remember the rules of Maths problem.

[–] KoalaUnknown@lemmy.world 22 points 2 years ago* (last edited 2 years ago) (2 children)

Yes

8 / 2 (2+2)

8 / 2 (4)

4 (4)

16

[–] 4am@lemm.ee 27 points 2 years ago* (last edited 2 years ago) (3 children)

No

8 / 2 (2+2)

8 / 2 (4)

8 / 8

1

[–] starman2112@sh.itjust.works 5 points 2 years ago* (last edited 2 years ago) (2 children)

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

[–] Zagorath@aussie.zone 13 points 2 years ago (3 children)

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

[–] starman2112@sh.itjust.works 6 points 2 years ago (3 children)
[–] Zagorath@aussie.zone 9 points 2 years ago (4 children)

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.

[–] Nihilore@lemmy.world 5 points 2 years ago (2 children)

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

[–] Zagorath@aussie.zone 6 points 2 years ago

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.

load more comments (1 replies)
[–] starman2112@sh.itjust.works 4 points 2 years ago

Huh, I'll be darned. I'm not as much of a math nerd as I thought

[–] PipedLinkBot@feddit.rocks 2 points 2 years ago

Here is an alternative Piped link(s):

This video

Piped is a privacy-respecting open-source alternative frontend to YouTube.

I'm open-source; check me out at GitHub.

load more comments (1 replies)
[–] 0ops@lemm.ee 4 points 2 years ago (1 children)

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.

load more comments (1 replies)
[–] SmartmanApps@programming.dev 1 points 1 year ago

Right answer, wrong words. The actual rules are Terms and The Distributive Law.

[–] SmartmanApps@programming.dev 1 points 1 year ago

a(b) is a×b

a(b) is (a×b) - you can't remove brackets unless there is only 1 term left inside.

8/(2x4)=8/8=1

[–] SmartmanApps@programming.dev 1 points 1 year ago (17 children)

Yes

No.

8 / 2 (4) 8/(2x4) 8/8 1

load more comments (17 replies)
[–] Th0rgue@lemmy.world 2 points 2 years ago* (last edited 2 years ago) (1 children)

Depends on the system you use. Most common system worldwide and in the academic circles (the oldest of the two) has 1 as the answer.

[–] SmartmanApps@programming.dev 1 points 1 year ago* (last edited 1 year ago)

Depends on the system you use

There are no other systems - only people who are following the actual rules of Maths and those who aren't. And yes, 1 is the correct answer

[–] SmartmanApps@programming.dev 2 points 1 year ago

the correct answer is 16, right?

No, the correct answer is 1.

load more comments (1 replies)