CartesianProduct - Maple Help

Online Help

All Products    Maple    MapleSim


GraphTheory

  

CartesianProduct

  

compute Cartesian product of graphs

  

TensorProduct

  

compute tensor product of graph

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

CartesianProduct(G1, G2, ...)

TensorProduct(G1, G2, ...)

Parameters

G1, G2, ...

-

graphs

Description

• 

CartesianProduct accepts a sequence of graphs as its arguments and returns the Cartesian product of those graphs.  If V1 is the set of vertices of G1, and V2 the set of vertices of G2, then the set of vertices of the Cartesian product G of G1 and G2, is the set V1 X V2.  If u is a vertex in G1, and v a vertex in G2, then the vertices in G are labeled by u:v.  For u1,u2 in V1 and v1,v2 in V2, the edge (u1:v1, u2:v2) is in G iff u1 is adjacent to u2 and v1 = v2 or u1 = u2 and v1 is adjacent to v2.

• 

TensorProduct accepts a sequence of graphs as its arguments and returns the tensor product of those graphs.  If V1 is the set of vertices of G1, and V2 the set of vertices of G2, then the set of vertices of the tensor product G of G1 and G2, is the set V1 X V2.  If u is a vertex in G1, and v a vertex in G2, then the vertices in G are labeled by u:v. For u1,u2 in V1 and v1,v2 in V2, the edge u1:v1,u2:v2 is in G iff u1 is adjacent to u2 in G1 and v1 is adjacent to v2 in G2.

Examples

withGraphTheory:

GGraph0,1

GGraph 1: an undirected unweighted graph with 2 vertices and 1 edge(s)

(1)

HCartesianProductG,G

HGraph 2: an undirected unweighted graph with 4 vertices and 4 edge(s)

(2)

VerticesH

0:0,0:1,1:0,1:1

(3)

EdgesH

0:0,0:1,0:0,1:0,0:1,1:1,1:0,1:1

(4)

TTensorProductG,G

TGraph 3: an undirected unweighted graph with 4 vertices and 2 edge(s)

(5)

VerticesT

0:0,1:0,0:1,1:1

(6)

EdgesT

0:0,1:1,0:1,1:0

(7)

withStringTools:

withSpecialGraphs:

HCartesianProductG,G,G

HGraph 4: an undirected unweighted graph with 8 vertices and 12 edge(s)

(8)

VmapvSelectIsBinaryDigit,v,sortVerticesH

V000,001,010,011,100,101,110,111

(9)

QRelabelVerticesH,V

QGraph 5: an undirected unweighted graph with 8 vertices and 12 edge(s)

(10)

evalbEdgesQ=EdgesHypercubeGraph3

true

(11)

See Also

DisjointUnion

GraphJoin

GraphUnion