Let $p \equiv 2 \pmod 3$ be a prime, $k$ a positive integer and $P(x) = 3x^{\frac{2p-1}{3}}+3x^{\frac{p+1}{3}}+x+1$. For any integer $n$, let $R(n)$ denote the remainder when $n$ is divided by $p$ and let $S = \{0,1,\cdots,p-1\}$. At each step, you can either (a) replaced every element $i$ of $S$ with $R(P(i))$ or (b) replaced every element $i$ of $S$ with $R(i^k)$. Determine all $k$ such that there exists a finite sequence of steps that reduces $S$ to $\{0\}$. Proposed by fattypiggy123
Problem
Source: SMO Open 2019 Q4
Tags: number theory, prime numbers, algebra, polynomial
fattypiggy123
06.07.2019 13:55
This is my problem —- the answer is all $k$ such that $\gcd(k,p-1) > 1$.
Pathological
20.08.2019 03:32
The main observation is that $P(x)$ is just $(x^{\frac13} + 1)^3$ in modulo $p$. With this insight, and the fact that the map $x \rightarrow x^3$ is bijective in mod $p$, we can consider defining the set $T = \{ x^{\frac13} | x \in S\}$. The first operation just adds one to each element of $T$ and the second just raises them all to the power of $T$. We can further make the assumption that whenever the second operation results in two numbers in the set becoming equal, we remove one of them. Now the problem is much easier. If $\gcd (k, p-1) = 1$, we clearly cannot reduce $S$ to $\{0\}$ since $T$ never changes. Now, suppose that $\gcd (k, p-1) > 1.$ Let $a$ be a positive integer such that $p|a^k - 1$ and $p \nmid a-1.$ Then, suppose that $|T| \ge 2$ at some point in time. Let $d$ be the difference between some two arbitrary distinct elements of $T$. Since $p \nmid a-1$, there exists a $x$ such that $ax \equiv x + d$. Then, simply apply the first operation sufficiently many times until $x, ax \in T.$ Now, appllying the second operation decreases the size of $T$ strictly. Repeating this finishes.
$\square$
puntre
09.03.2022 11:14
@above, Could you explain why is the map $x\mapsto x^3$ bijective?