Let $X$ be a set with $n$ elements and $0 \le k \le n$. Let $a_{n,k}$ be the maximum number of permutations of the set $X$ such that every two of them have at least $k$ common components (where a common component of $f$ and g is an $x \in X$ such that $f(x) = g(x)$). Let $b_{n,k}$ be the maximum number of permutations of the set $X$ such that every two of them have at most $k$ common components. (a) Show that $a_{n,k} \cdot b_{n,k-1} \le n!$. (b) Let $p$ be prime, and find the exact value of $a_{p,2}$.
Problem
Source: MOP 2005 Homework - Black Group #8
Tags: modular arithmetic, combinatorics unsolved, combinatorics
29.05.2014 06:05
Let $S$ be the set of permutations of $X$. (a) The obvious combinatorial interpretation of proving the desired statement is finding an injection from $A \times B$ to $S$ for any sets $A, B \subset S$ where every two permutations in $A$ have at least $k$ common components and every two permutations in $B$ have at most $k-1$ common components. This is surprisingly easy; just compose the two permutations, applying the permutation from $A$ first. This is why it's an injection. If $a_1, a_2 \in A$ and $b_1, b_2 \in B$ then there exist $k$ elements $x$ such that $a_1(x) = a_2(x)$. By the definition of $B$, for the at least $k$ elements $x'$ that are in the image of a common component of $a_1$ and $a_2$, we can't have $b_1(x') = b_2(x')$ for all such elements. Then consider what component $x$ of $a_1, a_2$ mapped to $x'$, and note that $b_1 \circ a_1(x) \neq b_2 \circ a_2(x)$ so $b_1 \circ a_1 \neq b_2 \circ a_2$ (b) $a_{p,2} = (p-2)!$. The construction is obvious; just fix values on two elements and take all $(p-2)!$ permutations of the rest. The bounding is also easy with (a): note that $b_{p,1} \geq n(n-1)$ by taking all invertible linear maps mod $p$, that is $f : \mathbb{Z}/p\mathbb{Z} \to \mathbb{Z}/p\mathbb{Z}$, $f(x) = rx + s$ for $r \in \{1, 2, \ldots, p-1\}$ and $s \in \mathbb{Z}/p\mathbb{Z}$.
02.09.2014 14:16