Elias gamma coding

{{Short description|Universal encoding scheme for positive integers}}

{{Use dmy dates|date=May 2019|cs1-dates=y}}

{{Use list-defined references|date=January 2022}}

Elias \gamma code or Elias gamma code is a universal code encoding positive integers developed by Peter Elias.{{rp|197, 199}} It is used most commonly when coding integers whose upper bound cannot be determined beforehand.

Encoding

To code a number x ≥ 1:

  1. Let N = \lfloor \log_2 x \rfloor be the highest power of 2 it contains, so 2Nx < 2N+1.
  2. Write out N zero bits, then
  3. Append the binary form of x, an (N+1)-bit binary number.

An equivalent way to express the same process:

  1. Encode N in unary; that is, as N zeroes followed by a one.
  2. Append the remaining N binary digits of x to this representation of N.

To represent a number x, Elias gamma (γ) uses 2 \lfloor \log_2(x) \rfloor + 1 bits.{{rp|199}}

The code begins (the implied probability distribution for the code is added for clarity):

class=wikitable

! Number !! Binary !! γ encoding !! Implied probability

1 = 20 + 0111/2
colspan=4|
2 = 21 + 01 00 1 01/8
3 = 21 + 11 10 1 11/8
colspan=4|
4 = 22 + 01 0000 1 001/32
5 = 22 + 11 0100 1 011/32
6 = 22 + 21 1000 1 101/32
7 = 22 + 31 1100 1 111/32
colspan=4|
8 = 23 + 01 000000 1 0001/128
9 = 23 + 11 001000 1 0011/128
10 = 23 + 21 010000 1 0101/128
11 = 23 + 31 011000 1 0111/128
12 = 23 + 41 100000 1 1001/128
13 = 23 + 51 101000 1 1011/128
14 = 23 + 61 110000 1 1101/128
15 = 23 + 71 111000 1 1111/128
colspan=4|
16 = 24 + 01 00000000 1 00001/512
17 = 24 + 1{{nowrap|1 0001}}{{nowrap|0000 1 0001}}1/512

Decoding

To decode an Elias gamma-coded integer:

  1. Read and count 0s from the stream until you reach the first 1. Call this count of zeroes N.
  2. Considering the one that was reached to be the first digit of the integer, with a value of 2N, read the remaining N digits of the integer.

Uses

Gamma coding is used in applications where the largest encoded value is not known ahead of time, or to compress data in which small values are much more frequent than large values.

Gamma coding can be more size efficient in those situations. For example, note that, in the table above, if a fixed 8-bit size is chosen to store a small number like the number 5, the resulting binary would be 00000101, while the γ-encoding variable-bit version would be 00 1 01, needing 3 bits less. On the contrary, bigger values, like 254 stored in fixed 8-bit size, would be 11111110 while the γ-encoding variable-bit version would be 0000000 1 1111110, needing 7 extra bits.

Gamma coding is a building block in the Elias delta code.

== Generalizations ==

{{See also|Variable-length quantity#Zigzag encoding}}

Gamma coding does not code zero or negative integers.

One way of handling zero is to add 1 before coding and then subtract 1 after decoding.

Another way is to prefix each nonzero code with a 1 and then code zero as a single 0.

One way to code all integers is to set up a bijection, mapping integers (0, −1, 1, −2, 2, −3, 3, ...) to (1, 2, 3, 4, 5, 6, 7, ...) before coding. In software, this is most easily done by mapping non-negative inputs to odd outputs, and negative inputs to even outputs, so the least-significant bit becomes an inverted sign bit:

\begin{cases}

x \mapsto 2x+1 & \mathrm{when~} x \geq 0 \\

x \mapsto -2x & \mathrm{when~} x < 0 \\

\end{cases}

Exponential-Golomb coding generalizes the gamma code to integers with a "flatter" power-law distribution, just as Golomb coding generalizes the unary code.

It involves dividing the number by a positive divisor, commonly a power of 2, writing the gamma code for one more than the quotient, and writing out the remainder in an ordinary binary code.

See also

  • {{annotated link|Elias delta coding|Elias delta (δ) coding}}
  • {{annotated link|Elias omega coding|Elias omega (ω) coding}}
  • {{annotated link|Posit (number format)}}

References

{{Reflist|refs=

{{cite journal |author-first=Peter |author-last=Elias |author-link=Peter Elias |title=Universal codeword sets and representations of the integers |journal=IEEE Transactions on Information Theory |volume=21 |issue=2 |pages=194–203 |date=March 1975 |doi=10.1109/tit.1975.1055349}}

}}

Further reading

  • {{cite book |author-first=Khalid |author-last=Sayood |title=Lossless Compression Handbook |publisher=Elsevier |date=2003 |chapter=Levenstein and Elias Gamma Codes |isbn=978-0-12-620861-0}}

{{Compression Methods}}

{{DEFAULTSORT:Elias Gamma Coding}}

Category:Entropy coding

Category:Numeral systems

Category:Data compression