erdos-problems 0.3.4 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/packs/number-theory/problems/848/BOUNDED_VERIFICATION_PLAN.md +3 -1
- package/packs/number-theory/problems/848/EXACT_SMALL_N_1_10000_CERTIFICATE.md +58 -0
- package/packs/number-theory/problems/848/EXACT_SMALL_N_1_10000_RESULTS.json +100018 -0
- package/packs/number-theory/problems/848/FRONTIER_NOTE.md +1 -1
- package/packs/number-theory/problems/848/INTERVAL_WORK_QUEUE.yaml +6 -6
- package/packs/number-theory/problems/848/OPS_DETAILS.yaml +22 -8
- package/packs/number-theory/problems/848/ROUTE_HISTORY.md +4 -2
- package/packs/number-theory/problems/848/VERIFICATION_CERTIFICATE_SPEC.md +3 -0
- package/packs/number-theory/problems/848/VERIFICATION_REGIMES.md +5 -2
- package/packs/number-theory/problems/848/compute/problem848_small_n_exact_scan.mjs +62 -45
- package/packs/number-theory/problems/848/context.yaml +6 -5
- package/problems/848/EVIDENCE.md +4 -2
- package/problems/848/ROUTES.md +3 -2
- package/problems/848/SHARE_READY_SUMMARY.md +1 -1
- package/packs/number-theory/problems/848/EXACT_SMALL_N_1_2000_CERTIFICATE.md +0 -55
- package/packs/number-theory/problems/848/EXACT_SMALL_N_1_2000_RESULTS.json +0 -102531
package/package.json
CHANGED
|
@@ -38,7 +38,9 @@ What success would look like:
|
|
|
38
38
|
- the remaining uncovered range shrinks monotonically
|
|
39
39
|
|
|
40
40
|
Current progress:
|
|
41
|
-
- the repo now has an exact small-`N` certificate for `1..
|
|
41
|
+
- the repo now has an exact small-`N` certificate for `1..10000`
|
|
42
|
+
- an incremental verifier replaced the misleading earlier cost wall and made larger exact
|
|
43
|
+
tranches practical again
|
|
42
44
|
|
|
43
45
|
What this lane is not:
|
|
44
46
|
- not brute force to `2.64 x 10^17`
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Problem 848 Exact Small-`N` Certificate: `1..10000`
|
|
2
|
+
|
|
3
|
+
This is the current exact bounded-verification base certificate frozen in the repo for
|
|
4
|
+
Problem `848`.
|
|
5
|
+
|
|
6
|
+
## Claim
|
|
7
|
+
|
|
8
|
+
For every `N` with `1 <= N <= 10000`, the maximum size of a set `A subseteq [N]` such that
|
|
9
|
+
`ab + 1` is never squarefree for all `a, b in A` is equal to the size of the `7 mod 25`
|
|
10
|
+
or `18 mod 25` residue class in `[N]`.
|
|
11
|
+
|
|
12
|
+
This certificate only covers the interval `1..10000`.
|
|
13
|
+
|
|
14
|
+
## Method class
|
|
15
|
+
|
|
16
|
+
- `exact_small_n`
|
|
17
|
+
|
|
18
|
+
## Reproduction
|
|
19
|
+
|
|
20
|
+
Command used:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
node packs/number-theory/problems/848/compute/problem848_small_n_exact_scan.mjs \
|
|
24
|
+
--min 1 \
|
|
25
|
+
--max 10000 \
|
|
26
|
+
--json-output packs/number-theory/problems/848/EXACT_SMALL_N_1_10000_RESULTS.json
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
The script:
|
|
30
|
+
- filters vertices by the loop condition `a^2 + 1` not squarefree
|
|
31
|
+
- grows the compatibility graph incrementally as `N` increases
|
|
32
|
+
- keeps the current maximum clique and only solves a new exact clique problem when the fresh
|
|
33
|
+
vertex can actually improve the bound
|
|
34
|
+
- emits compact machine-readable rows by recording the residue-class witness directly whenever
|
|
35
|
+
the maximum clique is a full `7 mod 25` or `18 mod 25` class
|
|
36
|
+
|
|
37
|
+
## Outcome
|
|
38
|
+
|
|
39
|
+
- interval: `1..10000`
|
|
40
|
+
- result: verified
|
|
41
|
+
- every scanned `N` satisfied:
|
|
42
|
+
- `max_clique_size = max(|{n in [N] : n equiv 7 mod 25}|, |{n in [N] : n equiv 18 mod 25}|)`
|
|
43
|
+
|
|
44
|
+
The machine-readable result packet is:
|
|
45
|
+
- `EXACT_SMALL_N_1_10000_RESULTS.json`
|
|
46
|
+
|
|
47
|
+
## Scope warning
|
|
48
|
+
|
|
49
|
+
This does **not** certify anything above `10000`.
|
|
50
|
+
It is a base interval certificate only.
|
|
51
|
+
|
|
52
|
+
## Why this interval matters
|
|
53
|
+
|
|
54
|
+
- it creates a real in-repo covered interval, not just a verification plan
|
|
55
|
+
- it shows that exact coverage can reach substantially farther than the old pre-incremental
|
|
56
|
+
verifier suggested
|
|
57
|
+
- it does not rely on disputed public computation
|
|
58
|
+
- it gives the bounded-verification lane a concrete certificate format and reproduction path
|