Most active commenters

    ←back to thread

    283 points IdealeZahlen | 17 comments | | HN request time: 0.001s | source | bottom
    Show context
    non- ◴[] No.42139412[source]
    One thing I've always struggled with Math is keeping track of symbols I don't know the name of yet.

    Googling for "Math squiggle that looks like a cursive P" is not a very elegant or convenient way of learning new symbol names.

    I wish every proof or equation came with a little table that gave the English pronunciation and some context for each symbol used.

    It would make it a lot easier to look up tutorials & ask questions.

    replies(24): >>42139503 #>>42139508 #>>42139524 #>>42139550 #>>42139564 #>>42139813 #>>42140054 #>>42140141 #>>42140285 #>>42140537 #>>42140722 #>>42140731 #>>42140919 #>>42141247 #>>42141746 #>>42141968 #>>42142338 #>>42143308 #>>42145853 #>>42147470 #>>42148120 #>>42148896 #>>42148973 #>>42149956 #
    1. mindcrime ◴[] No.42140919[source]
    As somebody who spends a fair amount of time studying math heavy material that uses math that I never studied formally, this stuff is the bane of my existence. It's one thing to see a random Greek letter, where at least I very likely know what the character "is" (eg, "rho" or "psi" or whatever) and can at least pronounce it to myself and make a mental note "go back and see what rho stands for in this equation". But exactly like you say "squiggle that looks like a cursive P" doesn't easily admit a mental placeholder, AND it's hard to look up later to find out exactly what it is. I've really wanted to tear my last hair out over this a few times. And I am pretty sure one recent such occasion involved this exact character, so this really hits home!

    And never mind that cognitive load that comes from managing the use of symbols that are the "same symbol" modulo something the typeface. Trying to read something like

    "Little b equals Fraktur Bold Capital B divided by (q times Cursive Capital B) all over Gothic Italic B", blah, blah... then throw in the "weird little squiggle that looks kinda like a 'p' but not quite". It's insane.

    replies(4): >>42141820 #>>42142232 #>>42143974 #>>42146554 #
    2. mmooss ◴[] No.42141820[source]
    The Unicode charts for the mathematical symbol ranges can serve as a visual index: [0]

    They open as PDFs and have grids of all the symbols, along with useful metadata such as related and similar symbols, common substitutes, alternate names, etc. You won't find everything in those ranges - some things are elsewhere in Unicode, in their native language or already located elsewhere in an earlier version - but it's a great resource. Even for symbols that are merely letters in some language's alphabet, Unicode sometimes provides a unique codepoint (character) for their use in mathematics.

    [0] https://www.unicode.org/charts/

    That provides each table as a separate PDF downlod: mathematics covers ~20 PDFs, each named for its contents. It may be faster to download the entire Unicode standard as one PDF (~140 MB):

    https://www.unicode.org/Public/16.0.0/charts/

    3. wbl ◴[] No.42142232[source]
    Once there was a lecture at Yale, and Serge Lang, a frequent loud critic of bad notation was in the audience. There was a function Xi, and soon it was joined by its complex conjugation. Then they were divided. Serge Lang walked out.
    replies(3): >>42143284 #>>42144767 #>>42150035 #
    4. gjm11 ◴[] No.42143284[source]
    That's delightful, but I fear many in the audience here may not quite see why. So, at the risk of explaining too much:

    The Greek letter xi is one of those where the capital and lowercase versions are very different. Lowercase is a bit like a curly E. Uppercase is (at least if you're writing it in a hurry) basically three horizontal lines on top of each other.

    The operation called complex conjugation can be notated in two ways, but the more common one among mathematicians is to put a horizontal bar above the thing being conjugated.

    So the conjugate of Xi is ... four parallel horizontal lines.

    And now we divide Xi (three horizontal lines) by Xi-bar (four horizontal lines), getting: eight horizontal lines.

    replies(3): >>42144681 #>>42145227 #>>42145683 #
    5. wwalexander ◴[] No.42143974[source]
    I also find it frustrating, but I’ve come to appreciate that it’s a way to at least partially sidestep the hard problem of naming things. There are still idioms and choices to make, but using abstract symbols makes it easier to play with the abstract concepts being presented.

    My most-used programming language is Go, but I’ve been writing mainly Swift for the past year or so. While there’s a lot I like about Swift, its verbosity leads me to waste an inordinate amount of time pondering what the correct verbiage ought to be, and I often miss Go’s more terse, often single-character naming convention.

    replies(1): >>42144249 #
    6. lmm ◴[] No.42144249[source]
    > My most-used programming language is Go, but I’ve been writing mainly Swift for the past year or so. While there’s a lot I like about Swift, its verbosity leads me to waste an inordinate amount of time pondering what the correct verbiage ought to be, and I often miss Go’s more terse, often single-character naming convention.

    Huh. I was expecting that comparison to go the other way given Go's notorious verbosity in terms of error handling, generics etc.. Maybe people compensate for verbosity in one area by being more concise in others (though that doesn't explain e.g. APL).

    replies(1): >>42147623 #
    7. neochief ◴[] No.42144681{3}[source]
    You were explaining this for someone like me. Thanks for that!
    8. bradrn ◴[] No.42144767[source]
    A lovely story, but sadly this recollection from Paul Vojta disagrees on his reaction: https://www.ams.org/notices/200605/fea-lang.pdf (see p547)
    9. hanche ◴[] No.42145227{3}[source]
    In fact, here is the dreaded letter: Ξ And its lowercase version: ξ
    replies(1): >>42154639 #
    10. sumanthvepa ◴[] No.42145683{3}[source]
    Thank you. That actually was helpful. In print it might have been legible, but on a blackboard that would been difficult to read.
    11. eurekin ◴[] No.42146554[source]
    I distinctly remember the first time a lecturer used the "dx/dt" "symbol" in normal algebraic operations (that is, multiply both equation sides by dt and so on). I was so shocked it's actually not a elaborate differentation symbol, but something with actual division. Next time it was similar with integration, where the dx was substituted by some other function of du.

    I swear I treated those as some grammar token, which doesn't hold any real meaning. I've been using those as such for years before.

    replies(1): >>42146909 #
    12. impendia ◴[] No.42146909[source]
    Technically, dx/dt is not a fraction, but, but, ...

    https://mathoverflow.net/questions/73492/how-misleading-is-i...

    13. wwalexander ◴[] No.42147623{3}[source]
    I would say that Go is extremely explicit, but I wouldn’t say it’s verbose.

    Or, I suppose you could say that Go is semantically verbose (explicit error handling, no/low use of generics, no operator overloading), but syntactically concise (short variable names). Swift is the opposite, being semantically concise (extremely heavy use of generics, default arguments) but syntactically verbose (labeled arguments, English-like clauses, result builders).

    14. jacobolus ◴[] No.42150035[source]
    It was a joke. The lecturer (Barry Mazur, at Harvard) had made a T-shirt with Lang's catchphrase "This notation sucks" and was trying to get Lang to say it with the most over-the-top example of bad notation he could come up with so he could bring the shirt out, but Lang didn't say anything so the whole thing was a bust.
    15. thaumasiotes ◴[] No.42154639{4}[source]
    The letter in actual use seems more likely to be printed as a two-tiered Z.

        -----
           /
          /
         /
         ---
           /
          /
         /
        -----
    replies(1): >>42155100 #
    16. exmadscientist ◴[] No.42155100{5}[source]
    For Ξ or ξ?

    Back in my grad school days ξ was almost always handwritten as just some sort of squiggle you'd struggle to associate with the character "ξ" unless you already knew what it was supposed to be. My classmates were very surprised that I could (can!) somehow write it as something that actually is recognizable as ξ, quickly and consistently.

    (But they missed what my hand muscles do to ζ, so it all balances out.)

    replies(1): >>42155664 #
    17. thaumasiotes ◴[] No.42155664{6}[source]
    The form I gave you is the capital. It's noted in the wikipedia article, but not discussed: https://en.wikipedia.org/wiki/Xi_(letter)

    I spent a while browsing a Flickr group of "Greek signs", which unfortunately tended toward formality. I noticed zero examples of the joined form. There were a handful of standard Ξ, and two oddities - three examples of the letter being printed 王, and one example in which Ξ was used as the lowercase form. ( https://www.flickr.com/photos/robwallace/11888342614/in/pool... ) I guess it's easier to write than ξ is?

    The letter doesn't appear to be all that common in general, unless you live in an Alexandropolis.

    ---

    Having done some more looking, I still haven't found a joined Ξ, but I have found some examples of the standard form in graffiti and handwriting (e.g. https://www.flickr.com/photos/telemax/4257624412/in/pool-gre... ). The 王 form also appears in graffiti. It's probably displacing the double-Z form.