Difference between revisions of "161-A2.1"

From Microlab Classes
Jump to navigation Jump to search
Line 94: Line 94:
  
 
== Example 3: Prefix Codes ==
 
== Example 3: Prefix Codes ==
In prefix codes or prefix-free codes, no codeword is a proper prefix of another. One way to test this is to use '''trees'''. Fig. 1 shows a binary tree with 4 levels. This three can represent codewords with lengths of 1 to 4 bits.  
+
In prefix codes or prefix-free codes, no codeword is a proper prefix of another. One way to test this is to use '''trees'''. Fig. 1 shows a binary tree with 4 levels. This three can represent codewords with lengths of 1 to 4 bits. Thus, for a prefix code, all the codewords should only be at the leaves of the tree, or equivalently, at nodes without any codewords further down the tree.
 
{|
 
{|
 
|[[File:Blank coding tree.png|thumb|400px|Fig. 1: A 4-level binary tree.]]
 
|[[File:Blank coding tree.png|thumb|400px|Fig. 1: A 4-level binary tree.]]
 
|[[File:Code2 coding tree.png|thumb|400px|Fig. 2: A binary tree for code 2.]]
 
|[[File:Code2 coding tree.png|thumb|400px|Fig. 2: A binary tree for code 2.]]
 +
|-
 +
|}
 +
 +
The tree for code 2 is shown in Fig. 2, and we can easily see that code 2 is not a prefix code since there are codewords within the tree. Fig. 3 shows the tree for code 3, and since all the codewords are at the edges of the tree, it is a prefix code, and thus uniquely decodable and instantaneous. Lastly, we have the tree for code 4 in Fig. 4, where only one of the codewords is at the edge of the tree. Thus, code 4 is not a prefix code.
 +
 +
{|
 +
|[[File:Code3 coding tree.png|400px|Fig. 3: A binary tree for code 3.]]
 +
|[[File:Code4 coding tree.png|400px|Fig. 4: A binary tree for code 4.]]
 
|-
 
|-
 
|}
 
|}

Revision as of 10:27, 18 September 2020

  • Activity: Source Coding
  • Instructions: In this activity, you are tasked to
    • Walk through the examples.
    • Write a short program to compress and decompress a redundant file.
  • Should you have any questions, clarifications, or issues, please contact your instructor as soon as possible.

Example 1: Uniquely Decodable Codes

Let us try to encode a source with just four symbols in its alphabet, i.e. , with probability distribution . We can calculate the entropy of this source as:

 

 

 

 

(1)

Let us look at a few bit sequence assignments and see if they are uniquely decodable or not.

Symbol Probability Code 1 Code 2 Code 3 Code 4
0.5 0 0 0 0
0.25 0 1 10 01
0.125 1 00 110 011
0.125 10 11 111 0111
Average Code Length: 1.125 1.25 1.75 1.875

Recall that Shannon's Noiseless Coding Theorem states that . Thus, codes 1 and 2 are not uniquely decodable since they have average code lengths less than .

For code 1, since there are two symbols sharing an encoded symbol, we can say that it is not a distinct code, and therefore not uniquely decodable. We can check code 2 by taking a sequence of symbols encoded using this code: . We can easily see that this message can be decoded in different ways, either as , or .

Code 3 has one of the most desirable properties of a code: having its average length equal to the entropy of the source, and according to Shannon, you cannot have a uniquely decodable code with an average length shorter than this. We can also see that for a sequence of symbols encoded using code 3, there is only one way you can decode the message, thus it is uniquely decodable.

Code 4 is also uniquely decodable, however, it is not instantaneous, since the decoder needs to see the start of the next symbol to determine the end of the current symbol. Also note that the average length of code 4 is longer than the .

We can use the Kraft-McMillan Inequality, , to test if a code is uniquely decodable. Tabulating the values, we get:

Code
1 1.75
2 1.5
3 1.0
4 0.9375

As expected, codes 1 and 2 have , and thus, are not uniquely decodable, while codes 3 and 4 have , and hence, they are uniquely decodable.

Example 2: Uniformly Distributed Symbols

Let us consider the case when the symbols are uniformly distributed, i.e. . We can then calculate the entropy of the source as:

 

 

 

 

(2)

In this case, the source is incompressible. Thus, we can just use a fixed length code .

Example 3: Prefix Codes

In prefix codes or prefix-free codes, no codeword is a proper prefix of another. One way to test this is to use trees. Fig. 1 shows a binary tree with 4 levels. This three can represent codewords with lengths of 1 to 4 bits. Thus, for a prefix code, all the codewords should only be at the leaves of the tree, or equivalently, at nodes without any codewords further down the tree.

Fig. 1: A 4-level binary tree.
Fig. 2: A binary tree for code 2.

The tree for code 2 is shown in Fig. 2, and we can easily see that code 2 is not a prefix code since there are codewords within the tree. Fig. 3 shows the tree for code 3, and since all the codewords are at the edges of the tree, it is a prefix code, and thus uniquely decodable and instantaneous. Lastly, we have the tree for code 4 in Fig. 4, where only one of the codewords is at the edge of the tree. Thus, code 4 is not a prefix code.

Fig. 3: A binary tree for code 3. Fig. 4: A binary tree for code 4.

Example 4: Huffman Coding

Activity: Compression-Decompression