Ask Your Question
1

Rooted Product Graphs on Sagemath

asked 2021-07-26 20:42:36 +0200

morganhouse gravatar image

updated 2021-07-27 10:16:10 +0200

FrédéricC gravatar image

How does one implement rooted product graphs on Sagemath? For those who haven't heard about it before, there is a Wikipedia page for it!

Any help would be highly appreciated!

Link: https://en.wikipedia.org/wiki/Rooted_...

edit retag flag offensive close merge delete

Comments

This does not seem to be implemented in Sage, but you can use the formulas from the wikipedia article and the add_edge() method to build it yourself.

FabianG gravatar imageFabianG ( 2021-08-02 09:56:37 +0200 )edit
David Coudert gravatar imageDavid Coudert ( 2023-06-24 15:39:29 +0200 )edit

1 Answer

Sort by » oldest newest most voted
0

answered 2023-06-19 04:18:53 +0200

licheng gravatar image

updated 2023-06-19 04:23:49 +0200

I haven't checked it thoroughly yet, so please let me know if there are any issues.

def rooted_product_of_graphs(G, H):
    E = []
    h0 = next(iter(H.nodes()))
    for (gi, gk) in G.edges():
            E.append(((gi, h0), (gk, h0)))

    for hj, hk in H.edges():
        for gi in G.nodes():
            E.append(((gi, hj), (gi, hk)))

    return E
import networkx as nx
G = nx.Graph()
G.add_nodes_from([1, 2, 3, 4, 5])
G.add_edges_from([(1, 2), (2, 3),(3,4),(4,5),(5,2)])

H = nx.Graph()
H.add_nodes_from(['a', 'b','c','d'])
H.add_edges_from([('a', 'b'),('b', 'c'),('b', 'd')])

print(rooted_product_of_graphs(G, H))

output: [((1, 'a'), (2, 'a')), ((2, 'a'), (3, 'a')), ((2, 'a'), (5, 'a')), ((3, 'a'), (4, 'a')), ((4, 'a'), (5, 'a')), ((1, 'a'), (1, 'b')), ((2, 'a'), (2, 'b')), ((3, 'a'), (3, 'b')), ((4, 'a'), (4, 'b')), ((5, 'a'), (5, 'b')), ((1, 'b'), (1, 'c')), ((2, 'b'), (2, 'c')), ((3, 'b'), (3, 'c')), ((4, 'b'), (4, 'c')), ((5, 'b'), (5, 'c')), ((1, 'b'), (1, 'd')), ((2, 'b'), (2, 'd')), ((3, 'b'), (3, 'd')), ((4, 'b'), (4, 'd')), ((5, 'b'), (5, 'd'))]

edit flag offensive delete link more

Your Answer

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

Add Answer

Question Tools

1 follower

Stats

Asked: 2021-07-26 20:42:36 +0200

Seen: 344 times

Last updated: Jun 19 '23