HN Theater @HNTheaterMonth

The best talks and videos of Hacker News.

Hacker News Comments on
A Tribute to the Great Mathematician Leonhard EULER

Karim ESSAIFI · Youtube · 40 HN points · 0 HN comments
HN Theater has aggregated all Hacker News stories and comments that mention Karim ESSAIFI's video "A Tribute to the Great Mathematician Leonhard EULER".
Youtube Summary
Leonhard EULER is one of the greatest and most productive mathematicians of History : he is by far my favorite mathematician !
In this lecture, you will find a talk of the numerous remarkable works and results obtained by EULER. The lecture is given by William Dunham who is Truman Koehler Professor of Mathematics at Muhlenberg College.

A great acknowlegment to William Dunham for that lecture.

Karim Essaifi

I add you below a paper in a PDF-file that can be connected to the lecture :
http://claymath.org/library/annual_report/ar2008/08Feature.pdf
HN Theater Rankings

Hacker News Stories and Comments

All the comments and stories posted to Hacker News that reference this video.
Dec 27, 2018 · 40 points, 13 comments · submitted by rfreytag
Koshkin
Euler was a genius, and he wrote a bunch of calculus textbooks. I wonder if they are still worth studying - other than out of historical interest, that is.
monochromatic
Historical interest is fine, but if you just want to learn math I wouldn’t bother.
bmer
What makes you so sure? Euler's approach to problem solving is legendary for still being good pedagogical material today: http://eulerarchive.maa.org/hedi/index.html
synthmeat
You say this, but I personally tried many approaches to math, and historical approach is the only one that seems to keep my attention. It feels much more like an adventure in time, space and mind like this. Currently looking forward to Liber Abaci sometime in 2019.

It definitely is a roundabout and non-pragmatic way, I agree, but I find it rewarding enough to keep me going. Unrelated, I think children's math education could benefit a lot from this kind of approach.

bmer
There are quite a few books that take this approach actually. One of my favourites: https://www.springer.com/gp/book/9781441960528
earthicus
In Euler's time they still didn't have a correct understanding of higher order differentials, so the work from this time period has genuine errors that you would need to be aware of. Might I suggest an alternative? There's a wonderful little book by Nathanial Grossman called 'The Sheer Joy of Celestial Mechanics' [1]. It assumes vector calculus of course but otherwise might be just what you're looking for. From a prepublication review:

> Don't look for axioms to memorize. Too many courses are consecrated to teaching students to play chords on a set of axioms. This book celebrates the heroic age of calculus, the time of Euler, Maclaurin, Clairault, Lagrange, and Laplace, a time before delta and epsilon. [...] mathematics was invented to do things, not just to be talked about, and today - still - its greatest triumphs are what it can do.

[1] https://www.amazon.com/Sheer-Joy-Celestial-Mechanics-dp-0817...

bmer
There might be some genuine errors, but the fact that you could manipulate differentials algebraically (a la Leibniz or Euler) is a big deal.

A big deal that was later made concrete: https://en.wikipedia.org/wiki/Non-standard_analysis

earthicus
You don't need nonstandard analysis to make differentials concrete - Cauchy showed us how to model them with ordinary variables, and this method is taught in standard undergrad textbooks like Stewart.

The issue i was bringing up is that the early use of differentials does not correspond to this. The algebraic models of differentials presented in Cauchy or Robinson's nonstandard analysis is not the same thing as the algebraic models used in Euler. The book i suggested uses differentials from beginning to end, but uses the modern, correct form that doesn't lead one to wrong answers when manipulated with standard algebraic rules. There is absolutely no reason to go back in time and inflict this confusion on yourself by intentionally unlearning the hard-won right answer.

Although I should point out that Archimedes correctly understood how to compare different orders of infinitesimals in his book 'On Spirals' (via tangents), circa 200 BCE! Wow!!!

jules
Euler was a master of generating functions. Here is a little taste. Start with a Haskell data type:

   data Tree x = Leaf | Node x (Tree x) (Tree x)
The question is how many different Trees of size n are there, where n is the number of x values in the tree.

  Size 0: Leaf
  Size 1: Node x Leaf Leaf
  Size 2: Node x (Node x Leaf Leaf) Leaf, Node Leaf (Node x Leaf Leaf)
It turns out this sequence goes 1,1,2,5,14,42,...

Now we do black magic: we take the Tree x = Leaf | Node x (Tree x) (Tree x) equation and replace Tree x with a function T(x), replace each constructor (Leaf or Node) with the number 1, and replace | with +. We get:

  T(x) = 1 + 1*x*T(x)*T(x)
Simplifying:

  T(x) = 1 + xT(x)^2
We can solve that:

  T(x) = (1 - sqrt(1 - 4x))/2x
Now we do a series expansion of T:

  T(x) = 1 + 1x + 2x^2 + 5x^3 + 14x^4 + 42x^5 + ...
https://www.wolframalpha.com/input/?i=series+(1+-+sqrt(1+-+4...

Magic!

You can try it yourself with:

    data List x = Leaf | Node x (List x)
    data Tree2 x = Leaf | Single x | Node x (Tree2 x) (Tree2 x)
And if you're really adventurous, try:

    data Tree3 x = Node x (List (Tree3 x))
    data Tree4 x y = Leaf y | Node x (Tree4 x y) (Tree4 x y)
    data Tree5 x = Tree2 (Tree2 x)
    data Foo x = Leaf x | Node (Foo x)
bmer
If you are interested in learning more about this: https://www.math.upenn.edu/~wilf/DownldGF.html
jules
There's also http://algo.inria.fr/flajolet/Publications/book.pdf. The first chapter of this book is more or less equivalent to generatingfunctionology, but has a more modern flavour.
bmer
Wow, nice!
hardmath123
More on this, for the curious: https://codewords.recurse.com/issues/three/algebra-and-calcu...
HN Theater is an independent project and is not operated by Y Combinator or any of the video hosting platforms linked to on this site.
~ yaj@
;laksdfhjdhksalkfj more things
yahnd.com ~ Privacy Policy ~
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.