this post was submitted on 12 Dec 2023
857 points (96.4% liked)

Memes

44925 readers
3601 users here now

Rules:

  1. Be civil and nice.
  2. Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.

founded 5 years ago
MODERATORS
857
6÷2(1+2) (programming.dev)
submitted 8 months ago* (last edited 8 months ago) by [email protected] to c/[email protected]
 

https://zeta.one/viral-math/

I wrote a (very long) blog post about those viral math problems and am looking for feedback, especially from people who are not convinced that the problem is ambiguous.

It's about a 30min read so thank you in advance if you really take the time to read it, but I think it's worth it if you joined such discussions in the past, but I'm probably biased because I wrote it :)

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 12 points 8 months ago (2 children)

Interesting, I didn't know about strong implicit multiplication. So I would have said the result is 9. All along my studies in France, up to my physics courses at University, all my teachers used weak implicit multiplication. Could be it's the norm in France, or they only use it in math studies at University.

[–] [email protected] 13 points 8 months ago (2 children)

In a scientific context it's actually very rare to run into that issue because divisions are mostly written as fractions which will completely mitigate the issue.

The strong implicit multiplication will only cause ambiguity after a division with inline notation. Once you use fractions the ambiguity vanishes.

In practice you also rarely see implicit multiplications between numbers but mostly between variables or variables and their coefficients.

[–] [email protected] 5 points 8 months ago* (last edited 8 months ago) (1 children)

Def not a math major (BS/PharmD), but your explanation was like seeing through a visual illusion for the first time! lol

I was always taught PEMDAS growing up, and that the MD and the AS was read left to right in an equation like above. But stating the division as a fraction completely changes my mind now about how this calculation works. I think what would happen in a calculation I use every day if the former was used.

Example: Cockcroft-Gault Equation (estimation of renal function)

(140-age)(kg) / 72(SCr) vs (140-age) X kg ➗72 X SCr

In the first eq (correct one) an 80yo patient who weighs 65kg and has an SCr ~ 1.5 = 36.11

In the latter it = 81.25 (waaay too high for an 80yo lol)

edit: calculation variable

[–] [email protected] 1 points 5 months ago

But stating the division as a fraction completely changes my mind now about how this calculation works

But division and fraction aren't the same thing - the former separates terms, the latter is a single term.

(140-age)(kg) / 72(SCr) vs (140-age) X kg ➗72 X SCr

The different answers for these two isn't because of / vs ➗, but because in the second one you have added extra multiplications in, thus breaking up some of the terms, and SCr has consequently been flipped from being in the denominator to being in the numerator. i.e. AK/72Scr vs. AK/72xSCr.

[–] [email protected] 2 points 8 months ago (1 children)

Yes of course, we always used fractions so there was no ambiguity. Last time I saw the division symbol must have been in primary school!

[–] [email protected] 1 points 5 months ago

You would've done dividing by fractions in high school, which requires both. Fractions and division aren't the same thing.

[–] [email protected] 4 points 8 months ago (1 children)

I didn't know until now that I unconsciously use strong implicit multiplication (meaning that I get the answer "1"). I believe it happens more or less as a consequence of starting inside the parentheses and then working my way out.

It is a funny little bit of notational ambiguity, so it is funny that people get riled up about it.

[–] [email protected] 1 points 5 months ago

It is a funny little bit of notational ambiguity

It's not ambiguous - it's The Distributive Law. You got the correct answer, you just forgot what the rule is called (as opposed to people who forget the rule altogether).