Can you solve the n-dimensional sphere packing problem?

  • Thread starter Dragonfall
  • Start date
  • Tags
    Sphere
In summary, the sphere packing problem is a mathematical problem that seeks to find the most efficient arrangement of identical spheres within a given space without any gaps or overlaps. This problem has implications in various fields such as physics, chemistry, and materials science, and has been studied for centuries by mathematicians such as Johannes Kepler and Isaac Newton. Various mathematical techniques, including linear programming and Fourier analysis, have been used to approach this problem, and it has practical applications in the design of packing materials and in fields such as signal processing and cryptography.
  • #1
Dragonfall
1,030
4
How many n-dimensional unit vectors from [itex]\mathbb{C}^n[/itex] can you pack in a set such that for any two vectors, [itex]\left<a, b\right>\leq\delta[/itex] for some delta between 0 and 1?
(<a,b> denotes the inner product).

This reduces to packing of n-2 dimensional spheres on a n-1 dimensional sphere, if that helps.

EDIT: on second thought I'm not sure if this reduces to a sphere packing problem.
 
Last edited:
Mathematics news on Phys.org
  • #2
Anyone?
 
  • #3
Without specifying what the set is, it's hard to comment. Also, I've only ever seen sphere packing conisdered for real numbers; not sure how the extension to complex would play out...
 
  • #4
The max size of the set depends only on [itex]\delta[/itex], which determins how close two vectors from the set can be. [itex]\delta =0[/itex] then the max size is the dimension; [itex]\delta =1[/itex] then it's infinite.

EDIT: I made a typo in my first post. The requirement is that

[tex]\left|\left< a,b\right>\right| \leq\delta[/tex]. Note the modulus operator.
 
  • #5
Anyone?
 
  • #6
Supposing we restrict it to R^3 and are interested in the limiting case where delta -> 1. Obviously this is not your full problem, but at least I can say something about it, whereas the full out problem seems pretty hard. What I say can be generalized to R^n as well.

Suppose you are adding unit vectors one by one, trying to keep their tips spaced as far apart as possible on the unit sphere (or equivalently, trying to keep their angles as big as possible for a given number of vectors). For 2 vectors, you would place them at antipodes (opposite points on the sphere), 180 degrees. For 3 vectors, 120 degrees in the plane. 4 vectors, tetrahedron (~109 degrees). 5 vectors, a more complicated shape, 12 vectors, the points on a dodecahedron, etc etc.

For small numbers of vectors, adding each additional vector causes massive changes in the configuration of all previous vectors, and the angle jumps drastically (180 -> 120 -> 109 ..). However, when there are already a ton of vectors on there, say, 100, then the ball looks like a prickly sea urchin, and if you add one more vector, then the other vectors on there can accommodate it by all shifting very slightly. Everything from now on is assuming a large number of vectors.

Thus for large numbers of vectors, the the surface area of the unit sphere is uniformly sprinkled by the different vector tips. Further, if the vector tips are used to triangulate the surface of the sphere (Delaunay triangulization would work nicely), then as the number of vectors becomes large the triangles will become approximately equilateral.

You can use the Euler characteristic to find that the number of triangular faces is f=2(v-2) where v is the number of vectors. (v-e+f=2, and e=3f/2 since each face has 3 edges, which would double count each edge)

Since the triangles take up roughly equal surface area on the sphere, f*A = 4*pi, or A = 4*pi/f where A is the area of a single triangle. Additionally, since the triangle is approximately equilateral, the area is related to the edge length by A = d^2*sqrt(3)/4, or d = sqrt(4A/sqrt(3)).The angle between 2 neighboring vectors is then θ ~= arcsin(d) ~= d for small angles.

Putting this all together,
in the limit as v-> infinity, θ = sqrt(4*(4*pi/2(v-2))/sqrt(3))

You can invert this and find
in the limit as θ -> 0, v = 8*pi/(sqrt(3)*θ^2) + 2

assuming I didn't make any algebra mistakes in there...

your delta, by the way, is cos(θ), as that is the way the inner product relates to angle.
 
Last edited:
  • #7
If I understood correctly, you gave an approximate answer in the limiting case using a greedy packing algorithm. That's interesting. Do you know whether the greedy algorithm in this case will produce an optimal unit vector packing?
 
  • #8
I think it is optimal. To be rigorous, you would have to prove that: given an optimal packing algorithm, the delaunay triangulization (or any other triangulization) of the configuration will produce triangles that approach equilateral triangles in the limit as θ -> 0.

If there are multiple optimal packing algorithms aside from rotations of the original algorithm (I doubt it), then you only need to prove it for one algorithm.
 
Last edited:

FAQ: Can you solve the n-dimensional sphere packing problem?

1. What is the sphere packing problem?

The sphere packing problem is a mathematical problem that asks how to arrange a set of identical spheres in the most efficient way within a given space. The goal is to find the densest possible arrangement of spheres without any gaps or overlaps.

2. Why is the sphere packing problem important?

The sphere packing problem has implications in various fields such as physics, chemistry, and materials science. It can help us understand the structure and behavior of matter at the microscopic level, and it has practical applications in the design of efficient packing materials, storage systems, and more.

3. What is the history of the sphere packing problem?

The sphere packing problem has been studied for centuries, with early contributions from mathematicians such as Johannes Kepler and Isaac Newton. In the 17th century, Kepler proposed that the densest packing of equal spheres is the face-centered cubic lattice. However, it wasn't until 1998 that Thomas Hales finally proved this conjecture to be true.

4. What methods are used to solve the sphere packing problem?

Various mathematical techniques have been used to approach the sphere packing problem, including geometric and algebraic methods, as well as computer-assisted proofs. Some of the key tools used in solving the problem include linear programming, Fourier analysis, and the Voronoi diagram.

5. Are there real-life applications of the sphere packing problem?

Yes, the sphere packing problem has numerous practical applications in fields such as materials science, physics, and computer science. For example, it is used in the design of packing materials such as ceramics, pharmaceuticals, and food packaging. It also has applications in signal processing, coding theory, and cryptography.

Back
Top