From 8278a43dbeaeb79f9fc0d12997adb9d53089f38d Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Mon, 19 Aug 2024 11:35:29 -0600 Subject: [PATCH] vault backup: 2024-08-19 11:35:29 --- notes/ANS Theory.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/notes/ANS Theory.md b/notes/ANS Theory.md index 33ad72d..18b404e 100644 --- a/notes/ANS Theory.md +++ b/notes/ANS Theory.md @@ -10,4 +10,6 @@ Taking a look at the standard binary numeral system, there are two digits in the 1. We can add a digit to the most significant position. As an example, adding a `1` to the above value would result in `11010`. Doing this means that the added digit stores information about *large ranges*. In the provided example, this means that setting that digit changes the value by 16. 2. We can add a digit to the least significant position. As an example, adding a `1` to the above value would result in `10101`. Changing the added digit will only change the resulting natural number by 1. -Given that $x$ represents a natural number, and $s$ is the digit we're adding. In a standard binary system, adding $s$ to the least significant position means that in the new number $x$ (before the addition) now represents the Nth appearance of an even (when $s = 0$ ), or odd (when $s = 1$). +Given that $x$ represents a natural number, and $s$ is the digit we're adding. In a standard binary system, adding $s$ to the least significant position means that in the new number $x$ (before the addition) now represents the Nth appearance of an even (when $s = 0$ ), or odd (when $s = 1$). With ANS, the goal is is to make that asymmetrical, so that you can represent more common values with a denser representation. + +