Skip to main content

Section 4.2 Definitions

Before we start studying graphs, we need to agree upon what a graph is. While we almost always think of graphs as pictures (dots connected by lines) this is fairly ambiguous. Do the lines need to be straight? Does it matter how long the lines are or how large the dots are? Can there be two lines connecting the same pair of dots? Can one line connect three dots?

Subsection 4.2.1 Basic Definitions

The way we avoid ambiguities in mathematics is to provide concrete and rigorous definitions. Crafting good definitions is not easy, but it is incredibly important. The definition is the agreed upon starting point from which all truths in mathematics proceed. Is there a graph with no edges? We have to look at the definition to see if this is possible.

We want our definition to be precise and unambiguous, but it also must agree with our intuition for the objects we are studying. It needs to be useful: we could define a graph to be a six legged mammal, but that would not let us solve any problems about bridges. Instead, here is the (now) standard definition of a graph.

Definition 4.2.1 Graph

A graph is an ordered pair \(G = (V, E)\) consisting of a nonempty set \(V\) (called the vertices) and a set \(E\) (called the edges) of two-element subsets of \(V\text{.}\)

Strange. Nowhere in the definition is there talk of dots or lines. From the definition, a graph could be

\begin{equation*} (\{a,b,c,d\}, \{\{a,b\}, \{a,c\}, \{b,c\}, \{b,d\}, \{c,d\}\}). \end{equation*}

Here we have a graph with four vertices (the letters \(a, b, c, d\)) and four edges (the pairs \(\{a,b\}, \{a,c\}, \{b,c\}, \{b,d\}, \{c,d\})\)).

Looking at sets and sets of 2-element sets is difficult to process. That is why we often draw a representation of these sets. We put a dot down for each vertex, and connect two dots with a line precisely when those two vertices are one of the 2-element subsets in our set of edges. Thus one way to draw the graph described above is this:

However we could also have drawn the graph differently. For example either of these:

The exact placement of the vertices is unimportant. Both drawings above represent the same graph.

Back to some basic graph theory definitions. Notice that all the graphs we have drawn above have the property that no pair of vertices is connected more than once, and no vertex is connected to itself. Graphs like these are sometimes called simple, although we will just call them graphs. This is because our definition for a graph says that the edges form a set of 2-element subsets of the vertices. Remember that it doesn't make sense to say a set contains an element more than once. So no pair of vertices can be connected by an edge more than once. Also, since each edge must be a set containing two vertices, we cannot have a single vertex connected to itself by an edge.

That said, there are times we want to consider double (or more) edges and single edge loops. For example, the “graph” we drew for the Bridges of Königsberg problem had double edges because there really are two bridges connecting a particular island to the near shore. We will call these objects multigraphs. This is a good name: a multiset is a set in which we are allowed to include a single element multiple times.

The graphs above are also connected: you can get from any vertex to any other vertex by following some path of edges. A graph that is not connected can be thought of as two separate graphs drawn close together. For example, the following graph is NOT connected because there is no path from \(a\) to \(b\text{:}\)

Most of the time, it makes sense to treat non-connected graphs as separate graphs (think of the above graph as two squares), so unless otherwise stated, we will assume all our graphs are connected.

Vertices in a graph do not always have edges between them. If we add all possible edges, then the resulting graph is called complete. That is, a graph is complete if every pair of vertices is connected by an edge. Since a graph is determined completely by which vertices are adjacent to which other vertices, there is only one complete graph with a given number of vertices. We give these a special name: \(K_n\) is the complete graph on \(n\) vertices.

Each vertex in \(K_n\) is adjacent to \(n-1\) other vertices. We call the number of edges emanating from a given vertex the degree of that vertex. So every vertex in \(K_n\) has degree \(n-1\text{.}\) How many edges does \(K_n\) have? One might think the answer should be \(n(n-1)\text{,}\) since we count \(n-1\) edges \(n\) times (once for each vertex). However, each edge is incident to 2 vertices, so we counted every edge exactly twice. Thus there are \(n(n-1)/2\) edges in \(K_n\text{.}\) Alternatively, we can say there are \({n \choose 2}\) edges, since to draw an edge we must choose 2 of the \(n\) vertices.

Subsection 4.2.2 Graphs and Degrees

In general, if we know the degrees of all the vertices in a graph, we can find the number of edges. The sum of the degrees of all vertices will always be twice the number of edges, since each edge adds to the degree of two vertices. Notice this means that the sum of the degrees of all vertices in any graph must be even!

Example 4.2.2

At a recent math seminar, 9 mathematicians greeted each other by shaking hands. Is it possible that each mathematician shook hands with exactly 7 people at the seminar?

Solution

It seems like this should be possible. Each mathematician chooses one person to not shake hands with. But this cannot happen. We are asking whether a graph with 9 vertices can have each vertex have degree 7. If such a graph existed, the sum of the degrees of the vertices would be \(9\cdot 7 = 63\text{.}\) This would be twice the number of edges (handshakes) resulting in a graph with \(31.5\) edges. That is impossible. Thus at least one (in fact an odd number) of the mathematicians must have shaken hands with an even number of people at the seminar.

What other observations can we make about the degrees of the vertices in a graph? If we list out the degree of each vertex in a graph, this is the degree sequence of a graph.

Example 4.2.3

Find the degree sequence of the graph below.

Solution

We typically list the degrees in descending numerical order, so the degree sequence for this graph is \(3,3,2,2\text{.}\)

Of course not every sequence of numbers will be the degree sequence for a graph. For instance, since we know the sum of all degrees must be even we know that the sequence \(3,3,3\) is not a valid degree sequence. If a sequence of numbers does represent the degree sequence of a simple graph then we call that sequence graphic.

Example 4.2.4

\(3,3,2,2\) is graphic since we saw a graph above with that degree sequence.

\(5,1,1,1\) is not graphic. Note that it is impossible for one vertex to have degree 5 when there are only 4 vertices in the entire graph!

\(3,3,3,3\) is graphic. In fact, it is the degree sequence of \(K_4\text{,}\) the complete graph on 4 vertices.

Summary

There are a lot of definitions to keep track of in graph theory. Here is a brief video summarizing most of these terms and a glossary of the terms we have already used and will soon encounter.

Figure 4.2.5 A video summary of some basic graph theory terms.
Graph Theory Definitions
Graph

A collection of vertices, some of which are connected by edges. More precisely, a pair of sets \(V\) and \(E\) where \(V\) is a set of vertices and \(E\) is a set of 2-element subsets of \(V\text{.}\)

Adjacent

Two vertices are adjacent if they are connected by an edge. Two edges are adjacent if they share a vertex.

Bipartite graph

A graph for which it is possible to divide the vertices into two disjoint sets such that there are no edges between any two vertices in the same set.

Complete bipartite graph

A bipartite graph for which every vertex in the first set is adjacent to every vertex in the second set.

Complete graph

A graph in which every pair of vertices is adjacent.

Connected

A graph is connected if there is a path from any vertex to any other vertex.

Chromatic number

The minimum number of colors required in a proper vertex coloring of the graph.

Cycle

A path (see below) that starts and stops at the same vertex, but contains no other repeated vertices.

Degree of a vertex

The number of edges incident to a vertex.

Euler path

A walk which uses each edge exactly once.

Euler circuit

An Euler path which starts and stops at the same vertex.

Multigraph

A multigraph is just like a graph but can contain multiple edges between two vertices as well as single edge loops (that is an edge from a vertex to itself).

Planar

A graph which can be drawn (in the plane) without any edges crossing.

Subgraph

We say that \(H\) is a subgraph of \(G\) if every vertex and edge of \(H\) is also a vertex or edge of \(G\text{.}\) We say \(H\) is an induced subgraph of \(G\) if every vertex of \(H\) is a vertex of \(G\) and each pair of vertices in \(H\) are adjacent in \(H\) if and only if they are adjacent in \(G\text{.}\)

Tree

A (connected) graph with no cycles. (A non-connected graph with no cycles is called a forest.) The vertices in a tree with degree 1 are called leaves.

Vertex coloring

An assignment of colors to each of the vertices of a graph. A vertex coloring is proper if adjacent vertices are always colored differently.

Walk

A sequence of vertices such that consecutive vertices (in the sequence) are adjacent (in the graph). A walk in which no vertex is repeated is called simple.

Subsection 4.2.3 Exercises

1

For each graph below, give the degree of each vertex.

2

Which of the graphs above are simple? Which are connected?

3

If 10 people each shake hands with each other, how many handshakes took place? What does this question have to do with graph theory?

4

Among a group of 5 people, is it possible for everyone to be friends with exactly 2 of the people in the group? What about 3 of the people in the group?

5

Decide whether or not each degree sequence is graphic.

  1. 3,3,3,2,2
  2. 5,4,3,2,1
  3. 4,4,3,2,1
  4. 2,2,2,1,1
  5. 3,2,2,1,0
  6. 1,1,1,1,1
6

For each of the following, try to give two different unlabeled graphs with the given properties, or explain why doing so is impossible.

  1. Two different trees with the same number of vertices and the same number of edges. A tree is a connected graph with no cycles.

  2. Two different graphs with 8 vertices all of degree 2.

  3. Two different graphs with 5 vertices all of degree 4.

  4. Two different graphs with 5 vertices all of degree 3.