incorporate feedback
Browse files
README.md
CHANGED
@@ -144,39 +144,33 @@ $$
|
|
144 |
\ge -1 \quad \text{for all } \mathbf{x} \in \nabla \;.
|
145 |
$$
|
146 |
|
147 |
-
This relationship is symmetric: the dual of the dual of
|
148 |
-
i.e., \\( \nabla^{**} = \nabla \\).
|
149 |
|
150 |
### Weight Systems
|
151 |
|
152 |
-
Weight systems provide a means to describe simple polytopes known as *
|
153 |
-
|
154 |
-
can describe any polytope. A combined weight system is a matrix consisting of real
|
155 |
-
numbers. The construction process is outlined as follows:
|
156 |
|
157 |
-
Consider
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
\mathbf{v}_1, \dots \mathbf{v}
|
164 |
-
|
|
|
165 |
|
166 |
-
$$
|
167 |
-
\sum_{i=0}^{k-1} q_i^{(j)} \mathbf{v}_i
|
168 |
-
= 0 \quad \text{for } 0 \le j \le k - n - 1 \;,
|
169 |
-
$$
|
170 |
-
|
171 |
-
where \\(q_i^{(j)}\\) is the matrix of real numbers, the combined weight system. In cases
|
172 |
-
where \\(k = n + 1\\), \\(j\\) is limited to the value zero, reducing the matrix to a
|
173 |
-
single weight system \\(q_i\\). In this scenario, the polytope is a simplex, and the
|
174 |
-
equation simplifies to:
|
175 |
|
176 |
-
|
177 |
|
178 |
It is important to note that scaling all weights in a weight system by a common factor
|
179 |
-
results in an equivalent weight system that defines the same
|
|
|
|
|
|
|
180 |
|
181 |
For this dataset, the focus is on a specific construction of lattice polytopes described
|
182 |
in subsequent sections.
|
@@ -203,16 +197,14 @@ The weights of a lattice polytope are always rational. This characteristic enabl
|
|
203 |
rescaling of a weight system so that its weights become integers without any common
|
204 |
divisor. This rescaling has been performed in this dataset.
|
205 |
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
\\(\Delta\\) is taken to be the coarsest lattice possible, such that \\(\nabla\\) is a
|
215 |
-
lattice polytope, i.e., the lattice generated by the vertices of \\(\nabla\\). This
|
216 |
construction is exemplified in the following sections.
|
217 |
|
218 |
A weight system is considered an IP weight system if the corresponding \\(\Delta\\) is an
|
@@ -254,8 +246,11 @@ by dots.
|
|
254 |
|
255 |
One may notice that a simpler description could be obtained by fixing \\(\mathbf{v}_2 =
|
256 |
(1, 0)\\) instead of \\(\mathbf{v}_0\\), which would avoid fractional vertex coordinates.
|
257 |
-
However, this approach would not illustrate the
|
258 |
-
|
|
|
|
|
|
|
259 |
|
260 |
### General Dimension
|
261 |
|
@@ -276,3 +271,7 @@ The counts of reflexive single-weight-system polytopes by dimension \\(n\\) are:
|
|
276 |
| 3 | 95 |
|
277 |
| 4 | 184,026 |
|
278 |
| 5 | (this dataset) 185,269,499,015 |
|
|
|
|
|
|
|
|
|
|
144 |
\ge -1 \quad \text{for all } \mathbf{x} \in \nabla \;.
|
145 |
$$
|
146 |
|
147 |
+
This relationship is symmetric: the dual of the dual of an IP polytope is the polytope
|
148 |
+
itself, i.e., \\( \nabla^{**} = \nabla \\).
|
149 |
|
150 |
### Weight Systems
|
151 |
|
152 |
+
Weight systems provide a means to describe simple polytopes known as *simplices*. A weight
|
153 |
+
system is a tuple of real numbers. The construction process is outlined as follows:
|
|
|
|
|
154 |
|
155 |
+
Consider an \\(n\\)-dimensional simplex in \\(\mathbb{R}^n\\), i.e., a polytope in
|
156 |
+
\\(\mathbb{R}^n\\) with vertex count \\(n + 1\\) and \\(n\\) of its edges extending in
|
157 |
+
linearly independent directions. It is possible to position \\(n\\) of its vertices at
|
158 |
+
arbitrary (linearly independent) locations through a linear transformation. The placement
|
159 |
+
of the remaining vertex is then determined. Its position is the defining property of the
|
160 |
+
simplex. To specify the position independently of the applied linear transformation, one
|
161 |
+
can use the following equation. If \\(\mathbf{v}_0, \mathbf{v}_1, \dots, \mathbf{v}_n\\)
|
162 |
+
are the vertices of the simplex, this relation fixes one vertex in terms of the other
|
163 |
+
\\(n\\):
|
164 |
|
165 |
+
$$ \sum_{i=0}^n q_i \mathbf{v}_i = 0 \;, $$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
|
167 |
+
where \\(q_i\\) is the tuple of real numbers, the weight system.
|
168 |
|
169 |
It is important to note that scaling all weights in a weight system by a common factor
|
170 |
+
results in an equivalent weight system that defines the same simplex.
|
171 |
+
|
172 |
+
The condition that a simplex is an IP simplex is equivalent to the condition that all
|
173 |
+
weights in its weight system are bigger than zero.
|
174 |
|
175 |
For this dataset, the focus is on a specific construction of lattice polytopes described
|
176 |
in subsequent sections.
|
|
|
197 |
rescaling of a weight system so that its weights become integers without any common
|
198 |
divisor. This rescaling has been performed in this dataset.
|
199 |
|
200 |
+
The construction of the lattice polytopes from this dataset works as follows: We start
|
201 |
+
with the simplex \\(\nabla\\), arising from a weight system as previously described. Then,
|
202 |
+
we define the polytope \\(\Delta\\) as the convex hull of the intersection of
|
203 |
+
\\(\nabla^*\\) with the points of the dual lattice. In the context of this dataset, the
|
204 |
+
polytope \\(\Delta\\) is referred to as ‘the polytope’. Correspondingly,
|
205 |
+
\\(\Delta^{\!*}\\) is referred to as ‘the dual polytope’. The lattice of \\(\nabla\\) and
|
206 |
+
\\(\Delta^{\!*}\\) is taken to be the coarsest lattice possible, such that \\(\nabla\\) is
|
207 |
+
a lattice polytope, i.e., the lattice generated by the vertices of \\(\nabla\\). This
|
|
|
|
|
208 |
construction is exemplified in the following sections.
|
209 |
|
210 |
A weight system is considered an IP weight system if the corresponding \\(\Delta\\) is an
|
|
|
246 |
|
247 |
One may notice that a simpler description could be obtained by fixing \\(\mathbf{v}_2 =
|
248 |
(1, 0)\\) instead of \\(\mathbf{v}_0\\), which would avoid fractional vertex coordinates.
|
249 |
+
However, this approach would not illustrate the construction of the lattice. This is
|
250 |
+
because, in this scenario, the lattice points would invariably align with points having
|
251 |
+
integer coordinates. In practice, coordinates are often chosen so that lattice points
|
252 |
+
correspond to those with integer coordinates. In higher dimensions, this is not trivial,
|
253 |
+
as a weight with a value of one is not always present in a weight system.
|
254 |
|
255 |
### General Dimension
|
256 |
|
|
|
271 |
| 3 | 95 |
|
272 |
| 4 | 184,026 |
|
273 |
| 5 | (this dataset) 185,269,499,015 |
|
274 |
+
|
275 |
+
One should note that distinct weight systems may well lead to the same polytope (we have
|
276 |
+
not checked how often this occurs). In particular it seems that polytopes with a small
|
277 |
+
number of lattice points are generated many times.
|