What is command to obtain Brauer Character in GAP? In magma, it is like
> G := Sym(5);
> I := AbsolutelyIrreducibleModules(G, GF(3));
> [BrauerCharacter(i): i in I];
[
( 1, 1, 1, 0, 1, 1, 0 ),
( 1, -1, 1, 0, -1, 1, 0 ),
( 4, 2, 0, 0, 0, -1, 0 ),
( 4, -2, 0, 0, 0, -1, 0 ),
( 6, 0, -2, 0, 0, 1, 0 )
]
Please tell me the same for GAP.
Thanks.
Indeed, as in the quote from the GAP manual given by @Shaun, trying to do this immediately in GAP fails:
The GAP Character Table Library is provided by the CTblLib package (in most installations, it is loaded by default, otherwise one should load it first with
LoadPackage("ctbllib");. Then you can retrieve the character table from the library. In your example, do the following:See
?AllCharacterTableNamesin GAP to search in identifiers of library tables. It could narrow the search if you are not sure which identifier to use, For example,