I would like to know which column of the character table of $SL(2,\mathbb{Z}/q\mathbb{Z})$ that GAP produces with the command Display(CharacterTable(SL(2,q))); corresponds to the conjugacy class of the element $\left(\begin{smallmatrix}1 & 1 \\ 0 & 1\end{smallmatrix}\right)$.
Can someone tell me the GAP command to achieve this?
I've seen the function IdentificationOfConjugacyClasses, which gives the bijection between conjugacy classes of a group and conjugacy class as stored in a character table, but I can't work out even how to ask which conjugacy class of a group contains a given element.
It seems that if we construct the character table using
CharacterTable(SL(2,q));thenIdentificationOfConjugacyClassesis always just the identity. Thusis all that's needed here. The GAP manual tells us that
0*Z(p)is the additive identity, andZ(p)^0is the multiplicative identity.(I'm a bit confused by why we're meant to write
0*Z(p)andZ(p)^0rather than0*Z(q)andZ(q)^0, but it seems to work.)