Ask Your Question
0

power graph of a group

asked 2018-03-17 11:34:35 +0200

GA316 gravatar image

The power graph of a group is the graph whose vertex set is the group, two elements being adjacent if one is a power of the other.

I am wondering the notion of power graph of a group has been implemented in sage?

Kindly share your views.

Thank you.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2018-03-17 11:42:35 +0200

vdelecroix gravatar image

This can easily be constructed as follows

sage: S = SymmetricGroup(4)
sage: G = DiGraph(list(S))
sage: for s in S: G.add_edges([(s,s**k) for k in range(2,s.order())])
edit flag offensive delete link more

Comments

Thank you :)

GA316 gravatar imageGA316 ( 2018-03-17 11:52:49 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2018-03-17 11:34:35 +0200

Seen: 275 times

Last updated: Mar 17 '18