Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Harringtons Compression Method Revistied *EXTREMELY LONG*
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 51 - 60 of 60 - Collapse all  -  Translate all to Translated (View all originals) < Older 
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Keith Thompson  
View profile  
 More options Jun 20 2006, 12:52 am
Newsgroups: comp.compression, comp.theory
From: Keith Thompson <ks...@mib.org>
Date: Tue, 20 Jun 2006 04:52:03 GMT
Local: Tues, Jun 20 2006 12:52 am
Subject: Re: Harringtons Compression Method Revistied *EXTREMELY LONG*

"Einstein" <michae...@gmail.com> writes:
> I am going to convince you with real software.

You're going to convince of *of what*?  You've mentioned a theorem.
Please state the theorem.

--
Keith Thompson (The_Other_Keith) ks...@mib.org  <http://www.ghoti.net/~kst>
San Diego Supercomputer Center             <*>  <http://users.sdsc.edu/~kst>
We must do something.  This is something.  Therefore, we must do this.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
John McCarten  
View profile  
 More options Jun 20 2006, 1:59 am
Newsgroups: comp.compression, comp.theory
From: "John McCarten" <maudlin.po...@hotmail.com>
Date: 19 Jun 2006 22:59:07 -0700
Local: Tues, Jun 20 2006 1:59 am
Subject: Re: Harringtons Compression Method Revistied *EXTREMELY LONG*

Yes. Me too. One often has to wait patiently for a bite. I only got one
bite, from BR, but that's the way it sometimes goes when fishing :)

> > The second thing is that the challenge file is to be created by sharnd.
> > The source code of which has been made available.

> So the problem ought to be easy.

True. Lucky for me the source was available. I would have been in
serious trouble otherwise.

> After einstein gives up

You may be in for a long wait, but as you've said :)

> I'll post a
> decompressor under 30 KB just to prove it can be done.

This will be definitely be worth seeing. I won't be calling tho'. I
will be safely out of harm's way, sitting on the rail, when you play
this hand.

   Yes.

> Also, there are known weaknesses in SHA-1
> (2^69 resistance to collisions), but I'm not too concerned.

My only concern is that I probably wouldn't be around when the key was
found :)  

> -- Matt Mahoney

john.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Robby Goetschalckx  
View profile  
 More options Jun 20 2006, 4:17 am
Newsgroups: comp.compression, comp.theory
Followup-To: comp.compression
From: Robby Goetschalckx <ro...@cs.kuleuven.be>
Date: Tue, 20 Jun 2006 10:17:30 +0200
Local: Tues, Jun 20 2006 4:17 am
Subject: Re: Harringtons Compression Method Revistied *EXTREMELY LONG*

Matt Mahoney wrote:
> Just curious, which did you prove, P = NP or P != NP?

Given his counterproofs of Shannon's theory, probably he proves that NP is a
strict subset of P.

robby


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
giorgio.tani@email.it  
View profile  
 More options Jun 20 2006, 5:44 am
Newsgroups: comp.compression, comp.theory
From: "giorgio.t...@email.it" <giorgio.t...@email.it>
Date: 20 Jun 2006 02:44:54 -0700
Local: Tues, Jun 20 2006 5:44 am
Subject: Re: Harringtons Compression Method Revistied *EXTREMELY LONG*

> Now, the problem is: how on earth do you ever expect to be able to map
> SEVEN (or 2^(N+1) - 1) plain text strings to THREE (or 2^N - 1)
> compressed strings?
> E.g.:
> '11' -> (compression) -> '1'
> '10' -> (compression) -> '0'
> '01' -> (compression) -> ''
> '00' -> (compression) -> ??????? // no possibilities left...
> '0'  -> (compression) -> ??????? // no possibilities left...
> '1'  -> (compression) -> ??????? // no possibilities left...
> ''   -> (compression) -> ??????? // no possibilities left...
> This goes for any N!!! Claiming that you can compress *any* and *all*
> strings of length N or less, is saying that you can map all possible
> 2^(N+1) - 1 plain text strings to 2^N - 1 compressed strings. I'm afraid
> you want to fill pigeon holes with on average about 2 pigeons per hole.

It's a very good and clear example.
And: if the program compress all strings of n bytes (that what is
needed to compress a random file using a rigorous definition of
random), then nothing prevent you to use it recursively (the output
file is an *any file*), so if any input file is compressed at least of
1 bit each time we have that any file of n bit must disappear (being 0
bit of size) after being recursively compressed by that program n
times, that is equal to proof that the compressor is not lossless since
all the n bits of information are now gone.

As said in other posts, anyone could use a PRN generator and so provide
a very efficient compressor that map each random looking output to his
seed and size, however it is indeed compressing a subgroup of files,
not at all compressing all files.
In other worlds a program that generate a random looking output, use
ent or diehard suite to say that "it's random" (really, the tests can
only say that is probable that the file doesn't contain any
recognizable structure, and many good PRNG will pass that kind of
tests) and compress it to an amazingly small file is not enough to say
that any arbirtrary input can be compressed.
Trying to recompress the output recursively is a way to disprove the
claim, if the compressor can compress an arbitrary input it must
compress any of the output of the recusion until the output size is 0,
proving itself to not be a lossless compressor.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
markn@ieee.org  
View profile  
 More options Jun 20 2006, 9:28 am
Newsgroups: comp.compression, comp.theory
From: "ma...@ieee.org" <snorkel...@gmail.com>
Date: 20 Jun 2006 06:28:06 -0700
Local: Tues, Jun 20 2006 9:28 am
Subject: Re: Harringtons Compression Method Revistied *EXTREMELY LONG*

Matt Mahoney wrote:

> Just curious, which did you prove, P = NP or P != NP?

> -- Matt Mahoney

Yes, do tell, I've been dying to see how this one turns out.

I'm not calling for a straw poll or anything, but we're all betting on
P != NP, right?

But if P = NP, what a world!

|
| Mark Nelson
|


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Matt Mahoney  
View profile  
 More options Jun 20 2006, 11:46 am
Newsgroups: comp.compression, comp.theory
From: "Matt Mahoney" <matmaho...@yahoo.com>
Date: 20 Jun 2006 08:46:52 -0700
Local: Tues, Jun 20 2006 11:46 am
Subject: Re: Harringtons Compression Method Revistied *EXTREMELY LONG*

Yep, and it's a simple proof too.  All you need is a compressor that
will compress any string longer than m, and you can perform any
computation in O(n) time, which is in P:

1. Recursively compress the input from size n to size m in O(n) time.
(I have omitted some details, such as encoding the number of
recursions, dealing with compression by more than one bit, and showing
that each cycle does not depend on n so is O(1), but the basic result
is the same).
2. Compute the compressed output in O(1) time using a 2^m by m lookup
table.
3. Recursively decompress the output in O(n) time.  Total computation
is O(n).

As a corrolary, the halting problem is in P.  This fact can be used to
solve the 6 remaining Clay millenium prize problems.

Einstein, if you are still interested in the Clay prizes, let me know.
Here is the deal.
1. You pay me a fee of $1000 by July 1, 2006.
2. You write and publish (with source code) a compressor/decompressor
pair that will compress every file or string larger than some size m by
at least one bit, where m is any positive integer you choose, and the
decompressor restores the original input to the compressor.
3. After step 2, I will write a paper with you as co-author solving the
7 millenium problems and get it published in an appropriate mathematics
journal within 6 months.
4. The Clay Institute requires a 2 year waiting period after
publication, acceptance within the mathematics community, and approval
by their scientific advisory board before awarding the prizes ($7
million).  We split the prize money, regardless of the actual amount.
5. If after step 2 I fail to complete steps 3 and 4 (for the full $7
million) then I refund my fee.
6. There is no refund if you fail to complete step 2.
7. After July 1, 2006 my fee increases to $2000, then increases $1000
per week after that.  The amount of the fee is determined by the day
that I receive payment.
8. There is no time limit for you to complete step 2.
9. You are free to file for patents worldwide on your algorithm for
step 2 with you as sole inventor.

If we have a deal, contact me by email to arrange payment.

Of course you can go it alone and claim the whole $7 million for
yourself (or at least $1 million for P = NP using either the proof I
posted or the one sitting on your other computer).  I don't know if you
have tried to publish any papers before, but it can be a humbling
experience.  It really helps to get outside assistance in this matter.

-- Matt Mahoney


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
markn@ieee.org  
View profile  
 More options Jun 20 2006, 5:15 pm
Newsgroups: comp.compression, comp.theory
From: "ma...@ieee.org" <snorkel...@gmail.com>
Date: 20 Jun 2006 14:15:07 -0700
Local: Tues, Jun 20 2006 5:15 pm
Subject: Re: Harringtons Compression Method Revistied *EXTREMELY LONG*
So as long as guys like Harrington are out there, I need to make sure
that we keep the million random digit challenge on the table. In the
past it's been a little hard to find, you have to search through
comp.compression and there are various false hits.

Now, it has a permanent home on my site:

http://marknelson.us/2006/06/20/million-digit-challenge/

Einstein, the point of the million random digit challenge is basically
to encourage people with magical compressor claims to put up or shut
up. If you can beat the challenge within the spirit of the rules, you
win.

It's been out there for four or five years, and nobody has taken a
serious crack at it. One or two people have noted that there is a tiny
bit of redundancy in the million random digit file, but not enough to
exploit with a conventional decompressor - nibbling away a dozen bytes
doesn't leave room for much of a decompression program.

Nope, to compress this file will take a magic compressor. So, why not
code up what you've been talking about and earn undying fame by meeting
the challenge? It's no Clay Prize, but then, I don't have a retail
empire or a family fortune to fund a prize of this nature.

But I'm still in for $100.

|
|


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Fibonanci Code  
View profile  
 More options Jun 21 2006, 11:04 am
Newsgroups: comp.compression, comp.theory
From: "Fibonanci Code" <angli...@gmail.com>
Date: 21 Jun 2006 08:04:09 -0700
Local: Wed, Jun 21 2006 11:04 am
Subject: Re: Harringtons Compression Method Revistied *EXTREMELY LONG*

Hi all,

           I found a way to create a recursive compressor software
right away if some one could transform any random file into this format
(for example) with minimal additional bytes.
             111110110001101111000

each section in the binary string of the output must have runs of 1,
with the length atleast 2 and above, and run of the zero is atleast 1
and above...

                x>=2 , y>=1  where x = run length of 1, and y = run
length of 0

                so the minimal group will be like this 110

if anyone found any variable length code that have this characteristic
or output of
some codec generate something like this, please contact me
immediately...
we will create the miracle and solve this problem once for all.

I am hinting Fibonanci for the 11 but still it is not suitable...

Einstein, this is a challenge for you.. I only need a data transform to
complete
the quest. so before I complete it with the help of experts here, I do
hope you did first.

Thanks.

Regards,
Ray


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Geevarghese Philip  
View profile  
 More options Jun 24 2006, 1:41 pm
Newsgroups: comp.compression, comp.theory
From: Geevarghese Philip <gphilip.newsgro...@gmail.com>
Date: Sat, 24 Jun 2006 22:41:49 +0500
Local: Sat, Jun 24 2006 1:41 pm
Subject: Re: Harringtons Compression Method Revistied *EXTREMELY LONG*

> I will have a functional code sequence as soon as I lick this issue I
> have with loops in PHP

Any guesses on what this "issue with loops" might be? I am curious since
the Halting Problem reduces to the problem Mr.Einstein claims to have
solved.

Philip


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
jacko  
View profile  
 More options Jun 27 2006, 10:22 pm
Newsgroups: comp.compression, comp.theory
From: "jacko" <jackokr...@gmail.com>
Date: 27 Jun 2006 19:22:52 -0700
Local: Tues, Jun 27 2006 10:22 pm
Subject: Re: Harringtons Compression Method Revistied *EXTREMELY LONG*
Back online again for a short while.

Seems like another one of the futile. MUST not map directly , must
modulate representation, must sleep.

nice quadrapak parabolic antenna me thinks he, he


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages < Older 
« Back to Discussions « Newer topic     Older topic »