[step:Construct the root set $S$ of $t^q - t$ and verify it is a subfield of the splitting field]Set $q := p^d$. Let $L$ denote the splitting field of the polynomial
\begin{align*}
f: \mathbb{F}_p[t] &\to \mathbb{F}_p[t], \\
f(t) &:= t^q - t
\end{align*}
over $\mathbb{F}_p$. Define the root set
\begin{align*}
S := \{\alpha \in L : \alpha^q = \alpha\}.
\end{align*}
We verify that $S$ is a subfield of $L$ by checking each subfield axiom.
**Contains $0$ and $1$.** Since $0^q = 0$ and $1^q = 1$, both $0$ and $1$ lie in $S$.
**Closed under addition.** Let $\alpha, \beta \in S$. We must show $(\alpha + \beta)^q = \alpha + \beta$. The key identity is the iterated Frobenius: in any commutative ring of characteristic $p$,
\begin{align*}
(a + b)^p = a^p + b^p
\end{align*}
for all elements $a, b$. This holds because in the binomial expansion $(a + b)^p = \sum_{k=0}^{p} \binom{p}{k} a^k b^{p-k}$, the binomial coefficient $\binom{p}{k} = \frac{p!}{k!(p-k)!}$ is divisible by $p$ for $1 \le k \le p - 1$ (since $p$ is prime and does not divide $k!(p-k)!$), so all intermediate terms vanish in characteristic $p$.
Iterating this identity $d$ times:
\begin{align*}
(a + b)^{p^d} = a^{p^d} + b^{p^d},
\end{align*}
which states $(a + b)^q = a^q + b^q$. Since $\alpha^q = \alpha$ and $\beta^q = \beta$:
\begin{align*}
(\alpha + \beta)^q = \alpha^q + \beta^q = \alpha + \beta.
\end{align*}
Hence $\alpha + \beta \in S$.
**Closed under additive inverses.** Let $\alpha \in S$. Then $(-\alpha)^q = (-1)^q \alpha^q$. Since $q = p^d$ and $p$ is odd, $(-1)^q = -1$, giving $(-\alpha)^q = -\alpha^q = -\alpha$. If $p = 2$, then $-1 = 1$ in $\mathbb{F}_2$, so $(-\alpha)^q = \alpha^q = \alpha = -\alpha$. In either case, $-\alpha \in S$.
**Closed under multiplication.** Let $\alpha, \beta \in S$. Then
\begin{align*}
(\alpha \beta)^q = \alpha^q \beta^q = \alpha \beta,
\end{align*}
where the first equality uses the multiplicativity of the $q$-th power map (valid in any commutative ring). Hence $\alpha \beta \in S$.
**Closed under multiplicative inverses.** Let $\alpha \in S$ with $\alpha \ne 0$. Since $\alpha^q = \alpha \ne 0$, we have $\alpha^{-1} \in L^{\times}$, and
\begin{align*}
(\alpha^{-1})^q = (\alpha^q)^{-1} = \alpha^{-1},
\end{align*}
where the first equality holds because the map $x \mapsto x^q$ is a ring homomorphism from $L$ to $L$, and ring homomorphisms send units to units with $\varphi(u^{-1}) = \varphi(u)^{-1}$. Hence $\alpha^{-1} \in S$.
Since $S$ contains $0$ and $1$, is closed under addition, additive inverses, multiplication, and multiplicative inverses, $S$ is a subfield of $L$.[/step]