I have a silly question. Is it possible to compute the direct product of two characters in GAP? More precisely, if $\chi$ is a character of the group $G$ and $\psi$ is a character of the group $H$, is there a function in GAP to compute the character $\chi\times \psi$ of the direct product $G\times H$, where, of course, $(\chi\times\psi)(g,h) = \chi(g)\psi(h)$ for any $(g,h)\in G\times H$.
I looked at https://www.gap-system.org/Manuals/doc/ref/chap72.html but I didn't found anything useful. Thank you in advance!
There is no predefined function. What you need to do is to take the epimorphisms from $G\times H$ to $G$, respectively $H$, to compute the (fusion) map for classes. E.g. for two groups and two characters:
Using the fusion maps you can inflate the characters to characters of the product, and then form their product.
If you have only tables, no groups, you similarly need to obtain the fusion maps, e.g. from how you arrange the classes for the direct product.