Zulip Chat Archive
Stream: general
Topic: Mistake in the "Mathematics in Lean" handbook
Victor Liu (Jul 16 2024 at 21:51):
Hi there, I am currently following the tutorial on the web version of the "Mathematics in Lean" handbook by Jeremy Avigad, Patrick Massot here. I have noticed a typo in the text:
It is an interesting fact that
min
distributes overmax
the way that multiplication distributes over addition, and vice-versa. In other words, on the real numbers, we have the identitymin a (max b c) ≤ max (min a b) (min a c)
as well as the corresponding version withmax
andmin
switched.
The authors meant to write min a (max b c) = max (min a b) (min a c) with a = instead of with a \leq, presumably due to copy-pasting.
image.png
Victor Liu (Jul 16 2024 at 21:56):
I have found that the source code is available on GitHub, and have created a pull request to fix this typo. https://github.com/avigad/mathematics_in_lean_source/pull/218
Last updated: May 02 2025 at 03:31 UTC