Mahesh Parahar has Published 255 Articles

Finding the number of regions in the graph

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:31:20

5K+ Views

Problem StatementLet 'G' be a connected planar graph with 20 vertices and the degree of each vertex is 3. Find the number of regions in the graph.SolutionBy the sum of degrees theorem,  20 ∑ i=1  deg(Vi) = 2|E|20(3) = 2|E||E| = 30By Euler’s formula, |V| + |R| = |E| + ... Read More

Finding the simple non-isomorphic graphs with n vertices in a graph

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:28:28

3K+ Views

Problem StatementHow many simple non-isomorphic graphs are possible with 3 vertices?SolutionThere are 4 non-isomorphic graphs possible with 3 vertices. They are shown below.

Finding the matching number of a graph

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:27:07

630 Views

Problem StatementWhat is the matching number for the following graph?SolutionNumber of vertices = 9We can match only 8 vertices.Matching number is 4.

Finding the line covering number of a graph

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:25:32

361 Views

Problem StatementWhat is the line covering number for the following graph?SolutionNumber of vertices = |V| = n = 7Line covering number = (α1) ≥ ⌈ n / 2 ⌉ = 3α1 ≥ 3By using 3 edges, we can cover all the vertices.Hence, the line covering number is 3.

Finding the chromatic number of complete graph

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:23:37

3K+ Views

Problem StatementWhat is the chromatic number of complete graph Kn?SolutionIn a complete graph, each vertex is adjacent to is remaining (n–1) vertices. Hence, each vertex requires a new color. Hence the chromatic number Kn = n.

Euler and Hamiltonian Paths

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:21:53

6K+ Views

A graph is traversable if you can draw a path between all the vertices without retracing the same path. Based on this path, there are some categories like Euler’s path and Euler’s circuit which are described in this chapter.Euler’s PathAn Euler’s path contains each edge of ‘G’ exactly once and ... Read More

Edges and Vertices of Graph

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:19:16

22K+ Views

A graph is a set of points, called nodes or vertices, which are interconnected by a set of lines called edges. The study of graphs, or graph theory is an important part of a number of disciplines in the fields of mathematics, engineering and computer science.Graph TheoryDefinition − A graph ... Read More

Distance between Vertices and Eccentricity

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:16:52

3K+ Views

Distance between Two VerticesIt is number of edges in a shortest path between Vertex U and Vertex V. If there are multiple paths connecting two vertices, then the shortest path is considered as the distance between the two vertices.Notation − d(U, V)There can be any number of paths present from ... Read More

Connectivity of Graph

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:09:03

308 Views

Whether it is possible to traverse a graph from one vertex to another is determined by how a graph is connected. Connectivity is a basic concept in Graph Theory. Connectivity defines whether a graph is connected or disconnected. It has subtopics based on edge and vertex, known as edge connectivity ... Read More

Connected vs Disconnected Graphs

Mahesh Parahar

Mahesh Parahar

Updated on 23-Aug-2019 07:05:54

15K+ Views

Connected GraphA graph is connected if any two vertices of the graph are connected by a path.Vertex 1Vertex 2PATHaba baca b c, a cada b c d, a c dbcb a c , b ccdc dDisconnected GraphA graph is disconnected if at least two vertices of the graph are not ... Read More

Advertisements