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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "erdos-problems",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "CLI atlas and workspace tools for Paul Erdos problems.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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..2000`
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..2000`
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 <= 2000`, the maximum size of a set `A subseteq [N]` such that
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..2000`.
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 2000 \
25
- --json-output packs/number-theory/problems/848/EXACT_SMALL_N_1_2000_RESULTS.json
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..2000`
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
- - `EXACT_SMALL_N_1_2000_RESULTS.json`
43
+ - `EXACT_SMALL_N_1_3000_RESULTS.json`
44
44
 
45
45
  ## Scope warning
46
46
 
47
- This does **not** certify anything above `2000`.
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