Graph Theory: Degree
Definition 1
Let’s assume a directed graph is given.
If an edge exists, we say that the edge leaves from and enters into .
- The number of edges entering vertex is called the Indegree and is denoted as .
- The number of edges leaving vertex is called the Outdegree and is denoted as .
- A vertex that is is called a Source, and a vertex that is is called a Sink. A point that is neither a Source nor a Sink is called Internal.
If an edge exists, we say that vertex is incident to edge .
- The number of edges incident to vertex is called the Degree and is denoted as .
- A vertex with a degree of is called an Isolated Vertex.
- A vertex with a degree of is called an End Vertex.
The maximum degree of graph is denoted as , and the minimum degree is denoted as .
Explanation
Incidentally, the term “being incident” is not exactly a good euphemism. When two vertices are connected by edge , and are said to be Adjacent, and the term “being incident” is used to describe that is attached to edge . Originally, the adjective Incident has meanings such as accompanying or following.
The concept of degree has attracted a lot of interest for a long time in graph theory because it’s an easily conceivable ’number’, especially in pure mathematics where simple graphs are often handled, leading to extensive research on degrees.
Directed Graph
For example, in the following graph, red represents the indegree and blue represents the outdegree. Naturally, the sum of the indegree and outdegree is the same.
Here, a vertex with an indegree of is called a source. The name source makes sense because it only leaves without entering, similar to sinks and sources in dynamical systems.
Degree
For example, in the next graph, one can calculate the degree of each vertex. Let’s verify that the degree is the sum of the indegree and outdegree when the directed graph is represented as just a simple graph. [ NOTE: A graph with the directions removed like this is called the Underlying Graph of the original directed graph. ]
In the following graph, vertices and are End Vertices, and is an Isolated Vertex.
Note that in applied mathematics, if only is absent, that is, if the network is fully connected, such a node as is called a Hub. Hubs typically describe elements that have a significant impact on the entire network or can mediate all communications.
Regular Graph
Especially, a graph where every vertex has the same degree, denoted as , is called a Regular Graph.
Wilson. (1970). Introduction to Graph Theory: p12. ↩︎