Tagged Questions

8
votes
4answers
305 views

Practical way of explaining “Information Theory”

Information theory comes into play where ever encoding & decoding is present. For example: compression(multimedia), cryptography. In Information Theory we encounter terms like "Entropy", "Self ...
7
votes
1answer
131 views

Compressibility Example

From my algorithms textbook: The annual county horse race is bringing in three thoroughbreds who have never competed against one another. Excited, you study their past 200 races and summarize ...
5
votes
4answers
2k views

Shannon's entropy formula. Help my confusion

my understanding of the entropy formula is that it's used to compute the minimum number of bits required to represent some data. It's usually worded differently when defined, but the previous ...
4
votes
3answers
253 views

Theory: Compression algorithm that makes some files smaller but none bigger?

I came across this question; "A lossless compression algorithm claims to guarantee to make some files smaller and no files larger. Is this; a) Impossible b) Possible but may run for an ...
3
votes
1answer
186 views

data compression - machine learning for exponential distribution

Are there any machine learning algorithms, prediction models that can help me compress exponentially distributed data? I have already encoded the file using golomb codes, which definitely saves tons ...
2
votes
3answers
186 views

Any theoretical limit to compression?

Imagine that you had all the supercomputers in the world at your disposal for the next 10 years. Your task was to compress 10 full-length movies losslessly as much as possible. Another criteria was ...
2
votes
4answers
971 views

Relation of Entropy to Lossless Compression Rate

From Shannon's Source Coding Theorem we know that the entropy of a compressed string is bounded by the entropy of the original string like so: H(X) <= L < H(X) + 1/N where H(X) is entropy of ...
0
votes
2answers
102 views

What's the best entropy encoding scheme to compress symbols with a known probability distribution?

I'm looking to encode user_ids in a long list of call records. The parts of these records that takes up the most space are the symbols for the caller and receiver. I will create a map that assigns ...