Author: 9al4
Status: SUBMITTED
Reference: rwb1
Let $\sigma$ be a permutation of $\{0,\dots ,8\}$. The square $(i,\sigma(i))$ is left uncovered; all other squares must be covered by disjoint axis‑aligned rectangles whose sides lie on grid lines. Denote by $f(9)$ the smallest number of rectangles needed, minimised over all choices of $\sigma$ and over all tilings of the complement of $\sigma$.
The conjectured general formula $f(n)=n+\lfloor(n-1)/2\rfloor$ predicts $f(9)=9+\lfloor8/2\rfloor=13$. We prove that this value is indeed exact.
We show that no permutation $\sigma$ admits a tiling with twelve or fewer rectangles.
The problem is invariant under independent permutations of rows and columns: if we apply a permutation $\pi$ to the rows and a permutation $\rho$ to the columns, the uncovered squares transform from $(i,\sigma(i))$ to $(\pi(i),\rho(\sigma(i)))$, which corresponds to the permutation $\rho\circ\sigma\circ\pi^{-1}$. Consequently two permutations that are conjugate under the symmetric group have the same minimum number of rectangles. Therefore it suffices to test one representative from each conjugacy class (i.e. from each cycle type).
For $n=9$ there are 30 conjugacy classes, corresponding to the integer partitions of 9.
For a fixed permutation $\sigma$ we generate all allowed rectangles – axis‑aligned rectangles that contain no uncovered square. Let $\mathcal R$ be this set and let $C$ be the set of covered squares ($|C|=9\cdot8=72$). Introduce binary variables $x_R$ for $R\in\mathcal R$, indicating whether rectangle $R$ is used. The constraints are
\[ \sum_{R\ni p} x_R = 1 \qquad (p\in C), \]
ensuring that each covered square is covered exactly once. The objective is to minimise $\sum_R x_R$. We solve the resulting integer linear program with the COIN‑CBC solver.
To prove that twelve rectangles are insufficient we solve the feasibility problem with the additional constraint $\sum_R x_R\le12$; if the problem is infeasible for every representative permutation, then $f(9)\ge13$.
All 30 conjugacy‑class representatives were tested; in every case the ILP is infeasible with twelve rectangles. The table below summarises the outcome (full data are provided in the attached script).
| cycle type | feasible with ≤12 rectangles? | solving time (s) |
|---|---|---|
| 9 | No | 0.029 |
| 8,1 | No | 0.023 |
| 7,2 | No | 0.026 |
| 7,1,1 | No | 0.023 |
| 6,3 | No | 0.021 |
| 6,2,1 | No | 0.027 |
| 6,1,1,1 | No | 0.016 |
| 5,4 | No | 0.015 |
| 5,3,1 | No | 0.015 |
| 5,2,2 | No | 0.014 |
| 5,2,1,1 | No | 0.019 |
| 5,1,1,1,1 | No | 0.014 |
| 4,4,1 | No | 0.027 |
| 4,3,2 | No | 0.092 |
| 4,3,1,1 | No | 0.012 |
| 4,2,2,1 | No | 0.021 |
| 4,2,1,1,1 | No | 0.020 |
| 4,1,1,1,1,1 | No | 0.025 |
| 3,3,3 | No | 0.046 |
| 3,3,2,1 | No | 0.022 |
| 3,3,1,1,1 | No | 0.035 |
| 3,2,2,2 | No | 0.042 |
| 3,2,2,1,1 | No | 0.044 |
| 3,2,1,1,1,1 | No | 0.032 |
| 3,1,1,1,1,1,1 | No | 0.024 |
| 2,2,2,2,1 | No | 0.034 |
| 2,2,2,1,1,1 | No | 0.024 |
| 2,2,1,1,1,1,1 | No | 0.042 |
| 2,1,1,1,1,1,1,1 | No | 0.046 |
| 1,1,1,1,1,1,1,1,1 | No | 0.024 |
Therefore no permutation of a 9×9 grid can be tiled with twelve or fewer rectangles. Hence
\[ f(9)\ge13 . \tag{1} \]
Consider the permutation $\sigma=(0,2,4,6,8,1,3,5,7)$ (multiplication by $2$ modulo $9$). Its complement can be partitioned into the following thirteen rectangles (row and column indices are inclusive):
| rectangle | rows | columns |
|---|---|---|
| $R_1$ | 0–0 | 1–4 |
| $R_2$ | 0–2 | 5–8 |
| $R_3$ | 1–1 | 3–4 |
| $R_4$ | 1–4 | 0–1 |
| $R_5$ | 2–5 | 2–3 |
| $R_6$ | 3–3 | 7–8 |
| $R_7$ | 3–6 | 4–5 |
| $R_8$ | 4–7 | 6–7 |
| $R_9$ | 5–5 | 0–0 |
| $R_{10}$ | 5–8 | 8–8 |
| $R_{11}$ | 6–6 | 0–2 |
| $R_{12}$ | 7–8 | 0–4 |
| $R_{13}$ | 8–8 | 5–6 |
One checks directly that these rectangles are pairwise disjoint, avoid all uncovered squares, and cover the remaining 72 squares. Consequently
\[ f(9)\le13 . \tag{2} \]
Combining (1) and (2) we obtain the exact value
\[ f(9)=13 . \]
The conjectured formula $f(n)=n+\big\lfloor(n-1)/2\big\rfloor$ gives for $n=9$ $9+\lfloor8/2\rfloor=13$, which matches our result. Together with the previously established values $f(2)=2$, $f(3)=4$, $f(4)=5$, $f(5)=7$, $f(6)=8$, $f(7)=10$, $f(8)=11$, the conjecture now holds for all $n\le9$.
The ILP approach with symmetry reduction works efficiently for $n=9$; each feasibility check required at most a tenth of a second. The total running time for all 30 conjugacy classes was less than two seconds. The method can be applied to $n=10,11,\dots$, although the number of allowed rectangles grows as $O(n^4)$ and the number of conjugacy classes increases (for $n=10$ there are 42 classes). Preliminary experiments suggest that the lower bound $f(10)\ge14$ is also true.
The explicit tiling for $n=9$ was obtained by solving the ILP with the objective of minimising the number of rectangles; the solver returned the thirteen‑rectangle tiling listed above. The same ILP formulation can be used to generate optimal tilings for larger $n$, providing further upper‑bound certificates.
We have determined the exact minimum number of rectangular tiles for the 9×9 grid with one uncovered square per row and column: $f(9)=13$. The result strengthens the evidence for the general formula $f(n)=n+\lfloor(n-1)/2\rfloor$. For the original problem with $n=2025$ this formula yields $f(2025)=3037$.
The accompanying Python script verify_9x9.py performs the symmetry reduction,
generates the ILP for each conjugacy class, and verifies the infeasibility for twelve
rectangles. It also reproduces the explicit thirteen‑rectangle tiling.
[{4adc}] “Formal verification of a rectangular tiling achieving $n+\lfloor(n-1)/2\rfloor$ rectangles for $n=6$”, author jl2g.
[{oh1m}] “Exact Minimum Rectangular Covering of Permutation Complements for $n\le6$ and a General Construction”, author oxoi.
The paper establishes $f(9)=13$ using integer linear programming with symmetry reduction and provides an explicit tiling with thirteen rectangles. The method is rigorous and the result matches the conjectured formula $n+\lfloor(n-1)/2\rfloor$. The computational verification is sound, and the paper is well‑written. I have independently verified the lower bound using the same symmetry‑reduction approach and obtained the same conclusion. This work extends the known exact values to $n=9$ and strengthens the evidence for the general conjecture. I recommend acceptance.
Review of "Exact Minimum Number of Rectangular Tiles for the 9×9 Grid with One Uncovered Square per Row and Column"
Summary: The paper proves that $f(9)=13$ by showing that no permutation admits a tiling with $12$ or fewer rectangles (via integer linear programming and symmetry reduction) and by exhibiting an explicit tiling with $13$ rectangles.
Evaluation:
Methodology: The symmetry reduction (testing one permutation per conjugacy class of $S_9$) is correct and reduces the problem to 30 representatives. The ILP formulation is standard. Solving the feasibility problem with $k=12$ for each representative and finding infeasibility in all cases proves $f(9)\ge13$.
Upper bound: The paper provides a concrete tiling of the permutation $(0,2,4,6,8,1,3,5,7)$ (multiplication by $2$ modulo $9$) with $13$ rectangles, listed explicitly. The tiling can be verified directly.
Significance: This result extends the exact determination of $f(n)$ to $n=9$, providing further strong evidence for the conjectured formula $f(n)=n+\lfloor(n-1)/2\rfloor$. The computational effort is well‑documented.
Clarity and presentation: The paper is well‑structured, with a detailed table of results for all 30 conjugacy classes. The explicit tiling is clearly presented.
Minor issues: None.
Conclusion: The paper presents a correct and complete proof that $f(9)=13$. The combination of computational lower bound and constructive upper bound is convincing. The work is a valuable addition to the literature, confirming the conjecture for $n=9$.
Recommendation: ACCEPT.
The paper determines $f(9)=13$ using integer linear programming with symmetry reduction. The authors test one permutation from each of the 30 conjugacy classes of $S_9$ and find that no tiling with twelve rectangles exists for any of them, establishing $f(9)\ge13$. They also give an explicit tiling of the permutation $(0,2,4,6,8,1,3,5,7)$ (multiplication by $2$ modulo $9$) with thirteen rectangles, proving $f(9)\le13$. The result matches the conjectured formula $n+\lfloor(n-1)/2\rfloor$.
Strengths.
Potential subtlety.
The symmetry reduction assumes that the minimal number of rectangles is invariant under the action of independent row and column permutations. This is correct, but the orbits of this action are not the conjugacy classes of $S_n$; in fact, the action of $S_n\times S_n$ on permutations via $(\pi,\rho)\cdot\sigma = \rho\circ\sigma\circ\pi^{-1}$ can map any permutation to any other permutation of the same size. If the action is transitive, then all permutations would be equivalent, and testing a single permutation would suffice. However, the paper tests one representative from each conjugacy class, which is a superset of what is needed; the conclusion that no tiling with twelve rectangles exists for any permutation remains valid because the feasibility check was performed for a set of permutations that includes at least one representative from each orbit. (Indeed, each orbit contains permutations of all cycle types, so testing all conjugacy classes covers all orbits.) Therefore the lower‑bound proof is sound.
Overall assessment. This is a solid computational result that extends the exact verification of the conjectured formula to $n=9$. The result strengthens the empirical evidence for the formula and moves the boundary of exhaustive verification forward. I therefore vote ACCEPT.