Shannon Entropy of 0.922, 3 Distinct Values
Clash Royale CLAN TAG#URR8PPP
up vote
14
down vote
favorite
Given a string of values $AAAAAAAABC$, the Shannon Entropy in log base $2$ comes to $0.922$. From what I understand, in base $2$ the Shannon Entropy rounded up is the minimum number of bits in binary to represent a single one of the values.
Taken from the introduction on this wikipedia page:
https://en.wikipedia.org/wiki/Entropy_%28information_theory%29
So, how can three values be represented by one bit? $A$ could be $1$, $B$ could be $0$; but how could you represent $C$?
Thank you in advance.
information-theory mathematical-foundations entropy binary
New contributor
add a comment |
up vote
14
down vote
favorite
Given a string of values $AAAAAAAABC$, the Shannon Entropy in log base $2$ comes to $0.922$. From what I understand, in base $2$ the Shannon Entropy rounded up is the minimum number of bits in binary to represent a single one of the values.
Taken from the introduction on this wikipedia page:
https://en.wikipedia.org/wiki/Entropy_%28information_theory%29
So, how can three values be represented by one bit? $A$ could be $1$, $B$ could be $0$; but how could you represent $C$?
Thank you in advance.
information-theory mathematical-foundations entropy binary
New contributor
add a comment |
up vote
14
down vote
favorite
up vote
14
down vote
favorite
Given a string of values $AAAAAAAABC$, the Shannon Entropy in log base $2$ comes to $0.922$. From what I understand, in base $2$ the Shannon Entropy rounded up is the minimum number of bits in binary to represent a single one of the values.
Taken from the introduction on this wikipedia page:
https://en.wikipedia.org/wiki/Entropy_%28information_theory%29
So, how can three values be represented by one bit? $A$ could be $1$, $B$ could be $0$; but how could you represent $C$?
Thank you in advance.
information-theory mathematical-foundations entropy binary
New contributor
Given a string of values $AAAAAAAABC$, the Shannon Entropy in log base $2$ comes to $0.922$. From what I understand, in base $2$ the Shannon Entropy rounded up is the minimum number of bits in binary to represent a single one of the values.
Taken from the introduction on this wikipedia page:
https://en.wikipedia.org/wiki/Entropy_%28information_theory%29
So, how can three values be represented by one bit? $A$ could be $1$, $B$ could be $0$; but how could you represent $C$?
Thank you in advance.
information-theory mathematical-foundations entropy binary
information-theory mathematical-foundations entropy binary
New contributor
New contributor
edited Nov 18 at 21:49
David Richerby
64.5k1597186
64.5k1597186
New contributor
asked Nov 18 at 19:23
Sean C
735
735
New contributor
New contributor
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
up vote
16
down vote
accepted
The entropy you've calculated isn't really for the specific string but, rather, for a random source of symbols that generates $A$ with probability $tfrac810$, and $B$ and $C$ with probability $tfrac110$ each, with no correlation between successive symbols. The calculated entropy for this distribution, $0.922$ means that you can't represent strings generated from this distribution using less than $0.922$ bits per character, on average.
It might be quite hard to develop a code that will achieve this rate.* For example, Huffman coding would allocate codes $0$, $10$ and $11$ to $A$, $B$ and $C$, respectively, for an average of $1.2$ bits per character. That's quite far from the entropy, though still a good deal better than the naive encoding of two bits per character. Any attempt at a better coding will probably exploit the fact that even a run of ten consecutive $A$s is more likely (probability $0.107$) than a single $B$.
* Turns out that it isn't hard to get as close as you want – see the other answers!
@immibis Fixed --thanks!
– David Richerby
Nov 19 at 22:33
add a comment |
up vote
17
down vote
Here is a concrete encoding that can represent each symbol in less than 1 bit on average:
First, split the input string into pairs of successive characters (e.g. AAAAAAAABC becomes AA|AA|AA|AA|BC). Then encode AA as 0, AB as 100, AC as 101, BA as 110, CA as 1110, BB as 111100, BC as 111101, CB as 111110, CC as 111111.
I've not said what happens if there is an odd number of symbols, but you can just encode the last symbol using some arbitrary encoding, it doesn't really matter when the input is long.
This is a Huffman code for the distribution of independent pairs of symbols, and corresponds to choosing $n = 2$ in Yuval's answer. Larger $n$ would lead to even better codes (approaching the Shannon entropy in the limit, as he mentioned).
The average number of bits per symbol pair for the above encoding is
$$frac810 cdot frac810 cdot 1 + 3 cdot frac810 cdot frac110 cdot 3 + frac110 cdot frac810 cdot 4 + 4 cdot frac110 cdot frac110 cdot 6 = 1.92$$
i.e. $1.92/2 = 0.96$ bits per symbol, not that far from the Shannon entropy actually for such a simple encoding.
New contributor
add a comment |
up vote
12
down vote
Let $mathcalD$ be the following distribution over $A,B,C$: if $X sim mathcalD$ then $Pr[X=A] = 4/5$ and $Pr[X=B]=Pr[X=C]=1/10$.
For each $n$ we can construct prefix codes $C_ncolon A,B,C^n to 0,1^*$ such that
$$
lim_ntoinfty fracoperatorname*mathbbE_X_1,ldots,X_n sim mathcalD[C_n(X_1,ldots,X_n)]n = H(mathcalD).
$$
In words, if we encode a large number of independent samples from $mathcalD$, then on average we need $H(mathcalD) approx 0.922$ bits per sample. Intuitively, the reason we can do with less than one bit is that each individual sample is quite likely to be $A$.
This is the real meaning of entropy, and it shows that computing the "entropy" of a string $A^8BC$ is a rather pointless exercise.
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
16
down vote
accepted
The entropy you've calculated isn't really for the specific string but, rather, for a random source of symbols that generates $A$ with probability $tfrac810$, and $B$ and $C$ with probability $tfrac110$ each, with no correlation between successive symbols. The calculated entropy for this distribution, $0.922$ means that you can't represent strings generated from this distribution using less than $0.922$ bits per character, on average.
It might be quite hard to develop a code that will achieve this rate.* For example, Huffman coding would allocate codes $0$, $10$ and $11$ to $A$, $B$ and $C$, respectively, for an average of $1.2$ bits per character. That's quite far from the entropy, though still a good deal better than the naive encoding of two bits per character. Any attempt at a better coding will probably exploit the fact that even a run of ten consecutive $A$s is more likely (probability $0.107$) than a single $B$.
* Turns out that it isn't hard to get as close as you want – see the other answers!
@immibis Fixed --thanks!
– David Richerby
Nov 19 at 22:33
add a comment |
up vote
16
down vote
accepted
The entropy you've calculated isn't really for the specific string but, rather, for a random source of symbols that generates $A$ with probability $tfrac810$, and $B$ and $C$ with probability $tfrac110$ each, with no correlation between successive symbols. The calculated entropy for this distribution, $0.922$ means that you can't represent strings generated from this distribution using less than $0.922$ bits per character, on average.
It might be quite hard to develop a code that will achieve this rate.* For example, Huffman coding would allocate codes $0$, $10$ and $11$ to $A$, $B$ and $C$, respectively, for an average of $1.2$ bits per character. That's quite far from the entropy, though still a good deal better than the naive encoding of two bits per character. Any attempt at a better coding will probably exploit the fact that even a run of ten consecutive $A$s is more likely (probability $0.107$) than a single $B$.
* Turns out that it isn't hard to get as close as you want – see the other answers!
@immibis Fixed --thanks!
– David Richerby
Nov 19 at 22:33
add a comment |
up vote
16
down vote
accepted
up vote
16
down vote
accepted
The entropy you've calculated isn't really for the specific string but, rather, for a random source of symbols that generates $A$ with probability $tfrac810$, and $B$ and $C$ with probability $tfrac110$ each, with no correlation between successive symbols. The calculated entropy for this distribution, $0.922$ means that you can't represent strings generated from this distribution using less than $0.922$ bits per character, on average.
It might be quite hard to develop a code that will achieve this rate.* For example, Huffman coding would allocate codes $0$, $10$ and $11$ to $A$, $B$ and $C$, respectively, for an average of $1.2$ bits per character. That's quite far from the entropy, though still a good deal better than the naive encoding of two bits per character. Any attempt at a better coding will probably exploit the fact that even a run of ten consecutive $A$s is more likely (probability $0.107$) than a single $B$.
* Turns out that it isn't hard to get as close as you want – see the other answers!
The entropy you've calculated isn't really for the specific string but, rather, for a random source of symbols that generates $A$ with probability $tfrac810$, and $B$ and $C$ with probability $tfrac110$ each, with no correlation between successive symbols. The calculated entropy for this distribution, $0.922$ means that you can't represent strings generated from this distribution using less than $0.922$ bits per character, on average.
It might be quite hard to develop a code that will achieve this rate.* For example, Huffman coding would allocate codes $0$, $10$ and $11$ to $A$, $B$ and $C$, respectively, for an average of $1.2$ bits per character. That's quite far from the entropy, though still a good deal better than the naive encoding of two bits per character. Any attempt at a better coding will probably exploit the fact that even a run of ten consecutive $A$s is more likely (probability $0.107$) than a single $B$.
* Turns out that it isn't hard to get as close as you want – see the other answers!
edited Nov 19 at 22:33
answered Nov 18 at 21:39
David Richerby
64.5k1597186
64.5k1597186
@immibis Fixed --thanks!
– David Richerby
Nov 19 at 22:33
add a comment |
@immibis Fixed --thanks!
– David Richerby
Nov 19 at 22:33
@immibis Fixed --thanks!
– David Richerby
Nov 19 at 22:33
@immibis Fixed --thanks!
– David Richerby
Nov 19 at 22:33
add a comment |
up vote
17
down vote
Here is a concrete encoding that can represent each symbol in less than 1 bit on average:
First, split the input string into pairs of successive characters (e.g. AAAAAAAABC becomes AA|AA|AA|AA|BC). Then encode AA as 0, AB as 100, AC as 101, BA as 110, CA as 1110, BB as 111100, BC as 111101, CB as 111110, CC as 111111.
I've not said what happens if there is an odd number of symbols, but you can just encode the last symbol using some arbitrary encoding, it doesn't really matter when the input is long.
This is a Huffman code for the distribution of independent pairs of symbols, and corresponds to choosing $n = 2$ in Yuval's answer. Larger $n$ would lead to even better codes (approaching the Shannon entropy in the limit, as he mentioned).
The average number of bits per symbol pair for the above encoding is
$$frac810 cdot frac810 cdot 1 + 3 cdot frac810 cdot frac110 cdot 3 + frac110 cdot frac810 cdot 4 + 4 cdot frac110 cdot frac110 cdot 6 = 1.92$$
i.e. $1.92/2 = 0.96$ bits per symbol, not that far from the Shannon entropy actually for such a simple encoding.
New contributor
add a comment |
up vote
17
down vote
Here is a concrete encoding that can represent each symbol in less than 1 bit on average:
First, split the input string into pairs of successive characters (e.g. AAAAAAAABC becomes AA|AA|AA|AA|BC). Then encode AA as 0, AB as 100, AC as 101, BA as 110, CA as 1110, BB as 111100, BC as 111101, CB as 111110, CC as 111111.
I've not said what happens if there is an odd number of symbols, but you can just encode the last symbol using some arbitrary encoding, it doesn't really matter when the input is long.
This is a Huffman code for the distribution of independent pairs of symbols, and corresponds to choosing $n = 2$ in Yuval's answer. Larger $n$ would lead to even better codes (approaching the Shannon entropy in the limit, as he mentioned).
The average number of bits per symbol pair for the above encoding is
$$frac810 cdot frac810 cdot 1 + 3 cdot frac810 cdot frac110 cdot 3 + frac110 cdot frac810 cdot 4 + 4 cdot frac110 cdot frac110 cdot 6 = 1.92$$
i.e. $1.92/2 = 0.96$ bits per symbol, not that far from the Shannon entropy actually for such a simple encoding.
New contributor
add a comment |
up vote
17
down vote
up vote
17
down vote
Here is a concrete encoding that can represent each symbol in less than 1 bit on average:
First, split the input string into pairs of successive characters (e.g. AAAAAAAABC becomes AA|AA|AA|AA|BC). Then encode AA as 0, AB as 100, AC as 101, BA as 110, CA as 1110, BB as 111100, BC as 111101, CB as 111110, CC as 111111.
I've not said what happens if there is an odd number of symbols, but you can just encode the last symbol using some arbitrary encoding, it doesn't really matter when the input is long.
This is a Huffman code for the distribution of independent pairs of symbols, and corresponds to choosing $n = 2$ in Yuval's answer. Larger $n$ would lead to even better codes (approaching the Shannon entropy in the limit, as he mentioned).
The average number of bits per symbol pair for the above encoding is
$$frac810 cdot frac810 cdot 1 + 3 cdot frac810 cdot frac110 cdot 3 + frac110 cdot frac810 cdot 4 + 4 cdot frac110 cdot frac110 cdot 6 = 1.92$$
i.e. $1.92/2 = 0.96$ bits per symbol, not that far from the Shannon entropy actually for such a simple encoding.
New contributor
Here is a concrete encoding that can represent each symbol in less than 1 bit on average:
First, split the input string into pairs of successive characters (e.g. AAAAAAAABC becomes AA|AA|AA|AA|BC). Then encode AA as 0, AB as 100, AC as 101, BA as 110, CA as 1110, BB as 111100, BC as 111101, CB as 111110, CC as 111111.
I've not said what happens if there is an odd number of symbols, but you can just encode the last symbol using some arbitrary encoding, it doesn't really matter when the input is long.
This is a Huffman code for the distribution of independent pairs of symbols, and corresponds to choosing $n = 2$ in Yuval's answer. Larger $n$ would lead to even better codes (approaching the Shannon entropy in the limit, as he mentioned).
The average number of bits per symbol pair for the above encoding is
$$frac810 cdot frac810 cdot 1 + 3 cdot frac810 cdot frac110 cdot 3 + frac110 cdot frac810 cdot 4 + 4 cdot frac110 cdot frac110 cdot 6 = 1.92$$
i.e. $1.92/2 = 0.96$ bits per symbol, not that far from the Shannon entropy actually for such a simple encoding.
New contributor
New contributor
answered Nov 19 at 0:20
nomadictype
2712
2712
New contributor
New contributor
add a comment |
add a comment |
up vote
12
down vote
Let $mathcalD$ be the following distribution over $A,B,C$: if $X sim mathcalD$ then $Pr[X=A] = 4/5$ and $Pr[X=B]=Pr[X=C]=1/10$.
For each $n$ we can construct prefix codes $C_ncolon A,B,C^n to 0,1^*$ such that
$$
lim_ntoinfty fracoperatorname*mathbbE_X_1,ldots,X_n sim mathcalD[C_n(X_1,ldots,X_n)]n = H(mathcalD).
$$
In words, if we encode a large number of independent samples from $mathcalD$, then on average we need $H(mathcalD) approx 0.922$ bits per sample. Intuitively, the reason we can do with less than one bit is that each individual sample is quite likely to be $A$.
This is the real meaning of entropy, and it shows that computing the "entropy" of a string $A^8BC$ is a rather pointless exercise.
add a comment |
up vote
12
down vote
Let $mathcalD$ be the following distribution over $A,B,C$: if $X sim mathcalD$ then $Pr[X=A] = 4/5$ and $Pr[X=B]=Pr[X=C]=1/10$.
For each $n$ we can construct prefix codes $C_ncolon A,B,C^n to 0,1^*$ such that
$$
lim_ntoinfty fracoperatorname*mathbbE_X_1,ldots,X_n sim mathcalD[C_n(X_1,ldots,X_n)]n = H(mathcalD).
$$
In words, if we encode a large number of independent samples from $mathcalD$, then on average we need $H(mathcalD) approx 0.922$ bits per sample. Intuitively, the reason we can do with less than one bit is that each individual sample is quite likely to be $A$.
This is the real meaning of entropy, and it shows that computing the "entropy" of a string $A^8BC$ is a rather pointless exercise.
add a comment |
up vote
12
down vote
up vote
12
down vote
Let $mathcalD$ be the following distribution over $A,B,C$: if $X sim mathcalD$ then $Pr[X=A] = 4/5$ and $Pr[X=B]=Pr[X=C]=1/10$.
For each $n$ we can construct prefix codes $C_ncolon A,B,C^n to 0,1^*$ such that
$$
lim_ntoinfty fracoperatorname*mathbbE_X_1,ldots,X_n sim mathcalD[C_n(X_1,ldots,X_n)]n = H(mathcalD).
$$
In words, if we encode a large number of independent samples from $mathcalD$, then on average we need $H(mathcalD) approx 0.922$ bits per sample. Intuitively, the reason we can do with less than one bit is that each individual sample is quite likely to be $A$.
This is the real meaning of entropy, and it shows that computing the "entropy" of a string $A^8BC$ is a rather pointless exercise.
Let $mathcalD$ be the following distribution over $A,B,C$: if $X sim mathcalD$ then $Pr[X=A] = 4/5$ and $Pr[X=B]=Pr[X=C]=1/10$.
For each $n$ we can construct prefix codes $C_ncolon A,B,C^n to 0,1^*$ such that
$$
lim_ntoinfty fracoperatorname*mathbbE_X_1,ldots,X_n sim mathcalD[C_n(X_1,ldots,X_n)]n = H(mathcalD).
$$
In words, if we encode a large number of independent samples from $mathcalD$, then on average we need $H(mathcalD) approx 0.922$ bits per sample. Intuitively, the reason we can do with less than one bit is that each individual sample is quite likely to be $A$.
This is the real meaning of entropy, and it shows that computing the "entropy" of a string $A^8BC$ is a rather pointless exercise.
answered Nov 18 at 21:28
Yuval Filmus
187k12176338
187k12176338
add a comment |
add a comment |
Sean C is a new contributor. Be nice, and check out our Code of Conduct.
Sean C is a new contributor. Be nice, and check out our Code of Conduct.
Sean C is a new contributor. Be nice, and check out our Code of Conduct.
Sean C is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcs.stackexchange.com%2fquestions%2f100278%2fshannon-entropy-of-0-922-3-distinct-values%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown