Comment author: AbyCodes 24 July 2011 07:19:52AM *  1 point [-]

quoted text if you were in a burning building, you would try pretty hard to get out. Therefore, you must strongly dislike death and want to avoid it. But if you strongly dislike death and want to avoid it, you must be lying when you say you accept death as a natural part of life and think it's crass and selfish to try to cheat the Reaper.

Won't it be the case that someone who tries to escape from a burning building, does so, just to avoid the pain and suffering it inflicts? It would be such a drag to be burned alive rather than a peaceful painless poison death.

Comment author: LeibnizBasher 24 July 2011 09:22:11PM 1 point [-]

Death from old age often involves drowning in the fluid that accumulates in your lungs when you get pneumonia.

Comment author: JK_Ravenclaw 01 April 2011 12:58:57PM 4 points [-]

There might not be a better term for the operands of a suitably uncommon and abstract structure X than "things X operates on", so the single-letter names are as good as any.

No, they aren't! You can't search to jump between the usages and definitions of a single-letter name, but you can jump between the usages and definitions of a full-word name, even if that name is blarghle.

Haskell calls the sequences x:xs for "current x" and "the rest of the exes", which is pretty much all you can say about them from the context of the higher-order function.

Haskell can get away with this because it has strict, well-defined scoping rules which ensure that the names x and xs never appear too far from their definitions, and there is an algorithm which text editors can implement to find those definitions. Math books do not have either of those benefits.

Comment author: LeibnizBasher 24 July 2011 08:57:01PM *  4 points [-]

Even worse than trying to search for single-letter variables that are defined somewhere in a mathematical text is trying to find the definitions of operators, if all you know is the squiggle used to denote that operator. For example, integrals are denoted by a slide-looking squiggle, so if you see one and don't know it's called an "integral", you can't look up what it means. If you do find a definition, the Wikipedia page you'll get describes integrals as "the signed area of region bound by (the function parameter's) graph", with a full-page of explanation and links to 5 or 6 pages of supplementary explanation. Good luck translating that into code!

What you won't find is the 5-line program that shows you how to actually calculate an integral (for that, see this page from SICP). Mathematicians descend into maddening vaguery when trying to describe concepts that could easily be described by a very short computer program, because math notation (and therefore mathematical study itself) lacks an equivalent of the for loop. So instead, mathematicians think they're describing something so fundamental that it's ineffable-- Integrals, man! Integrals! Either you grok it, or you don't.