Skip to content

issue with isomorphism test for two order 4 quasigroups #19

Description

@Palmer323

The LOOPS isomorphism test for the two quasigroups represented by tables t1 and t2 below does not seem to produce the correct result:

gap> t1:=[ [ 1, 2, 3, 4 ], [ 2, 1, 4, 3 ], [ 3, 4, 1, 2 ], [ 4, 3, 2, 1 ] ];
[ [ 1, 2, 3, 4 ], [ 2, 1, 4, 3 ], [ 3, 4, 1, 2 ], [ 4, 3, 2, 1 ] ]
gap> t2:=[ [ 3, 4, 1, 2 ], [ 4, 3, 2, 1 ], [ 1, 2, 3, 4 ], [ 2, 1, 4, 3 ] ];
[ [ 3, 4, 1, 2 ], [ 4, 3, 2, 1 ], [ 1, 2, 3, 4 ], [ 2, 1, 4, 3 ] ]
gap> q1:= QuasigroupByCayleyTable(t1);
<quasigroup of order 4>
gap>  q2:= QuasigroupByCayleyTable(t2);
<quasigroup of order 4>
gap>  IsomorphismQuasigroups(q1,q2);
(1,3)

If my analysis is correct then this permutation should be (1,3)(2,4)

Is this an error in IsomorphismQuasigroups or is my understanding incorrect?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions