Open In App

Mathematics | Graph Theory Basics – Set 2

Last Updated : 03 Dec, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Prerequisite – Graph Theory Basics – Set 1 
A graph is a structure amounting to a set of objects in which some pairs of the objects are in some sense “related”. The objects of the graph correspond to vertices and the relations between them correspond to edges. A graph is depicted diagrammatically as a set of dots depicting vertices connected by lines or curves depicting edges. 
Formally, 

“A graph G = (V, E) consists of V , a non-empty set of vertices (or nodes) and E , a set of edges. Each edge has either one or two vertices associated with it, called its endpoints.” 


Types of graph :There are several types of graphs distinguished on the basis of edges, their direction, their weight etc. 

1. Simple graph – A graph in which each edge connects two different vertices and where no two edges connect the same pair of vertices is called a simple graph. For example, Consider the following graph – 
 


The above graph is a simple graph, since no vertex has a self-loop and no two vertices have more than one edge connecting them. 
The edges are denoted by the vertices that they connect- \{A,B\} is the edge connecting vertices A and B

2. Multigraph – A graph in which multiple edges may connect the same pair of vertices is called a multigraph. 
Since there can be multiple edges between the same pair of vertices, the multiplicity of edge tells the number of edges between two vertices. 
 


The above graph is a multigraph since there are multiple edges between B and C . The multiplicity of the edge \{B, C\} is 2. 

In some graphs, unlike the one’s shown above, the edges are directed. This means that the relation between the objects is one-way only and not two-way. The direction of the edges may be important in some applications. 

Based on whether the edges are directed or not we can have directed graphs and undirected graphs. This property can be extended to simple graphs and multigraphs to get simple directed or undirected simple graphs and directed or undirected multigraphs. 

 

Basic graph Terminology :


In the above discussion some terms regarding graphs have already been explained such as vertices, edges, directed and undirected edges etc. There are more terms which describe properties of vertices and edges. 
 

  • Adjacency – In a graph G two vertices u and v are said to be adjacent if they are the endpoints of an edge. The edge \{u, v\} - e is said to be incident with the vertices. 
    In case the edge is directed, u is said to be adjacent to v and v is said to be adjacent from u . Here, u is said to be the initial vertex and v is said to the terminal vertex
     
  • Degree – The degree of a vertex is the number of edges incident with it, except the self-loop which contributes twice to the degree of the vertex. Degree of a vertex u is denoted as deg(u)
    In case of directed graphs, the degree is further classified as in-degree and out-degree. The in-degree of a vertex is the number of edges with the given vertex as the terminal vertex. The out-degree of a vertex is the number of edges with the given vertex as the initial vertex. In-degree is denoted as deg^-(u) and out-degree is denoted as deg^+(u)
    For example in the directed graph shown above depicting flights between cities, the in-degree of the vertex “Delhi” is 3 and its out-degree is also 3. 
     


Note: If a vertex has zero degree, it is called isolated. If the degree is one then it’s called pendant

 

Handshaking Theorem :


What would one get if the degrees of all the vertices of a graph are added. In case of an undirected graph, each edge contributes twice, once for its initial vertex and second for its terminal vertex. So the sum of degrees is equal to twice the number of edges. This fact is stated in the Handshaking Theorem. 
 

Let G = (V, E) be an undirected graph with e edges. Then

2e = \sum_{u\in V} deg(u)



In case G is a directed graph,

\sum_{u\in V} deg^-(u) = \sum_{u\in V} deg^+(u) = |E|


The handshaking theorem, for undirected graphs, has an interesting result – 
 

An undirected graph has an even number of vertices of odd degree.


Proof : Let V_{1} and V_{2} be the sets of vertices of even and odd degrees respectively. 
We know by the handshaking theorem that, 
2e = \sum_{u\in V} deg(u)
So, 
2e = \sum_{u\in V} deg(u) = \sum_{u\in V_{1}} deg(u) + \sum_{u\in V_{2}} deg(u)
The sum of degrees of vertices with even degrees is even. The LHS is also even, which means that the sum of degrees of vertices with odd degrees must be even. 
Thus, the number of vertices with odd degree is even. 

 

Some special Simple Graphs :


1. Complete Graphs – A simple graph of n vertices having exactly one edge between each pair of vertices is called a complete graph. A complete graph of n vertices is denoted by K_{n} . Total number of edges are n*(n-1)/2 with n vertices in complete graph. 

 

Complete Graphs, K2, K3.. to K7



2. Cycles – Cycles are simple graphs with vertices n \geq 3 and edges \{1, 2\},\: \{2, 3\}...\: \{n-1, n\}\: and\: \{n, 1\} . Cycle with n vertices is denoted as C_{n} . Total number of edges are n with n vertices in cycle graph. 

 



3. Wheels – A wheel is just like a cycle, with one additional vertex which is connected to every other vertex. Wheels of n vertices with 1 addition vertex are denoted by W_{n} . Total number of edges are 2*(n-1) with n vertices in wheel graph. 
 

Wheels- W4, W5, W6 and W7



4. Hypercube – The Hypercube or n-cube is a graph with 2^n vertices each represented by a n-bit string. The vertices which differ by at most 1-bit are connected by edges. A hypercube of 2^n vertices is denoted by Q_{n} . Total number of edges are n*2^{n-1} with 2^n vertices in cube graph. 

 



5. Bipartite Graphs – A simple graph G is said to be bipartite if its vertex set V can be divided into two disjoint sets such that every edge in G has its initial vertex in the first set and the terminal vertex in the second set. Total number of edges are (n*m) with (n+m) vertices in bipartite graph. 

 

Bipartite Graph example




Theorem – A simple graph is bipartite if and only if it is possible to assign one of two 
different colors to each vertex of the graph so that no two adjacent are assigned the 
same color. 


A bipartite graph with m and n vertices in its two disjoint subsets is said to be complete if there is an edge from every vertex in the first set to every vertex in the second set, for a total of mn edges. A complete bipartite graph with m vertices in the first set and n vertices in the second set is denoted as K_{m,n}

 



 

GATE CS Corner Questions



Practicing the following questions will help you test your knowledge. All questions have been asked in GATE in previous years or in GATE Mock Tests. It is highly recommended that you practice them. 

1. GATE CS 2013, Question 25 
2. GATE CS 2014 Set-1, Question 61 
3. GATE CS 2006, Question 71 
4. GATE CS 2002, Question 25 
5. GATE CS 2004, Question 37 
6. GATE CS 2014 Set-2, Question 13 

 

References-


Graphs – Wikipedia 
Discrete Mathematics and its Applications, by Kenneth H Rosen 

 



 



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads