Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Prove the following two properties of the Huffman encoding scheme.

(a) If some character occurs with frequency more than 25, then there is guaranteed to be a codeword of length 1 .

(b) If all characters occur with frequency less than13 , then there is guaranteed to be no codeword of length 1 .

Short Answer

Expert verified

(a). It is proved that, Huffman codeword has length 1 if some of the frequencies are greater than 25.

(b). It is proved that, Huffman codeword does not have a codeword of length 1 if all the frequencies are less than13 .

Step by step solution

01

Sum of frequencies

Sum of all the frequencies of a Huffman tree must be 1.Sum of frequencies in the left subtree and right subtree is 1.

02

Proof by contradiction method

(a)

A contradiction for the case is considered here. Let the full binary bree does not have codeword of length 1. Therefore, the root of the tree will not have frequencies as its children. Left child of the root be I and right child of the root be r . Assume children of l are a and b , children of r are c and d, where a,b,c,dare the frequencies.

Sum of frequencies is 1.

l+r=1

It is given that at least one character has frequency greater than 25. Let value of is greater than 25. Then value of r is:

localid="1657263872844" l+r=1r=1-lr<1-25r<35

Hence, r should be less than 35. If r is less than then 35one of the children of r should be maximum 310. If that is the case then that child of r will be less than and should be in the left subtree which is a clear violation of the case discussed. Hence, Huffman codeword has length 1 if some of the frequencies are greater than 25.

03

Proof by contradiction method

(b)

A contradiction for the case is considered here. Let the full binary bree has a codeword of length 1 . So, the root of the tree has a child of frequency less than13 . Let the left subtree be l and right subtree be r . Let value of r is less than13 .

Sum of the frequencies is 1 .

l+r=1l=1-rl>1-13l>23

Thus, l should be greater than 23. If l is greater than23 then one of the children of l should be greater than13 . But all frequencies should be less than 13which clearly violates the contradiction. Hence, Huffman codeword does not have a codeword of length 1 if all the frequencies are less than13 .

Thus, the two statements are proved.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

Give You are given a graphG=(V,E)with positive edge weights, and a minimum spanning tree T=(V,E)with respect to these weights; you may assume GandTare given as adjacency lists. Now suppose the weight of a particular edge eโˆ‰E'is modified fromw(e)to a new value w'(e). You wish to quickly update the minimum spanning tree T to reflect this change, without recomputing the entire tree from scratch. There are four cases. In each case give a linear-time algorithm for updating the tree.

(a) eโˆ‰E'and w'(e)>w(e) .

(b) role="math" localid="1658907878059" eโˆ‰E'and w'(e)>w(e) .

(c) role="math" localid="1658907882667" eโˆ‰E'and w'(e)>w(e) .

(d) role="math" localid="1658907887400" eโˆ‰E'and w'(e)>w(e) .

We use Huffman's algorithm to obtain an encoding of alphabet {a,b,c}with frequencies fa,fb,fc. In each of the following cases, either give an example of frequencies (fa,fb,fc)that would yield the specified code, or explain why the code cannot possibly be obtained (no matter what the frequencies are).

(a) Code:{0,10,11}

(b) Code:{0,1,00}

(c) Code:{10,01,00}

Question:Show how to implement the stingy algorithm for Horn formula satisfiability (Section 5.3) in time that is linear in the length of the formula (the number of occurrences of literals in it). (Hint: Use a directed graph, with one node per variable, to represent the implications.)

Sometimes we want light spanning trees with certain special properties. Hereโ€™s an example.

Input: Undirected graph G=(V,E) ; edge weights we; subset of vertices UโŠ‚V

Output: The lightest spanning tree in which the nodes of U are leaves (there might be other leaves in this tree as well).

(The answer isnโ€™t necessarily a minimum spanning tree.)

Give an algorithm for this problem which runs in O(ElogV) time. (Hint: When you remove nodes Ufrom the optimal solution, what is left?)

Let G=(V,E) be an undirected graph. Prove that if all its edge weights are distinct, then it has a unique minimum spanning tree

See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free