REVIEW 3 major objections 4 minor 8 references
A Siamese graph network on Cayley graphs predicts whether one finite group is isomorphic to a subgroup of another at 95.9% test accuracy.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · grok-4.5
2026-07-14 06:46 UTC pith:GMIGUKRW
load-bearing objection Clean small-scale proof-of-concept for pairwise subgroup prediction via Siamese GNN on Cayley graphs; 47/49 is real on the given split but the 165-pair/45-group data make the generalization claim fragile. the 3 major comments →
Learning Subgroup Relations Using Siamese Graph Neural Networks
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
A Siamese graph neural network that encodes the undirected Cayley graphs of two finite groups, then combines the resulting embeddings with the order remainder |G| mod |H|, predicts whether H is isomorphic to a subgroup of G with 95.9% accuracy (47/49) on an independent test set. The same architecture with only graph features or only the remainder performs worse, showing that the structural embeddings and the algebraic feature supply complementary information.
What carries the argument
Siamese GNN encoder on undirected Cayley graphs: two identical message-passing branches with shared weights map the Cayley graphs of H and G into a common latent space; the embeddings, their derived combinations, and selected order-based algebraic features are concatenated into a joint vector that a fully-connected head classifies.
Load-bearing premise
The small collection of 165 pairs drawn from only 45 groups of a few classical families, with Cayley graphs built from fixed generating sets and split arbitrarily, is assumed to be representative enough that high test accuracy reflects genuine learning of the subgroup relation rather than memorization of order patterns or family regularities.
What would settle it
Rebuild the identical architecture and feature set on a substantially larger, independently generated collection of groups that includes families and generating sets never seen in the original 45 groups; if accuracy collapses to near chance, the reported generalization claim fails.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a Siamese GNN that encodes undirected Cayley graphs of a pair of finite groups (H, G) with a shared encoder, concatenates the resulting graph embeddings with algebraic features (notably |G| mod |H|), and feeds the joint vector to a fully-connected classifier that predicts whether H is isomorphic to a subgroup of G. On a hand-curated collection of 165 pairs drawn from 45 groups in classical families, the selected configuration (embeddings z_H, z_G plus remainder, architecture (2,16,16)) reaches 95.9 % (47/49) accuracy on an arbitrarily chosen independent test split; an ablation over feature combinations is reported in Table 3.
Significance. If the reported accuracy genuinely reflects structural learning rather than order heuristics or family-specific memorization, the work would supply a concrete, modular geometric-deep-learning baseline for a classical decision problem in computational group theory and would illustrate how Cayley-graph embeddings can be combined with elementary algebraic invariants. The transparent ablation and the explicit listing of every test prediction (Table 4) are useful for reproducibility. The contribution remains preliminary because of the extremely small data regime and the absence of classical or simple algebraic baselines.
major comments (3)
- [§2.1, Table 1, §3] Abstract and §3 claim that 95.9 % (47/49) test accuracy demonstrates effective learning of subgroup relations. The underlying collection comprises only 165 pairs over 45 groups (§2.1, Table 1); the train/val/test assignment is described as arbitrary and no cross-validation, confidence intervals or leakage audit is supplied. Because the same groups appear in multiple pairs, high accuracy may largely reflect memorization of order-divisibility patterns and family regularities rather than genuine structural recognition. A leakage analysis or a larger, systematically partitioned corpus is required before the generalization claim can be accepted.
- [Table 3, §2.3.2] Table 3 shows that the algebraic remainder feature alone already yields 0.818 validation accuracy (model M1). The selected model adds graph embeddings and reaches perfect validation accuracy, yet no classical subgroup-membership algorithm, no order-only logistic baseline, and no pure-algebraic neural baseline are reported. Without these controls it is impossible to quantify how much of the 95.9 % test figure is attributable to the Siamese GNN versus the trivial Lagrange remainder.
- [§2.2, Table 4] §2.2 states that each Cayley graph is built from a 'predefined generating set' but never specifies the sets used. Different generating sets produce non-isomorphic graphs for the same group; the learned embeddings and the two residual errors in Table 4 (Q32 ≰ Q64 false negative; C12 ≰ S4 false positive) may therefore be artefacts of an unreported choice. The generating sets must be listed and a sensitivity experiment performed.
minor comments (4)
- [§2.4, Table 3] Architecture notation is inconsistent: Table 3 lists both (8,8,8) and (2,16,16); the text of §2.4 defines the triple as (input-dim, hidden1, hidden2). Clarify once and for all.
- [§2] Figure 1 is described but never rendered in the supplied manuscript; a schematic of the Siamese pipeline would aid readability.
- [§1] References [4–6] are the author’s own contemporaneous arXiv preprints; a short paragraph situating the present pairwise task relative to those single-group property-prediction papers would help the reader.
- [§2.5] The decision threshold is fixed at 0.5 (§2.5) with no ROC or precision-recall analysis; given the modest class imbalance a brief calibration check would be useful.
Circularity Check
No circularity: the 95.9% test accuracy is a standard supervised empirical measurement on held-out labeled pairs, independent of motivational self-citations.
full rationale
The paper's central claim is an empirical test-set accuracy (95.9% = 47/49) obtained by training a Siamese GNN (shared GNN encoder on undirected Cayley graphs + algebraic features such as remainder |G| mod |H|) as a binary classifier on ground-truth subgroup-isomorphism labels, then evaluating on an arbitrarily partitioned independent test split (Methodology 2.1, 2.4–2.5; Results Table 4). The labels are classical group-theoretic facts (Lagrange, explicit subgroup checks), not derived from the network or from any fitted quantity that is later re-presented as a prediction. Self-citations [4–6] appear only as background motivation for using Cayley graphs with GNNs; they supply no numerical inputs, uniqueness theorems, or ansatzes that force the reported accuracy. Ablation (Table 3) and architecture search are ordinary hyper-parameter selection on validation data. Nothing reduces by construction to its own inputs; the derivation chain is ordinary supervised learning and is self-contained.
Axiom & Free-Parameter Ledger
free parameters (4)
- GNN hidden dimensions and depth
- learning rate and epoch count
- decision threshold 0.5
- Cayley generating sets
axioms (4)
- domain assumption Undirected Cayley graphs with respect to a fixed generating set preserve enough algebraic structure for a GNN to learn subgroup relations.
- standard math Lagrange's theorem (order of H must divide order of G) is a necessary but not sufficient condition; the remainder feature is therefore informative.
- domain assumption Shared-parameter Siamese encoders place both groups in a comparable latent space.
- ad hoc to paper The 165-pair dataset drawn from cyclic/dihedral/quaternion/symmetric/alternating/direct-product families is representative of the subgroup-prediction task.
read the original abstract
Determining whether one finite group is isomorphic to a subgroup of another is a fundamental problem in computational group theory. In this work, we propose a Siamese Graph Neural Network (Siamese GNN) for subgroup prediction using Cayley graph representations of finite groups. Each input group is represented by its undirected Cayley graph and encoded by one branch of a Siamese GNN to produce a graph embedding. The resulting graph embeddings are combined with algebraic features derived directly from the input groups to construct a joint feature vector, which is processed by a fully connected classifier to predict subgroup relations between finite groups. By integrating graph-based structural representations with algebraic features, the proposed framework provides a unified approach for learning subgroup relations from finite groups. Experimental results demonstrate the effectiveness of the proposed architecture, achieving a test accuracy of 95.9% (47/49) on an independent test set and illustrating the potential of geometric deep learning for subgroup prediction.
Reference graph
Works this paper leans on
-
[1]
de la Harpe, P ., Topics in Geometric Group Theory, Chicago Lectures in Mathematics, University of Chicago Press, Chicago, 2000
2000
-
[2]
Geometric Deep Learning: Grids, Groups, Graphs, Geodesics, and Gauges,
Bronstein, M. M., Bruna, J., Cohen, T., Veličković, P ., “Geometric Deep Learning: Grids, Groups, Graphs, Geodesics, and Gauges,” arXiv preprint arXiv:2104.13478, 2021
Pith/arXiv arXiv 2021
-
[3]
A Comprehensive Survey on Graph Neural Networks,
Wu, Z., Pan, S., Chen, F., Long, G., Zhang, C., Yu, P . S., “A Comprehensive Survey on Graph Neural Networks,” IEEE Transactions on Neural Networks and Learning Systems, vol. 32, no. 1, pp. 4–24, 2021. DOI: 10.1109/TNNLS.2020.2978386
-
[4]
Graph Neural Networks for Predicting Solvability of Finite Groups,
Weissblat, T., “Graph Neural Networks for Predicting Solvability of Finite Groups,” arXiv preprint arXiv:2606.07619. DOI: 10.48550/arXiv.2606.07619, 2026
-
[5]
Weissblat, T., “A General Framework for Learning Algebraic Properties from Cayley Graphs Using Graph Neural Networks,” arXiv preprint arXiv:2606.26212. DOI: 10.48550/arXiv.2606.26212, 2026
-
[6]
From Finite Cayley Graphs to Growth of Infinite Groups
Weissblat, T., “From Finite Cayley Graphs to Growth of Infinite Groups,” arXiv preprint arXiv:2607.02102. DOI: 10.48550/arXiv.2607.02102, 2026
work page internal anchor Pith review Pith/arXiv arXiv doi:10.48550/arxiv.2607.02102 2026
-
[7]
Signature Verification Using a 'Siamese' Time Delay Neural Network,
Bromley, J., Guyon, I., LeCun, Y ., Säckinger, E., Shah, R., “Signature Verification Using a 'Siamese' Time Delay Neural Network,” Advances in Neural Information Processing Systems (NeurIPS), vol. 6, pp. 737–744, 1994
1994
-
[8]
S., Foote, R
Dummit, D. S., Foote, R. M., Abstract Algebra, 3rd ed., John Wiley & Sons, 2004
2004
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.