this post was submitted on 12 Dec 2023
858 points (96.3% liked)

Memes

45132 readers
1515 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
858
6÷2(1+2) (programming.dev)
submitted 9 months ago* (last edited 9 months ago) by wischi@programming.dev to c/memes@lemmy.ml
 

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
[–] velox_vulnus@lemmy.ml 9 points 9 months ago (1 children)

Markdown fucked your comment. Use escape symbols.

[–] Aussiemandeus@aussie.zone 5 points 9 months ago (2 children)
[–] velox_vulnus@lemmy.ml 12 points 9 months ago* (last edited 9 months ago) (4 children)

Never mind, here's another better way to do this:

^6^⁄~2(1+2)~ ⇒ ^6^⁄~2*3~ ⇒ ^6^⁄~6~ ⇒ 1

Works on the web page, but looks weird on some mobile app. Markdown is a fucking mess. Some implementation has MathJax support, some have special syntaxes.

[–] Rustmilian@lemmy.world 2 points 9 months ago* (last edited 9 months ago)

Lemmy* markdown is a fuckin mess. It's way better elsewhere. & <>

[–] Brak@hexbear.net 2 points 9 months ago

oooh this looks very pretty on hexbear, thanks friend!

[–] Aussiemandeus@aussie.zone 2 points 9 months ago

Yeah connect for lemmy didn't sort the out very well.

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

6⁄2(1+2) ⇒ 6⁄2*3 ⇒ 6⁄6 ⇒ 1

You're more patient than me to go to that trouble! 😂 But yeah, looks good. Just one technicality (and relates to how many people arrive at the wrong answer), the 2x3 should be in brackets. Yes if you had a proper fraction bar it wouldn't matter, but that's what's missing with inline writing, and is compensated for with brackets (and brackets can't be removed unless there's only 1 term inside). In your original comment, it does indeed look like 6/(2x3), but, to illustrate the issue with what you wrote, as soon as I quoted it, it now looks like (6/2)x3 in my comment.

[–] onion@feddit.de 4 points 9 months ago* (last edited 9 months ago) (1 children)

Lemmy interprets some symbols as formatting commands, for example putting a # at the start of a line turns it into a header:

## header

You can tell it to not do that by putting a backslash before the symbol:

\# not a header

The backslash is called the escape symbol.

[–] Aussiemandeus@aussie.zone 3 points 9 months ago