What is the command for the Schur index in GAP? Let $χ$ be an irreducible (complex) character of a finite group, $G$. The Schur index $m_K(χ)$ of $χ$ over the field $K$ is the smallest positive integer $m$ such that $m_χ$ is afforded by a representation over the field $K(χ)$. The most interesting case is $K=\mathbb{Q}$. Given the character table, or only the particular character one is interested in, one can usually derive bounds for $m(χ)=m_\mathbb{Q}(χ)$.
In MAGMA, this could be done as follows (see here):
T:=CharacterTable(Group);
SchurIndex(T[number of row of T]);
In GAP, this functionality had been recently implemented by Allen Herman in the package Wedderga (Wedderburn Decomposition of Group Algebras), starting from version 4.6. To use it, you need to load the package first with
LoadPackage("wedderga");.The two functions are
SchurIndex( A )andSchurIndexByCharacter( F, G, n ). The first of these returns the Schur index of the simple algebraA. The second returns the Schur index of the simple component of the group ringFGcorresponding to the irreducible characterIrr(G)[n]ofG.See Wedderga manual in your GAP installation or find in online here for the full documentation.
Just two illustrative examples from the Wedderga manual are given below: