TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

A ridiculous patent for arbitrary compression

50 pointsby seagaiaover 13 years ago

13 comments

DarkShikariover 13 years ago
Actually, it is possible to write a compression program that can compress any file, even random data, by one byte: <a href="http://cs.fit.edu/~mmahoney/compression/barf.html" rel="nofollow">http://cs.fit.edu/~mmahoney/compression/barf.html</a><p><i>(See if you can spot the evil trick.)</i>
评论 #3228985 未加载
评论 #3229042 未加载
评论 #3229175 未加载
评论 #3229165 未加载
评论 #3228817 未加载
评论 #3229192 未加载
gregschlomover 13 years ago
When I was 15 I spent a lot of time working on my own compression algorithm... The idea was to treat the data as one giant integer and divide it by 2 recursively, each time reducing the size of the data by one bit.<p>The hard part was finding a way to store the remainder of the division if the data was odd...
pwgover 13 years ago
Note that while it does not change the level of ridiculousness, the patent mentioned was granted on Jul. 2, 1996, so it is now almost 15.5 years old.
评论 #3229351 未加载
saulrhover 13 years ago
Amusingly, the comp.compression FAQ that this page cites includes a discussion of <i>this very patent</i> from way back when it was submitted. Go to <a href="http://www.faqs.org/faqs/compression-faq/part1/section-8.html" rel="nofollow">http://www.faqs.org/faqs/compression-faq/part1/section-8.htm...</a> and grep for "5,533,051".
SagelyGuruover 13 years ago
This patent, and many other similar 'Intellectual Property Rights' are no doubt carefully entered on some accounts as real assets and then 'financialised', i.e. leveraged by a huge factor, borrowed against, turned into some kind of bonds and then the whole process repeated several times.
gregableover 13 years ago
If I treat the file as one big integer and each pass through my compression simply decrements by one, eventually ill achieve one bit or zero bits depending on how you look at it.<p>Uncompressing simply requires knowing how many compression steps I took. :)
amadvanceover 13 years ago
Ridiculous is not the patent, but the patent system that accepted it.
评论 #3229652 未加载
评论 #3229416 未加载
DanBCover 13 years ago
Here's a nice write-up of an attempt at the comp.compression challenge.<p>(<a href="http://www.patrickcraig.co.uk/other/compression.htm" rel="nofollow">http://www.patrickcraig.co.uk/other/compression.htm</a>)<p>EDIT:<p>(<a href="http://www.maximumcompression.com/compression_fun.php" rel="nofollow">http://www.maximumcompression.com/compression_fun.php</a>)<p>&#62; <i>Does there exist a file which is extremely compressable by one archiver, but almost incompressable by another one?. I thought the answer was no, but Nimda Admin did sent me a file with these very strange properties. Please download and extract the rarred file strange.rar and try to compress it with (win)rar and (win)zip. You will see compression is RAR is extremely good, but compression in ZIP is almost 0%!. Just when you think you understand compression, someone sends you this file. Thanks Nimda :-) </i>
thoughtsimpleover 13 years ago
Well at least we know that there was no valid prior art. So at least that part of the patent review worked correctly.
westbywestover 13 years ago
It looks like this was nearly contemporary with the Adams Platform video compression scam. (The scammer claimed he could transmit streaming, high definition video over a 56kbit dialup modem, and he somehow collected $27Million from gullible funders.) <a href="http://www.itwire.com/opinion-and-analysis/cornered/41010-the-great-video-compression-scam-how-adam-clark-hoodwinked-tolly-group-and-many-more?tmpl=component&#38;print=1&#38;layout=default&#38;page=" rel="nofollow">http://www.itwire.com/opinion-and-analysis/cornered/41010-th...</a>
DanBCover 13 years ago
The Hutter Prize (<a href="http://prize.hutter1.net/" rel="nofollow">http://prize.hutter1.net/</a>) claims that compression is related to intelligence, and that good compression is advancing towards AI.<p>I'm not so sure, but it leads to interesting ideas.<p>A genetic algorithm, taking sample chunks from the expanded data, creating dictionaries, compressing, and comparing scores might be a useful approach. (But a poor fit for the hutter prize's restrictions.)
danbmil99over 13 years ago
&#62; the direct bit encode method of the present invention is effective for reducing an input string by one bit regardless of the bit pattern of the input string.<p>Beautiful.
StavrosKover 13 years ago
What kind of a genius does it take to realize that you can't represent two bits by one bit?