Software for generating Cayley graphs of $\mathbb Z_n$?

1.8k Views Asked by At

Does it exist any program (for linux) which can generate a nice Cayley graph of any $\mathbb Z_n$? (If it's possible to create such a graph at all, that is.)

(where perhaps $n ≤ 100$ or something like that)

1

There are 1 best solutions below

0
On

In SageMath: g=graphs.CirculantGraph(8,[1,4,7])

First argument is the number of vertices, second is the connection set. Now g.show() produces a drawing.