Disproving the quasi-uniformity of the Halton sequences and of some Halton-type sequences

This paper proves that the Halton sequence is not quasi-uniform in any dimension d2d \ge 2 with pairwise relatively prime bases, and extends this result to disprove the quasi-uniformity of certain Halton-type sequences, including the Faure sequence.

Takashi Goda, Roswitha Hofer, Kosuke Suzuki

Published 2026-03-06
📖 5 min read🧠 Deep dive

Imagine you are hosting a massive party in a giant, multi-dimensional dance floor (the unit cube). You want to invite guests (points) to stand on the floor so that they are spread out as perfectly as possible. You don't want anyone clumped together in a corner, and you don't want huge empty spaces where no one is dancing.

In the world of mathematics and computer science, this "perfect spreading" is crucial for simulating complex systems, like predicting weather patterns or pricing financial stocks. The Halton sequence is one of the most famous "guest lists" mathematicians have created to achieve this. For decades, it was believed to be a near-perfect way to fill the dance floor.

However, a new study by Goda, Hofer, and Suzuki reveals a surprising flaw in this plan. They prove that while the Halton sequence is great at covering the whole floor, it fails a specific test of "evenness" when the dance floor has two or more dimensions.

Here is the breakdown of their discovery using simple analogies:

1. The Two Rules of a Good Party

To judge if a group of guests is well-distributed, mathematicians look at two specific measurements:

  • The "Covering" Radius (The Empty Spot Test): Imagine you are standing anywhere on the dance floor. How far do you have to walk to find the nearest guest? If this distance is small everywhere, the "covering" is good. The Halton sequence passes this test perfectly. It ensures there are no huge empty zones.
  • The "Separation" Radius (The Personal Space Test): Now, imagine you are a guest. How close is your nearest neighbor? If two guests are standing practically on top of each other, the "separation" is bad. For a sequence to be truly "quasi-uniform" (perfectly even), the distance between neighbors should shrink at a very specific, predictable rate as you add more guests.

2. The Halton Sequence's Secret Flaw

The authors discovered that the Halton sequence is a master at Covering but a failure at Separation in dimensions higher than one.

The Analogy of the "Crowded Corner":
Imagine you are arranging chairs in a room. The Halton sequence is like a smart robot that places chairs so that no one is left standing in the middle of the room (great covering). However, the robot has a glitch: as the room gets bigger, it accidentally places some pairs of chairs extremely close together, almost touching, while leaving other areas slightly more open.

In a 1-dimensional line (a single row of chairs), the Halton sequence works perfectly. But as soon as you add a second dimension (a 2D dance floor), the robot starts making mistakes. It creates "clumps" where points are dangerously close to each other, much closer than they should be for a perfect distribution.

3. The "Magic Number" Problem

The paper proves that for the Halton sequence, the distance between the closest pair of points shrinks too fast as you add more points.

Think of it like this:

  • Ideal Scenario: If you double the number of guests, the distance between neighbors should shrink by a predictable, gentle amount (like $1/\sqrt{N}$).
  • Halton Reality: The distance shrinks much faster than expected (like $1/(N \times \text{something huge})$).

This means that if you use the Halton sequence for high-dimensional simulations, you might get lucky with the overall coverage, but you risk having "clumps" of data points that are too close together. In applications like scattered data approximation (where you try to guess the shape of a curve based on a few points), these clumps can cause the math to become unstable or inaccurate, like a bridge collapsing because two support beams are too close together.

4. The "Halton-Type" Sequences

The authors didn't stop there. They looked at a family of related sequences (like the Faure sequence and Sobol' sequence), which are variations of the Halton sequence used for different types of math problems.

They found that these "cousins" of the Halton sequence suffer from the same problem. Specifically, they proved that the famous Faure sequence (used in high-dimensional finance and physics) is also not perfectly even. They provided a new, simpler way to prove this using "polynomial arithmetic" (a fancy way of doing math with algebraic shapes instead of just numbers).

Why Does This Matter?

For a long time, scientists assumed that if a sequence was good at covering a space (low discrepancy), it was automatically good at spacing points evenly (quasi-uniform).

This paper says: Nope.

  • Low Discrepancy = No big empty holes.
  • Quasi-Uniformity = No clumps and no holes.

The Halton sequence has no holes, but it does have clumps.

The Takeaway

If you are using the Halton sequence (or its cousins like Faure or Sobol) for a computer simulation in 2D, 3D, or higher dimensions, you need to be careful. While they are excellent for general integration (calculating areas/volumes), they might be risky for applications that require strict geometric spacing, such as:

  • Radial Basis Function Interpolation: Trying to draw a smooth surface through scattered data points.
  • Stability Analysis: Ensuring a mathematical model doesn't crash due to points being too close.

The authors haven't found a "perfect" sequence that fixes this yet (that's an open problem), but they have successfully debunked the myth that the Halton sequence is the golden standard for all geometric distribution tasks. They've shown us that even the most famous "low-discrepancy" sequences have their blind spots.