Earlier quoted context omitted.
Yes, those two facts about zero/empty cases (and so many more) are definitely related, and this class of facts is one of my favourites! Usually, if you're dealing with something algebraic in flavour (which is a very vague concept, sorry), there will be a sensible way to define the zero/empty case. This is often a good test of whether you have a uniform concept that works for all n without corner cases. It almost irri…
> there will be a sensible way to define the zero/empty case. This is often a good test of whether you have a uniform concept that works for all n without corner cases. And so, begun the array indexing war has.
The Unparalleled Genius of John von Neumann (2019)
41–50 of 282 posts
Re: The Unparalleled Genius of John von Neumann (2019)
#42I often use von Neumann's quote, "Young man, in mathematics you don't understand things. You just get used to them.", to console myself when I have to read a math book multiple times to really understand something. The quote also has truth in it. I had no problem accepting that 0! = 1 only because I learnt that fact early in school. However, I struggled quite a bit to accept that span({}) = {0}, even though it is not…
Yes, those two facts about zero/empty cases (and so many more) are definitely related, and this class of facts is one of my favourites! Usually, if you're dealing with something algebraic in flavour (which is a very vague concept, sorry), there will be a sensible way to define the zero/empty case. This is often a good test of whether you have a uniform concept that works for all n without corner cases. It almost irri…
all([]) == True
any([]) == False
Re: The Unparalleled Genius of John von Neumann (2019)
#43I think John von Neumann was a genius but I also think that at the time there was also confluence of great minds across mathematics and science in general which likely feed into and accelerated the advancements. Maybe it's still happening but we no longer hear the names, though potentially it was also just one of those alignments of possibilities.
Re: The Unparalleled Genius of John von Neumann (2019)
#44I think John von Neumann was a genius but I also think that at the time there was also confluence of great minds across mathematics and science in general which likely feed into and accelerated the advancements. Maybe it's still happening but we no longer hear the names, though potentially it was also just one of those alignments of possibilities.
Also, I think there are much more polymaths during our time than 1900s, thanks to the internet. A single person can consume much more information than before. This will make it difficult to make a single person get all the spotlight. I believe we have a lot of geniuses in the back stage that the public simply don’t know exist.
Re: The Unparalleled Genius of John von Neumann (2019)
#45I think John von Neumann was a genius but I also think that at the time there was also confluence of great minds across mathematics and science in general which likely feed into and accelerated the advancements. Maybe it's still happening but we no longer hear the names, though potentially it was also just one of those alignments of possibilities.
I often wonder if there are points in human understanding where there is an opportunistic amount of existing knowledge, current exploration of knowledge, and sets of ideas floating around that lead to these sorts of surges of shared ideas and principles in disciplines. While it's no doubt from accounts Nuemann was brilliant, I've observed other brilliant people who I feel could be ground breaking minds given the righ…
Necessity is the mother of invention. But abstract thought requires time to focus on things outside the mundane.
Re: The Unparalleled Genius of John von Neumann (2019)
#46I often use von Neumann's quote, "Young man, in mathematics you don't understand things. You just get used to them.", to console myself when I have to read a math book multiple times to really understand something. The quote also has truth in it. I had no problem accepting that 0! = 1 only because I learnt that fact early in school. However, I struggled quite a bit to accept that span({}) = {0}, even though it is not…
4! = 24 ;; 24 / 4 = 6
3! = 6 ;; 6 / 3 = 2
2! = 2 ;; 2 / 2 = 1
1!= 1 ;; 1 / 1 = 1
0! = 1
Re: The Unparalleled Genius of John von Neumann (2019)
#47I often use von Neumann's quote, "Young man, in mathematics you don't understand things. You just get used to them.", to console myself when I have to read a math book multiple times to really understand something. The quote also has truth in it. I had no problem accepting that 0! = 1 only because I learnt that fact early in school. However, I struggled quite a bit to accept that span({}) = {0}, even though it is not…
> Young man, in mathematics you don't understand things. You just get used to them. Not quite in the same weight class as von Neumann, but Matt Parker's "There's a trick for dealing with that in mathematics, called 'not really worrying about it'" when discussing results that don't mesh with our intuitive understanding is another nice one.
Re: The Unparalleled Genius of John von Neumann (2019)
#48> von Neumann proposed a description for a computer architecture now known as the von Neumann architecture Well, he actually described an already existing design by Eckert and Mauchly under his name and this paper was illegally disclosed. For the ones interested in this and other fascinating stories about ENIAC, here is a good book: https://www.amazon.com/Eniac-Triumphs-Tragedies-Worlds-Compu... ; worth reading is al…
Re: The Unparalleled Genius of John von Neumann (2019)
#49Does another such assembly exist today? I don't think it does but want to know if others can point to one.
Did it happen then because the discoveries were "low hanging" enough that they would be found eventually, such that today we've basically exhausted the major discoverable parts of nature given human limitations, like a depleting orebody where what's left are marginally economic residuals? Or was there something in particular about Western societies a century or two ago that produced such brilliance (or even specifically the Habsburgs's HRE where von Neumann was from), which perhaps we can learn from to steer things today?
Re: The Unparalleled Genius of John von Neumann (2019)
#50Earlier quoted context omitted.
Yes, those two facts about zero/empty cases (and so many more) are definitely related, and this class of facts is one of my favourites! Usually, if you're dealing with something algebraic in flavour (which is a very vague concept, sorry), there will be a sensible way to define the zero/empty case. This is often a good test of whether you have a uniform concept that works for all n without corner cases. It almost irri…
I was also puzzled by det(0x0) being 1, because I had built an intuition that determinant of a matrix was the volume of the parallelepiped represented by the matrix. I made my peace by accepting that my intuition on volume implies that volume is defined in a space that has positive dimensions, and by treating zero space as an algebraic construct.
- n-dimensional volume is a function from (some) subsets of space to real numbers
- it should be additive under union
- it should scale by t^n when you scale the space by a factor of t
I think the upshot of the conversation was that 0-dimensional volume of a shape should be its Euler characteristic. In the simple case of a finite set of points, the "volume" would be the number of points.
And by your earlier comment, span({}) consists of a single point, so its volume should be 1. It all works!