Strategy to locate counterexamples
See original GitHub issueTap two blue and one to cast nuh-uh
- Create any input
n
- Compress
n
, yieldingn₁
- Compress
n₁
, yieldingn₂
- Iterate, compressing
nₓ
, yieldingnₓ₊₁
, terminating atnₐ
Concept: this compressor does not attempt to achieve infinite compressability. ∴ there is a sequence in the compression of n
where compression ceases, which we label nₐ
, because Unicode is a jerk and doesn’t have a subscript y or z.
The claim
In essence, this is transforming the question from “is it mathematically possible?” to “can I claim to do it and not being detected as a fraud?”.
The response
No. There is a creatable counterexample at every nₐ
.
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
abstract algebra - Advice on finding counterexamples
1) Consult a list of known counter-examples. This is a really good strategy in subjects like analysis and topology.
Read more >What are ideas and strategies on improving at discovering ...
1 Answer 1 · A key to discovering counter-examples is to understand the examples. Taken an example and try to modify to get...
Read more >How to Use Examples and Counterexamples in Proof
Learn some strategies to generate and test your own examples and counterexamples in proof, and why they are important for mathematical reasoning.
Read more >Searching for RH Counterexamples — Search Strategies
We're glibly searching for counterexamples to the Riemann Hypothesis, to trick you into learning about software engineering principles.
Read more >Searching for RH Counterexamples — Exploring Data
Use that to refine the search strategy. Try searching randomly in the superabundant enumeration around 1k and 10k prime factors, and see if...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
You might want to read again what you are trying to disclaim. I mean, even the README file! It’s written in plain letter that “this is NOT infinite compression”. I do not (and explain at length in the paper that I cannot) claim to reduce every input, only that that there is no strict increase in length. In your pseudocode, your
w_1.length < w_0.length
should bew_1.length <= w_0.length
.the issue is that
On Mon, Oct 4, 2021 at 12:31 PM Solomon Ucko @.***> wrote: