/-
Copyright 2026 The Formal Conjectures Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-/importFormalConjecturesUtil
Conjectures about Latin Squares
This file formalizes some conjectures and theorems around latin squares.
References:
[Wa2011] Wanless, Ian. "Transversals in Latin Squares: A Survey."
Surveys in Combinatorics 2011, R. Chapman, Ed. Cambridge University Press, 2011, pp. 403–437.
https://users.monash.edu.au/~iwanless/papers/transurveyBCC.pdf
The number of transversals of the Cayley table of $\mathbb{Z}_n$ for odd $n$ forms
OEIS A006717, starting with
$z(1) = 1, z(3) = 3, z(5) = 15, z(7) = 133$.
Conjecture 6.9 in [Wa2011]:
$$
\lim_{\substack{n \to \infty \ n \text{ odd}}} \frac{1}{n} \log(z_n / n!) = -1
$$
It is not even known if this limit exists. Note that $z_n = 0$ for even $n$ (see z_even), so the
limit must be restricted to odd $n$; here we parametrise odd $n$ as $2k + 1$.
MOLS existence problem: determine exactly which orders n admit a complete set of n - 1
mutually orthogonal latin squares.
Equivalently, this asks for which orders affine planes of order n exist. Complete sets are known
for prime-power orders; the smallest currently unresolved order is 12.
The smallest unresolved case of the MOLS existence problem: whether there are 11 mutually
orthogonal latin squares of order 12.
@[categoryresearchopen,AMS5]theoremmolsOrder12:answer(sorry)↔HasCompleteMOLS12:=by⊢ True↔HasCompleteMOLS12sorryAll goals completed! 🐙/-
TODO(rao107): Conjecture 8.5 in [Wa2011]:
Every latin square has the maximum number of disjoint duplexes. In particular, every latin square of
even order has a 2-partition and every latin square of odd order has a
(2, 2, 2, ..., 2, 1)-partition.
-//-
TODO(rao107): Conjecture 8.6 in [Wa2011]:
For all even $n > 4$ there exists a latin square of ordern $n$ which has no transversal but does
contain a 3-plex.
-//-
TODO(rao107): Conjecture 9.2 in [Wa2011]:
If $n$ is even, then $f(n, 2) = n$; if $n$ is odd, then $f(n, 2) > n$.
-//-
TODO(rao107): Conjecture 10.10 in [Wa2011]:
Every latin hypercube of odd dimension or of odd order has a transversal.
-/endLatinSquare