Preliminaries for Analysis
- Count the degree of a vertex.
- Describe the Handshaking lemma.
- Describe the lower and upper bounds on the number of edges in a simple and connected graph.
For a graph with vertex set and edge set :
- denotes the number of vertices.
- denotes the number of edges.
What can we say about and ?
- Theoretically, . (A graph with an infinite vertex set is called an infinite graph!) In practice, is a positive finite integer.
- If a graph is not connected, could be as small as .
- If a graph is not simple, we may have parallel edges, so could be (theoretically) as large as .
For a simple, connected graph, the minimum number of edges is (as in a Tree). On the other hand, the maximum number of edges is in a Complete graph, where there is an edge between every pair of vertices.
Therefore, in a simple connected graph, and .
Degree of a vertex
The degree of a vertex is the number of edges incident with . (A loop counts as two edges.)
The degree of the vertex is denoted by .
Degree sum formula:
Why?
Each edge contributes twice to the degree count of all vertices. Hence, both the left-hand and right-hand sides of this equation equal twice the number of edges.
This is also known as the Handshaking lemma.