4
$\begingroup$

Are there any known NP-hard group theoretic problems which take as input finite groups given as Cayley tables (that is, not as a list of generators and product relations)?

I'm talking about abstract groups, not permutation groups. It seems that all known group theoretic problems that are hard seem to be variations of the word problem (in which case, the group is infinite) or computing distances between a permutation and a subgroup of the symmetric group (see Buchheim, Cameron, Wu https://webspace.maths.qmul.ac.uk/p.j.cameron/preprints/sd.pdf).

$\endgroup$
2
  • $\begingroup$ mathoverflow.net/questions/321547/… might be of interest; I didn't check how the problems given in answers accept their input though $\endgroup$ Commented Oct 11, 2022 at 8:57
  • 1
    $\begingroup$ This is a good find! However, all of the problems in the MO thread deal with succinct input models rather than the Cayley table (verbose) model. $\endgroup$
    – ml0105
    Commented Oct 11, 2022 at 9:15

1 Answer 1

5
$\begingroup$

I don't believe so. The two main problems of interest in the Cayley table model are membership testing and isomorphism testing. Membership testing belongs to $\textsf{L}$ by reduction to path finding on an appropriate Cayley graph.

Isomorphism testing belongs to $\beta_{2}\textsf{L} \cap \beta_{2}\textsf{FOLL} \cap \beta_{2}\textsf{SC}^{2}$ by the generator enumeration strategy. Every group has a generating set of size at most $O(\log n)$ (and a cube generating set of size $O(\log n)$), and so we can guess a generating set with $O(\log^{2} n)$ bits and then perform marked isomorphism testing efficiently in parallel. The $\beta_{2}\textsf{FOLL}$ and $\beta_{2}\textsf{SC}^{2}$ bounds rely on guessing cube generating sequences.

It is known that $\beta_{2}\textsf{FOLL}$ cannot compute Parity. As Parity is $\textsf{AC}^{0}$-reducible to Graph Isomorphism, this shows that Group Isomorphism is strictly easier than Graph Isomorphism.

Furthermore, there is considerable evidence that Graph Isomorphism is not $\textsf{NP}$-complete. All of this evidence applies to Group Isomorphism as well.

Also, Tensor Isomorphism problems in the multidimensional array (verbose) model have the same upper bounds as Graph Isomorphism. So even these much harder problems are unlikely to be NP-complete. (https://arxiv.org/pdf/1907.00309.pdf)

$\endgroup$

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .