E.g. how can it tell that a 4GB text file can be compressed to, say, 200MB? Obviously, it doesn't read all of the contents in 2 or so seconds... so what kind of predictive algorithm(s) does it use?

link|improve this question
1  
I am only guessing that it samples the file and tries to compress say 1% of the file and estimates based on this. Of course the samples must be scattered all over the file. – Tomasz Nurkiewicz Mar 27 '11 at 16:33
feedback

2 Answers

They use variant of Prediction by partial matching (PPM) called PPMd. Look at wiki

link|improve this answer
1  
Rar does use ppmd but it isn't related in any way to compression ratio estimation. "Partial matching" in PPM is about prediction of next symbol by a short prefix string (not the full match). PPM is more computationally heavy than LZ, so its unlikely that its used for any fast estimation. Anyway, nobody knows how rar does it, but Tomasz is likely right. – Shelwien Mar 27 '11 at 18:40
@Shelwien: I'm a great fan of your site! I love data compression - but my understanding is limited ( and I'm a lazy person ) but what do you think of my answer? Is it worth an upvote? Thank you! – Chibox Mar 27 '11 at 19:06
@epitaph: sorry, but its both wrong and unrelated to the question. – Shelwien Mar 27 '11 at 20:34
1  
I mean char a=3, char b=4 then -log(3)+log(2)+log(4)+log(2) = how many bits you need to encode the string aaaabbbb. – Chibox Mar 27 '11 at 21:35
1  
No, that's not how it works. Shannon's entropy is -log2(p)=-log(p)/log(2). In your case its -4*log2(a/(a+b))-4*log2(b/(a+b)) = (8*log(7)-4*log(3)-4*log(4))/log(2) – Shelwien Mar 28 '11 at 1:13
show 3 more comments
feedback

It takes usually -log(x) + log(2) bits to compress x bits. However this is a highly theoretical value and it depends heavenly on the data you want to compress. For your data you have to record each character and frequency and insert it in the formula. For example try only 3 character first. You want to look for shannon-code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.