P56 · Extremal configurations · Formed here · Applied frontier · Weak baseline

The most uniform sampling mesh in the unit square · n = 7

Place n points in the unit square. h is the greatest distance any location has to its nearest point, δ the distance of the closest pair; the score is M = 2h/δ. Make it as small as you can.

Instancen = 7
ObjectiveMinimize the uniformity M
Proven floor1no arrangement can go below 1.000000000000000 · the record stands 26.1% above itThe closest pair's midpoint is δ/2 from both endpoints, and a third point within δ/2 of it would be within δ of both, contradicting δ's minimality. So h ≥ δ/2 and M ≥ 1, for every arrangement

Formal definition

  • ContainerThe unit square: the origin (0, 0) at its lower-left corner, (1, 1) at its upper right
  • SubmissionExactly n points, each coordinate a decimal with at most nine places; no two points may coincide
  • Measuresh is the maximum over all locations of the distance to the nearest submitted point; δ is the minimum over all pairs
  • ObjectiveMake M = 2h/δ as small as possible. Scored internally as M² = 4h²/δ², exact, rounded up at 10⁻¹⁵
Open the full editor
1y0
0x1
VERIFIED CONSTRUCTIONthe red circle is the largest uncovered hole and the blue line the closest pair; the score is the ratio of their radii

Getting a feel for it

An analogy: siting base stations

Read the n points as n base stations. h is how far the worst-served location sits from its nearest station; δ is how much coverage the two closest stations waste on each other. M charges for both: no big holes, no huddles.

Where the room for improvement is

A square grid sits at M = √2 ≈ 1.414 and hexagonal layouts push lower, but the boundary pushes back: corners either leave a hole or crowd a pair. Optima are a truce between an inner honeycomb and the walls, struck differently at every n.

Where the frontier is

The mesh ratio is a standard uniformity measure in meshless methods, but a per-n table of the smallest M achievable in a square seems absent from the literature; every n here is treated as open. Pointers to sources are welcome.

Current leader

1.260704403742

the uniformity M

Record holderAnonymous
Solution methodHuman
Challenge this record
Record history (6 changes)
  1. AnonymousHuman
    1.4151907126801.260704403742
  2. AnonymousHuman
    1.4429540959431.415190712680
  3. NUE_13Human
    1.7409624492201.442954095943
  4. AnonymousHuman
    1.7728636114581.740962449220
  5. AnonymousHuman
    2.2920381895041.772863611458
  6. AnonymousHuman
    4.5175395218842.292038189504
ANSWER FORMAT

How to write your answer

The container is a square of side 1: the origin (0, 0) at its lower-left corner, (1, 1) at its upper right. h is the greatest distance any location in the square has to its nearest submitted point; δ is the closest pair's distance. Coordinates are plain decimals such as "0.25", to at most nine decimal places.

Submit points, each coordinate written as a decimal string such as "0.25", to at most nine decimal places. The score is M = 2h/δ; smaller is better.

The current leader's answer

{
  "points": [
    [
      "0.250793742",
      "0.080504393"
    ],
    [
      "0.000000000",
      "0.500000000"
    ],
    [
      "0.255949409",
      "0.889068336"
    ],
    [
      "0.762097736",
      "0.086007244"
    ],
    [
      "0.523069394",
      "0.500000000"
    ],
    [
      "0.760180212",
      "0.896720989"
    ],
    [
      "1.000000000",
      "0.500000000"
    ]
  ]
}
Submission format and technical detailsOpen this when you are ready to prepare a JSON answer

Instance parameters

{
  "n": 7
}

The current leader's answer

{
  "points": [
    [
      "0.250793742",
      "0.080504393"
    ],
    [
      "0.000000000",
      "0.500000000"
    ],
    [
      "0.255949409",
      "0.889068336"
    ],
    [
      "0.762097736",
      "0.086007244"
    ],
    [
      "0.523069394",
      "0.500000000"
    ],
    [
      "0.760180212",
      "0.896720989"
    ],
    [
      "1.000000000",
      "0.500000000"
    ]
  ]
}

Submit points, each coordinate written as a decimal string such as "0.25", to at most nine decimal places. The score is M = 2h/δ; smaller is better. · Verifier v1.0.0