Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

asked 1 year ago

MFB gravatar image

Cayley graphs for finitely presented groups

I am trying to produce Cayley graphs for finite groups defined using presentations, but I am getting strange results.

For example, the following should produce the Cayley graph for the cyclic group with 3 elements:

F.<x> = FreeGroup()
rel = [ x^3 ]
G = F/rel
C = G.cayley_graph()
C.plot()

but the graph produced has 4 vertices (sorry I can't upload an image).

If I tell Sage the list of elements like so:

F.<x> = FreeGroup()
rel = [ x^3 ]
G = F/rel
L = G.list()
C = G.cayley_graph(elements = L,generators = [x,x^-1])
C.plot()

then the number of vertices is correct, but there are no edges between x and x1(=x2).

Does anyone know how to fix this?

Cayley graphs for finitely presented groups

I am trying to produce Cayley graphs for finite groups defined using presentations, presentations, but I am getting strange results.

For example, the following should produce the Cayley graph for the cyclic group with 3 elements:

F.<x> = FreeGroup()
rel = [ x^3 ]
G = F/rel
C = G.cayley_graph()
C.plot()

but the graph produced has 4 vertices (sorry I can't upload an image).5 vertices:

Faulty output for Cayley graph: too many vertices

If I tell Sage the list of elements like so:

F.<x> = FreeGroup()
rel = [ x^3 ]
G = F/rel
L = G.list()
C = G.cayley_graph(elements = L,generators = [x,x^-1])
G.cayley_graph(elements=L, generators=[x, x^-1])
C.plot()

then the number of vertices is correct, but there are no edges between x and x1(=x2).x1(=x2):

Faulty output for Cayley graph: missing edges

Does anyone know how to fix this?

click to hide/show revision 3
retagged

updated 1 year ago

FrédéricC gravatar image

Cayley graphs for finitely presented groups

I am trying to produce Cayley graphs for finite groups defined using presentations, but I am getting strange results.

For example, the following should produce the Cayley graph for the cyclic group with 3 elements:

F.<x> = FreeGroup()
rel = [ x^3 ]
G = F/rel
C = G.cayley_graph()
C.plot()

but the graph produced has 5 vertices:

Faulty output for Cayley graph: too many vertices

If I tell Sage the list of elements like so:

F.<x> = FreeGroup()
rel = [ x^3 ]
G = F/rel
L = G.list()
C = G.cayley_graph(elements=L, generators=[x, x^-1])
C.plot()

then the number of vertices is correct, but there are no edges between x and x1(=x2):

Faulty output for Cayley graph: missing edges

Does anyone know how to fix this?