initial commit

This commit is contained in:
JKF
2026-08-09 14:08:05 +02:00
commit 6de0df6905
16 changed files with 635 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# Arithmetic
Reset after
$$r' = r + c$$
# Geometric
Reset after
$$r' = r * q$$
# LUBY / Reluctant Doubling
```
// Where v is the actually intereting part
(u,v) = (1,1)
(u', v') = (u & -u == v ? (u + 1, 1) : (u + 2v))
//Doubles every so often
/ Series: 1 1 2 1 1 2 4 1 1 2 4 8 ...
```