This is a pretty dumb question considering this is the very first question in my exercises (on a section about finite fields). First, the the group of units $\mathbb F_{11}^*$ is $\mathbb{Z}/10\mathbb{Z} = \{ 0,1, \ldots \}$ (it's not how it's defined but it's isomorphic ok). I know that I need to find an element $a$ of maximum order $n$ in $\mathbb{Z}/10\mathbb{Z}$ because then $\mathbb F_{11}^* = \mathbb{Z}/10\mathbb{Z} = \langle a \rangle$, so $a$ is a primitive root.
But I have no idea how to find such an element of maximum order. I can only think of brute force, which doesn't seem like a very efficient way to solve this. Can someone help me?
Pick a random member of the group, and test whether it is a primitive root. Repeat until you find one that is.
To test whether $a$ is a primitive root modulo $p$, test whether
$$a^{(p-1)/d} \equiv 1 \pmod p,$$
for each prime divisor $d$ of $p-1$ (such that $1<d<p-1$). If this equivalence holds for any $d$, then $a$ is not a primitive root. If it fails to hold for all $d$, then $a$ is a primitive root.
See https://en.wikipedia.org/wiki/Primitive_root_modulo_n#Finding_primitive_roots.