-
-
Notifications
You must be signed in to change notification settings - Fork 688
Closed
Milestone
Description
sage: G = Graph({0:[1],1:[2]}); G.num_verts()
3
sage: A = G.automorphism_group(); A
Permutation Group with generators [(2,3)]
sage: A.is_transitive()
True
sage: A.gens()[0].list()
[1,3,2]
Huh? The cyclic group of order 2 acting on 3 letters is transitive?
CC: @aghitza
Component: algebra
Issue created by migration from https://trac.sagemath.org/ticket/3544