> Perhaps someone can help me figure this out. I am trying to create an > elementary abelian subgroup of a symmetric group and then look at its > normalizer. Here's what doesn't work: > > s6 = SymmetricGroup(6) > > c1 = s6([(1,2)]) > c2 = s6([(3,4)]) > c3 = s6([(5,6)]) > > e8 = s6.subgroup([c1,c2,c3]) > print e8.order() > > n = s6.normalizer(e8) > > It's good through printing the order of "e8". Then the horrible > traceback which follows.
I think this is a bug. But the following works: sage: s6._gap_().Normalizer(gap(e8).name()) Group( [ (5,6), (3,4), (1,2), (3,5,4,6), (1,3,5,2,4,6) ] ) Daniel Bump --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-devel URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---