Documentation

FormalConjectures.Wikipedia.SparseRuler

Sparse Ruler #

A sparse ruler of length $L$ is a sequence of marks $0 = a_1 < a_2 < \dots < a_m = L$. A distance $k \in \mathbb{N}$ can be measured if there are $i, j \in \{1, \dots, m\}$, such that $k = a_j - a_i$.

One question concerns the structure of optimal rulers. Wichmann [Wi63] gave a parametric family of sparse rulers and conjectured that, beyond a small number of exceptions, every optimal ruler is of his type. The known exceptions occur at lengths $1, 13, 17, 23, 58$; the largest of these has $13$ segments, which motivates the bound below.

The asymptotic growth of the minimal number of marks of an optimal ruler of length $L$ — i.e. the limit of $l(n)^2 / n$, conjectured to lie in $[2.434\ldots, 3]$ — is the subject of FormalConjectures.ErdosProblems.«170» (there phrased via $F(N)/\sqrt{N}$), and is not restated here.

References:

A ruler is described by its list of segment lengths (gaps) g, so that its marks are the partial sums $0 = m_0 < m_1 < \cdots < m_n = L$, where $n$ (g.length) is the number of segments and $L$ (g.sum) is the length.

Equations
Instances For

    A ruler is complete (a perfect ruler) if its marks form a difference basis for $\{0, 1, \ldots, L\}$, i.e. every distance $k \le L$ is the difference of two marks. This is Finset.IsDifferenceBasis applied to the marks.

    Equations
    Instances For

      A complete ruler is minimal if no complete ruler of the same length $L$ has fewer marks (equivalently, fewer segments).

      Equations
      Instances For

        A complete ruler is maximal if no complete ruler with the same number of marks (equivalently, the same number of segments) has greater length.

        Equations
        Instances For

          A ruler is optimal if it is both minimal and maximal.

          Equations
          Instances For

            The Wichmann ruler $W(r, s)$ [Wi63], given by its segment-length sequence $$1^r,\; (r+1),\; (2r+1)^r,\; (4r+3)^s,\; (2r+2)^{r+1},\; 1^r,$$ where $a^b$ denotes $b$ consecutive segments of length $a$.

            Equations
            Instances For
              theorem SparseRuler.wichmannGaps_length (r s : ) :
              (wichmannGaps r s).length = 4 * r + s + 2

              The Wichmann ruler $W(r, s)$ has $4r + s + 2$ segments, hence $4r + s + 3$ marks [Wi63].

              theorem SparseRuler.wichmannGaps_sum (r s : ) :
              (wichmannGaps r s).sum = 4 * r * (r + s + 2) + 3 * (s + 1)

              The Wichmann ruler $W(r, s)$ has length $4r(r + s + 2) + 3(s + 1)$ [Wi63].

              theorem SparseRuler.wichmann_conjecture {g : List } (hopt : IsOptimal g) (hseg : 13 < g.length) :
              ∃ (r : ) (s : ), g = wichmannGaps r s g = (wichmannGaps r s).reverse

              Wichmann's conjecture on optimal rulers. Every optimal ruler with more than $13$ segments is a Wichmann ruler $W(r, s)$ (up to reflection, i.e. reversing the segment list). Posed by Wichmann [Wi63]; the finitely many known exceptions all have at most $13$ segments (lengths $1, 13, 17, 23, 58$), and no further exceptions are known up to length $213$.