Added "Fast Inverse Root"

This commit is contained in:
2025-02-11 10:09:58 -08:00
parent 62ce3ddaa7
commit 6d4127f5a5
7 changed files with 748 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
#import "@local/handout:0.1.0": *
// Bonus:
// - Floats vs fixed point
// - Float density
// - Find non-floatable rational numbers
// - What if we use `n`-bit floats?
#show: doc => handout(
doc,
group: "Advanced 2",
title: [Fast Inverse Square Root],
by: "Mark",
)
#include "parts/00 int.typ"
#pagebreak()
#include "parts/01 float.typ"
#pagebreak()
#include "parts/02 approx.typ"
#pagebreak()
#include "parts/03 quake.typ"
#pagebreak()
#include "parts/04 bonus.typ"