Introduction to the dark arts of floating point numbers
- Title:
- Introduction to the dark arts of floating point numbers
- Description:
-
more » « less
https://media.ccc.de/v/rc3-2021-fem-471-introduction-to-the-dar
This is a talk about floating point numbers, specifically the sort named IEEE-754, aka "why are javascript numbers so weird", aka "nooo you can't compare floats for equality!" (Spoiler: sometimes you can.) This is a talk about why.
Floating point numbers, which are the things that most programming languages call something like "float", while Javascript just says "number", are famously weird and confusing:
```
> big_number = 1e16
10000000000000000
> 25 + big_number - big_number
24.0
> big_number == big_number + 1
true
```In this talk, I'll show you some of my favorite weird floating point phenomena, and then I'll try to explain why they happen.
If you are a bit scared of floating point, like I used to, and you're never quite sure which formulas might turn on you and summon the eldritch abomination named NaN, then maybe this talk can help you build an ability to understand (and perhaps control) these phenomena.
This will obviously be a very numbers-heavy talk, but I'm going to try to make it as accessible as I can. Knowledge of things like binary numbers or scientific number notation is not required.
Antonius Frie
https://pretalx.c3voc.de/rc3-2021-fem/talk/ZXAPAA/
#rc3-2021-import #Fundamentals
- Video Language:
- English
- Duration:
- 28:24
C3Subtitles added new URL for Introduction to the dark arts of floating point numbers | ||
C3Subtitles changed primary url from http://www.youtube.com/watch?v=tksR8CbLFmM to http://www.youtube.com/watch?v=tksR8CbLFmM | ||
C3Subtitles edited English subtitles for Introduction to the dark arts of floating point numbers | ||
C3Subtitles added a video: Introduction to the dark arts of floating point numbers |