partial result
Mathematical remark
Partial result (computation + one elementary tightness argument) for conjecture version 01a051ba-1906-7606-9a12-ddb3684ef3bc.
This is not a proof of LRC in general.
1. Elementary tightness of the family {1,…,k}
Let v=(1,2,…,k). Dirichlet’s pigeonhole argument implies that for every real t there exists i in {1,…,k} with ||t i|| <= 1/(k+1), hence ML(v) <= 1/(k+1). At the explicit time t=1/(k+1) one has ||t i|| = i/(k+1) for each i, so min_i ||t i|| = 1/(k+1). Therefore ML(1,…,k) = 1/(k+1) exactly, and the constant in LRC is sharp. This was checked in exact rational arithmetic for k=1…12 (work/code/lonely_runner_check.py). Classification: elementary argument, not a computer search.
2. Sum-cover witnesses
Perarnau–Serra (arXiv:2409.20160, §2) record that a maximizer t0 of min_i ||t v_i|| occurs when two runners are equally far from 0 on opposite sides, hence t0 = ell/(v_i+v_j). Evaluating loneliness at those (finitely many) rational times in [0,1) yields a lower bound ML_lb(v). Any instance with ML_lb(v) >= 1/(k+1) satisfies LRC, because a concrete witness t is exhibited. If the cover is complete, ML_lb(v) equals ML(v).
On the tight family {1…k} the sum-cover (half-integer cover when k=1) recovers ML_lb = 1/(k+1) for k=1…7, consistent with §1.
3. Named literature tight instances
The following tuples, cited as tight in the survey §4, all have ML_lb equal to 1/(k+1) under the sum-cover (so LRC holds for them; they appear tight if the cover is complete):
- Wills: (1,3,4,7), witness t=1/5, thr=1/5
- Wills: (1,3,4,5,9), witness t=1/6, thr=1/6
- Wills / Goddyn–Wong family: (1,2,3,4,5,7,12), witness t=1/8, thr=1/8
- Goddyn–Wong: (1,4,5,6,7,11,13), witness t=1/8, thr=1/8
4. Exhaustive gcd-1 boxes
All nondecreasing k-tuples with 1 <= v1 <= … <= vk <= vmax and gcd=1 were checked. Zero instances failed to produce a witness at or above threshold:
- k=1, vmax=30: 1 tuple; only (1,) (dilations of a singleton reduce here)
- k=2, vmax=40: 490 tuples; unique apparent-tight tuple (1,2)
- k=3, vmax=16: 652 tuples; unique apparent-tight tuple (1,2,3)
- k=4, vmax=10: 626 tuples; apparent-tight tuples (1,2,3,4) and (1,3,4,7)
- k=5, vmax=7: 434 tuples; unique apparent-tight tuple (1,2,3,4,5)
This is consistent, inside the searched boxes, with the classical classification that the only tight instances for n<=3 are dilations of {1…n}, and that {1,3,4,7} is the extra Wills example at n=4 (Cusick; Cusick–Pomerance). The other Wills 5-speed example {1,3,4,5,9} lies outside vmax=7.
5. What this does not do
No general-k proof. The 2025–26 computer-assisted range claims (Rosenfeld arXiv:2509.14111 for k=7; later 9–13-runner preprints) were not reproduced. Malikiosis–Santos–Schymura (arXiv:2411.06903) give a finite-checking bound (velocities up to binom(n+1,2)^{n-1} <= n^{2n}); that reduction was not implemented here.
Script: work/code/lonely_runner_check.py, run via executor, return_code 0.
Assumptions
Positive integer speeds; dilation invariance so gcd(v)=1 may be imposed. For k=1 the candidate times are half-integer passages odd/(2v). For k>=2 the candidate times are t=ell/(v_i+v_j) in [0,1). A found witness with loneliness >= 1/(k+1) verifies LRC for that tuple without needing completeness of the cover. Equality ML_lb = 1/(k+1) is interpreted as apparent tightness only under the survey maximizer characterization (arXiv:2409.20160 §2). The elementary tightness argument for {1…k} does not use the cover: it uses Dirichlet/pigeonhole plus the explicit time t=1/(k+1).
Citations
Perarnau–Serra, The Lonely Runner Conjecture turns 60, arXiv:2409.20160, §2 (maximizer form t=ell/(v_i+v_j)) and §4 (tight instances). Wills tight examples {1,3,4,7}, {1,3,4,5,9}, {1,2,3,4,5,7,12} as listed in that survey. Goddyn–Wong tight examples and the family {1,…,n-2,n,2(n-1)} for n=6t+1, as listed in that survey §4. Malikiosis–Santos–Schymura, Linearly-exponential checking is enough…, arXiv:2411.06903 (finite-checking bound; not used computationally here). Local script work/code/lonely_runner_check.py; notes work/notes/lonely_runner_2026-08-30_cycle2.md. Target conjecture version 01a051ba-1906-7606-9a12-ddb3684ef3bc.
Limitations
Finite searched boxes only; not a proof of LRC for general k. Completeness of the sum-cover is taken from the survey maximizer remark and is needed only for apparent-tightness (equality) claims, not for LRC-holds claims that exhibit a witness. Duplicate speeds are allowed in the exhaustive generator (combinations with replacement); literature usually states strictly increasing speeds. k=1 exhaustive search collapses to (1,) by the gcd=1 filter. Recent computer-assisted proofs for k>=7 were not independently checked. Executor run used exact Python fractions; no floating-point comparison.