wikiwand.com

Negafibonacci coding - Wikiwand

In mathematics, negafibonacci coding is a universal code which encodes nonzero integers into binary code words. It is similar to Fibonacci coding, except that it allows both positive and negative integers to be represented. All codes end with "11" and have no "11" before the end.

The following steps describe how to encode a nonzero integer {\displaystyle x}. Note that {\displaystyle f} denotes the Negafibonacci sequence.

  1. If {\displaystyle x} is positive, compute the greatest odd negative integer {\displaystyle n} such that the sum of the odd negative terms of the Negafibonacci sequence from -1 to {\displaystyle n} with a step of -2, is greater than or equal to {\displaystyle x}:
    {\displaystyle n\in \{-\left(2k+1\right),k\in [0,\infty [\},\quad \sum _{i=-1,\;i\;odd}^{n-2}f(i)<x\leq \sum _{i=-1,\;i\;odd}^{n}f(i).}
    If {\displaystyle x} is negative, compute the greatest even negative integer {\displaystyle n} such that the sum of the even negative terms of the Negafibonacci sequence from 0 to {\displaystyle n} with a step of -2, is less than or equal to {\displaystyle x}:
    {\displaystyle n\in \{-2k,k\in [2,\infty [\},\quad \sum _{i=-2,\;i\;even}^{n-2}f(i)>x\geq \sum _{i=-2,\;i\;even}^{n}f(i)}
  2. Add a 1 at the {\displaystyle |n|^{\text{th}}} bit of the binary word. Subtract {\displaystyle f(n)} from {\displaystyle x}.
  3. Repeat the process from step 1 with the new value of x, until it reaches 0.
  4. Add a 1 on the left of the resulting binary word to finish the encoding.

To decode an encoded binary word, remove the leftmost 1 from the binary word, since it is used only to denote the end of the encoded number. Then assign the remaining bits the values of the Negafibonacci sequence from -1 (1, −1, 2, −3, 5, −8, 13...), and sum the all the values associated with a 1.

Negafibonacci coding is closely related to negafibonacci representation, a positional numeral system sometimes used by mathematicians. The negafibonacci code for a particular nonzero integer is exactly that of the integer's negafibonacci representation, except with the order of its digits reversed and an additional "1" appended to the end. The negafibonacci code for all negative numbers has an odd number of digits, while those of all positive numbers have an even number of digits.

The code for the integers from −11 to 11 is given below.

More information Number ...

Number Negafibonacci representation Negafibonacci code
−111010000001011
−101010011001011
−91000100100011
−81000000000011
−71000011000011
−61001000010011
−51001011010011
−4101001011
−3100000011
−2100110011
−110011
00(cannot be encoded)
1111
21000011
31011011
410010010011
510000000011
610001100011
710100001011
810101101011
9100101001010011
10100100000010011
11100100110010011

Close