EdgeTransitiveGraphQ
Details
- A graph g is edge transitive if for any edges e1 and e2 of g, there is an automorphism of g that maps e1 to e2.
- EdgeTransitiveGraphQ is typically used to test whether all edges in a graph have identical neighborhoods.
Examples
open all close allBasic Examples (2)
Scope (7)
EdgeTransitiveGraphQ[[image]]EdgeTransitiveGraphQ[[image]]EdgeTransitiveGraphQ[[image]]EdgeTransitiveGraphQ[[image]]EdgeTransitiveGraphQ[[image]]EdgeTransitiveGraphQ gives False for anything that is not an edge-transitive graph:
EdgeTransitiveGraphQ[a]EdgeTransitiveGraphQ works with large graphs:
GridGraph[{10, 10, 10, 10}];EdgeTransitiveGraphQ[%]//TimingApplications (1)
Generate a list of edge-transitive graphs from GraphData:
GraphData["EdgeTransitive"]//ShortEdgeTransitiveGraphQ[GraphData[#]] & /@ Take[%, 5]Properties & Relations (5)
Connected edge-transitive graphs are either vertex transitive or bipartite:
data = Intersection[GraphData["EdgeTransitive"], GraphData["Connected"]];
graphs = GraphData[#] & /@ Take[data, {6, 11}](VertexTransitiveGraphQ[#] || BipartiteGraphQ[#])& /@ graphsUse VertexTransitiveGraphQ to test whether a connected graph is edge transitive:
g = GraphData[{"Arrangement", {5, 2}}]VertexTransitiveGraphQ[LineGraph[g]]EdgeTransitiveGraphQ[g]THe edge-transitive graphs need not be vertex transitive:
g = GraphData["GrayGraph"]EdgeTransitiveGraphQ[g]VertexTransitiveGraphQ[g]The vertex connectivity of an edge-transitive graph equals its minimum degree:
g = [image];EdgeTransitiveGraphQ[g]VertexConnectivity[g] == Min[VertexDegree[g]]The edge-transitive graph includes CompleteGraph:
Table[CompleteGraph[n], {n, 3, 6}]EdgeTransitiveGraphQ /@ %Table[CompleteGraph[{n, n}], {n, 3, 6}]Table[CycleGraph[n], {n, 3, 6}]EdgeTransitiveGraphQ /@ %GraphData["GrayGraph"]EdgeTransitiveGraphQ[%]Related Guides
History
Text
Wolfram Research (2021), EdgeTransitiveGraphQ, Wolfram Language function, https://reference.wolfram.com/language/ref/EdgeTransitiveGraphQ.html.
CMS
Wolfram Language. 2021. "EdgeTransitiveGraphQ." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/EdgeTransitiveGraphQ.html.
APA
Wolfram Language. (2021). EdgeTransitiveGraphQ. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/EdgeTransitiveGraphQ.html
BibTeX
@misc{reference.wolfram_2026_edgetransitivegraphq, author="Wolfram Research", title="{EdgeTransitiveGraphQ}", year="2021", howpublished="\url{https://reference.wolfram.com/language/ref/EdgeTransitiveGraphQ.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_edgetransitivegraphq, organization={Wolfram Research}, title={EdgeTransitiveGraphQ}, year={2021}, url={https://reference.wolfram.com/language/ref/EdgeTransitiveGraphQ.html}, note=[Accessed: 13-June-2026]}