Module III
Module III
The Konigsberg bridge problem asks if the seven bridges of the city of Konigs-
berg (below figure; Kraitchik 1942), formerly in Germany but now known as
Kaliningrad and part of Russia, over the river Preger can all be traversed in a
single trip without doubling back, with the additional requirement that the trip
ends in the same place it began. This problem was answered in the negative by
Euler (1736), and represented the beginning of graph theory.
Example 3.1.2
Let G = {V, E} be graph with V = {v1 , v2 , v3 , v4 }, and E =
{e1 , e2 , e3 , e4 , e5 } .
Let γ defined by γ (e1 ) = {v1 , v2 } , γ (e2 ) = {v4 , v3 } , γ (e3 ) =
{v1 , v3 } , γ (e4 ) = {v2 , v4 } , γ (e5 ) = {v1 , v2 }.
The edges e2 and e3 are adjacent edges because they are incident on the same
vertex v3 .
Example 3.1.4
Consider the graph with the vertices A, B , C, D and E pictured in the figure
below. Find the degree of each vertices.
where deg (vi ) denotes the degree of vertex vi and e denotes the number of
edges.
And ∆(G) = 4, δ(G) = 0
Definition 3.1.17
In pictorial representations of a graph, the vertices will be denoted by dots and
edges by line segments.
In the above graph, there is only one vertex ’v’ without any edge. Therefore, it
is a trivial graph.
In the above example, First graph is not a simple graph because it has two
edges between the vertices A and B and it also has a loop.
Second graph is a simple graph because it does not contain any loop and par-
allel edges.
In the above graph, each edge is directed by the arrow. A directed edge has an
arrow from A to B, means A is related to B, but B is not related to A.
In the above example, we can traverse from any one vertex to any other vertex.
It means there exists at least one path between every pair of vertices therefore,
it a connected graph.
The above graph consists of two independent components which are discon-
nected. Since it is not possible to visit from the vertices of one component to
the vertices of other components therefore, it is a disconnected graph.
In the above example, all the vertices have degree 2. Therefore they all are
cyclic graphs.
Dr.A.Benevatho Jaison MAT1002 August 1, 2022 175 / 377
Definition 3.1.26 (Acyclic Graph)
A graph which does not contain any cycle in it is called as an Acyclic graph.
Since, the above graph does not contain any cycle in it therefore, it is an acyclic
graph.
The above graph may not seem to be planar because it has edges crossing each
other. But we can redraw the above graph.
The above three graphs do not consist of two edges crossing each other and
therefore, all the above graphs are planar.
Let us consider a graph G with E edge set and V vertex set of vertices v1 , v2 ,
v3 , . . . , vn . Since each edge contributes two degrees, the sum of the degrees of
all vertices in G is twice the number of edges in G.
X
i.e., d (V) = 2|E|
v∈V
In the above example, all the vertices have degree 2. Therefore they are called
2-Regular graph.
k + k + k + · · · + k (n − times) = 2|E|
nk = 2|E|
|E| = km
Therefore number of edges is a multiple of k.
n
X
2|E| = d(vi ) = d(v1 ) + d(v2 ) + d(v3 ) + · · · + d(v1 0)
i=1
= 6 + 6 + 6 + · · · + 6(10 − times)
= 6(10)
2|E| = 60
|E| = 30
n
X
2e = d(vi ) = d(v1 ) + d(v2 ) + d(v3 ) + d(v4 ) + d(v5 )
i=1
=5+5+5+5+5
2e = 25
e = 12.5(Not an integer)
δ(G) = min{degvi : vi ∈ G}
∆(G) = max{degvi : vi ∈ G}