The exercise is the number 27 in chapter 3. “Let $\alpha^5=5(\alpha+1), K=\mathbb{Q}(\alpha)$ and let $p\neq3$ a prime of $\mathbb{Z}.$ Show that the prime decomposition of $p\mathcal{O}_K$ can be determined by factoring $x^5-5x-5 \mod{p}.$
I know Kummer theorem. A simple calculation shows that $disc(\alpha)=5^5\cdot3^2\cdot41.$ Since $disc(\alpha)=ind(\alpha)^2\cdot disc(K),$ clearly $41\nmid ind(\alpha).$ So the only prime that can create some problems is $5.$ How can I prove that $5\nmid ind(\alpha)?$
First of all, let us have the "final picture", asking a computer algebra system, sage in my case, to give us the full relevant data.
I will use $a$ instead of $\alpha$.
Sage has a mathematically oriented thinking, and the names of the objects and methods reflect the mathematical names for them, so the above is pretty readable also without sage and/or python knowledge. Now let us show "manually" that there is no factor $5$ in the index of $a$.
For this, let us use as a parallel the receipt in John Paul Cook, Computing Integral Bases. The prime $5$ is "in" the index, iff we find an integral number in $K$ of the shape $$ S = \frac 15\Big(\ s_0+s_1a+s_2a^2+s_3a^3+s_4a^4\ \Big)\in \Bbb Q(a), \ s_0,s_1,s_2,s_3,s_4\in\{0,1,2,3,4\}\ , $$ which is not in $\Bbb Z[a]$.
We will not follow his general plan, since
Step (4): Compute the trace of $S$. Using sage again:
so the traces of $1,a,a^2,a^3,a^4$ are all divisible by $5$, so we get no supplementary information.
Step (5): We could compute the norm of $S$, sage again:
and then numerically,
then round the coefficients. But again, we get too many monomials.
We could try to refine, and simplify the situation, e.g. passing from $s_0\to 5-s_0$, if $s_0\ne 0$, (and also changing the further coefficients), but it will still remain a mess. No problem with the computer:
So it finds only the zero. In contrast, The same code, using the denominator $3$ is finding...
The human solution for the problem, replacing the exhaustive search, could be as follows.
Start with an integral $$ S = \frac 15\Big(\ s_0+s_1a+s_2a^2+s_3a^3+s_4a^4\ \Big)\in \Bbb Q(a), \ s_0,s_1,s_2,s_3,s_4\in\{0,1,2,3,4\}\ . $$ Then $aS$ is also integral. The coefficients are "shifted", and we get the integral element $$ aS = \frac 15\Big(\ s_0a+s_1a^2+s_2a^3+s_3a^4+s_4\underbrace{a^5}_{\frac 15(a+1)}\ \Big)\ . $$ With further shiftings, we get a list of "derived" integral numbers: $$ \begin{aligned} S &= \frac 15\Big(\ s_0+s_1a+s_2a^2+s_3a^3+s_4a^4\ \Big)\ ,\\ aS &= \frac 15\Big(\ s_0a+s_1a^2+s_2a^3+s_3a^4\ \Big)+\text{integral number}\ ,\\ a^2S &= \frac 15\Big(\ s_0a^2+s_1a^3+s_2a^4\ \Big)+\text{integral number}\ ,\\ a^3S &= \frac 15\Big(\ s_0a^3+s_1a^4\ \Big)+\text{integral number}\ ,\\ a^4S &= \frac 15\Big(\ s_0a^4\ \Big)+\text{integral number}\ . \end{aligned} $$ We compute the norms
and see that successively we must have $s_0=0$, then $s_1=0$, then...