erdos-problems 0.3.4 → 0.3.5
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 +2 -1
- package/packs/number-theory/problems/848/{EXACT_SMALL_N_1_2000_CERTIFICATE.md → EXACT_SMALL_N_1_3000_CERTIFICATE.md} +10 -10
- package/packs/number-theory/problems/848/EXACT_SMALL_N_1_3000_RESULTS.json +213791 -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 +15 -8
- package/packs/number-theory/problems/848/ROUTE_HISTORY.md +3 -2
- package/packs/number-theory/problems/848/VERIFICATION_REGIMES.md +5 -2
- package/packs/number-theory/problems/848/context.yaml +5 -5
- package/problems/848/EVIDENCE.md +5 -3
- 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_RESULTS.json +0 -102531
package/package.json
CHANGED
|
@@ -38,7 +38,8 @@ 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..3000`
|
|
42
|
+
- a direct jump to `1..5000` no longer looks cheap enough to treat as the default next move
|
|
42
43
|
|
|
43
44
|
What this lane is not:
|
|
44
45
|
- not brute force to `2.64 x 10^17`
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
# Problem 848 Exact Small-`N` Certificate: `1..
|
|
1
|
+
# Problem 848 Exact Small-`N` Certificate: `1..3000`
|
|
2
2
|
|
|
3
3
|
This is the first exact bounded-verification certificate frozen in the repo for Problem `848`.
|
|
4
4
|
|
|
5
5
|
## Claim
|
|
6
6
|
|
|
7
|
-
For every `N` with `1 <= N <=
|
|
7
|
+
For every `N` with `1 <= N <= 3000`, the maximum size of a set `A subseteq [N]` such that
|
|
8
8
|
`ab + 1` is never squarefree for all `a, b in A` is equal to the size of the `7 mod 25`
|
|
9
|
-
residue class in `[N]`.
|
|
9
|
+
or `18 mod 25` residue class in `[N]`.
|
|
10
10
|
|
|
11
|
-
This certificate only covers the interval `1..
|
|
11
|
+
This certificate only covers the interval `1..3000`.
|
|
12
12
|
|
|
13
13
|
## Method class
|
|
14
14
|
|
|
@@ -21,8 +21,8 @@ Command used:
|
|
|
21
21
|
```bash
|
|
22
22
|
node packs/number-theory/problems/848/compute/problem848_small_n_exact_scan.mjs \
|
|
23
23
|
--min 1 \
|
|
24
|
-
--max
|
|
25
|
-
--json-output packs/number-theory/problems/848/
|
|
24
|
+
--max 3000 \
|
|
25
|
+
--json-output packs/number-theory/problems/848/EXACT_SMALL_N_1_3000_RESULTS.json
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
The script:
|
|
@@ -34,17 +34,17 @@ The script:
|
|
|
34
34
|
|
|
35
35
|
## Outcome
|
|
36
36
|
|
|
37
|
-
- interval: `1..
|
|
37
|
+
- interval: `1..3000`
|
|
38
38
|
- result: verified
|
|
39
39
|
- every scanned `N` satisfied:
|
|
40
|
-
- `max_clique_size = |{n in [N] : n equiv 7 mod 25}
|
|
40
|
+
- `max_clique_size = max(|{n in [N] : n equiv 7 mod 25}|, |{n in [N] : n equiv 18 mod 25}|)`
|
|
41
41
|
|
|
42
42
|
The machine-readable result packet is:
|
|
43
|
-
- `
|
|
43
|
+
- `EXACT_SMALL_N_1_3000_RESULTS.json`
|
|
44
44
|
|
|
45
45
|
## Scope warning
|
|
46
46
|
|
|
47
|
-
This does **not** certify anything above `
|
|
47
|
+
This does **not** certify anything above `3000`.
|
|
48
48
|
It is a base interval certificate only.
|
|
49
49
|
|
|
50
50
|
## Why this interval matters
|