GraphTheory
CartesianProduct
compute Cartesian product of graphs
TensorProduct
compute tensor product of graph
Calling Sequence
Parameters
Description
Examples
CartesianProduct(G1, G2, ...)
TensorProduct(G1, G2, ...)
G1, G2, ...
-
graphs
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.
with⁡GraphTheory:
G≔Graph⁡0,1
G≔Graph 1: an undirected unweighted graph with 2 vertices and 1 edge(s)
H≔CartesianProduct⁡G,G
H≔Graph 2: an undirected unweighted graph with 4 vertices and 4 edge(s)
Vertices⁡H
0:0,0:1,1:0,1:1
Edges⁡H
0:0,0:1,0:0,1:0,0:1,1:1,1:0,1:1
T≔TensorProduct⁡G,G
T≔Graph 3: an undirected unweighted graph with 4 vertices and 2 edge(s)
Vertices⁡T
0:0,1:0,0:1,1:1
Edges⁡T
0:0,1:1,0:1,1:0
with⁡StringTools:
with⁡SpecialGraphs:
H≔CartesianProduct⁡G,G,G
H≔Graph 4: an undirected unweighted graph with 8 vertices and 12 edge(s)
V≔map⁡v↦Select⁡IsBinaryDigit,v,sort⁡Vertices⁡H
V≔000,001,010,011,100,101,110,111
Q≔RelabelVertices⁡H,V
Q≔Graph 5: an undirected unweighted graph with 8 vertices and 12 edge(s)
evalb⁡Edges⁡Q=Edges⁡HypercubeGraph⁡3
true
See Also
DisjointUnion
GraphJoin
GraphUnion
Download Help Document
What kind of issue would you like to report? (Optional)