GraphTheory
MinimumDegree
minimum degree
MaximumDegree
maximum degree
Calling Sequence
Parameters
Description
Examples
MaximumDegree(G)
MinimumDegree(G)
G
-
undirected graph
MaximumDegree returns the largest degree of the graph.
MinimumDegree returns the smallest degree of the graph.
A graph is regular if its minimum degree is equal to its maximum degree.
withGraphTheory:
G≔GraphTrail1,2,3,4,2,5,6,7,2,8,1
G≔Graph 1: an undirected graph with 8 vertices and 10 edge(s)
MaximumDegreeG
6
MinimumDegreeG
2
DrawGraphG
See Also
Degree
DegreeSequence
IsRegular
Trail
Download Help Document